{ "info": { "author": "Mohamed Aturban", "author_email": "maturban@cs.odu.edu", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "License :: OSI Approved :: MIT License", "Programming Language :: Python", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6" ], "description": "Archive Now (archivenow)\n=============================\nA Tool To Push Web Resources Into Web Archives\n----------------------------------------------\n\nArchive Now (**archivenow**) currently is configured to push resources into six public web archives. You can easily add more archives by writing a new archive handler (e.g., myarchive_handler.py) and place it inside the folder \"handlers\".\n\nAs explained below, this library can be used through:\n\n- Command Line Interface (CLI)\n\n- A Web Service\n\n- A Docker Container\n\n- Python\n\n\nInstalling\n----------\nThe latest release of **archivenow** can be installed using pip:\n\n.. code-block:: bash\n\n $ pip install archivenow\n\nThe latest development version containing changes not yet released can be installed from source:\n\n.. code-block:: bash\n\n $ git clone git@github.com:oduwsdl/archivenow.git\n $ cd archivenow\n $ pip install -r requirements.txt\n $ pip install ./\n\nCLI USAGE\n---------\nUsage of sub-commands in **archivenow** can be accessed through providing the `-h` or `--help` flag, like any of the below.\n\n.. code-block:: bash\n\n $ archivenow -h\n usage: archivenow.py [-h] [--mg] [--wc] [--cc] [--cc_api_key [CC_API_KEY]]\n [--is] [--st] [--ia] [--warc [WARC]] [-v] [--all]\n [--server] [--host [HOST]] [--agent [AGENT]]\n [--port [PORT]]\n [URI]\n\n positional arguments:\n URI URI of a web resource\n\n optional arguments:\n -h, --help show this help message and exit\n --mg Use Megalodon.jp\n --wc Use The WebCite Archive\n --cc Use The Perma.cc Archive\n --cc_api_key [CC_API_KEY]\n An API KEY is required by The Perma.cc Archive\n --is Use The Archive.is\n --st Use The Archive.st\n --ia Use The Internet Archive\n --warc [WARC] Generate WARC file\n -v, --version Report the version of archivenow\n --all Use all possible archives\n --server Run archiveNow as a Web Service\n --host [HOST] A server address\n --agent [AGENT] Use \"wget\" or \"squidwarc\" for WARC generation\n --port [PORT] A port number to run a Web Service\n\nExamples\n--------\n\n\nExample 1\n~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in the Internet Archive:\n\n.. code-block:: bash\n\n $ archivenow --ia www.foxnews.com\n https://web.archive.org/web/20170209135625/http://www.foxnews.com\n\nExample 2\n~~~~~~~~~\n\nBy default, the web page (e.g., www.foxnews.com) will be saved in the Internet Archive if no optional arguments are provided:\n\n.. code-block:: bash\n\n $ archivenow www.foxnews.com\n https://web.archive.org/web/20170215164835/http://www.foxnews.com\n\nExample 3\n~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in the Internet Archive (archive.org) and Archive.is:\n\n.. code-block:: bash\n\n $ archivenow --ia --is www.foxnews.com\n https://web.archive.org/web/20170209140345/http://www.foxnews.com\n http://archive.is/fPVyc\n\n\nExample 4\n~~~~~~~~~\n\nTo save the web page (https://nypost.com/) in all configured web archives. In addition to preserving the page in all configured archives, this command will also locally create a WARC file:\n\n.. code-block:: bash\n\n $ archivenow --all https://nypost.com/ --cc_api_key $Your-Perma-CC-API-Key\n http://archive.is/dcnan\n https://perma.cc/53CC-5ST8\n https://web.archive.org/web/20181002081445/https://nypost.com/\n https://megalodon.jp/2018-1002-1714-24/https://nypost.com:443/\n http://www.webcitation.org/72ramyxT2\n https://Archive.st/archive/2018/10/nypost.com/h5m1/nypost.com/index.html\n https_nypost.com__96ec2300.warc\n\nExample 5\n~~~~~~~~~\n\nTo download the web page (https://nypost.com/) and create a WARC file:\n\n.. code-block:: bash\n\n $ archivenow --warc=mypage --agent=wget https://nypost.com/\n mypage.warc\n\nServer\n------\n\nYou can run **archivenow** as a web service. You can specify the server address and/or the port number (e.g., --host localhost --port 12345)\n\n.. code-block:: bash\n\n $ archivenow --server\n\n Running on http://0.0.0.0:12345/ (Press CTRL+C to quit)\n\n\nExample 6\n~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in The Internet Archive through the web service:\n\n.. code-block:: bash\n\n $ curl -i http://0.0.0.0:12345/ia/www.foxnews.com\n\n HTTP/1.0 200 OK\n Content-Type: application/json\n Content-Length: 95\n Server: Werkzeug/0.11.15 Python/2.7.10\n Date: Tue, 02 Oct 2018 08:20:18 GMT\n\n {\n \"results\": [\n \"https://web.archive.org/web/20181002082007/http://www.foxnews.com\"\n ]\n }\n\nExample 7\n~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in all configured archives though the web service:\n\n.. code-block:: bash\n\n $ curl -i http://0.0.0.0:12345/all/www.foxnews.com\n\n HTTP/1.0 200 OK\n Content-Type: application/json\n Content-Length: 385\n Server: Werkzeug/0.11.15 Python/2.7.10\n Date: Tue, 02 Oct 2018 08:23:53 GMT\n\n {\n \"results\": [\n \"Error (The Perma.cc Archive): An API Key is required \", \n \"http://archive.is/ukads\", \n \"https://web.archive.org/web/20181002082007/http://www.foxnews.com\", \n \"http://Archive.st/ikxq\", \n \"Error (Megalodon.jp): We can not obtain this page because the time limit has been reached or for technical ... \", \n \"http://www.webcitation.org/72rbKsX8B\"\n ]\n }\n\nExample 8\n~~~~~~~~~\n\nBecause an API Key is required by Perma.cc, the HTTP request should be as follows:\n\n.. code-block:: bash\n\n $ curl -i http://127.0.0.1:12345/all/https://nypost.com/?cc_api_key=$Your-Perma-CC-API-Key\n\nOr use only Perma.cc:\n\n.. code-block:: bash\n\n $ curl -i http://127.0.0.1:12345/cc/https://nypost.com/?cc_api_key=$Your-Perma-CC-API-Key\n\nRunning as a Docker Container\n-----------------------------\n\n.. code-block:: bash\n\n $ docker image pull oduwsdl/archivenow\n\nDifferent ways to run archivenow \n\n.. code-block:: bash\n\n $ docker container run -it --rm oduwsdl/archivenow -h\n\nAccessible at 127.0.0.1:12345:\n\n.. code-block:: bash\n\n $ docker container run -p 12345:12345 -it --rm oduwsdl/archivenow --server --host 0.0.0.0\n\nAccessible at 127.0.0.1:22222:\n\n.. code-block:: bash\n\n $ docker container run -p 22222:11111 -it --rm oduwsdl/archivenow --server --port 11111 --host 0.0.0.0\n\n.. image:: http://www.cs.odu.edu/~maturban/archivenow-6-archives.gif\n :width: 10pt\n\n\nTo save the web page (http://www.cnn.com) in The Internet Archive\n\n.. code-block:: bash\n\n $ docker container run -it --rm oduwsdl/archivenow --ia http://www.cnn.com\n\n\nPython Usage\n------------\n\n.. code-block:: bash\n\n >>> from archivenow import archivenow\n\nExample 9\n~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in The WebCite Archive:\n\n.. code-block:: bash\n\n >>> archivenow.push(\"www.foxnews.com\",\"wc\")\n ['http://www.webcitation.org/6o9LTiDz3']\n\nExample 10\n~~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in all configured archives:\n\n.. code-block:: bash\n\n >>> archivenow.push(\"www.foxnews.com\",\"all\")\n ['https://web.archive.org/web/20170209145930/http://www.foxnews.com','http://archive.is/oAjuM','http://www.webcitation.org/6o9LcQoVV','Error (The Perma.cc Archive): An API KEY is required]\n\nExample 11\n~~~~~~~~~~\n\nTo save the web page (www.foxnews.com) in The Perma.cc:\n\n.. code-block:: bash\n\n >>> archivenow.push(\"www.foxnews.com\",\"cc\",{\"cc_api_key\":\"$YOUR-Perma-cc-API-KEY\"})\n ['https://perma.cc/8YYC-C7RM']\n\nExample 12\n~~~~~~~~~~\n\nTo start the server from Python do the following. The server/port number can be passed (e.g, start(port=1111, host='localhost')):\n\n.. code-block:: bash\n\n >>> archivenow.start()\n\n 2017-02-09 15:02:37\n Running on http://127.0.0.1:12345\n (Press CTRL+C to quit)\n\n\nConfiguring a new archive or removing existing one\n--------------------------------------------------\nAdditional archives may be added by creating a handler file in the \"handlers\" directory.\n\nFor example, if I want to add a new archive named \"My Archive\", I would create a file \"ma_handler.py\" and store it in the folder \"handlers\". The \"ma\" will be the archive identifier, so to push a web page (e.g., www.cnn.com) to this archive through the Python code, I should write:\n\n\n.. code-block:: python\n\n archivenow.push(\"www.cnn.com\",\"ma\")\n\n\nIn the file \"ma_handler.py\", the name of the class must be \"MA_handler\". This class must have at least one function called \"push\" which has one argument. See the existing `handler files`_ for examples on how to organized a newly configured archive handler.\n\nRemoving an archive can be done by one of the following options:\n\n- Removing the archive handler file from the folder \"handlers\"\n\n- Renaming the archive handler file to other name that does not end with \"_handler.py\"\n\n- Setting the variable \"enabled\" to \"False\" inside the handler file\n\n\nNotes\n-----\nThe Internet Archive (IA) sets a time gap of at least two minutes between creating different copies of the \"same\" resource. \n\nFor example, if you send a request to IA to capture (www.cnn.com) at 10:00pm, IA will create a new copy (*C*) of this URI. IA will then return *C* for all requests to the archive for this URI received until 10:02pm. Using this same submission procedure for Archive.is requires a time gap of five minutes. \n\n.. _handler files: https://github.com/oduwsdl/archivenow/tree/master/archivenow/handlers\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/maturban/archivenow", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "archivenow", "package_url": "https://pypi.org/project/archivenow/", "platform": "", "project_url": "https://pypi.org/project/archivenow/", "project_urls": { "Homepage": "https://github.com/maturban/archivenow" }, "release_url": "https://pypi.org/project/archivenow/2019.7.27.2.35.46/", "requires_dist": [ "flask", "requests" ], "requires_python": "", "summary": "A Python library to push web resources into public web archives", "version": "2019.7.27.2.35.46" }, "last_serial": 5592040, "releases": { "2017.11.11.10.1.36": [ { "comment_text": "", "digests": { "md5": "787cfb8d84e9d47f7500e9ad9b24adc7", "sha256": "0eed024fa9749138ed10c1a8ff97f2b154ccb5928dd6d7b75e28b4d9feacf8a1" }, "downloads": -1, "filename": "archivenow-2017.11.11.10.1.36.tar.gz", "has_sig": false, "md5_digest": "787cfb8d84e9d47f7500e9ad9b24adc7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10993, "upload_time": "2017-11-11T15:01:42", "url": "https://files.pythonhosted.org/packages/92/b1/8bc7125383ac04db5db56412e81d1a355f82663d79f4dd3bdd4497811204/archivenow-2017.11.11.10.1.36.tar.gz" } ], "2017.11.11.10.32.19": [ { "comment_text": "", "digests": { "md5": "a3a8be9df095037f06ab21d0c51298b1", "sha256": "435473ed7c8b1727045533d82ea41eb79b8f46e008ca2ac42b822129bf9d22b0" }, "downloads": -1, "filename": "archivenow-2017.11.11.10.32.19.tar.gz", "has_sig": false, "md5_digest": "a3a8be9df095037f06ab21d0c51298b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14913, "upload_time": "2017-11-11T15:34:15", "url": "https://files.pythonhosted.org/packages/29/21/7f3ecbb0016fc1d383cc944d0fdc7fa39cf90e2dad69a425cf6285a6f959/archivenow-2017.11.11.10.32.19.tar.gz" } ], "2017.11.11.23.26.23": [ { "comment_text": "", "digests": { "md5": "9e7e4f5830f59daa8ab6470a950cb0bd", "sha256": "1fee6b424b490337a96f340610c976b6ab72ffc5eaede4ca7889fd345e16c36c" }, "downloads": -1, "filename": "archivenow-2017.11.11.23.26.23.tar.gz", "has_sig": false, "md5_digest": "9e7e4f5830f59daa8ab6470a950cb0bd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15079, "upload_time": "2017-11-12T04:36:25", "url": "https://files.pythonhosted.org/packages/25/bc/1e5a586ab06b3cec84a9a3f4965714255228166b4b58648a862cd0be9214/archivenow-2017.11.11.23.26.23.tar.gz" } ], "2017.11.12.10.6.44": [ { "comment_text": "", "digests": { "md5": "e98e44416cd672e86a835921e1e803db", "sha256": "794f61e5f6856a57e78cc24bf2ebd7fde6235826ab983e5823de6e634e7f6ba7" }, "downloads": -1, "filename": "archivenow-2017.11.12.10.6.44.tar.gz", "has_sig": false, "md5_digest": "e98e44416cd672e86a835921e1e803db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15151, "upload_time": "2017-11-12T15:11:04", "url": "https://files.pythonhosted.org/packages/3e/0c/652ffa2dad3f0049b98ed9f7b6ba1770875946e64b5f77a58d8d042497f1/archivenow-2017.11.12.10.6.44.tar.gz" } ], "2017.11.19.7.26.19": [ { "comment_text": "", "digests": { "md5": "c94deebd92118fac9d8f9b2dcb045c9d", "sha256": "0da4baf3726b77c377d497bbed174e2a86c18635b9b51f7f35a350b8c8782f24" }, "downloads": -1, "filename": "archivenow-2017.11.19.7.26.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c94deebd92118fac9d8f9b2dcb045c9d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18587, "upload_time": "2017-11-19T15:12:54", "url": "https://files.pythonhosted.org/packages/a0/13/c4fc7ea423fccc2c23380a198f27d65f746f30b4fccec2c62ccc0e9a07a8/archivenow-2017.11.19.7.26.19-py2.py3-none-any.whl" } ], "2017.11.20.5.39.33": [ { "comment_text": "", "digests": { "md5": "79d4541a7d19977c099994c1f58ccfeb", "sha256": "bbae7ec62385626a57e6f25d5ef04f86b9a4534b44dcbd26bb9c4143736aa414" }, "downloads": -1, "filename": "archivenow-2017.11.20.5.39.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79d4541a7d19977c099994c1f58ccfeb", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18721, "upload_time": "2017-11-20T10:52:13", "url": "https://files.pythonhosted.org/packages/9c/6e/a0efb58d6508170515e9e3ae317dcacbdec42fc6625bcb68dacf716dd30c/archivenow-2017.11.20.5.39.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8d37da14aff204542985ad7e92b62e8c", "sha256": "c70f56028e8bafa2d986a7bb585d08c0bbf0ebc85e25ae968f7e365c42c621d0" }, "downloads": -1, "filename": "archivenow-2017.11.20.5.39.33.tar.gz", "has_sig": false, "md5_digest": "8d37da14aff204542985ad7e92b62e8c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15317, "upload_time": "2017-11-20T10:52:14", "url": "https://files.pythonhosted.org/packages/20/76/b0a0d70287c53764a039c4300defebd0751140e31d3661d32c65e219309d/archivenow-2017.11.20.5.39.33.tar.gz" } ], "2017.11.21.10.29.18": [ { "comment_text": "", "digests": { "md5": "071bba280933ece98df7c05de594dcb8", "sha256": "cd6002f106cef32f25f7bee5f83f5aa59b0b23a1a4faa158a76c165610d317a5" }, "downloads": -1, "filename": "archivenow-2017.11.21.10.29.18-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "071bba280933ece98df7c05de594dcb8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18994, "upload_time": "2017-11-22T03:37:38", "url": "https://files.pythonhosted.org/packages/95/3b/31969ae2e621854172e2f50c8b6a9a9384de370fcc5799f9fc90306828af/archivenow-2017.11.21.10.29.18-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6f146c434b206949136cf244b8d71222", "sha256": "28b38f505de3d22fed0f3d98a2d5528da4b3007c6d282ad4ab75c7a11549d6df" }, "downloads": -1, "filename": "archivenow-2017.11.21.10.29.18.tar.gz", "has_sig": false, "md5_digest": "6f146c434b206949136cf244b8d71222", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15542, "upload_time": "2017-11-22T03:37:41", "url": "https://files.pythonhosted.org/packages/98/53/87df48dbfc2f35dfe3161883815b28cc0cf060bd958e75fedd82d06baf41/archivenow-2017.11.21.10.29.18.tar.gz" } ], "2017.11.21.10.50.27": [ { "comment_text": "", "digests": { "md5": "294cd53a080c3785f8c8c4c15f1ba9dd", "sha256": "c31787cfe39f1c90062b81fa6ad3f4f83fa3f681b79beb0647cd3407bbc3dcba" }, "downloads": -1, "filename": "archivenow-2017.11.21.10.50.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "294cd53a080c3785f8c8c4c15f1ba9dd", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18995, "upload_time": "2017-11-22T03:51:26", "url": "https://files.pythonhosted.org/packages/f0/43/2df57d8f7fc4068bca672b7e1e6a28b851b45b90498021e96b22fd0a036a/archivenow-2017.11.21.10.50.27-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2a72921655eed4091a968a2a1b22533d", "sha256": "9d81e0b2a50a74694a2baafb65201e9a4f8bec0d14fe7bc38a0cb3e93971798c" }, "downloads": -1, "filename": "archivenow-2017.11.21.10.50.27.tar.gz", "has_sig": false, "md5_digest": "2a72921655eed4091a968a2a1b22533d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15541, "upload_time": "2017-11-22T03:51:27", "url": "https://files.pythonhosted.org/packages/ca/ed/1432e799b0d1e19650017d54e5422fbff241b0bcb418d5072bc6d883a316/archivenow-2017.11.21.10.50.27.tar.gz" } ], "2017.11.21.2.15.53": [ { "comment_text": "", "digests": { "md5": "c063087ad231012607e35535ce3d0348", "sha256": "b90ee1501327f11e88811a80bfb9940e4f7c37f3472998dafb256fdc34e00fb6" }, "downloads": -1, "filename": "archivenow-2017.11.21.2.15.53-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c063087ad231012607e35535ce3d0348", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18771, "upload_time": "2017-11-21T19:13:53", "url": "https://files.pythonhosted.org/packages/a0/7e/60dc4f25cfe008aa76b8f23dfb5e89d3b7d306c833f9adde1d8c82ec31e5/archivenow-2017.11.21.2.15.53-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff33cbbbb10c15c189fedec063b40860", "sha256": "3faf52797a774da78ca169d8b1828c85bea2a02b761d7a686d67bcf2fda8a790" }, "downloads": -1, "filename": "archivenow-2017.11.21.2.15.53.tar.gz", "has_sig": false, "md5_digest": "ff33cbbbb10c15c189fedec063b40860", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15367, "upload_time": "2017-11-21T19:13:55", "url": "https://files.pythonhosted.org/packages/18/7f/f1a3ed1b4d04f74b8a57e8fd3a0fb456c4027dd95fcbce18a4c18adff584/archivenow-2017.11.21.2.15.53.tar.gz" } ], "2017.11.21.2.15.55": [ { "comment_text": "", "digests": { "md5": "1143029c2f45320446e52c93a30081ab", "sha256": "5cda02fb1529501a6f7c659dda91e69ab713b8c45abc1e8bdc8d845485e8be22" }, "downloads": -1, "filename": "archivenow-2017.11.21.2.15.55-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1143029c2f45320446e52c93a30081ab", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18932, "upload_time": "2017-11-22T02:10:06", "url": "https://files.pythonhosted.org/packages/46/43/92a41441f42f8e1b0e620e21df877005d50be0663e0d1f4ccd93ac9583f2/archivenow-2017.11.21.2.15.55-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "348a06fcc0693184d702974e5553d8fa", "sha256": "01fdfa0ccb980be8d1a93692361cda062a8bbdba66020bc082975077bb063a0c" }, "downloads": -1, "filename": "archivenow-2017.11.21.2.15.55.tar.gz", "has_sig": false, "md5_digest": "348a06fcc0693184d702974e5553d8fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 15495, "upload_time": "2017-11-22T02:10:08", "url": "https://files.pythonhosted.org/packages/05/2a/36fa375846965cc82e759525fbc57778afd26c97e7400705468cb815b728/archivenow-2017.11.21.2.15.55.tar.gz" } ], "2017.2.20.22.48.41": [ { "comment_text": "", "digests": { "md5": "339855b0a4bccb16839b1e406a1af732", "sha256": "7208b75623589444fdc2a215073991511cef614d567c9f56094d18690f345851" }, "downloads": -1, "filename": "archivenow-2017.2.20.22.48.41.tar.gz", "has_sig": false, "md5_digest": "339855b0a4bccb16839b1e406a1af732", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8423, "upload_time": "2017-02-21T03:51:09", "url": "https://files.pythonhosted.org/packages/e5/76/efb4621597b686e1d0b9bf3935d87f0e7ade242dcbdf62fd0baf52542290/archivenow-2017.2.20.22.48.41.tar.gz" } ], "2017.2.20.3.40.24": [ { "comment_text": "", "digests": { "md5": "4bf6673821d8d6a4b5bdd52ca506c641", "sha256": "98e0c829365a84172c6dcfe78d93f76b482cc78f7c2494486acfb14b66cc4463" }, "downloads": -1, "filename": "archivenow-2017.2.20.3.40.24.tar.gz", "has_sig": false, "md5_digest": "4bf6673821d8d6a4b5bdd52ca506c641", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8391, "upload_time": "2017-02-20T08:41:18", "url": "https://files.pythonhosted.org/packages/23/fd/4cd3e0cf1f3f71fa4c9f69f0ec019f43d11ba3391759db619392d9a0ee25/archivenow-2017.2.20.3.40.24.tar.gz" } ], "2017.2.20.6.8.18": [ { "comment_text": "", "digests": { "md5": "96f80cca00ab6f55f019225ef1fdc8b8", "sha256": "c90bf9bc44a06aea6ce549fd6e4fb9e49bdac90cdbb708deec6a54197ef0db82" }, "downloads": -1, "filename": "archivenow-2017.2.20.6.8.18.tar.gz", "has_sig": false, "md5_digest": "96f80cca00ab6f55f019225ef1fdc8b8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8395, "upload_time": "2017-02-20T11:11:26", "url": "https://files.pythonhosted.org/packages/cd/d2/95892fe283b15559763464d3bb4edf8d099d7640880a52aa858625f7e477/archivenow-2017.2.20.6.8.18.tar.gz" } ], "2017.3.1.4.15.20": [ { "comment_text": "", "digests": { "md5": "11769467eb41cc5a1d443a8c31330f4f", "sha256": "aa8157738573b0610d9ae365ce32d32da23a3b5603d530b1ace66ba810121956" }, "downloads": -1, "filename": "archivenow-2017.3.1.4.15.20.tar.gz", "has_sig": false, "md5_digest": "11769467eb41cc5a1d443a8c31330f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8396, "upload_time": "2017-03-01T21:19:23", "url": "https://files.pythonhosted.org/packages/51/94/8b882b01d48005b9e084d41ea26901f4b2b884e9813f828d06f644c45669/archivenow-2017.3.1.4.15.20.tar.gz" } ], "2017.8.8.10.24.20": [ { "comment_text": "", "digests": { "md5": "7256d5af30833f0f55d4400171a50005", "sha256": "96a61b32aa463988e61805339c7396735c3f599fc09fc81ad1429954ade05bdc" }, "downloads": -1, "filename": "archivenow-2017.8.8.10.24.20.tar.gz", "has_sig": false, "md5_digest": "7256d5af30833f0f55d4400171a50005", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8597, "upload_time": "2017-08-09T02:26:34", "url": "https://files.pythonhosted.org/packages/e5/de/571dc18383a95777c4dd1574b936e6fbd8387ed20cb17f0f104e427468cf/archivenow-2017.8.8.10.24.20.tar.gz" } ], "2018.1.2.10.28.10": [ { "comment_text": "", "digests": { "md5": "354f476c8f472b60e92a68716058b3ea", "sha256": "86fb9e0753de02cc125f5be4681c947a9fd8cfee1137b134490b4dc5fbc42a28" }, "downloads": -1, "filename": "archivenow-2018.1.2.10.28.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "354f476c8f472b60e92a68716058b3ea", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23632, "upload_time": "2019-01-03T03:34:07", "url": "https://files.pythonhosted.org/packages/07/b1/f8967dfb6ebf0d66b8a56dfb435aa3e65d30285ae987da474a9e731fb443/archivenow-2018.1.2.10.28.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "6156169308ccb03eedd4924d3da3eac3", "sha256": "9bf83f2e2fecdd27d11720cd721ed5a502e16f11a8bb754096c6fe6ddf46a084" }, "downloads": -1, "filename": "archivenow-2018.1.2.10.28.10.tar.gz", "has_sig": false, "md5_digest": "6156169308ccb03eedd4924d3da3eac3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19094, "upload_time": "2019-01-03T03:34:09", "url": "https://files.pythonhosted.org/packages/92/52/fae9995a00c8119f42390da1f2546943c8b415deda9dd00a0372403c806f/archivenow-2018.1.2.10.28.10.tar.gz" } ], "2018.10.2.19.46.5": [ { "comment_text": "", "digests": { "md5": "9b55535aa445a908248f8243e9cf1684", "sha256": "ce0f6596f3478dce5484bf46f51716a48e87edf49fe25932a3a5975719870398" }, "downloads": -1, "filename": "archivenow-2018.10.2.19.46.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "9b55535aa445a908248f8243e9cf1684", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22655, "upload_time": "2018-10-02T23:49:13", "url": "https://files.pythonhosted.org/packages/4c/28/f332eee8d6299ca3d03e87bee79bdcbbe139f96f6bbf53b2e73de4e8f3a6/archivenow-2018.10.2.19.46.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2d8460aa20ae5a44dc0999b4b5b68a30", "sha256": "31ffab8eb8974062d33963d560e1fbc808eb7596668016b8ca6e4b9df6dc64c0" }, "downloads": -1, "filename": "archivenow-2018.10.2.19.46.5.tar.gz", "has_sig": false, "md5_digest": "2d8460aa20ae5a44dc0999b4b5b68a30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18068, "upload_time": "2018-10-02T23:49:15", "url": "https://files.pythonhosted.org/packages/6d/93/7597f027f7eaadb2d95ec4d0dc4f8b697aa20a0003b55ec36f0dd00e1853/archivenow-2018.10.2.19.46.5.tar.gz" } ], "2018.10.2.4.43.4": [ { "comment_text": "", "digests": { "md5": "b4c0f28366927ea07f262012a28b8f51", "sha256": "6cbb00f616e3971fbd7ff32bd5a9846da30ef90753029246e475c5a403d693b9" }, "downloads": -1, "filename": "archivenow-2018.10.2.4.43.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b4c0f28366927ea07f262012a28b8f51", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22571, "upload_time": "2018-10-02T09:10:19", "url": "https://files.pythonhosted.org/packages/87/71/30a712311520883e0afe9b10e2a49a35b842d3938320280620c81974e458/archivenow-2018.10.2.4.43.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5158bcce92f80088f8f9b4d11934f01a", "sha256": "959753c91efb59ab8d432b783fb25881da5d3e000d51095e38557f92afb46050" }, "downloads": -1, "filename": "archivenow-2018.10.2.4.43.4.tar.gz", "has_sig": false, "md5_digest": "5158bcce92f80088f8f9b4d11934f01a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18030, "upload_time": "2018-10-02T09:10:21", "url": "https://files.pythonhosted.org/packages/7a/1e/ef2134c47dabfed0736b0d70da19cb9a05d3216ae17b700c298a5ea65620/archivenow-2018.10.2.4.43.4.tar.gz" } ], "2018.10.2.7.6.41": [ { "comment_text": "", "digests": { "md5": "88a6c61e515818aa457f6179699a1b5a", "sha256": "c59cf34f78ea1211ccfcee77a8fb02ab674b3df98d99a8dfb755bc7c86830012" }, "downloads": -1, "filename": "archivenow-2018.10.2.7.6.41-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "88a6c61e515818aa457f6179699a1b5a", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22549, "upload_time": "2018-10-02T11:18:49", "url": "https://files.pythonhosted.org/packages/a9/bd/3b3af3e0d34a6c177f09e27b1dd7b230ec280714b51fde9848ca882b4750/archivenow-2018.10.2.7.6.41-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "11a078a80cd55e6d8a26b498c3a34262", "sha256": "5ad6a29fcffe115975ce22281673830f5f5a2ce4a67ec2c61522d24cb1330c9c" }, "downloads": -1, "filename": "archivenow-2018.10.2.7.6.41.tar.gz", "has_sig": false, "md5_digest": "11a078a80cd55e6d8a26b498c3a34262", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17997, "upload_time": "2018-10-02T11:18:50", "url": "https://files.pythonhosted.org/packages/2a/68/01287b434adea446452bb4b597693386e10f8d41f56228331d304e2c0d72/archivenow-2018.10.2.7.6.41.tar.gz" } ], "2018.12.11.12.53.30": [ { "comment_text": "", "digests": { "md5": "16512729a8e31ce4c9b13346c454dd7b", "sha256": "7a22e399c79a2e58d7aa7ece76ea9f66dc3660aa0de74c3208163ece8505fb58" }, "downloads": -1, "filename": "archivenow-2018.12.11.12.53.30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "16512729a8e31ce4c9b13346c454dd7b", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22696, "upload_time": "2018-12-11T05:56:34", "url": "https://files.pythonhosted.org/packages/ef/c5/e5d771ab76ec9770ae7c14399d77cd527ab9a73d58eadde0fab38164cc05/archivenow-2018.12.11.12.53.30-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1d69f32243e05bb29b9b1118877a1c6e", "sha256": "7e473271901cafca5dfdbb521ba68f44cd1ae05e8b7e23ccfe952be78112851e" }, "downloads": -1, "filename": "archivenow-2018.12.11.12.53.30.tar.gz", "has_sig": false, "md5_digest": "1d69f32243e05bb29b9b1118877a1c6e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18096, "upload_time": "2018-12-11T05:56:36", "url": "https://files.pythonhosted.org/packages/09/8b/e5cebfdd527ade4195b5cd000a6eb50f06762721654c9960e7465375a0b5/archivenow-2018.12.11.12.53.30.tar.gz" } ], "2018.12.29.11.47.19": [ { "comment_text": "", "digests": { "md5": "0fa5b76ed3b44ab702d0b21b3f691d5e", "sha256": "2ef409a047d66920bc62524b3a2bb1db0bba37cb6140a7fe65005053e87db676" }, "downloads": -1, "filename": "archivenow-2018.12.29.11.47.19-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0fa5b76ed3b44ab702d0b21b3f691d5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22779, "upload_time": "2018-12-30T05:14:42", "url": "https://files.pythonhosted.org/packages/2a/83/e65ed4117c6dbde581e5e5bf18c8255de5e244309948ee92f64629b4d350/archivenow-2018.12.29.11.47.19-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ec907b8b28d8ca17286fb9010b3be66e", "sha256": "fefaacdb9121d08d7b337ae3f89d3891f749ede63f731fc55f27a32e65d4ab12" }, "downloads": -1, "filename": "archivenow-2018.12.29.11.47.19.tar.gz", "has_sig": false, "md5_digest": "ec907b8b28d8ca17286fb9010b3be66e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18191, "upload_time": "2018-12-30T05:14:43", "url": "https://files.pythonhosted.org/packages/7b/34/95db3f0e967306238c23c1e0d8981a1296106283e9655ceca17a38aa0284/archivenow-2018.12.29.11.47.19.tar.gz" } ], "2018.12.29.12.42.8": [ { "comment_text": "", "digests": { "md5": "3291d958fba2afdf10175296144eb9c3", "sha256": "44372040908ef24eed0c109dbcddef5c5055d29401d7f13d83c02c5558753822" }, "downloads": -1, "filename": "archivenow-2018.12.29.12.42.8-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3291d958fba2afdf10175296144eb9c3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22764, "upload_time": "2018-12-30T05:47:33", "url": "https://files.pythonhosted.org/packages/05/45/389af48c5a87a51037c61432a591d6079ddae47e8e04083ce720e2f08caa/archivenow-2018.12.29.12.42.8-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "351a90fcda39ef8a283287a96124fa23", "sha256": "107a96b257106b63b12bd1366e8f5d820264fdbc5b4abf63f8cb9f0dfea87cef" }, "downloads": -1, "filename": "archivenow-2018.12.29.12.42.8.tar.gz", "has_sig": false, "md5_digest": "351a90fcda39ef8a283287a96124fa23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18192, "upload_time": "2018-12-30T05:47:34", "url": "https://files.pythonhosted.org/packages/fa/6d/5b63e63e27415c31f4af7a441d141aa5811e8131687acdcc2e50f1c6cda2/archivenow-2018.12.29.12.42.8.tar.gz" } ], "2018.12.30.11.48.12": [ { "comment_text": "", "digests": { "md5": "b680d1d758dc1592d8458473b37f58b7", "sha256": "b365589da29f33bda62e982c80f5ecb77ee9605f923f03374b6f76242ca21ba0" }, "downloads": -1, "filename": "archivenow-2018.12.30.11.48.12-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "b680d1d758dc1592d8458473b37f58b7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 22861, "upload_time": "2018-12-30T16:51:50", "url": "https://files.pythonhosted.org/packages/d5/68/d30815fe6b422b1b2103b80b5fc10e3edd76403478b13cd1d80e58778cdb/archivenow-2018.12.30.11.48.12-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8faa9c4ba8607b556b495cced7624818", "sha256": "108859badecb85995f3ef282d8509adeccedb65fe25ce70b2c4322eeea95250b" }, "downloads": -1, "filename": "archivenow-2018.12.30.11.48.12.tar.gz", "has_sig": false, "md5_digest": "8faa9c4ba8607b556b495cced7624818", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18250, "upload_time": "2018-12-30T16:51:51", "url": "https://files.pythonhosted.org/packages/75/50/1c31d88ac2ca8124788add47c363203d4db9cc0c75ae00548c1389ebc343/archivenow-2018.12.30.11.48.12.tar.gz" } ], "2018.12.30.17.28.25": [ { "comment_text": "", "digests": { "md5": "0df0857ee6525e589f31adfa1a6e40d1", "sha256": "2fef7cc0bc6aeebcd0e9897243a60b786a794d476c5b61734e8366109009bc48" }, "downloads": -1, "filename": "archivenow-2018.12.30.17.28.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0df0857ee6525e589f31adfa1a6e40d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23676, "upload_time": "2018-12-31T00:34:16", "url": "https://files.pythonhosted.org/packages/bc/04/4a9c503f9ce2fe5f4d43111a5fea76703f47138930f898493c48fe6a1ccd/archivenow-2018.12.30.17.28.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "60fc090b7322d1f7f78e7e4f8c576ea1", "sha256": "ab4c35c23824c0c0dd1b7961b5d23ad06bf3ee996d7b3c15157561cfd3adfa83" }, "downloads": -1, "filename": "archivenow-2018.12.30.17.28.25.tar.gz", "has_sig": false, "md5_digest": "60fc090b7322d1f7f78e7e4f8c576ea1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19053, "upload_time": "2018-12-31T00:34:17", "url": "https://files.pythonhosted.org/packages/8c/88/3817f02404535affb48a645a95b14c43d61176a571ce388e287ab4417aae/archivenow-2018.12.30.17.28.25.tar.gz" } ], "2018.5.26.11.11.31": [ { "comment_text": "", "digests": { "md5": "2633b5971aa7b086a913d8795f14d782", "sha256": "d867632e0671614d57d7ca99dc6757197e5b937684d03a4ae0ae31b85bdcd18e" }, "downloads": -1, "filename": "archivenow-2018.5.26.11.11.31-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2633b5971aa7b086a913d8795f14d782", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19915, "upload_time": "2018-05-26T15:14:24", "url": "https://files.pythonhosted.org/packages/93/71/0544551c08faf75b8dbbcab21ac4c2f3ae95e931e84dfa64ee22b52385a8/archivenow-2018.5.26.11.11.31-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "57965a6047d3bdd03270effeb442d1cf", "sha256": "d3d9bbd8a92f92956a604a2595dc0a2940ac0c184b477f4774a2683a700ee2a7" }, "downloads": -1, "filename": "archivenow-2018.5.26.11.11.31.tar.gz", "has_sig": false, "md5_digest": "57965a6047d3bdd03270effeb442d1cf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16237, "upload_time": "2018-05-26T15:14:26", "url": "https://files.pythonhosted.org/packages/74/9a/2df2385e7f9a797e3bed4e6b0aab867b56bfadea942862b87713a2d67e59/archivenow-2018.5.26.11.11.31.tar.gz" } ], "2018.5.26.8.55.59": [ { "comment_text": "", "digests": { "md5": "59e2fb65e1919b4e964c8826d34e8086", "sha256": "e14db088bd2da982804c733689551da9b5cbee6b1ee1a849d14b908c45f46b50" }, "downloads": -1, "filename": "archivenow-2018.5.26.8.55.59-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "59e2fb65e1919b4e964c8826d34e8086", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19888, "upload_time": "2018-05-26T13:04:52", "url": "https://files.pythonhosted.org/packages/a7/d4/e4cfccb6f256a24ddc666c7dbd0436974f9644df597c356ea4061074ce82/archivenow-2018.5.26.8.55.59-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8ca462639c7174066502296d4d49bfd6", "sha256": "f7621885386d5dd4de7778de79f56747beb78c0ced50743853cda9d48de78122" }, "downloads": -1, "filename": "archivenow-2018.5.26.8.55.59.tar.gz", "has_sig": false, "md5_digest": "8ca462639c7174066502296d4d49bfd6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16237, "upload_time": "2018-05-26T13:04:53", "url": "https://files.pythonhosted.org/packages/ec/79/5bbbce5e4c824d56d2ceafd1480ebbff9e5ec9f93fe36b0c4be4ca658a7c/archivenow-2018.5.26.8.55.59.tar.gz" } ], "2019.1.2.10.28.10": [ { "comment_text": "", "digests": { "md5": "f3e99d7fc7f4cbaeb85744c40eb18e2d", "sha256": "9708a4b9f51ac889d95451ed2cd70e80ab95a5e56c3eb4dbc82f357ca2627211" }, "downloads": -1, "filename": "archivenow-2019.1.2.10.28.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f3e99d7fc7f4cbaeb85744c40eb18e2d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23636, "upload_time": "2019-01-03T03:39:37", "url": "https://files.pythonhosted.org/packages/f5/e7/af24dbf004ffcbf85162d6c8bc24325a6be8a715e38ec7bc344f967d5225/archivenow-2019.1.2.10.28.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cf1e08a22e31ff73c3036d634a055cfb", "sha256": "38e88fae4721cc06991b16f18c5f9d6aa1d949ebb560e4e2359d0e2cc33cdabc" }, "downloads": -1, "filename": "archivenow-2019.1.2.10.28.10.tar.gz", "has_sig": false, "md5_digest": "cf1e08a22e31ff73c3036d634a055cfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19096, "upload_time": "2019-01-03T03:39:38", "url": "https://files.pythonhosted.org/packages/e9/3d/e6426ec75eb108eb3b43455b33b01d6daba95fb762e3b31083745bd99ba7/archivenow-2019.1.2.10.28.10.tar.gz" } ], "2019.1.5.2.19.34": [ { "comment_text": "", "digests": { "md5": "8f6ef28f59b10cbe2018b6ca2cd7baa3", "sha256": "61e67fa09855234e890d12a2395b96ab0740e6193261dfd4a08a5f64b5a40341" }, "downloads": -1, "filename": "archivenow-2019.1.5.2.19.34-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8f6ef28f59b10cbe2018b6ca2cd7baa3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23627, "upload_time": "2019-01-05T07:22:30", "url": "https://files.pythonhosted.org/packages/32/25/0d3051d362e2a42322e8716dc359557aeb143cc9ca6e5d19efad74a0f6d2/archivenow-2019.1.5.2.19.34-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc1d45f2f101c67d099e02e557cabd4e", "sha256": "5168f29deaa524d97e1b592c04f8e976ee3da72759825a13449c2df13b6d1ce2" }, "downloads": -1, "filename": "archivenow-2019.1.5.2.19.34.tar.gz", "has_sig": false, "md5_digest": "dc1d45f2f101c67d099e02e557cabd4e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19114, "upload_time": "2019-01-05T07:22:32", "url": "https://files.pythonhosted.org/packages/7d/79/6c966acf96cc50447d4e694e267416f769350b8360819a9740e28755993f/archivenow-2019.1.5.2.19.34.tar.gz" } ], "2019.2.24.11.10.10": [ { "comment_text": "", "digests": { "md5": "0dade3fedd8aebef42a0589888e5b778", "sha256": "6cbd61f48e28cfe31724ce8cdb261d8895bdbece25238da1594b2615ed66dcc1" }, "downloads": -1, "filename": "archivenow-2019.2.24.11.10.10-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0dade3fedd8aebef42a0589888e5b778", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23567, "upload_time": "2019-02-25T04:18:14", "url": "https://files.pythonhosted.org/packages/e7/92/1dd58ae6ae27f120d8c41dca7feaf4651270559f3338b686b5da4addb904/archivenow-2019.2.24.11.10.10-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "020148f8b12dc40e279b308e9abdc909", "sha256": "9653e9c6c69b4156d4ab46d458cbe45a3418d6be4428d036b2a90d36351b8e22" }, "downloads": -1, "filename": "archivenow-2019.2.24.11.10.10.tar.gz", "has_sig": false, "md5_digest": "020148f8b12dc40e279b308e9abdc909", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18979, "upload_time": "2019-02-25T04:18:15", "url": "https://files.pythonhosted.org/packages/13/e4/6f4096a1e225d929251e78f5974bee169d9dfa4f24d7365b747db9370c69/archivenow-2019.2.24.11.10.10.tar.gz" } ], "2019.3.10.3.54.28": [ { "comment_text": "", "digests": { "md5": "00024b6252ac33f0d2f6384c1ba9ac54", "sha256": "62c9412220d17b9b8947439549c9f48870d9450a740dcd65695d54a1e4e7a979" }, "downloads": -1, "filename": "archivenow-2019.3.10.3.54.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "00024b6252ac33f0d2f6384c1ba9ac54", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23551, "upload_time": "2019-03-10T07:58:22", "url": "https://files.pythonhosted.org/packages/18/dc/6fb3c5f5ac25b0d9d303acb3601011c9f3ec47f64d6ee4bb38bcc016b703/archivenow-2019.3.10.3.54.28-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "99ee81a7473686d0f8ff360198010353", "sha256": "6e87297416c11149ff773b9f2804e054bcb7d8629b71f88413f2b0d95255ffe8" }, "downloads": -1, "filename": "archivenow-2019.3.10.3.54.28.tar.gz", "has_sig": false, "md5_digest": "99ee81a7473686d0f8ff360198010353", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18989, "upload_time": "2019-03-10T07:58:24", "url": "https://files.pythonhosted.org/packages/3a/28/994fa7df4fc7516eefe51c74238bf69f96e15b1d8b51dcf587f9a9e1a9ae/archivenow-2019.3.10.3.54.28.tar.gz" } ], "2019.3.14.11.22.16": [ { "comment_text": "", "digests": { "md5": "a3f1d073f95b4867635bf42db99b20ae", "sha256": "f27291581699142b3a2e6120e4bccd3e2499bd4909f0125483d1db61565e6800" }, "downloads": -1, "filename": "archivenow-2019.3.14.11.22.16-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a3f1d073f95b4867635bf42db99b20ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 23566, "upload_time": "2019-03-15T03:27:21", "url": "https://files.pythonhosted.org/packages/35/eb/d91927889e1b7940278380b3896c2cbace9dfabbf965e3f25302a0bd95bd/archivenow-2019.3.14.11.22.16-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "44329ed5c21e1f32d4f499cb3b9a4981", "sha256": "f6b4fe563fe6c5aff8b4f762ac1e53382c1a65adaa03862948e50b3278ef564c" }, "downloads": -1, "filename": "archivenow-2019.3.14.11.22.16.tar.gz", "has_sig": false, "md5_digest": "44329ed5c21e1f32d4f499cb3b9a4981", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 18982, "upload_time": "2019-03-15T03:27:23", "url": "https://files.pythonhosted.org/packages/71/eb/be8b9ecf9e9ea4d9197f9665c1475383640f1bf195fd18da623f60307594/archivenow-2019.3.14.11.22.16.tar.gz" } ], "2019.7.27.2.35.46": [ { "comment_text": "", "digests": { "md5": "d86ade393df5400c96d8caf88462fc8f", "sha256": "4a41a86ab3f2d299ce8878628db2cdd35dd897a4ae6528feec55ea7cd638c676" }, "downloads": -1, "filename": "archivenow-2019.7.27.2.35.46-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d86ade393df5400c96d8caf88462fc8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20576, "upload_time": "2019-07-27T06:39:34", "url": "https://files.pythonhosted.org/packages/6b/c2/c96ea798c4ef71977d7099f339dc7b4132515ac657673f8970967bf4bc8c/archivenow-2019.7.27.2.35.46-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc0caf84a8475384c10c52226c60a738", "sha256": "39a6eee7144e9dceb6be44aebca37644ee57cf7ced4d4fd590d48ac0e4ed4b59" }, "downloads": -1, "filename": "archivenow-2019.7.27.2.35.46.tar.gz", "has_sig": false, "md5_digest": "dc0caf84a8475384c10c52226c60a738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19059, "upload_time": "2019-07-27T06:39:36", "url": "https://files.pythonhosted.org/packages/e5/d1/4a3b38173cec0ad7dd48af94b18cb663faa853f9892ab7cb38b598965cdb/archivenow-2019.7.27.2.35.46.tar.gz" } ], "2019.7.8.3.33.50": [ { "comment_text": "", "digests": { "md5": "4aeb4a558f656236f2725a6dde7e89a2", "sha256": "13a529def386ee5bb3fc35c0a8ff145b2ccbdb66535f70fa41a7a3fdc51507b3" }, "downloads": -1, "filename": "archivenow-2019.7.8.3.33.50-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4aeb4a558f656236f2725a6dde7e89a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20560, "upload_time": "2019-07-08T19:35:54", "url": "https://files.pythonhosted.org/packages/09/2a/b6497060133ea5894931f8e0e32dd7ef65cc99cd9753bbd9e6155cd8953e/archivenow-2019.7.8.3.33.50-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da8076692fae103c014ed4092b8ebd40", "sha256": "e964fda439beed2939ba05b2b384e8be22c73d7ef26612b5760b15dac5ed59b0" }, "downloads": -1, "filename": "archivenow-2019.7.8.3.33.50.tar.gz", "has_sig": false, "md5_digest": "da8076692fae103c014ed4092b8ebd40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19061, "upload_time": "2019-07-08T19:35:56", "url": "https://files.pythonhosted.org/packages/9c/81/cd143f4692feb5618abd6d120fb2443b7b514d0809eeb41d37e3dbd83bce/archivenow-2019.7.8.3.33.50.tar.gz" } ], "2019.7.8.3.6.29": [ { "comment_text": "", "digests": { "md5": "2494d291cd54a4bcf0f5ba17930486dc", "sha256": "aeacfbb694b40553dddc279f4afbc284cd4c4c6767051f8d7ea319776f16dec5" }, "downloads": -1, "filename": "archivenow-2019.7.8.3.6.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "2494d291cd54a4bcf0f5ba17930486dc", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20549, "upload_time": "2019-07-08T19:11:32", "url": "https://files.pythonhosted.org/packages/47/1c/6cf12de87cebe7ae1c213479b373ee752d8615b69bc0aa29b3522e272fb0/archivenow-2019.7.8.3.6.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5208afd3ad192068d5ad6de21c2fff01", "sha256": "6cf301f10d4f2c4182341c4fe0cadea22abfefc3d19d57bd4580b504ab848185" }, "downloads": -1, "filename": "archivenow-2019.7.8.3.6.29.tar.gz", "has_sig": false, "md5_digest": "5208afd3ad192068d5ad6de21c2fff01", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19045, "upload_time": "2019-07-08T19:11:34", "url": "https://files.pythonhosted.org/packages/1d/c3/8ac7735e19aaa90cdcc4523538cc1fb43b671aac64c32991c1fc91a57c95/archivenow-2019.7.8.3.6.29.tar.gz" } ], "2019.7.8.4.6.30": [ { "comment_text": "", "digests": { "md5": "1f3674e8d6cf612d94cc85b909f5b3ae", "sha256": "3a447645353ee7cbafc8a1c4aedbc644d2777ff6313bd6f41a64084244f3fb81" }, "downloads": -1, "filename": "archivenow-2019.7.8.4.6.30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "1f3674e8d6cf612d94cc85b909f5b3ae", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20549, "upload_time": "2019-07-08T20:09:42", "url": "https://files.pythonhosted.org/packages/88/de/dd35e9d46898674b437519eaeb0e5a324f9fb0c840ee0286fc1e3cedc17d/archivenow-2019.7.8.4.6.30-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "2999e55affd610d5029dc88f13794bfb", "sha256": "ea5a4d6a305de0047cac92f78fd0455275b8992702f469451dcc2eebd28865d3" }, "downloads": -1, "filename": "archivenow-2019.7.8.4.6.30.tar.gz", "has_sig": false, "md5_digest": "2999e55affd610d5029dc88f13794bfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19049, "upload_time": "2019-07-08T20:09:44", "url": "https://files.pythonhosted.org/packages/30/d0/e3397be981a024019eb6b008399c83fe80c22e70c2686d13e389828b5ec6/archivenow-2019.7.8.4.6.30.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d86ade393df5400c96d8caf88462fc8f", "sha256": "4a41a86ab3f2d299ce8878628db2cdd35dd897a4ae6528feec55ea7cd638c676" }, "downloads": -1, "filename": "archivenow-2019.7.27.2.35.46-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d86ade393df5400c96d8caf88462fc8f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20576, "upload_time": "2019-07-27T06:39:34", "url": "https://files.pythonhosted.org/packages/6b/c2/c96ea798c4ef71977d7099f339dc7b4132515ac657673f8970967bf4bc8c/archivenow-2019.7.27.2.35.46-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dc0caf84a8475384c10c52226c60a738", "sha256": "39a6eee7144e9dceb6be44aebca37644ee57cf7ced4d4fd590d48ac0e4ed4b59" }, "downloads": -1, "filename": "archivenow-2019.7.27.2.35.46.tar.gz", "has_sig": false, "md5_digest": "dc0caf84a8475384c10c52226c60a738", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 19059, "upload_time": "2019-07-27T06:39:36", "url": "https://files.pythonhosted.org/packages/e5/d1/4a3b38173cec0ad7dd48af94b18cb663faa853f9892ab7cb38b598965cdb/archivenow-2019.7.27.2.35.46.tar.gz" } ] }