{ "info": { "author": "thekindlyone", "author_email": "dodo.dodder@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Topic :: Utilities" ], "description": "# nwanime-dl Anime Downloader \n## Downloads anime from http://www.nwanime.com/ \n[![Supported Python versions](https://pypip.in/py_versions/nwanime_dl/badge.svg)](https://pypi.python.org/pypi//)\n[![License](https://pypip.in/license/nwanime_dl/badge.svg)](https://pypi.python.org/pypi/nwanime_dl/)\n[![Development Status](https://pypip.in/status/nwanime_dl/badge.svg)](https://pypi.python.org/pypi/nwanime_dl/)\n\n###Note: Currently works only for linux and mac as it uses wget for the final download.\n\n###Edit: It works with windows too, provided the steps mentioned below under \"Windows Specific Instructions\" are followed.\n\n###Installation:\ngit clone this repo. then run \n```python setup.py install``` \nor \n```pip install nwanime-dl```\n\n###Windows Specific Instructions: \n1. You will need to add ```c:\\python27\\Scripts``` or equivalent location to your path variable. Learn how to do that [here](http://www.computerhope.com/issues/ch000549.htm).\nLook at the other entries for pointers on formatting.\n2. Download [Wget for windows](http://gnuwin32.sourceforge.net/packages/wget.htm) and rename the file to wget.exe(notice the lowercase 'w'). Place wget.exe in some directory and add that to the PATH variable as well.\n3. In the environment variables, open PATHEXT and add ```;.``` at the end. This means extensionless files will be considered executables.\n4. the setup drops a script called 'nwanime-dl' in the ```python27\\scripts``` directory. To be able to access and run this script from the command line, run the following commands \nin an elevated command prompt(command prompt in administrator mode)\n\n```\nassoc .=Python.File\nftype Python.File=c:\\Python27\\python.exe \"%1\" %*\n```\n5. restart the computer.\n\n###Dependencies:\n1. Requests library\n2. Beautifulsoup library\n3. wget\n4. lxml \nThese are automatically installed if you use pip.\n\n###Usage: \n\n```\nusage: nwanime-dl [-h] [-i ITERATIVE] [-d DIRECTORY] url\n\nDownloads anime from nwanime.com\n\npositional arguments:\n url url to download video from. In case of iterative\n starting url. \"continue\" to continue from last\n downloaded file in directory.\n\noptional arguments:\n -h, --help show this help message and exit\n -i ITERATIVE, --iterative ITERATIVE\n For range downloads. eg. nwanime-dl -i 10 will\n download iteratively the video in and the next 9\n videos(total 10)\n -d DIRECTORY, --directory DIRECTORY\n Explicitly specify output directory. Current directory\n by default.\n\n```\n###common patterns:\n \nDownload episode and 9 next episodes. \n\n```nwanime-dl -i 10 http://www.nwanime.com/.../video/eb...2/```\n\nDownload next episode after last downloaded episode in directory.(works only if nwanime-dl has downloaded to this directory before.) \n\n```nwanime-dl continue```\n\nContinue and keep going till 10 episodes \n\n```nwanime-dl -i 10 continue```\n\n\n\n\n###Example: \n```\n$ nwanime-dl -i 10 http://www.nwanime.com/nanatsu-no-taizai-episode-8/video/a791265c48f25acd0c33/\nNanatsu no Taizai Episode 8\nfetching mirrors\nmirrors found\ndownloadable mirror found\nattempting download from VidWoot\n--2015-01-14 09:08:56-- http://stream.vidcache.net/bd472ce9e372e6ece2a31f1b499231ad27b492e1.mp4?client_file_id=868256\nResolving stream.vidcache.net (stream.vidcache.net)... 162.211.92.135, 162.211.92.144, 162.211.92.132, ...\nConnecting to stream.vidcache.net (stream.vidcache.net)|162.211.92.135|:80... connected.\nHTTP request sent, awaiting response... 302 Moved Temporarily\nLocation: http://s17.vidcache.net/stream/bd472ce9e372e6ece2a31f1b499231ad27b492e1?client_file_id=868256&redirected_from=s23.vidcache.net [following]\n--2015-01-14 09:08:57-- http://s17.vidcache.net/stream/bd472ce9e372e6ece2a31f1b499231ad27b492e1?client_file_id=868256&redirected_from=s23.vidcache.net\nResolving s17.vidcache.net (s17.vidcache.net)... 199.87.232.131\nConnecting to s17.vidcache.net (s17.vidcache.net)|199.87.232.131|:80... connected.\nHTTP request sent, awaiting response... 200 OK\nLength: 57291492 (55M) [video/mp4]\nSaving to: \u2018Nanatsu no Taizai Episode 8.mp4\u2019\n\n99% [==========================================> ] 5,72,55,778 71.2KB/s in 13m 6s \n\n.......\n.......\n.......\n\n2015-01-14 16:57:08 (14.5 KB/s) - Connection closed at byte 29901248. Retrying.\n\n--2015-01-14 16:57:10-- (try: 3) http://s29.vidcache.net/stream/6145b72c88ffcfd8ed763b450fe9e6667c2b43db?client_file_id=903136&redirected_from=s23.vidcache.net\nConnecting to s29.vidcache.net (s29.vidcache.net)|162.211.92.141|:80... connected.\nHTTP request sent, awaiting response... 200 OK\nLength: unspecified [text/xml]\nSaving to: \u2018Nanatsu no Taizai Episode 13.mp4\u2019\n\n [ <=> ] 4,436 --.-K/s in 0s \n\n2015-01-14 16:57:18 (9.92 MB/s) - \u2018Nanatsu no Taizai Episode 13.mp4\u2019 saved [29901248]\n\n\n******************************\nNanatsu no Taizai Episode 8\tDone\nNanatsu no Taizai Episode 9\tDone\nNanatsu no Taizai Episode 10\tDone\nNanatsu no Taizai Episode 11\tDone\nNanatsu no Taizai Episode 12\tDone\nNanatsu no Taizai Episode 13\tDone\n******************************\n\n```\n\n\n### to do: \n1. setuptools compatibility [X]\n2. setuptools command line script [X]\n3. range downloader [X]\n4. reports on undownloadable episodes and undiscovered mirrors\n5. windows and python 3 support\n6. -D option for explicitly specifying output directory [X]\n7. Pick only SUbbed mirrors [X]\n8. Per directory continue feature [X] \nspecial thanks to [Derrick Kearney](https://github.com/diek) for helping me test it .\n\nPS:\n(Shameless plug)\nif you are using vlc to play these files and are missing a play next/prev file feature.. try [vlcwrapy-nix](https://github.com/thekindlyone/vlcwrapy-nix)", "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/thekindlyone/nwanime-dl", "keywords": null, "license": "GNU GPL v2", "maintainer": null, "maintainer_email": null, "name": "nwanime_dl", "package_url": "https://pypi.org/project/nwanime_dl/", "platform": "UNKNOWN", "project_url": "https://pypi.org/project/nwanime_dl/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/thekindlyone/nwanime-dl" }, "release_url": "https://pypi.org/project/nwanime_dl/1.9.1/", "requires_dist": null, "requires_python": null, "summary": "downloads anime from nwanime", "version": "1.9.1" }, "last_serial": 2189980, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "10b652fdaa1d0191bf8d1870de9718eb", "sha256": "9c703dc63b2e0150fa9f291c73996046ca061e0e4d229274800c26d76bef2e14" }, "downloads": -1, "filename": "nwanime_dl-1.0.tar.gz", "has_sig": false, "md5_digest": "10b652fdaa1d0191bf8d1870de9718eb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3638, "upload_time": "2015-01-13T19:18:33", "url": "https://files.pythonhosted.org/packages/d9/24/c30db120076e63925b148ef6a4dd049fd0c07f82322141466916e3a262ff/nwanime_dl-1.0.tar.gz" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "13d58a5d06bd58aac49a0f8b5bb97931", "sha256": "e527a56fd82f2005bfd817c0219dad166706ede9fc39c8bc18824cfc0898cca0" }, "downloads": -1, "filename": "nwanime_dl-1.1.tar.gz", "has_sig": false, "md5_digest": "13d58a5d06bd58aac49a0f8b5bb97931", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3777, "upload_time": "2015-01-14T00:24:47", "url": "https://files.pythonhosted.org/packages/98/8d/ff3e49b0e2a2cafffb2aff760554bc2304915846ad7f9d43072d011d0c23/nwanime_dl-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "dd31417f1b9cd8f6dbad9c74b2867db1", "sha256": "ea98b74daa27c6e13e495449f56a788050d7dd44aed175b812f95e7b714bfa59" }, "downloads": -1, "filename": "nwanime_dl-1.2.tar.gz", "has_sig": false, "md5_digest": "dd31417f1b9cd8f6dbad9c74b2867db1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5930, "upload_time": "2015-01-14T01:07:47", "url": "https://files.pythonhosted.org/packages/65/f4/b9cd1eed36769fa6bbce38e17eeb11249170005245b77c428fbd9b5e7e45/nwanime_dl-1.2.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "79435b5b2b252b80b7d2e2211774cfd3", "sha256": "ef96bfcf4dfe83d13473b208b3ea7d0524769ac9a03db8a5953ad48a46fd9be1" }, "downloads": -1, "filename": "nwanime_dl-1.3.tar.gz", "has_sig": false, "md5_digest": "79435b5b2b252b80b7d2e2211774cfd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5940, "upload_time": "2015-01-14T01:12:56", "url": "https://files.pythonhosted.org/packages/cf/15/0c816f4baedf014ce1e213db08dd3ed9f499e84d479935b164137714db0d/nwanime_dl-1.3.tar.gz" } ], "1.4": [ { "comment_text": "", "digests": { "md5": "e16da3b5f05bf5cd7004c6c017afd9e7", "sha256": "9bada14402bb72ac736838917b1fcdd509c8be316fe524c904c0c7599681cade" }, "downloads": -1, "filename": "nwanime_dl-1.4.tar.gz", "has_sig": false, "md5_digest": "e16da3b5f05bf5cd7004c6c017afd9e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5981, "upload_time": "2015-01-14T01:16:42", "url": "https://files.pythonhosted.org/packages/00/68/2fce008a698d279b4634ee89bc4aab7cc2acdc47948b3d2bb55617000067/nwanime_dl-1.4.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "2ca3843b5beb54236133b2b1964cd528", "sha256": "0c6863f3a1e8be119c6bbc456c3e8773e67ee0ec201dbe8c3354e925a2b85ada" }, "downloads": -1, "filename": "nwanime_dl-1.5.tar.gz", "has_sig": false, "md5_digest": "2ca3843b5beb54236133b2b1964cd528", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6082, "upload_time": "2015-01-14T01:38:21", "url": "https://files.pythonhosted.org/packages/e9/b6/fed3907a758ce01ab23ee21927015dd949b24a59c67f1b871d0687ce7db1/nwanime_dl-1.5.tar.gz" } ], "1.6": [ { "comment_text": "", "digests": { "md5": "8e96c1ad909872f3d2f79132ffbd5036", "sha256": "14b6f90136ba0f31ff99124d85e10af4cb29fad6dc66e4be1c98ce2e78a1f14c" }, "downloads": -1, "filename": "nwanime_dl-1.6.tar.gz", "has_sig": false, "md5_digest": "8e96c1ad909872f3d2f79132ffbd5036", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6377, "upload_time": "2015-01-14T01:58:28", "url": "https://files.pythonhosted.org/packages/37/5e/379c4e23fcdb2c95d7bd8bcc87409923b6b6027a8fb602d77f34e3d56230/nwanime_dl-1.6.tar.gz" } ], "1.7": [ { "comment_text": "", "digests": { "md5": "02d259e503753aee74ff4216e9d4f6ee", "sha256": "98ba1ad39f43b679b199a3e2391015672e7b4a2a8a499f7f5b14f5727d679352" }, "downloads": -1, "filename": "nwanime_dl-1.7.tar.gz", "has_sig": false, "md5_digest": "02d259e503753aee74ff4216e9d4f6ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 3993, "upload_time": "2015-01-14T14:31:39", "url": "https://files.pythonhosted.org/packages/29/9a/9822efadd03bc87f8ae75a369178a7e1060dc3049a59ed70cf6445acd3c6/nwanime_dl-1.7.tar.gz" } ], "1.8": [ { "comment_text": "", "digests": { "md5": "12281e6744f74b79f8ad33718367d310", "sha256": "00cb993d63aa0088af775dc4fed48c4d82cb58c384c6b39bf107dc1cd499d616" }, "downloads": -1, "filename": "nwanime_dl-1.8.tar.gz", "has_sig": false, "md5_digest": "12281e6744f74b79f8ad33718367d310", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5469, "upload_time": "2015-01-14T14:44:24", "url": "https://files.pythonhosted.org/packages/54/a5/9dc7e8ef20bd0db99f68cc5fdafe412abf57f74269c6c1b98df5f14ed981/nwanime_dl-1.8.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "89aa335b17451fda2a885d8543bb2ef8", "sha256": "718a1bbfbc8b0aaf19d8478c6c4aeceec66df887834a75b292995c3c5f7cedf2" }, "downloads": -1, "filename": "nwanime_dl-1.8.1.tar.gz", "has_sig": false, "md5_digest": "89aa335b17451fda2a885d8543bb2ef8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5908, "upload_time": "2015-01-14T14:54:59", "url": "https://files.pythonhosted.org/packages/d7/73/fe0e34f6cfb674b69413736cde527ac634a4e0809ed085a87268e15133dd/nwanime_dl-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "793b04b6ad96f3d44b1c459fb452f387", "sha256": "c0795053b9c88722eb4ce60f8619acbffc55cdd5864ae0a14cb7d376cd557275" }, "downloads": -1, "filename": "nwanime_dl-1.8.2.tar.gz", "has_sig": false, "md5_digest": "793b04b6ad96f3d44b1c459fb452f387", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5905, "upload_time": "2015-01-14T15:02:58", "url": "https://files.pythonhosted.org/packages/2a/07/a72f95c56c11f41e59841f70307e9a4c1ec34b16addc5421db7e7f2b91f4/nwanime_dl-1.8.2.tar.gz" } ], "1.8.3": [ { "comment_text": "", "digests": { "md5": "196fe1d115ec630a861f05a01a7318b8", "sha256": "724480b5f9df57c0c5dbe03d9fe853042ba47a71fed80321f5e73f25f5ce7c2e" }, "downloads": -1, "filename": "nwanime_dl-1.8.3.tar.gz", "has_sig": false, "md5_digest": "196fe1d115ec630a861f05a01a7318b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5781, "upload_time": "2015-01-14T19:50:24", "url": "https://files.pythonhosted.org/packages/17/66/9d16244ceee80eb8151e3b3b66523191d915a9a52e0abb275f06c5d8278d/nwanime_dl-1.8.3.tar.gz" } ], "1.8.4": [ { "comment_text": "", "digests": { "md5": "30bc83a1c121a76b492de204d2726691", "sha256": "44d37b1b183d31216b85259cb8d694cba0db5b0067182d6a1628b7afdf5d5120" }, "downloads": -1, "filename": "nwanime_dl-1.8.4.tar.gz", "has_sig": false, "md5_digest": "30bc83a1c121a76b492de204d2726691", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5545, "upload_time": "2015-01-14T20:01:24", "url": "https://files.pythonhosted.org/packages/92/d5/374f2596ba6ee1ee9498cd95623774d00376e8273f0a34c1d0f43f97bf52/nwanime_dl-1.8.4.tar.gz" } ], "1.8.5": [ { "comment_text": "", "digests": { "md5": "d86cc6f9596725b79fb5088550f0e5b8", "sha256": "877cf935d144f1ce406b4dc80b2fb5d8ed70fc73430a271b06d8396cab1d0f8a" }, "downloads": -1, "filename": "nwanime_dl-1.8.5.tar.gz", "has_sig": false, "md5_digest": "d86cc6f9596725b79fb5088550f0e5b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 5936, "upload_time": "2015-01-14T20:16:55", "url": "https://files.pythonhosted.org/packages/13/29/78d038ceb58acd1c25f30f5638f824b5b72646469c40dac78c8f2756d831/nwanime_dl-1.8.5.tar.gz" } ], "1.8.6": [ { "comment_text": "", "digests": { "md5": "10eacb22c56b42053c141619e20bef59", "sha256": "00fb73c7e3d68964c9ae0e86ef0a9e0e8e984154cdb4176e33d44e9a3e466130" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.tar.gz", "has_sig": false, "md5_digest": "10eacb22c56b42053c141619e20bef59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6050, "upload_time": "2015-01-16T17:38:09", "url": "https://files.pythonhosted.org/packages/a8/bb/219f44380948d9296d3d5e7f64e0bc232913ab693ac9884188806b2e066d/nwanime_dl-1.8.6.tar.gz" } ], "1.8.6.1": [ { "comment_text": "", "digests": { "md5": "8ee8d104f7d3e94bc3cb75d7dce28e1d", "sha256": "5fd968c9044fcdec4f4118904c0c383ba6ab9fe65f267cef4eb7df670273da72" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.1.tar.gz", "has_sig": false, "md5_digest": "8ee8d104f7d3e94bc3cb75d7dce28e1d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6072, "upload_time": "2015-01-16T19:08:41", "url": "https://files.pythonhosted.org/packages/d1/54/b299f1b5d150e00a46d6db32d4890b2bbbd7c75323958f48935eab7063c3/nwanime_dl-1.8.6.1.tar.gz" } ], "1.8.6.2": [ { "comment_text": "", "digests": { "md5": "ab686438b501d88af94184fb91c14d1b", "sha256": "98036af0e05be7804d302128638b96b295b6e8dd68ffcfd81a31185b7b29237a" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.2.tar.gz", "has_sig": false, "md5_digest": "ab686438b501d88af94184fb91c14d1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6840, "upload_time": "2015-01-18T02:35:42", "url": "https://files.pythonhosted.org/packages/9b/f1/166598fc401190ee5cf7593cb4b219a5241e196dd5ba9909f8092ca66dab/nwanime_dl-1.8.6.2.tar.gz" } ], "1.8.6.3": [ { "comment_text": "", "digests": { "md5": "339efc1b08cc5775fd3233d7acfa5339", "sha256": "aeeae73545b295feda4d7b0ec1903c751cd2cee021c163dd55a1bbbefcf8fd14" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.3.tar.gz", "has_sig": false, "md5_digest": "339efc1b08cc5775fd3233d7acfa5339", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6849, "upload_time": "2015-01-18T15:58:51", "url": "https://files.pythonhosted.org/packages/f2/38/da00b52ec660635a07e0464e159bfb2202612d52901e556c321209df7324/nwanime_dl-1.8.6.3.tar.gz" } ], "1.8.6.4": [ { "comment_text": "", "digests": { "md5": "65bf6099c5e5a42c4845febe14fdc13c", "sha256": "54b95f796efe65dc213b455595c13f4d4375fe62154807ca6cc753d2b6fe4aba" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.4.tar.gz", "has_sig": false, "md5_digest": "65bf6099c5e5a42c4845febe14fdc13c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6857, "upload_time": "2015-01-18T16:08:43", "url": "https://files.pythonhosted.org/packages/9d/cf/b967ecf2f78fcffc2b29c0257a525bcb10ef56bfb2c93a6235ea4b008ecb/nwanime_dl-1.8.6.4.tar.gz" } ], "1.8.6.5": [ { "comment_text": "", "digests": { "md5": "d43e521d0f118b7c6d57930495de2f65", "sha256": "5e98760bb958141a2e3033d2c03d16c8473659f571afbdd52395874d56f212af" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.5.tar.gz", "has_sig": false, "md5_digest": "d43e521d0f118b7c6d57930495de2f65", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6975, "upload_time": "2015-01-18T16:47:02", "url": "https://files.pythonhosted.org/packages/b5/ed/6701e9610c2cd546aa06e84d96839da0ed688c76d2e723ce8ce3ca21481e/nwanime_dl-1.8.6.5.tar.gz" } ], "1.8.6.6": [ { "comment_text": "", "digests": { "md5": "a4364679f9a47fd76a7d3048198ac296", "sha256": "71af8112d82be38b05428701ebe2d15080975967215e56e9cf9d5074cb1df2ab" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.6.tar.gz", "has_sig": false, "md5_digest": "a4364679f9a47fd76a7d3048198ac296", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6893, "upload_time": "2015-01-18T16:56:57", "url": "https://files.pythonhosted.org/packages/6c/7f/650e2d1c1fb643e298ff7ebfd0082a7bf3b4d98e018a731edc4e4ecef637/nwanime_dl-1.8.6.6.tar.gz" } ], "1.8.6.7": [ { "comment_text": "", "digests": { "md5": "b80367686451787aeffbeb481ff43256", "sha256": "b555d92af7ba2eeba741327ab72bb99f69f88f4275d8afba230ad25992d1e952" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.7.tar.gz", "has_sig": false, "md5_digest": "b80367686451787aeffbeb481ff43256", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7288, "upload_time": "2015-01-19T01:38:50", "url": "https://files.pythonhosted.org/packages/cf/7d/bca73548f5dd0cd878230f57b1fbdf62d3b2299fd382713badbd7670d405/nwanime_dl-1.8.6.7.tar.gz" } ], "1.8.6.7.1": [ { "comment_text": "", "digests": { "md5": "99542218e6ddf1c788303fffd24c2aad", "sha256": "75955d7067e3c594ce9c66e470bb1859556277a2c733496360bee42b379a0e8c" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.7.1.tar.gz", "has_sig": false, "md5_digest": "99542218e6ddf1c788303fffd24c2aad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7258, "upload_time": "2015-01-19T01:54:38", "url": "https://files.pythonhosted.org/packages/25/02/3526847879e22ca96e583959c77c41294bc5bd2aaeccd45f887b721995cf/nwanime_dl-1.8.6.7.1.tar.gz" } ], "1.8.6.7.2": [ { "comment_text": "", "digests": { "md5": "90b586e7d00d75f0a9847c0ff1bfc279", "sha256": "eff40df58afeafca2716960ef17fc70420c5208e3e4a3e19e87a051e7b696af8" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.7.2.tar.gz", "has_sig": false, "md5_digest": "90b586e7d00d75f0a9847c0ff1bfc279", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7255, "upload_time": "2015-01-19T01:57:15", "url": "https://files.pythonhosted.org/packages/8c/61/5645910645ab987b2dcc81c4c6eed2c0a99798273c39bc958e59ce5a0884/nwanime_dl-1.8.6.7.2.tar.gz" } ], "1.8.6.7.3": [ { "comment_text": "", "digests": { "md5": "f5079055544bc5c3a87dfa10a881549c", "sha256": "a7ab1f93c6bdde55a6aa91f9d067a26f846948f5f0f76ad99692759b86c0c8a5" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.7.3.tar.gz", "has_sig": false, "md5_digest": "f5079055544bc5c3a87dfa10a881549c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7263, "upload_time": "2015-01-19T09:25:09", "url": "https://files.pythonhosted.org/packages/83/8c/ef7d8718af1e7931fb79ad4de09cbadf8480d7b30e6e05e5225e005e88b8/nwanime_dl-1.8.6.7.3.tar.gz" } ], "1.8.6.7.4": [ { "comment_text": "", "digests": { "md5": "508e068de363bc503fd00c1987b99da7", "sha256": "9728cecb0b9a6a179e397773e733d947a0b22427140b17f5720052ec508644b1" }, "downloads": -1, "filename": "nwanime_dl-1.8.6.7.4.tar.gz", "has_sig": false, "md5_digest": "508e068de363bc503fd00c1987b99da7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6507, "upload_time": "2016-06-22T13:35:01", "url": "https://files.pythonhosted.org/packages/2b/28/9396c9d9d956fd96b040ad90933f21ac1a6f2df72c292f23561eaa10d825/nwanime_dl-1.8.6.7.4.tar.gz" } ], "1.9": [ { "comment_text": "", "digests": { "md5": "5b5207a377220f23fce53c4c2fb640b4", "sha256": "e2864defa21c7a0989adb92ffdfad544f5c18349a7bec3d5fee14ce4faa8df51" }, "downloads": -1, "filename": "nwanime_dl-1.9.tar.gz", "has_sig": false, "md5_digest": "5b5207a377220f23fce53c4c2fb640b4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6653, "upload_time": "2016-06-27T17:36:34", "url": "https://files.pythonhosted.org/packages/92/cd/1ce5e9687a12025fb768948a7cd24ccd98c4ce98341db972fc087eb01be1/nwanime_dl-1.9.tar.gz" } ], "1.9.1": [ { "comment_text": "", "digests": { "md5": "23e5b7d5392900ed30acbeb6b17d2bce", "sha256": "fa3eb6fa4b98282c72cef61378ec89c27d041c002341d826321d7733c7439e6e" }, "downloads": -1, "filename": "nwanime_dl-1.9.1.tar.gz", "has_sig": false, "md5_digest": "23e5b7d5392900ed30acbeb6b17d2bce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6697, "upload_time": "2016-06-27T17:47:34", "url": "https://files.pythonhosted.org/packages/94/bf/913106d76496f2223debf2aa2925bf0045c733e3bfae5a6410fd16c8f6be/nwanime_dl-1.9.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "23e5b7d5392900ed30acbeb6b17d2bce", "sha256": "fa3eb6fa4b98282c72cef61378ec89c27d041c002341d826321d7733c7439e6e" }, "downloads": -1, "filename": "nwanime_dl-1.9.1.tar.gz", "has_sig": false, "md5_digest": "23e5b7d5392900ed30acbeb6b17d2bce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6697, "upload_time": "2016-06-27T17:47:34", "url": "https://files.pythonhosted.org/packages/94/bf/913106d76496f2223debf2aa2925bf0045c733e3bfae5a6410fd16c8f6be/nwanime_dl-1.9.1.tar.gz" } ] }