{"id":17383854,"url":"https://github.com/sunaku/babelfish","last_synced_at":"2025-08-17T14:05:16.123Z","repository":{"id":473192,"uuid":"98289","full_name":"sunaku/babelfish","owner":"sunaku","description":"Ruby interface to Yahoo! BabelFish translation service.","archived":false,"fork":false,"pushed_at":"2011-09-27T20:53:32.000Z","size":101,"stargazers_count":4,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-06-09T00:01:45.060Z","etag":null,"topics":["babelfish","ruby-library","translation"],"latest_commit_sha":null,"homepage":"http://snk.tuxfamily.org/lib/babelfish/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/sunaku.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2008-12-30T06:45:35.000Z","updated_at":"2019-08-13T13:50:36.000Z","dependencies_parsed_at":"2022-07-08T01:55:19.838Z","dependency_job_id":null,"html_url":"https://github.com/sunaku/babelfish","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sunaku/babelfish","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fbabelfish","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fbabelfish/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fbabelfish/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fbabelfish/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sunaku","download_url":"https://codeload.github.com/sunaku/babelfish/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sunaku%2Fbabelfish/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270856775,"owners_count":24657700,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["babelfish","ruby-library","translation"],"created_at":"2024-10-16T07:43:59.418Z","updated_at":"2025-08-17T14:05:16.103Z","avatar_url":"https://github.com/sunaku.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"babelfish : Ruby interface to Yahoo! BabelFish translation service\n==================================================================\n\nThis is a completely *unofficial* (and incredibly simple) Ruby\ninterface to the Yahoo! BabelFish translation service.  Enjoy!\n\n\nInstallation\n------------\n\nRun the following command to install this library:\n\n    sudo gem install babelfish\n\n\nUsage:  Command Line\n--------------------\n\nHere are some examples of using the command-line interface:\n\n    # echo \"Hello world!\" | babelfish en es\n    ¡Hola mundo!\n\n    # echo \"How are you?\" \u003e foo.txt\n    # babelfish en es foo.txt\n    ¿Cómo está usted?\n\nRun `babelfish --help` to see the list of supported languages.\n\n\nUsage:  Ruby Library\n--------------------\n\nHere is an example of using the library in Ruby:\n\n    require 'rubygems'\n    require 'babelfish'\n\n    input_text = \"I am well, thank you.\"\n    input_code = \"en\"\n\n    puts input_text\n    BabelFish::LANGUAGE_PAIRS[input_code].each do |output_code|\n      print \"  in #{BabelFish::LANGUAGE_NAMES[output_code]} is: \"\n      puts BabelFish.translate(input_text, input_code, output_code)\n    end\n\nThe result of running the above example is:\n\n    I am well, thank you.\n      in Italian is: Sono bene, grazie.\n      in Japanese is: 私は元気でいる、ありがとう。\n      in German is: Ich fÃehle mich gut, danke.\n      in French is: Je vais bien, merci.\n      in Spanish is: Estoy bien, gracias.\n      in Russian is: Я наилучшим образом, вы.\n      in Chinese-simp is: 我很好，谢谢。\n      in Portuguese is: Eu sou bem, obrigado.\n      in Korean is: 나는 잘 있다, 당신을 감사하십시오.\n      in Chinese-trad is: \n      in Greek is: Είμαι καλά, σας ευχαριστώ.\n      in Dutch is: Ik ben goed, dank u.\n\nRead the [RDoc documentation](api/index.html) for more information.\n\n\nLicense\n-------\n\nCopyright 2007 Suraj N. Kurapati \u003csunaku@gmail.com\u003e\n\nPermission to use, copy, modify, and distribute this software for any\npurpose with or without fee is hereby granted, provided that the above\ncopyright notice and this permission notice appear in all copies.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\" AND THE AUTHOR DISCLAIMS ALL WARRANTIES\nWITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF\nMERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR\nANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES\nWHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN\nACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF\nOR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.\n\n\n* * *\n\nVisit [http://snk.tuxfamily.org/lib/babelfish/]() for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunaku%2Fbabelfish","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsunaku%2Fbabelfish","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsunaku%2Fbabelfish/lists"}