{ "info": { "author": "thenoviceoof", "author_email": "thenoviceoof@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "pyli\n====\n\nBetter scripting with python\n\nHaven't you ever missed writing perl one liners? Or maybe you're more\nfamiliar with python than all the options of ``find``, but like the text\ninteraction paradigm? ``pyli`` aims to make it easier to use python and\nall it's batteries in conjunction with your favorite hangout: the shell.\n\nInstall\n-------\n\n``pyli`` is available via ``pip``:\n\n::\n\n pip install pyli\n\nOr directly via ``git`` and ``setup.py``:\n\n::\n\n git clone https://github.com/thenoviceoof/pyli.git\n\n cd pyli\n\n sudo python setup.py\n\nExamples\n--------\n\nLet's do some warmups:\n\n::\n\n pyli \"2+2\" # bc\n\n cat file.txt | pyli \"line if 'string' in line else None\" # grep\n\n cat file.txt | pyli \"sum(len(l) + 1 for l in lines)\" # wc -m\n\nAnd now something more complicated:\n\n::\n\n log | pyli \"str(time.time()) + ' ' + line\" # time stamping a line\n\n cat file.txt | pyli \"set(w for s in nltk.sent_tokenize(contents) for w in nltk.word_tokenize)\" # bag of words a file\n\n cat file.json | pyli \"pickle.dumps(json.loads(conts))\" >file.pickle\n\n cat space_sep.dat | pyli \"json.dumps(dict(parts))\" >file.json\n\nMaybe it makes sense to separate commands:\n\n::\n\n cat index.html | pyli \"for l in [a.get('href') for a in bs4.BeautifulSoup(cs).find_all('a')]: print l\" | pyli --text='something' \"r = requests.get(li); li if text in r.text else None\"\n\n cat index.html | pyli \"hashlib.sha1(cs).hexdigest()\" | pyli \"encryptedfile.EncryptedFile(stdout, getpass.getpass()).write(cs)\"\n\nPerhaps you want to keep it a one liner, but Python is too opinionated\nto let you do that:\n\n::\n\n pyli -f \"`ls -a`\" \"for l in f.split('\\n'):\" \" if '.git' == l: print 'git'\"\n\npyli\n----\n\nFeatures:\n\n- Automatically import referred packages\n- Populate special CLI oriented variables\n\n * ``line`` (``li``, ``l``) - Gives you access to each line\n * ``lines`` (``lis``, ``ls``) - Access to the ``line`` generator\n * ``contents`` (``cont``, ``cs``) - Gives you access to all of stdin\n in one string\n * ``part``, (``p``) - Gives you access to the different fields of a\n space-separated line\n * ``parts``, (``ps``) - Access to the ``part`` generator\n * ``stdin``, ``stdout``, ``stderr`` - A shortcut to ``sys.std*`` streams\n * Accept arbitrary GNU style arguments (-c, --blah), and make them available\n * Print last statement; if an assignment, print the value assigned\n to variable(s)\n * If we are using ``line``/``part``, then print the last statement\n for each line\n\nDo note that you should only access one of these special variables at\na time: no work has been put into combining these into something that\nmakes sense, so if you want multiple variables, you'll have to do the\nlegwork yourself.\n\nTODO\n----\n\n- Move the engine to the nice-looking ``ast`` library\n- Make sure it works in more snakes than just 2.7.3 / 2.6.9\n\nAlso see the `issue tracker\n`_\n\nRelated Projects\n----------------\nIn alphabetical order:\n\n- `funcpy `_\n- `Oneliner `_\n- `Pyle `_\n- `pyp `_\n\nLICENSE\n-------\n\nCopyright (c) <2014> \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/thenoviceoof/pyli", "keywords": null, "license": "LICENSE", "maintainer": null, "maintainer_email": null, "name": "pyli", "package_url": "https://pypi.org/project/pyli/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/pyli/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/thenoviceoof/pyli" }, "release_url": "https://pypi.org/project/pyli/1.4.1/", "requires_dist": null, "requires_python": null, "summary": "Better python CLI integration", "version": "1.4.1" }, "last_serial": 1072843, "releases": { "0.1.0": [ { "comment_text": "", "digests": { "md5": "a2c603ae6e5027a6a85e332907adb80f", "sha256": "c4c2d4b5c3bbcf440aae0797d47ce59f9d81bd70886ba892e4463ddc0e25a4f8" }, "downloads": -1, "filename": "pyli-0.1.0.tar.gz", "has_sig": false, "md5_digest": "a2c603ae6e5027a6a85e332907adb80f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5338, "upload_time": "2013-03-11T02:37:38", "url": "https://files.pythonhosted.org/packages/04/b3/6f38ac7d0b010f899944a6642199f37609a34e44f629d864bdbd5ad14d1f/pyli-0.1.0.tar.gz" } ], "0.1.1": [ { "comment_text": "", "digests": { "md5": "06917c8969f97094705f269293562b4d", "sha256": "77c93c9b9818259798cdbb7770d444a15e04de4532189bdb45ea50c01cee07e6" }, "downloads": -1, "filename": "pyli-0.1.1.tar.gz", "has_sig": false, "md5_digest": "06917c8969f97094705f269293562b4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5361, "upload_time": "2013-03-11T02:42:12", "url": "https://files.pythonhosted.org/packages/6e/f7/6d9a5843c5773a15dff7354529b9ac9efef350bde7326ad9721fcb6dfabd/pyli-0.1.1.tar.gz" } ], "0.1.2": [ { "comment_text": "", "digests": { "md5": "6335b823d7e818d3ecd2711384758013", "sha256": "7a21afe90140f23363936183e26158c05381ba8191450f2a281ac691af11f15c" }, "downloads": -1, "filename": "pyli-0.1.2.tar.gz", "has_sig": false, "md5_digest": "6335b823d7e818d3ecd2711384758013", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5172, "upload_time": "2013-03-11T02:50:23", "url": "https://files.pythonhosted.org/packages/a4/a8/ee849316c0633bda8f321d7a1cb197e9e4aec175f64962f6c346b4165b76/pyli-0.1.2.tar.gz" } ], "0.1.3": [ { "comment_text": "", "digests": { "md5": "fa792ab712084b5d6d3187a316a742a4", "sha256": "95808faa8866b34b8e1c0a55ffd2e2b6c01b1937e72e4ff6fc5e7cb24701f0ac" }, "downloads": -1, "filename": "pyli-0.1.3.tar.gz", "has_sig": false, "md5_digest": "fa792ab712084b5d6d3187a316a742a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5223, "upload_time": "2013-03-13T04:35:12", "url": "https://files.pythonhosted.org/packages/ae/d2/a3370675e030634810774a71c3f6edfbb05e4305b441e2cc282b1bf1d8da/pyli-0.1.3.tar.gz" } ], "0.1.4": [ { "comment_text": "", "digests": { "md5": "53ec101290464dc9a5cbb59295ca4689", "sha256": "c1c872f8a283eef819353d5e06d610f1256b2e5f887e81dfb58d1fe481d55b1e" }, "downloads": -1, "filename": "pyli-0.1.4.tar.gz", "has_sig": false, "md5_digest": "53ec101290464dc9a5cbb59295ca4689", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5246, "upload_time": "2013-03-13T04:53:26", "url": "https://files.pythonhosted.org/packages/8e/1b/8ccb0ec2c76a6192a074eef9e4a5c5646b10aa70558b05b9347b32800ffa/pyli-0.1.4.tar.gz" } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "d37bd92fffdb7089d5bfef8e31dacad5", "sha256": "9469071fd2238f69a3f6da7d1c8ddd70b4e48484950e70c0eeea3f3a884686a1" }, "downloads": -1, "filename": "pyli-0.2.0.tar.gz", "has_sig": false, "md5_digest": "d37bd92fffdb7089d5bfef8e31dacad5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5629, "upload_time": "2013-03-14T05:24:08", "url": "https://files.pythonhosted.org/packages/65/c2/c49987f3f997a8bf42145b4a68b1b507ae2539ce605469344ff205b173ba/pyli-0.2.0.tar.gz" } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "ef88cc93c48d429d05f4daf1a83e7054", "sha256": "5a66f4eb1302392a9297754a2631eb8631d80194730a54887a1dfe3d43d503b6" }, "downloads": -1, "filename": "pyli-0.2.1.tar.gz", "has_sig": false, "md5_digest": "ef88cc93c48d429d05f4daf1a83e7054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5889, "upload_time": "2013-03-25T01:59:00", "url": "https://files.pythonhosted.org/packages/e5/74/523b5ad565de2c6225fd6221bf38bb671d4a7ab494879ad93aad80276132/pyli-0.2.1.tar.gz" } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "288fb7ff4570c25a01c22e6a06e670e0", "sha256": "a2aea6c94eb773941f01177cdd624fced72a93461132ebd08a6e18179ef4a50c" }, "downloads": -1, "filename": "pyli-0.3.0.tar.gz", "has_sig": false, "md5_digest": "288fb7ff4570c25a01c22e6a06e670e0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6283, "upload_time": "2013-04-21T21:08:39", "url": "https://files.pythonhosted.org/packages/18/e3/393e23f83f5b3dc4630c1833727a504d739420f6b04d46dfc389d60f53bd/pyli-0.3.0.tar.gz" } ], "0.5.0": [ { "comment_text": "", "digests": { "md5": "f970d09a8268dd9e06014507c3371229", "sha256": "614ea5b2385d8c01a55ad4a6c5ace8b28dc77ac1542325d4e58e24898acdf1c7" }, "downloads": -1, "filename": "pyli-0.5.0.tar.gz", "has_sig": false, "md5_digest": "f970d09a8268dd9e06014507c3371229", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7937, "upload_time": "2013-06-11T04:17:00", "url": "https://files.pythonhosted.org/packages/39/59/d5528faed9ec7e68cf32d54229e4ce75799ad101bdb83575ddcdc1f7b7e0/pyli-0.5.0.tar.gz" } ], "0.5.1": [ { "comment_text": "", "digests": { "md5": "c7612313a1b6961073a6c7dd50ce3a66", "sha256": "c5a769e4301c3264f5cf5dcd53212fbd318b03f2cbe38ee44601b79351c5c655" }, "downloads": -1, "filename": "pyli-0.5.1.tar.gz", "has_sig": false, "md5_digest": "c7612313a1b6961073a6c7dd50ce3a66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8072, "upload_time": "2013-06-11T12:42:22", "url": "https://files.pythonhosted.org/packages/15/a7/792fbdda5d6ae0c1181bb29ca79d847d38f6a70b55e0dccf2499b4cc4f23/pyli-0.5.1.tar.gz" } ], "0.5.3": [ { "comment_text": "", "digests": { "md5": "558fd1ea1a5f4bbf8ee30fef1189d7f5", "sha256": "040e66fa4da007de234611fa88ac4706eacbf69c73c8b5bc9dad9c0ad5339bbe" }, "downloads": -1, "filename": "pyli-0.5.3.tar.gz", "has_sig": false, "md5_digest": "558fd1ea1a5f4bbf8ee30fef1189d7f5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8149, "upload_time": "2013-06-13T03:25:00", "url": "https://files.pythonhosted.org/packages/fe/79/c549d7234549eece5c8ec25d1994da7888ce9f20792eb33ee2054dee6e60/pyli-0.5.3.tar.gz" } ], "0.5.5": [ { "comment_text": "", "digests": { "md5": "9cc92a1d542cdae85f29a34703fcacc6", "sha256": "242c9a86c105603b308632ee72fc4cf9d7aa34db58d9b2f81eb274fa957975a6" }, "downloads": -1, "filename": "pyli-0.5.5.tar.gz", "has_sig": false, "md5_digest": "9cc92a1d542cdae85f29a34703fcacc6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8525, "upload_time": "2013-06-15T18:58:54", "url": "https://files.pythonhosted.org/packages/ea/4e/3fadb39ca98c2c48a5140a7f54cb3a330b2794f1d8d490605a4c1079d42f/pyli-0.5.5.tar.gz" } ], "0.6.0": [ { "comment_text": "", "digests": { "md5": "98d4cb71bd537c12da55e43fed119a44", "sha256": "58cb8c6401f5f765bd9de90601f8d3a43b08db532e44ad54bf11c554e5c98de5" }, "downloads": -1, "filename": "pyli-0.6.0.tar.gz", "has_sig": false, "md5_digest": "98d4cb71bd537c12da55e43fed119a44", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9632, "upload_time": "2013-06-22T19:50:05", "url": "https://files.pythonhosted.org/packages/5b/54/c27bbde42258d8425bb1810109e29fbef6169e796e612b316b18499b4506/pyli-0.6.0.tar.gz" } ], "0.7.0": [ { "comment_text": "", "digests": { "md5": "0609caed60f49b5051d54c1e8fcc76e8", "sha256": "f2ef11e6a8bacf45bccad353876bd4164d1e07953e74f7cf4776203b4af0c230" }, "downloads": -1, "filename": "pyli-0.7.0.tar.gz", "has_sig": false, "md5_digest": "0609caed60f49b5051d54c1e8fcc76e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10314, "upload_time": "2013-06-22T20:55:35", "url": "https://files.pythonhosted.org/packages/46/9a/43bfb220b09a32f1b3c4661589e5e1a9dabf7c03c4d7a6c60b4907e7d09f/pyli-0.7.0.tar.gz" } ], "0.7.1": [ { "comment_text": "", "digests": { "md5": "8dc1071071206ed4ec4e2cfd249c2ea0", "sha256": "5d11c290f3df73045fdfb6049e12812fa8be7e553faeae58b917e29a0af513f1" }, "downloads": -1, "filename": "pyli-0.7.1.tar.gz", "has_sig": false, "md5_digest": "8dc1071071206ed4ec4e2cfd249c2ea0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10340, "upload_time": "2013-06-22T21:00:59", "url": "https://files.pythonhosted.org/packages/26/9e/542ebe4fe8183e7624339503f4d70878f780fb97f66827dc5596b1fc727d/pyli-0.7.1.tar.gz" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "89105b92a80e8cfc5caaf6c6b2027c45", "sha256": "91b0cb52f9c533846f954c4658caed9d913cc76438f9422958615fcc6b6a8874" }, "downloads": -1, "filename": "pyli-1.0.0.tar.gz", "has_sig": false, "md5_digest": "89105b92a80e8cfc5caaf6c6b2027c45", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10008, "upload_time": "2013-06-22T22:11:06", "url": "https://files.pythonhosted.org/packages/69/8d/fa07ccb3de23596ef7f20a63f4db5a90c2624ed84dad2efb3d94177147ba/pyli-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "f7272e10ef5f1b3832c488231c022826", "sha256": "07cf1213df69ea615f9f9d97855e73fd15b354c1230239c269c17345c2b48225" }, "downloads": -1, "filename": "pyli-1.0.1.tar.gz", "has_sig": false, "md5_digest": "f7272e10ef5f1b3832c488231c022826", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10268, "upload_time": "2013-07-14T03:41:50", "url": "https://files.pythonhosted.org/packages/b0/54/71baf5e4733fc291f15fbbe8456f98931622e5bdf129934f3e3e92b3c368/pyli-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "91ff1f94489e8efc4c71eb2304709322", "sha256": "04eeeb9aeccb421beef3a36347297ef17f175e69d969beb89884303c1451a97c" }, "downloads": -1, "filename": "pyli-1.1.0.tar.gz", "has_sig": false, "md5_digest": "91ff1f94489e8efc4c71eb2304709322", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10359, "upload_time": "2013-07-25T02:19:39", "url": "https://files.pythonhosted.org/packages/c6/af/8a7e7a6d74c7363801faeae23ba7a7c6c9e7e9408414f84f4763f9e45d1b/pyli-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "18ae2a1178cac777fcdbed9dc4be4ec7", "sha256": "ca28345c98757135afa2e3770962a1440135fb2161197a69fd2362d177874bd1" }, "downloads": -1, "filename": "pyli-1.1.1.tar.gz", "has_sig": false, "md5_digest": "18ae2a1178cac777fcdbed9dc4be4ec7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10386, "upload_time": "2013-12-08T19:03:08", "url": "https://files.pythonhosted.org/packages/61/9c/a5d275d5a1d38c681a3a40214f9d3ced138a06b9d83107115eafe5039c7b/pyli-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "8421c14fbc7d81cd3f71fd240863337b", "sha256": "eabfc30fc81d81644ac784773e117ad71239bf334fe4e9f27fca344c883bd2eb" }, "downloads": -1, "filename": "pyli-1.1.2.tar.gz", "has_sig": false, "md5_digest": "8421c14fbc7d81cd3f71fd240863337b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10519, "upload_time": "2014-01-05T03:41:22", "url": "https://files.pythonhosted.org/packages/2e/5f/df356a07ec65c5a3682dab3723af656d0fbd2eb37840ebcf2919ed27bdc0/pyli-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "0a3be8f7c819bf95c9108bf6863f4dea", "sha256": "183e44aecf7d99d00459fb853d0e975726a5f4ea25c9e2919d0d9ea48c9be848" }, "downloads": -1, "filename": "pyli-1.1.3.tar.gz", "has_sig": false, "md5_digest": "0a3be8f7c819bf95c9108bf6863f4dea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10554, "upload_time": "2014-01-05T03:49:06", "url": "https://files.pythonhosted.org/packages/c2/fc/9f584788cb1f574a1edfb3e8a23275d14a577e48974f9d4292c7d2039970/pyli-1.1.3.tar.gz" } ], "1.1.4": [ { "comment_text": "", "digests": { "md5": "34c567ebeeb01d7d80ceac7df3873c25", "sha256": "fe9013b66cbc381062a5530bf632e5ded630ca4c334d9a5fe499ee3e3a1767d0" }, "downloads": -1, "filename": "pyli-1.1.4.tar.gz", "has_sig": false, "md5_digest": "34c567ebeeb01d7d80ceac7df3873c25", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10627, "upload_time": "2014-01-05T03:59:45", "url": "https://files.pythonhosted.org/packages/9b/57/1dd0a7ac884ee3e1d319fdccb4b2acd91ffd0adb0d9985ec5d25a82e7317/pyli-1.1.4.tar.gz" } ], "1.1.5": [ { "comment_text": "", "digests": { "md5": "a80a5ea02babb9f4e674522a3b2f1a22", "sha256": "457d49684b5226fa74c1db43bd77474b4cbd7083af3dfa2a6152aeae255e54f9" }, "downloads": -1, "filename": "pyli-1.1.5.tar.gz", "has_sig": false, "md5_digest": "a80a5ea02babb9f4e674522a3b2f1a22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10788, "upload_time": "2014-01-05T04:08:19", "url": "https://files.pythonhosted.org/packages/91/ee/aa7d51b83a91819e310ef9ced34e8aacd3eb9a1edb0b2db24fa69bfa1c6f/pyli-1.1.5.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "1d20cebc455aac0b9a4ee9a7a8391eb8", "sha256": "5cb76b163f7e29933a215099645fd1a703b3c86dd8e7a18ecaceee089b3fcb94" }, "downloads": -1, "filename": "pyli-1.2.0.tar.gz", "has_sig": false, "md5_digest": "1d20cebc455aac0b9a4ee9a7a8391eb8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10814, "upload_time": "2014-01-05T04:34:54", "url": "https://files.pythonhosted.org/packages/26/b9/f8faf5e5ce3db06cb64df72c53c3370b5fc66521acad1fb4d129bca48416/pyli-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "b0339e57fffb439c4d5e43c52be27b6f", "sha256": "435ac7cd318677e0efd4737ac8c3de2fb3f796d753b6277fabe369a9cca5d727" }, "downloads": -1, "filename": "pyli-1.3.0.tar.gz", "has_sig": false, "md5_digest": "b0339e57fffb439c4d5e43c52be27b6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11463, "upload_time": "2014-01-05T05:16:57", "url": "https://files.pythonhosted.org/packages/ee/0c/68f55a4d13af351b6e09ecd281923762678deaacd8b36bc5e0ceee86cabc/pyli-1.3.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "090345a91af25a8ad77d17a1f003adfe", "sha256": "3c1497555448774aff9a7471c112d97aca9d02da3ceabc69dceec3506352a667" }, "downloads": -1, "filename": "pyli-1.4.1.tar.gz", "has_sig": false, "md5_digest": "090345a91af25a8ad77d17a1f003adfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13148, "upload_time": "2014-04-26T21:54:13", "url": "https://files.pythonhosted.org/packages/0a/1d/77a1e09cca513cca6cc8b6f7b896720db0fa44d7422e1cc886fecac402c9/pyli-1.4.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "090345a91af25a8ad77d17a1f003adfe", "sha256": "3c1497555448774aff9a7471c112d97aca9d02da3ceabc69dceec3506352a667" }, "downloads": -1, "filename": "pyli-1.4.1.tar.gz", "has_sig": false, "md5_digest": "090345a91af25a8ad77d17a1f003adfe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13148, "upload_time": "2014-04-26T21:54:13", "url": "https://files.pythonhosted.org/packages/0a/1d/77a1e09cca513cca6cc8b6f7b896720db0fa44d7422e1cc886fecac402c9/pyli-1.4.1.tar.gz" } ] }