{ "info": { "author": "ZHUO Qiang", "author_email": "zhuo.qiang@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Topic :: Software Development :: Internationalization", "Topic :: Software Development :: Localization", "Topic :: Text Processing :: Linguistic" ], "description": "Goslate: Free Google Translate API\n##################################################\n\n.. note::\n Google has updated its translation service recently with a ticket mechanism to prevent simple crawler program like ``goslate`` from accessing.\n Though a more sophisticated crawler may still work technically, however it would have crossed the fine line between using the service and breaking the service.\n ``goslate`` will not be updated to break google's ticket mechanism. Free lunch is over. Thanks for using.\n\n.. contents:: :local:\n\n``goslate`` provides you *free* python API to google translation service by querying google translation website.\n\nIt is:\n\n- **Free**: get translation through public google web site without fee\n- **Fast**: batch, cache and concurrently fetch\n- **Simple**: single file module, just ``Goslate().translate('Hi!', 'zh')``\n\n\nSimple Usage\n==============\n\nThe basic usage is simple:\n\n.. sourcecode:: python\n\n >>> import goslate\n >>> gs = goslate.Goslate()\n >>> print(gs.translate('hello world', 'de'))\n hallo welt\n\n \nInstallation\n===============\n\ngoslate support both Python2 and Python3. You could install it via:\n\n\n.. sourcecode:: bash\n \n $ pip install goslate\n\n \nor just download `latest goslate.py `_ directly and use\n\n``futures`` `pacakge `_ is optional but recommended to install for best performance in large text translation task.\n\n \nProxy Support\n===============\n\nProxy support could be added as following:\n\n.. sourcecode:: python\n\n import urllib2\n import goslate\n\n proxy_handler = urllib2.ProxyHandler({\"http\" : \"http://proxy-domain.name:8080\"})\n proxy_opener = urllib2.build_opener(urllib2.HTTPHandler(proxy_handler), \n urllib2.HTTPSHandler(proxy_handler))\n \n gs_with_proxy = goslate.Goslate(opener=proxy_opener)\n translation = gs_with_proxy.translate(\"hello world\", \"de\")\n \n \nRomanlization\n====================\n\nRomanization or latinization (or romanisation, latinisation), in linguistics, is the conversion of writing from a different writing system to the Roman (Latin) script, or a system for doing so.\n\nFor example, pinyin is the default romanlization method for Chinese language.\n\nYou could get translation in romanlized writing as following:\n\n.. sourcecode:: python\n\n >>> import goslate\n >>> roman_gs = goslate.Goslate(writing=goslate.WRITING_ROMAN)\n >>> print(roman_gs.translate('China', 'zh'))\n Zh\u014dnggu\u00f3\n \n\nYou could also get translation in both native writing system and ramon writing system\n\n.. sourcecode:: python\n\n >>> import goslate \n >>> gs = goslate.Goslate(writing=goslate.WRITING_NATIVE_AND_ROMAN)\n >>> gs.translate('China', 'zh')\n ('\u4e2d\u56fd', 'Zh\u014dnggu\u00f3')\n\n \nYou could see the result will be a tuple in this case: ``(Translation-in-Native-Writing, Translation-in-Roman-Writing)``\n\nLanguage Detection\n====================\n\nSometimes all you need is just find out which language the text is:\n\n.. sourcecode:: python\n\n >>> import golsate\n >>> gs = goslate.Goslate()\n >>> language_id = gs.detect('hallo welt')\n >>> language_id\n 'de'\n >>> gs.get_languages()[language_id]\n 'German'\n\n\nConcurrent Querying \n====================\n\nIt is not necessary to roll your own multi-thread solution to speed up massive translation. Goslate already done it for you. It utilizes ``concurrent.futures`` for concurent querying. The max worker number is 120 by default. \n\nThe worker number could be changed as following:\n\n.. sourcecode:: python\n\n >>> import golsate\n >>> import concurrent.futures\n >>> executor = concurrent.futures.ThreadPoolExecutor(max_workers=200)\n >>> gs = goslate.Goslate(executor=executor)\n >>> it = gs.translate(['text1', 'text2', 'text3'])\n >>> list(it)\n ['tranlation1', 'translation2', 'translation3']\n\n \nIt is adviced to install ``concurrent.futures`` backport lib in python2.7 (python3 has it by default) to enable concurrent querying. \n\nThe input could be list, tuple or any iterater, even the file object which iterate line by line\n\n.. sourcecode:: python\n\n >>> translated_lines = gs.translate(open('readme.txt'))\n >>> translation = '\\n'.join(translated_lines)\n\n \nDo not worry about short texts will increase the query time. Internally, goslate will join small text into one big text to reduce the unnecessary query round trips.\n \n \nBatch Translation\n====================\n\nGoogle translation does not support very long text, goslate bypass this limitation by split the long text internally before send to Google and join the mutiple results into one translation text to the end user. \n\n.. sourcecode:: python\n\n >>> import golsate\n >>> with open('the game of thrones.txt', 'r') as f:\n >>> novel_text = f.read()\n >>> gs = goslate.Goslate()\n >>> gs.translate(novel_text)\n\n\nPerformance Consideration\n================================\n\nGoslate use batch and concurrent fetch aggresivelly to achieve maximized translation speed internally.\n\nAll you need to do is reducing API calling times by utilize batch tranlation and concurrent querying.\n\nFor example, say if you want to translate 3 big text files. Instead of manually translate them one by one, line by line:\n\n.. sourcecode:: python\n\n import golsate\n \n big_files = ['a.txt', 'b.txt', 'c.txt']\n gs = goslate.Goslate()\n \n translation = []\n for big_file in big_files:\n with open(big_file, 'r') as f:\n translated_lines = []\n for line in f:\n translated_line = gs.translate(line)\n translated_lines.append(translated_line)\n \n translation.append('\\n'.join(translated_lines))\n \n \nIt is better to leave them to Goslate totally. The following code is not only simpler but also much faster (+100x) :\n\n.. sourcecode:: python\n\n import golsate\n \n big_files = ['a.txt', 'b.txt', 'c.txt']\n gs = goslate.Goslate()\n \n translation_iter = gs.translate(open(big_file, 'r').read() for big_file in big_files)\n translation = list(translation_iter)\n \n \nInternally, goslate will first adjust the text to make them not so big that do not fit Google query API nor so small that increase the total HTTP querying times. Then it will use concurrent query to speed thing even further.\n \n\nLookup Details in Dictionary\n================================\n\nIf you want detail dictionary explaination for a single word/phrase, you could\n\n.. sourcecode:: python\n\n >>> import goslate\n >>> gs = goslate.Goslate()\n >>> gs.lookup_dictionary('sun', 'de')\n [[['Sonne', 'sun', 0]],\n [['noun',\n ['Sonne'],\n [['Sonne', ['sun', 'Sun', 'Sol'], 0.44374731, 'die']],\n 'sun',\n 1],\n ['verb',\n ['der Sonne aussetzen'],\n [['der Sonne aussetzen', ['sun'], 1.1544633e-06]],\n 'sun',\n 2]],\n 'en',\n 0.9447732,\n [['en'], [0.9447732]]]\n\nThere are 2 limitaion for this API:\n\n* The result is a complex list structure which you have to parse for your own usage\n\n* The input must be a single word/phase, batch translation and concurrent querying are not supported\n\n\nQuery Error\n==================\n\nIf you get HTTP 5xx error, it is probably because google has banned your client IP address from transation querying.\n\nYou could verify it by access google translation service in browser manully.\n\nYou could try the following to overcome this issue:\n\n* query through a HTTP/SOCK5 proxy, see `Proxy Support`_\n\n* using another google domain for translation: ``gs = Goslate(service_urls=['http://translate.google.de'])``\n\n* wait for 3 seconds before issue another querying\n \n \nAPI References \n================================\n\nplease check `API reference `_\n \n\nCommand Line Interface\n==============================\n\n``goslate.py`` is also a command line tool which you could use directly\n \n- Translate ``stdin`` input into Chinese in GBK encoding\n\n .. sourcecode:: bash\n \n $ echo \"hello world\" | goslate.py -t zh-CN -o gbk\n\n- Translate 2 text files into Chinese, output to UTF-8 file\n\n .. sourcecode:: bash\n \n $ goslate.py -t zh-CN -o utf-8 source/1.txt \"source 2.txt\" > output.txt\n\n \nuse ``--help`` for detail usage\n \n.. sourcecode:: bash\n \n $ goslate.py -h\n \n \nHow to Contribute\n==================\n\n- Report `issues & suggestions `_\n- Fork `repository `_\n- `Donation `_\n\nWhat's New\n============\n\n1.5.0\n----------\n\n* Add new API ``Goslate.lookup_dictionary()`` to get detail information for a single word/phrase, thanks for Adam's suggestion\n \n* Improve document with more user scenario and performance consideration\n\n\n1.4.0\n----------\n\n* [fix bug] update to adapt latest google translation service changes\n\n\n1.3.2\n----------\n\n* [fix bug] fix compatible issue with latest google translation service json format changes\n\n* [fix bug] unit test failure\n\n\n\n1.3.0\n---------\n\n* [new feature] Translation in roman writing system (romanlization), thanks for Javier del Alamo's contribution.\n \n* [new feature] Customizable service URL. you could provide multiple google translation service URLs for better concurrency performance\n\n* [new option] roman writing translation option for CLI\n \n* [fix bug] Google translation may change normal space to no-break space\n\n* [fix bug] Google web API changed for getting supported language list", "description_content_type": null, "docs_url": "https://pythonhosted.org/goslate/", "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://pypi.python.org/pypi/goslate", "keywords": "google translation i18n l10n", "license": "MIT", "maintainer": null, "maintainer_email": null, "name": "goslate", "package_url": "https://pypi.org/project/goslate/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/goslate/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://pypi.python.org/pypi/goslate" }, "release_url": "https://pypi.org/project/goslate/1.5.1/", "requires_dist": null, "requires_python": null, "summary": "Goslate: Free Google Translate API", "version": "1.5.1" }, "last_serial": 1887730, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "37ca56da4a1e560f6cbc8b74fe30bb21", "sha256": "ba69c0788701527769cd999d6382b05bcc96a651d30c423bf136c95bb7411ae7" }, "downloads": -1, "filename": "goslate-1.0.0-py2.7.egg", "has_sig": false, "md5_digest": "37ca56da4a1e560f6cbc8b74fe30bb21", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 13458, "upload_time": "2013-05-22T08:15:18", "url": "https://files.pythonhosted.org/packages/2f/b1/7983ca23a6a5e181f86225403831766b105180af5fc1af5159694f275a55/goslate-1.0.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "d6fde3181bd4d95709c6ef9fe1c12af2", "sha256": "216f6e0853e30f6ee04e2fd52e9175faa29bd0e8fdde93ec8cff7090b3ba527e" }, "downloads": -1, "filename": "goslate-1.0.0.tar.gz", "has_sig": false, "md5_digest": "d6fde3181bd4d95709c6ef9fe1c12af2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8360, "upload_time": "2013-05-22T08:15:22", "url": "https://files.pythonhosted.org/packages/8f/64/66ea79ad18dc75de606f09094cd1ab9073c81f5d5369f5cb5c2a2759bf36/goslate-1.0.0.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "c724c9e31a706a34baf114bc933b9d45", "sha256": "7c447b282c26a37e47bebd4321129f92f4a6570f8f31949942126424da3ebc40" }, "downloads": -1, "filename": "goslate-1.1.0-py2.7.egg", "has_sig": false, "md5_digest": "c724c9e31a706a34baf114bc933b9d45", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14292, "upload_time": "2013-05-26T12:07:34", "url": "https://files.pythonhosted.org/packages/f8/ad/ff9a110d9985b2e369182356ac6c18e2694fa3b209ed2a80f2e66750724d/goslate-1.1.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cbae110a318b7bdba2b1877433d3334a", "sha256": "3778fee3e32a2fdfaa067874a77b2832faf865875827957bb7a137446f5e228e" }, "downloads": -1, "filename": "goslate-1.1.0-py3.3.egg", "has_sig": false, "md5_digest": "cbae110a318b7bdba2b1877433d3334a", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 14582, "upload_time": "2013-05-26T12:15:35", "url": "https://files.pythonhosted.org/packages/66/68/f76f7960e4a58b6957fd12f04892ba7510bd3ac0bd57657b9720ddb84b02/goslate-1.1.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "a5f80cf664919bcf70044c48488d26b1", "sha256": "8805e318e4659acb325706246fe8b0c31f8b9ba266f057d039afde2d39065f3e" }, "downloads": -1, "filename": "goslate-1.1.0.tar.gz", "has_sig": false, "md5_digest": "a5f80cf664919bcf70044c48488d26b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8885, "upload_time": "2013-05-26T12:13:09", "url": "https://files.pythonhosted.org/packages/f8/b5/1c0a87d43b0f42b926156b4cbe2dfd7f52ce4df7351b8db70f9204a84cab/goslate-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "acab67344c55d8fefbe51117037e3365", "sha256": "6db92906cdc5f0005d1a1cebaae70cd40d50c8ded7320954f2f924fb469580d5" }, "downloads": -1, "filename": "goslate-1.1.1-py2.7.egg", "has_sig": false, "md5_digest": "acab67344c55d8fefbe51117037e3365", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14309, "upload_time": "2013-05-27T16:02:47", "url": "https://files.pythonhosted.org/packages/62/50/bb07f0b1bf274b417d4e921917b02f8be556d5f1f4dc9110ff989b1147a7/goslate-1.1.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "2a5b18f8ede73fb286646fbbeea45758", "sha256": "6e9fee809e6783b3bb4d42403a6aff172c3d4373531618c4ba40205dc8868180" }, "downloads": -1, "filename": "goslate-1.1.1-py3.3.egg", "has_sig": false, "md5_digest": "2a5b18f8ede73fb286646fbbeea45758", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 14697, "upload_time": "2013-05-27T16:03:30", "url": "https://files.pythonhosted.org/packages/fb/31/e70bc58a81b4238d77b96de8cdb5e731b260ee0a8d4c7d0648c96b0013e3/goslate-1.1.1-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "cd4cb0d76fc92b280100085ade32c82f", "sha256": "a6b187215b7f15f4c69e8005c6492ed57ab013c67d0451b24eb6c05bc830289f" }, "downloads": -1, "filename": "goslate-1.1.1.tar.gz", "has_sig": false, "md5_digest": "cd4cb0d76fc92b280100085ade32c82f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8954, "upload_time": "2013-05-27T16:02:51", "url": "https://files.pythonhosted.org/packages/67/43/fd4978dc4f34f02cfd5a30e181244b1dc8b3b3bd056e5b57989120923ed9/goslate-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "7cb4b2d18523117c87faccbe57de78ec", "sha256": "70bb74699b6b93936fc1a0ff078da471659af7441b7da98fdbbce3c9cff5c06b" }, "downloads": -1, "filename": "goslate-1.1.2-py2.7.egg", "has_sig": false, "md5_digest": "7cb4b2d18523117c87faccbe57de78ec", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14380, "upload_time": "2013-08-03T01:58:56", "url": "https://files.pythonhosted.org/packages/9c/79/65ff496ea9bb1bcefb6d0e245fafe1e2dcd379e257b85f67be9aad777401/goslate-1.1.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "a6f1c851e2554efb1d6cfcfd78ab79d9", "sha256": "49b5c867ab63e744885b0e6ba7f91aa0f70e1337c581dd217267a5ee2bec5c6e" }, "downloads": -1, "filename": "goslate-1.1.2-py3.3.egg", "has_sig": false, "md5_digest": "a6f1c851e2554efb1d6cfcfd78ab79d9", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 14786, "upload_time": "2013-08-03T02:10:34", "url": "https://files.pythonhosted.org/packages/d6/6c/43eaae30c5fb5f069212a94c29c8c2718074545fbe282ce5e34beb863f5e/goslate-1.1.2-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "2890642cddab7ec13d44bc423712961e", "sha256": "18439ccf42b37616c05a022e2566bbedb1c2f6037628eba16590ab476e11c257" }, "downloads": -1, "filename": "goslate-1.1.2.tar.gz", "has_sig": false, "md5_digest": "2890642cddab7ec13d44bc423712961e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9034, "upload_time": "2013-08-03T01:58:58", "url": "https://files.pythonhosted.org/packages/c0/24/20170bbd2de326a9ab4a98d52d312023e80747d419fc7dffdd770cddaa51/goslate-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "fd1e04c7f0d319af823a1086804b4391", "sha256": "5fca71565c0c7e694a921cf914e59fa89935b1ece947aaa8fc33eb346b2e230f" }, "downloads": -1, "filename": "goslate-1.1.3-py2.7.egg", "has_sig": false, "md5_digest": "fd1e04c7f0d319af823a1086804b4391", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14385, "upload_time": "2013-08-03T01:57:43", "url": "https://files.pythonhosted.org/packages/99/a8/d2fbc07f514b1b4d72ec80e25ac5b6e4b158245ec5c12087194134ecab11/goslate-1.1.3-py2.7.egg" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "da36f4987bb595677fb08f03970a4e0b", "sha256": "81c00939913a5edbf553ddc50f39bdf49836d7bd20d1cd9e0529fc098237fd23" }, "downloads": -1, "filename": "goslate-1.2.0-py2.7.egg", "has_sig": false, "md5_digest": "da36f4987bb595677fb08f03970a4e0b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 14381, "upload_time": "2014-04-04T15:42:19", "url": "https://files.pythonhosted.org/packages/4c/10/3fd6cd42180e5511d433e58567c8d8a1a45b809a5d5dfa7d1f78d5a7c943/goslate-1.2.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "46491a5fcbe42ff603f8df8e280a8163", "sha256": "0b85cae65721dd78e57bde533c9a42f3e1bf40cd3d1e0b99beddc92a581813a8" }, "downloads": -1, "filename": "goslate-1.2.0-py3.3.egg", "has_sig": false, "md5_digest": "46491a5fcbe42ff603f8df8e280a8163", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 14780, "upload_time": "2014-04-04T16:25:43", "url": "https://files.pythonhosted.org/packages/37/e1/e4e40eb27fe102fedc8069626314e49c7babe38bbc3f0553f00a1974b919/goslate-1.2.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "1f1d32d4034efc10f1e47171bd5bafda", "sha256": "ce288929f8cec50a5637de61dc67a17a6d89c8d52a0597b56a977a4d86e269a4" }, "downloads": -1, "filename": "goslate-1.2.0.tar.gz", "has_sig": false, "md5_digest": "1f1d32d4034efc10f1e47171bd5bafda", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9192, "upload_time": "2014-04-04T15:42:23", "url": "https://files.pythonhosted.org/packages/4a/ae/79537759b20a144f5f4a50d4d21c71ec0820f6bfd3f1a63c89e2f35639e3/goslate-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "3f41fb02567631357ecef4696aa44211", "sha256": "019062cb0efbf56073f69c430282fff9ab9cb135b74200fa0303aff6549da56e" }, "downloads": -1, "filename": "goslate-1.3.0-py2.7.egg", "has_sig": false, "md5_digest": "3f41fb02567631357ecef4696aa44211", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16406, "upload_time": "2014-05-20T14:11:44", "url": "https://files.pythonhosted.org/packages/6f/b0/35b29d2c85ac0722fd7b4f222cdefab4f2f7491400c100afa9773e01d2b4/goslate-1.3.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "8db4885b56b52f3cbc5d147b5f72d4dd", "sha256": "6f895aa05c43530c440613a2c9de121bc0aa425697da0714a936a66baa9b30a1" }, "downloads": -1, "filename": "goslate-1.3.0-py3.3.egg", "has_sig": false, "md5_digest": "8db4885b56b52f3cbc5d147b5f72d4dd", "packagetype": "bdist_egg", "python_version": "3.3", "requires_python": null, "size": 16858, "upload_time": "2014-05-20T14:13:50", "url": "https://files.pythonhosted.org/packages/f1/41/6951a37b17d34963fedef1e07ad6ac58b8d5134c0684c73ac91b74b3602f/goslate-1.3.0-py3.3.egg" }, { "comment_text": "", "digests": { "md5": "8dc7bc926f09dc57cf4e49d947b8b400", "sha256": "9e544848a808e218656aa24257b511a6846f230929c73cd05db3c2174d947a03" }, "downloads": -1, "filename": "goslate-1.3.0.tar.gz", "has_sig": false, "md5_digest": "8dc7bc926f09dc57cf4e49d947b8b400", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10251, "upload_time": "2014-05-20T14:11:48", "url": "https://files.pythonhosted.org/packages/e5/9a/59e2e8c77b56d5ee46caade1a8717251bd3ad0e7aba0cbf72d232b004b24/goslate-1.3.0.tar.gz" } ], "1.3.1": [], "1.3.2": [ { "comment_text": "", "digests": { "md5": "26b2320513122518514d761d97be1af4", "sha256": "6272a4a5feb5dfeeba01d112f25262a89f526b89339b8a74a7c6d1f0b8aff2f7" }, "downloads": -1, "filename": "goslate-1.3.2-py2.7.egg", "has_sig": false, "md5_digest": "26b2320513122518514d761d97be1af4", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16490, "upload_time": "2015-01-30T07:39:52", "url": "https://files.pythonhosted.org/packages/09/a8/e7f9a18bbcf84e02b17261ceee75641ee7e0a53fff417b065372805f4ae7/goslate-1.3.2-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "361d1cca048c70f34323db214afb917d", "sha256": "e96c144ae57b9e8acb5996a0ad466ae60bcd5371cbe7850a2d3b8896a7ecb9f6" }, "downloads": -1, "filename": "goslate-1.3.2-py3.4.egg", "has_sig": false, "md5_digest": "361d1cca048c70f34323db214afb917d", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 16756, "upload_time": "2015-01-30T07:41:14", "url": "https://files.pythonhosted.org/packages/7f/7a/65b43e6b90291a7b1ab42d2600c6df4d5a21dcb5fa604df4293103a7ae4d/goslate-1.3.2-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "3a375aa11fe5c2ed7477cfec76083002", "sha256": "df98a2660b2ce99581b3508050b29e2acad91c9164aec5dc2b093af58ad0516f" }, "downloads": -1, "filename": "goslate-1.3.2.tar.gz", "has_sig": false, "md5_digest": "3a375aa11fe5c2ed7477cfec76083002", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10399, "upload_time": "2015-01-30T07:39:57", "url": "https://files.pythonhosted.org/packages/3a/60/4b3bf02c7114ca43a006a0ecafaac5e48e165e396f7e0107afa29ef95dfb/goslate-1.3.2.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "4adc22b0e20ce29da7c79d6a71c50386", "sha256": "7fce561b05f216c8e83ccd672735336b063dccf69e8ffa1d0be0201841d27520" }, "downloads": -1, "filename": "goslate-1.4.0-py2.7.egg", "has_sig": false, "md5_digest": "4adc22b0e20ce29da7c79d6a71c50386", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 16932, "upload_time": "2015-04-09T08:41:14", "url": "https://files.pythonhosted.org/packages/30/c8/8d02c984b9850b5289594181e399b2bc16aaee9f5bb462a689040d3781f4/goslate-1.4.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "cd4ec54f4ab839527d23fd55353a9f4d", "sha256": "81dea42bc29beab07f63f65d0008d96847e9a3412045800d9d085372a77fae43" }, "downloads": -1, "filename": "goslate-1.4.0-py3.4.egg", "has_sig": false, "md5_digest": "cd4ec54f4ab839527d23fd55353a9f4d", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 17193, "upload_time": "2015-04-09T08:41:42", "url": "https://files.pythonhosted.org/packages/dd/ae/b49a8c32d1bbbc8767f5322c34180d5908367850eadbbeeafff167437cfd/goslate-1.4.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "c018e015dd305b60c7ebb209825313d8", "sha256": "21b75361db552414548ae2d8776ec052fb61c40b5dba87c76021c2f240603ae9" }, "downloads": -1, "filename": "goslate-1.4.0.tar.gz", "has_sig": false, "md5_digest": "c018e015dd305b60c7ebb209825313d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10596, "upload_time": "2015-04-09T08:41:19", "url": "https://files.pythonhosted.org/packages/7c/c2/fcbb69418d6169e982beae2456444dfdd177adf0e74140370ed0f537c70c/goslate-1.4.0.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "cbb2e87f043ff1b88fa00ffda34b2513", "sha256": "43a4175811a4c9ee5f1dd8119931d76c1fe4aadc62e6ecfa3de04048fb4240b6" }, "downloads": -1, "filename": "goslate-1.5.0-py2.7.egg", "has_sig": false, "md5_digest": "cbb2e87f043ff1b88fa00ffda34b2513", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 20479, "upload_time": "2015-08-17T09:07:59", "url": "https://files.pythonhosted.org/packages/59/1b/822977520babe84d6d86694da894b5aad53e77ea8130c1281cd628ef854e/goslate-1.5.0-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "3a2558832583a3708f6195ed2b2e1d2f", "sha256": "5e7f8317d8a779cbeccfec4e9590c6bc1053dc1a3b1c4f49b3aa7ff0526e51c5" }, "downloads": -1, "filename": "goslate-1.5.0-py3.4.egg", "has_sig": false, "md5_digest": "3a2558832583a3708f6195ed2b2e1d2f", "packagetype": "bdist_egg", "python_version": "3.4", "requires_python": null, "size": 20742, "upload_time": "2015-08-17T09:08:38", "url": "https://files.pythonhosted.org/packages/d6/52/3d1167a3345572f24e4f12efebbc6c1fcca4c297e6b2d0d64c89e2133ca5/goslate-1.5.0-py3.4.egg" }, { "comment_text": "", "digests": { "md5": "20b87364330aa35086d16c33f0fc89a5", "sha256": "6df2efb343e98524ccaa6952b185de75437358699512aa5ab7ee660a679b86bd" }, "downloads": -1, "filename": "goslate-1.5.0.tar.gz", "has_sig": false, "md5_digest": "20b87364330aa35086d16c33f0fc89a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17107, "upload_time": "2015-08-17T09:08:17", "url": "https://files.pythonhosted.org/packages/8b/c8/caea2cc468cc1f847dfaed91955e0a56d669713a4bd312490f7c687608c1/goslate-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "ec12b624aa78521cae4a6e4b22b0700b", "sha256": "c9b7855f0984ae5012b8b8f06511e81ba197ec7b634756413b2f503554c535aa" }, "downloads": -1, "filename": "goslate-1.5.1-py2.7.egg", "has_sig": false, "md5_digest": "ec12b624aa78521cae4a6e4b22b0700b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 20654, "upload_time": "2016-01-04T16:39:24", "url": "https://files.pythonhosted.org/packages/38/ac/3b0c99da3ff7ea144e4660b0310cf9cdeddb126d29285330f41382666f06/goslate-1.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bd18f196434712a9fe5e6ce4f34a608a", "sha256": "dee7cf08fd7d744fbb3477d28ea6a98a11b363c138d7577b4b097f517581f864" }, "downloads": -1, "filename": "goslate-1.5.1.tar.gz", "has_sig": false, "md5_digest": "bd18f196434712a9fe5e6ce4f34a608a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17460, "upload_time": "2016-01-04T16:39:41", "url": "https://files.pythonhosted.org/packages/39/0b/50af938a1c3d4f4c595b6a22d37af11ebe666246b05a1a97573e8c8944e5/goslate-1.5.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "ec12b624aa78521cae4a6e4b22b0700b", "sha256": "c9b7855f0984ae5012b8b8f06511e81ba197ec7b634756413b2f503554c535aa" }, "downloads": -1, "filename": "goslate-1.5.1-py2.7.egg", "has_sig": false, "md5_digest": "ec12b624aa78521cae4a6e4b22b0700b", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 20654, "upload_time": "2016-01-04T16:39:24", "url": "https://files.pythonhosted.org/packages/38/ac/3b0c99da3ff7ea144e4660b0310cf9cdeddb126d29285330f41382666f06/goslate-1.5.1-py2.7.egg" }, { "comment_text": "", "digests": { "md5": "bd18f196434712a9fe5e6ce4f34a608a", "sha256": "dee7cf08fd7d744fbb3477d28ea6a98a11b363c138d7577b4b097f517581f864" }, "downloads": -1, "filename": "goslate-1.5.1.tar.gz", "has_sig": false, "md5_digest": "bd18f196434712a9fe5e6ce4f34a608a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17460, "upload_time": "2016-01-04T16:39:41", "url": "https://files.pythonhosted.org/packages/39/0b/50af938a1c3d4f4c595b6a22d37af11ebe666246b05a1a97573e8c8944e5/goslate-1.5.1.tar.gz" } ] }