{ "info": { "author": "Tijme Gommers", "author_email": "tijme@finnwea.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Console", "Intended Audience :: Developers", "Intended Audience :: Education", "Intended Audience :: Information Technology", "Intended Audience :: System Administrators", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: MacOS", "Operating System :: Microsoft :: Windows", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Security" ], "description": ".. image:: https://tijme.github.io/not-your-average-web-crawler/latest/_static/img/logo.png\n :width: 300px\n :height: 300px\n :alt: N.Y.A.W.C. logo\n :align: center\n\n****************************\nNot Your Average Web Crawler\n****************************\n\n.. image:: https://raw.finnwea.com/shield/?firstText=Donate%20via&secondText=Bunq\n :target: https://bunq.me/tijme/0/Raivo;%20a%20native,%20lightweight%20and%20secure%20one-time%20&%20time-based%20password%20client%20built%20for%20iOS\n :alt: Donate via Bunq\n \n.. image:: https://raw.finnwea.com/shield/?typeKey=TravisBuildStatus&typeValue1=tijme/not-your-average-web-crawler&typeValue2=master\n :target: https://travis-ci.org/tijme/not-your-average-web-crawler\n :alt: Build Status\n\n.. image:: https://raw.finnwea.com/shield/?typeKey=SemverVersion&typeValue1=not-your-average-web-crawler&typeValue2=master\n :target: https://pypi.python.org/pypi/nyawc/\n :alt: PyPi version\n \n.. image:: https://raw.finnwea.com/shield/?firstText=License&secondText=MIT\n :target: https://github.com/tijme/angularjs-csti-scanner/blob/master/LICENSE.rst\n :alt: License: MIT\n\n\n\nN.Y.A.W.C is a Python library that enables you to test your payload against all requests of a certain domain. It crawls all requests (e.g. GET, POST or PUT) in the specified scope and keeps track of the request and response data. During the crawling process the callbacks enable you to insert your payload at specific places and test if they worked.\n\nTable of contents\n-----------------\n\n- `Installation <#installation>`__\n- `Crawling flow <#crawling-flow>`__\n- `Documentation <#documentation>`__\n- `Minimal implementation <#minimal-implementation>`__\n- `Testing <#testing>`__\n- `Issues <#issues>`__\n- `License <#license>`__\n\nInstallation\n------------\n\nFirst make sure you're on `Python 2.7/3.3 `__ or higher. Then run the command below to install N.Y.A.W.C.\n\n``$ pip install --upgrade nyawc``\n\nCrawling flow\n-------------\n\n1. You can define your startpoint (a request) and the crawling scope and then start the crawler.\n2. The crawler repeatedly starts the first request in the queue until ``max threads`` is reached.\n3. The crawler adds all requests found in the response to the end of the queue (except duplicates).\n4. The crawler goes back to step #2 to spawn new requests repeatedly until ``max threads`` is reached.\n\n.. image:: https://tijme.github.io/not-your-average-web-crawler/latest/_static/img/flow.svg\n :alt: N.Y.A.W.C crawling flow\n\n**Please note that if the queue is empty and all crawler threads are finished, the crawler will stop.**\n\nDocumentation\n-------------\n\nPlease refer to the `documentation `__ or the `API `__ for all the information about N.Y.A.W.C.\n\nMinimal implementation\n----------------------\n\nYou can use the callbacks in ``example_minimal.py`` to run your own exploit against the requests. If you want an example of automated exploit scanning, please take a look at `ACSTIS `__ (it uses N.Y.A.W.C to scan for AngularJS client-side template injection vulnerabilities).\n\nYou can also use the `kitchen sink `__ (which contains all the functionalities from N.Y.A.W.C.) instead of the example below. The code below is a minimal implementation of N.Y.A.W.C.\n\n- ``$ python example_minimal.py``\n- ``$ python -u example_minimal.py > output.log``\n\n.. code:: python\n\n # example_minimal.py\n\n from nyawc.Options import Options\n from nyawc.QueueItem import QueueItem\n from nyawc.Crawler import Crawler\n from nyawc.CrawlerActions import CrawlerActions\n from nyawc.http.Request import Request\n\n def cb_crawler_before_start():\n print(\"Crawler started.\")\n\n def cb_crawler_after_finish(queue):\n print(\"Crawler finished.\")\n print(\"Found \" + str(len(queue.get_all(QueueItem.STATUS_FINISHED))) + \" requests.\")\n\n def cb_request_before_start(queue, queue_item):\n print(\"Starting: {}\".format(queue_item.request.url))\n return CrawlerActions.DO_CONTINUE_CRAWLING\n\n def cb_request_after_finish(queue, queue_item, new_queue_items):\n print(\"Finished: {}\".format(queue_item.request.url))\n return CrawlerActions.DO_CONTINUE_CRAWLING\n\n options = Options()\n\n options.callbacks.crawler_before_start = cb_crawler_before_start # Called before the crawler starts crawling. Default is a null route.\n options.callbacks.crawler_after_finish = cb_crawler_after_finish # Called after the crawler finished crawling. Default is a null route.\n options.callbacks.request_before_start = cb_request_before_start # Called before the crawler starts a new request. Default is a null route.\n options.callbacks.request_after_finish = cb_request_after_finish # Called after the crawler finishes a request. Default is a null route.\n\n crawler = Crawler(options)\n crawler.start_with(Request(\"https://finnwea.com/\"))\n\nTesting\n-------\n\nThe testing can and will automatically be done by `Travis CI `__ on every push to the master branch. If you want to manually run the unit tests, use the command below.\n\n``$ python -m unittest discover``\n\nIssues\n------\n\nIssues or new features can be reported via the GitHub issue tracker. Please make sure your issue or feature has not yet been reported by anyone else before submitting a new one.\n\nLicense\n-------\n\nNot Your Average Web Crawler (N.Y.A.W.C) is open-sourced software licensed under the `MIT license `__.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://tijme.github.io/not-your-average-web-crawler/", "keywords": "vulnerability,bug-bounty,security,post,get,request,crawler,scraper,scanner", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "nyawc", "package_url": "https://pypi.org/project/nyawc/", "platform": "any", "project_url": "https://pypi.org/project/nyawc/", "project_urls": { "Homepage": "https://tijme.github.io/not-your-average-web-crawler/" }, "release_url": "https://pypi.org/project/nyawc/1.8.2/", "requires_dist": null, "requires_python": "", "summary": "A web crawler that gathers more than you can imagine.", "version": "1.8.2" }, "last_serial": 4770607, "releases": { "1.0.1": [ { "comment_text": "", "digests": { "md5": "316f79492c4fcf801a1eeecef9c27227", "sha256": "902d1ab101766840f4568e259f459f5a3ae8bb6f4e4b4df0e130184d5aa1f3b6" }, "downloads": -1, "filename": "nyawc-1.0.1.tar.gz", "has_sig": false, "md5_digest": "316f79492c4fcf801a1eeecef9c27227", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13451, "upload_time": "2017-03-06T20:53:40", "url": "https://files.pythonhosted.org/packages/a4/61/4b4a8a460f238b59dc1a90ef95afe50de635cb6b953a5e047a4096ecc5a1/nyawc-1.0.1.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "db1f631df41b60d2029a54858136212e", "sha256": "94b14a0f29a8669ac7eb6aa0c1c606c5331915f8b1f678b0e87c31559b893f3e" }, "downloads": -1, "filename": "nyawc-1.1.0.tar.gz", "has_sig": false, "md5_digest": "db1f631df41b60d2029a54858136212e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13867, "upload_time": "2017-03-09T20:24:33", "url": "https://files.pythonhosted.org/packages/00/ef/236494eaf499c86e0b9dc73f49d55c85a3b3fceddfd03990e05a4d765bd9/nyawc-1.1.0.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "1a3e79b1283fbca1c6f6bbed4b46234e", "sha256": "7546c401c298f6f08e1fd3f345a0b4b9293f6be71633b7f43d650bb45a860ad6" }, "downloads": -1, "filename": "nyawc-1.2.0.tar.gz", "has_sig": false, "md5_digest": "1a3e79b1283fbca1c6f6bbed4b46234e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15642, "upload_time": "2017-03-12T13:05:16", "url": "https://files.pythonhosted.org/packages/2c/b2/8e4631f8dcf0e6fafacb57112b6ac424fe7b7ef35c6d155b4f55e7e94a95/nyawc-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "0fb5e7be6e13e9ab8d0440ab41d49b27", "sha256": "49758c8f2e9671f74985d3453bb2aa88ab9491325e9b2fce9ca0326efada17db" }, "downloads": -1, "filename": "nyawc-1.2.1.tar.gz", "has_sig": false, "md5_digest": "0fb5e7be6e13e9ab8d0440ab41d49b27", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15596, "upload_time": "2017-03-25T14:20:52", "url": "https://files.pythonhosted.org/packages/40/f5/c505727eeabe994c4f913ae9d1439d507689492ab514672f577c312eb51d/nyawc-1.2.1.tar.gz" } ], "1.2.2": [ { "comment_text": "", "digests": { "md5": "9078318770f9384f34cda287dfec1ec5", "sha256": "d3e1162f22208fd120a4986182c724ea1792c297a7b39d40493426a639b29568" }, "downloads": -1, "filename": "nyawc-1.2.2.tar.gz", "has_sig": false, "md5_digest": "9078318770f9384f34cda287dfec1ec5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15966, "upload_time": "2017-03-26T16:53:25", "url": "https://files.pythonhosted.org/packages/3b/2e/418862ada8ea2c05bd0c545a0ac24df96a41abe29299af153592e6d6e7cc/nyawc-1.2.2.tar.gz" } ], "1.2.3": [ { "comment_text": "", "digests": { "md5": "243699a7ee3f368df4b997583f0fff72", "sha256": "78f013170fcc886b7d923ccdbc8a3cc3543fef6c11be760adbe41d3dbaaa8dff" }, "downloads": -1, "filename": "nyawc-1.2.3.tar.gz", "has_sig": false, "md5_digest": "243699a7ee3f368df4b997583f0fff72", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16055, "upload_time": "2017-04-02T22:10:05", "url": "https://files.pythonhosted.org/packages/9e/40/63d5e6ee5818beb98a13608ecda1979a82ef893d97c78f7a9e39dcbd0559/nyawc-1.2.3.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "4dda474a8ad821ee451e2a2fa39657b7", "sha256": "feb3b15b579ea2aedb3dbc6575fd65d42218d6b1d5445feceee3b2bc98090dc4" }, "downloads": -1, "filename": "nyawc-1.3.0.tar.gz", "has_sig": false, "md5_digest": "4dda474a8ad821ee451e2a2fa39657b7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18454, "upload_time": "2017-04-05T20:13:08", "url": "https://files.pythonhosted.org/packages/0c/97/cc910a71eaccf4d1d741e0976860ea6fc37631c3155271f8550a0e1ee5b9/nyawc-1.3.0.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "45f98de4968c07eef98861b2b7c110df", "sha256": "725484128f640f27f52805bbd0fb46b398df16064c68db7a995d01a775272a0b" }, "downloads": -1, "filename": "nyawc-1.4.0.tar.gz", "has_sig": false, "md5_digest": "45f98de4968c07eef98861b2b7c110df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18544, "upload_time": "2017-04-26T18:56:24", "url": "https://files.pythonhosted.org/packages/df/d2/bc7187176d910397053c808cf2a498b96d4e6e34034e3bf0a3146913cbe8/nyawc-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "445b00b2e3dfc40c6590bb366998a961", "sha256": "f342265da0c37b107e0bb8dd9c942a83a8e6ef7823b708bda00fc276e61165d1" }, "downloads": -1, "filename": "nyawc-1.4.1.tar.gz", "has_sig": false, "md5_digest": "445b00b2e3dfc40c6590bb366998a961", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18555, "upload_time": "2017-04-26T20:06:29", "url": "https://files.pythonhosted.org/packages/6f/eb/31d8a1df9e6069d6d9be419cda83a1dea088fcb24993394d9feecc5f7217/nyawc-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "bebe9a7b16bc0906b9277a53a1890329", "sha256": "60f4266efd4b9f9b6fab230975027874f4a05a6df6bc67810e9a5f6f08db24f3" }, "downloads": -1, "filename": "nyawc-1.4.2.tar.gz", "has_sig": false, "md5_digest": "bebe9a7b16bc0906b9277a53a1890329", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19255, "upload_time": "2017-04-28T19:10:31", "url": "https://files.pythonhosted.org/packages/17/8f/a4e94d624f2c7793db4f70198d6dc94ba0ad2244d0a5b7ca1d4abb345bfd/nyawc-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "a231a0e54d09a17229799c339a13dba5", "sha256": "15c661a9b17f0ec9fe084d35e47c2861b5704875bea30fa52ae77267a5a26017" }, "downloads": -1, "filename": "nyawc-1.4.3.tar.gz", "has_sig": false, "md5_digest": "a231a0e54d09a17229799c339a13dba5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19534, "upload_time": "2017-04-30T18:35:43", "url": "https://files.pythonhosted.org/packages/12/f3/1ddb7ea543c3be11d63de512fba464ab98eba4b8c591639b7acabd74665b/nyawc-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "5dc8e0b56bcb31f507ddd176e34763c2", "sha256": "422cbc699d321b3b6841a84db82e7e70058f8c64067b3896cbbe821ffd31cacd" }, "downloads": -1, "filename": "nyawc-1.4.4.tar.gz", "has_sig": false, "md5_digest": "5dc8e0b56bcb31f507ddd176e34763c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20220, "upload_time": "2017-05-01T21:31:58", "url": "https://files.pythonhosted.org/packages/c5/49/e242903156a6350a44558375ab7956d3b8ef9e50edd63bef7e47a1ab5acc/nyawc-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "10f19e31447ca030b52e32eedd5c8a13", "sha256": "96ffab134116d9f8135cf4b306d89a445fef46fd5acea4cb1ddaa696ca6af786" }, "downloads": -1, "filename": "nyawc-1.4.5.tar.gz", "has_sig": false, "md5_digest": "10f19e31447ca030b52e32eedd5c8a13", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 20145, "upload_time": "2017-05-02T19:41:26", "url": "https://files.pythonhosted.org/packages/d1/43/e2155d785b8c08f5b6def8b6095781bc44cd020417091be4180043d02fe5/nyawc-1.4.5.tar.gz" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "72c5bb4b355c912e58bcb6a4e01e2a23", "sha256": "802afa13c67cdf17602348441a0ece0671d3186770a980e0bba6072fe9cdf58b" }, "downloads": -1, "filename": "nyawc-1.4.6.tar.gz", "has_sig": false, "md5_digest": "72c5bb4b355c912e58bcb6a4e01e2a23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21866, "upload_time": "2017-05-11T19:04:38", "url": "https://files.pythonhosted.org/packages/65/2e/7b2b715c2e21e722f4fa774521de79776c9a0c2a5fe93169194147316e6d/nyawc-1.4.6.tar.gz" } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "2cc1ea86cf11604fe6caff98f18b554d", "sha256": "9bf15aac91d0ef0a625272a524fc1c78361f78c65534ec56bdc27ac90a5e3940" }, "downloads": -1, "filename": "nyawc-1.4.7.tar.gz", "has_sig": false, "md5_digest": "2cc1ea86cf11604fe6caff98f18b554d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21863, "upload_time": "2017-05-11T19:53:51", "url": "https://files.pythonhosted.org/packages/9a/6b/b8d018a24c00090bd244903d136f2ec80d6595967d71500f9adab3c217fe/nyawc-1.4.7.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "ff1248f0a350f99957c69f2e37e68152", "sha256": "104f4bdf63254a62a67fadd3c585d1a167d317fdc341c007c27edb9d55ee01d9" }, "downloads": -1, "filename": "nyawc-1.5.0.tar.gz", "has_sig": false, "md5_digest": "ff1248f0a350f99957c69f2e37e68152", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21638, "upload_time": "2017-06-04T22:18:28", "url": "https://files.pythonhosted.org/packages/3f/4a/afa21323aa078573ed0edc769f31166876d5d3e7d1148742f8f8d0536103/nyawc-1.5.0.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "fa5a22c853aac554b34d2f0d8bff7977", "sha256": "2e3f86057b024c07b146892aec8e64f57ca85b9f746c9113e0e5f80f56d7d908" }, "downloads": -1, "filename": "nyawc-1.5.1.tar.gz", "has_sig": false, "md5_digest": "fa5a22c853aac554b34d2f0d8bff7977", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21680, "upload_time": "2017-06-04T23:02:45", "url": "https://files.pythonhosted.org/packages/26/11/8e6e2988ca56033407a3616407ab1354129f4099315b1c6acf348d62d7f0/nyawc-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "5eb708bdf5fbf6c08e9bf8c27a8436fe", "sha256": "851f81fc267a020da6ee03a2772a03a7851c34cef012eba041d13493293e7b6c" }, "downloads": -1, "filename": "nyawc-1.5.2.tar.gz", "has_sig": false, "md5_digest": "5eb708bdf5fbf6c08e9bf8c27a8436fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21922, "upload_time": "2017-06-26T20:20:08", "url": "https://files.pythonhosted.org/packages/4d/96/30760404689c84d5c30bdff022bf2edc9ae3c27826725b89319952b81aac/nyawc-1.5.2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "1163c5b625468343f6ea3efc8acd1a24", "sha256": "001f564ac10342899b19e10dcf3226101cf47ce7c6ced84860bd5aaf67e83ed1" }, "downloads": -1, "filename": "nyawc-1.6.0.tar.gz", "has_sig": false, "md5_digest": "1163c5b625468343f6ea3efc8acd1a24", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22119, "upload_time": "2017-06-28T15:12:52", "url": "https://files.pythonhosted.org/packages/17/3a/203948f946692f1d5599c50d4c424cf9280280eaf21db203da45359ac0c3/nyawc-1.6.0.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "91b7e8e138397ffc030e4ee78c5f2c8f", "sha256": "d3e4230cf6d88a9a5e5b63e738383aab4f3b728b744b61b7953e090ce8e52250" }, "downloads": -1, "filename": "nyawc-1.6.3.tar.gz", "has_sig": false, "md5_digest": "91b7e8e138397ffc030e4ee78c5f2c8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22231, "upload_time": "2017-06-28T16:21:30", "url": "https://files.pythonhosted.org/packages/14/40/d776e80847fbb1622e33568da4f2ef5d6668d792396d75cd532f1c2d19bf/nyawc-1.6.3.tar.gz" } ], "1.6.4": [ { "comment_text": "", "digests": { "md5": "e8ab7037a4f1d219f3439f55e5f8c9fc", "sha256": "aa06221a8b81e0b04729382ab0eb73220f05b415849e66145f6536a174ac8c5a" }, "downloads": -1, "filename": "nyawc-1.6.4.tar.gz", "has_sig": false, "md5_digest": "e8ab7037a4f1d219f3439f55e5f8c9fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22792, "upload_time": "2017-07-10T14:19:54", "url": "https://files.pythonhosted.org/packages/07/87/442af15aa71f188bd1ceae6e37fa83db6d539eec30771a12e6d84eb2b892/nyawc-1.6.4.tar.gz" } ], "1.6.5": [ { "comment_text": "", "digests": { "md5": "ca33a7b5af5004d041708e5b50d923e3", "sha256": "8d5c6857f9c56adf5832cb103178b02b5574d0eb2c9ed2ed7e6c0aabe9641b49" }, "downloads": -1, "filename": "nyawc-1.6.5.tar.gz", "has_sig": false, "md5_digest": "ca33a7b5af5004d041708e5b50d923e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22957, "upload_time": "2017-07-10T18:10:05", "url": "https://files.pythonhosted.org/packages/df/04/08f85bd8a943b915a44dff2ac5814d45a872120ad42f7915fbc15d26b08d/nyawc-1.6.5.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "72cb52b034151072889a6ef2c3ac9b94", "sha256": "514aed083cc76b0f3feeea9b2445da85998de5433fe0aba5db720af0f6bd7db6" }, "downloads": -1, "filename": "nyawc-1.7.0.tar.gz", "has_sig": false, "md5_digest": "72cb52b034151072889a6ef2c3ac9b94", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24087, "upload_time": "2017-07-14T17:01:58", "url": "https://files.pythonhosted.org/packages/d5/ef/ed81d98b63cd72aef4b8c0870ff7c6a9c5b9ab0f77fe3dd6c655daf055f2/nyawc-1.7.0.tar.gz" } ], "1.7.1": [ { "comment_text": "", "digests": { "md5": "b0e05379b57ee797b38228b285d5737d", "sha256": "8b6aa1f6acb842d7011be9e55e4fd5c289edbe949424c691e7afce26ce42b200" }, "downloads": -1, "filename": "nyawc-1.7.1.tar.gz", "has_sig": false, "md5_digest": "b0e05379b57ee797b38228b285d5737d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24179, "upload_time": "2017-07-20T13:59:48", "url": "https://files.pythonhosted.org/packages/09/d8/13447908894cf8c672b7dffe105069de83220ec358895071d82f762d0014/nyawc-1.7.1.tar.gz" } ], "1.7.10": [ { "comment_text": "", "digests": { "md5": "07e1f179a5b46552b061bd9aa6a01ca5", "sha256": "6c1a64c3dd4c1487474dcb4af10ae46760f89f4076fd6c4f13aa3f4151dc2628" }, "downloads": -1, "filename": "nyawc-1.7.10.tar.gz", "has_sig": false, "md5_digest": "07e1f179a5b46552b061bd9aa6a01ca5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25222, "upload_time": "2017-09-24T18:36:58", "url": "https://files.pythonhosted.org/packages/97/70/bc3a7813076d791a5c45865f771e9b5d6088b1b2792c2026fc028ecd2779/nyawc-1.7.10.tar.gz" } ], "1.7.11": [ { "comment_text": "", "digests": { "md5": "293b893b1d9de4c22da75c6ee69a4b54", "sha256": "d5d7be76c97cb51d22e635afb0fa1815fbfd77a9df405a7de29454f6815719ba" }, "downloads": -1, "filename": "nyawc-1.7.11.tar.gz", "has_sig": false, "md5_digest": "293b893b1d9de4c22da75c6ee69a4b54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27225, "upload_time": "2017-10-31T22:49:34", "url": "https://files.pythonhosted.org/packages/ae/cf/331170f6f309b4d542c5070137b0e0cf658ccce99f9f6ee7ae57d6af1db3/nyawc-1.7.11.tar.gz" } ], "1.7.2": [ { "comment_text": "", "digests": { "md5": "b278908837ae5784db10dcedf427267e", "sha256": "710613410a2b47367ff224850be2a93d54d1b2e569ccecffa1260f7b3011abb6" }, "downloads": -1, "filename": "nyawc-1.7.2.tar.gz", "has_sig": false, "md5_digest": "b278908837ae5784db10dcedf427267e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24424, "upload_time": "2017-07-20T18:01:43", "url": "https://files.pythonhosted.org/packages/d4/78/114ad77e3e05dadf3d218c9602342ef2d417019eef40ae450667fc004a9a/nyawc-1.7.2.tar.gz" } ], "1.7.3": [ { "comment_text": "", "digests": { "md5": "b327c6cb2d0bbe1b677a43da70c9f879", "sha256": "351e112f8078e369fabe4f1529ef1644b1d61f79265aa9e7900de15e21697d2c" }, "downloads": -1, "filename": "nyawc-1.7.3.tar.gz", "has_sig": false, "md5_digest": "b327c6cb2d0bbe1b677a43da70c9f879", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24515, "upload_time": "2017-07-21T15:33:28", "url": "https://files.pythonhosted.org/packages/56/49/5c6712e59fbba26931181f34cb9b79c0f7942b78354787337def084ea57e/nyawc-1.7.3.tar.gz" } ], "1.7.4": [ { "comment_text": "", "digests": { "md5": "c1f9500e08c8253617ea3b0fd851706c", "sha256": "7c31e40746f22a333ae3a4e2f05ecfb8eaee2e778be0395f319b20c5fff69d88" }, "downloads": -1, "filename": "nyawc-1.7.4.tar.gz", "has_sig": false, "md5_digest": "c1f9500e08c8253617ea3b0fd851706c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24539, "upload_time": "2017-07-21T15:47:07", "url": "https://files.pythonhosted.org/packages/93/b8/b25187ac0c4533f78cd39e339bfb705d66a96ea5a9ec88420356efb883ed/nyawc-1.7.4.tar.gz" } ], "1.7.5": [ { "comment_text": "", "digests": { "md5": "e678a2eb4c37c226b2ffc59e741ec411", "sha256": "29af6be928d03ae0a45c5d36c3de2eda665eb9f1a68c2191fc2842787697eb76" }, "downloads": -1, "filename": "nyawc-1.7.5.tar.gz", "has_sig": false, "md5_digest": "e678a2eb4c37c226b2ffc59e741ec411", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24875, "upload_time": "2017-07-29T15:10:13", "url": "https://files.pythonhosted.org/packages/e8/7a/f674d4acc05156c5df40c54840d9d456f729c1d5c10319e48bbcb7f55eea/nyawc-1.7.5.tar.gz" } ], "1.7.6": [ { "comment_text": "", "digests": { "md5": "e3e95a65843435ab2c2293da973f8611", "sha256": "c24b97ebaa479401891d3415602f06e7535ae8a37206546b008bcfcc1ec8d246" }, "downloads": -1, "filename": "nyawc-1.7.6.tar.gz", "has_sig": false, "md5_digest": "e3e95a65843435ab2c2293da973f8611", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25033, "upload_time": "2017-08-20T18:52:36", "url": "https://files.pythonhosted.org/packages/1e/c2/12c0caab03be62843d8ed22760a34b1d2c2f8fa5546f1b41dcf0ea971eb3/nyawc-1.7.6.tar.gz" } ], "1.7.8": [ { "comment_text": "", "digests": { "md5": "c25db8e168bfa9053515e17938002881", "sha256": "26770cbc813d52d7bf577a6e057e49e95cdbad8aa1732567d3ab63d559275e13" }, "downloads": -1, "filename": "nyawc-1.7.8.tar.gz", "has_sig": false, "md5_digest": "c25db8e168bfa9053515e17938002881", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24888, "upload_time": "2017-09-16T10:02:33", "url": "https://files.pythonhosted.org/packages/23/2c/b6f5e33063ae4c879e76efe81c2451fb0b5aa7e6b182945eca8bcfe554e7/nyawc-1.7.8.tar.gz" } ], "1.7.9": [ { "comment_text": "", "digests": { "md5": "9f9296cb7c05b0f36deb19cf91627105", "sha256": "f139bfdd951e8dc9554118dbb011c38ce7ef24424507ce16ac6f93b07b902227" }, "downloads": -1, "filename": "nyawc-1.7.9.tar.gz", "has_sig": false, "md5_digest": "9f9296cb7c05b0f36deb19cf91627105", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25086, "upload_time": "2017-09-20T07:36:19", "url": "https://files.pythonhosted.org/packages/46/30/4c958907f845163f4e3effcc9b72cac5e29486aa3b73d82903a6dcdb2ea3/nyawc-1.7.9.tar.gz" } ], "1.8.0": [ { "comment_text": "", "digests": { "md5": "61e639413825f34de0e0b3331d97c2c9", "sha256": "d0ed007efe06c7a1adeb4f82b06130abf3a7513113e992bb1ab9602d5b498777" }, "downloads": -1, "filename": "nyawc-1.8.0.tar.gz", "has_sig": false, "md5_digest": "61e639413825f34de0e0b3331d97c2c9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28260, "upload_time": "2017-11-03T16:37:41", "url": "https://files.pythonhosted.org/packages/af/b3/dbe5c0894928220cd6e8e08f2cba8262f2e449018036a546265f1241bd8f/nyawc-1.8.0.tar.gz" } ], "1.8.1": [ { "comment_text": "", "digests": { "md5": "a922a7e0a85897cec9602f316a2c53d5", "sha256": "ea8dfb4ed3947344b3a5d0b2afc720c9d31f28dedfd115e0f48e6feb0e54cfbf" }, "downloads": -1, "filename": "nyawc-1.8.1.tar.gz", "has_sig": false, "md5_digest": "a922a7e0a85897cec9602f316a2c53d5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28393, "upload_time": "2018-03-10T20:05:49", "url": "https://files.pythonhosted.org/packages/9b/1b/3a748235f6c7fd0d17f6a24b11a14e50eac2397778fe98b435571eb2353e/nyawc-1.8.1.tar.gz" } ], "1.8.2": [ { "comment_text": "", "digests": { "md5": "5de68b0879a6be2e53f367ee2684dc3c", "sha256": "f40accb78bd2108312753e82e11beb356413dda9d7dd00ebb79f645418583e13" }, "downloads": -1, "filename": "nyawc-1.8.2.tar.gz", "has_sig": false, "md5_digest": "5de68b0879a6be2e53f367ee2684dc3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28313, "upload_time": "2019-02-01T22:10:48", "url": "https://files.pythonhosted.org/packages/30/1d/c3450607bb047b2566f280628904ce456d57f45e2e1733f028755a9d4a18/nyawc-1.8.2.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5de68b0879a6be2e53f367ee2684dc3c", "sha256": "f40accb78bd2108312753e82e11beb356413dda9d7dd00ebb79f645418583e13" }, "downloads": -1, "filename": "nyawc-1.8.2.tar.gz", "has_sig": false, "md5_digest": "5de68b0879a6be2e53f367ee2684dc3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28313, "upload_time": "2019-02-01T22:10:48", "url": "https://files.pythonhosted.org/packages/30/1d/c3450607bb047b2566f280628904ce456d57f45e2e1733f028755a9d4a18/nyawc-1.8.2.tar.gz" } ] }