{ "info": { "author": "meejah", "author_email": "meejah@meejah.ca", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Framework :: Twisted", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: POSIX :: Linux", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Topic :: Internet", "Topic :: Internet :: Proxy Servers", "Topic :: Security", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": ".. _NOTE: see docs/index.rst for the starting-point\n.. _ALSO: https://txtorcon.readthedocs.org for rendered docs\n\n\n\n\n\n\n.. image:: https://travis-ci.org/meejah/txtorcon.png?branch=master\n :target: https://www.travis-ci.org/meejah/txtorcon\n :alt: travis\n\n.. image:: https://coveralls.io/repos/meejah/txtorcon/badge.png\n :target: https://coveralls.io/r/meejah/txtorcon\n :alt: coveralls\n\n.. image:: http://codecov.io/github/meejah/txtorcon/coverage.svg?branch=master\n :target: http://codecov.io/github/meejah/txtorcon?branch=master\n :alt: codecov\n\n.. image:: https://readthedocs.org/projects/txtorcon/badge/?version=stable\n :target: https://txtorcon.readthedocs.io/en/stable\n :alt: ReadTheDocs\n\n.. image:: https://readthedocs.org/projects/txtorcon/badge/?version=latest\n :target: https://txtorcon.readthedocs.io/en/latest\n :alt: ReadTheDocs\n\n.. image:: https://landscape.io/github/meejah/txtorcon/master/landscape.svg?style=flat\n :target: https://landscape.io/github/meejah/txtorcon/master\n :alt: Code Health\n\n\ntxtorcon\n========\n\n- **docs**: https://txtorcon.readthedocs.org or http://timaq4ygg2iegci7.onion\n- **code**: https://github.com/meejah/txtorcon\n- ``torsocks git clone git://timaq4ygg2iegci7.onion/txtorcon.git``\n- MIT-licensed;\n- Python 2.7, PyPy 5.0.0+, Python 3.4+;\n- depends on\n `Twisted`_,\n `Automat `_,\n (and the `ipaddress `_ backport for non Python 3)\n\n\nTen Thousand Feet\n-----------------\n\ntxtorcon is an implementation of the `control-spec\n`_\nfor `Tor `_ using the `Twisted`_\nnetworking library for `Python `_.\n\nThis is useful for writing utilities to control or make use of Tor in\nevent-based Python programs. If your Twisted program supports\nendpoints (like ``twistd`` does) your server or client can make use of\nTor immediately, with no code changes. Start your own Tor or connect\nto one and get live stream, circuit, relay updates; read and change\nconfig; monitor events; build circuits; create onion services;\netcetera (`ReadTheDocs `_).\n\n\nSome Possibly Motivational Example Code\n---------------------------------------\n\n`download `_\n(also `python3 style `_)\n\n.. code:: python\n\n from twisted.internet.task import react\n from twisted.internet.defer import inlineCallbacks\n from twisted.internet.endpoints import UNIXClientEndpoint\n import treq\n import txtorcon\n\n @react\n @inlineCallbacks\n def main(reactor):\n tor = yield txtorcon.connect(\n reactor,\n UNIXClientEndpoint(reactor, \"/var/run/tor/control\")\n )\n\n print(\"Connected to Tor version {}\".format(tor.version))\n\n url = 'https://www.torproject.org:443'\n print(\"Downloading {}\".format(url))\n resp = yield treq.get(url, agent=tor.web_agent())\n\n print(\" {} bytes\".format(resp.length))\n data = yield resp.text()\n print(\"Got {} bytes:\\n{}\\n[...]{}\".format(\n len(data),\n data[:120],\n data[-120:],\n ))\n\n print(\"Creating a circuit\")\n state = yield tor.create_state()\n circ = yield state.build_circuit()\n yield circ.when_built()\n print(\" path: {}\".format(\" -> \".join([r.ip for r in circ.path])))\n\n print(\"Downloading meejah's public key via above circuit...\")\n resp = yield treq.get(\n 'https://meejah.ca/meejah.asc',\n agent=circ.web_agent(reactor, tor.config.socks_endpoint(reactor)),\n )\n data = yield resp.text()\n print(data)\n\n\n\nTry It Now On Debian/Ubuntu\n---------------------------\n\nFor example, serve some files via an onion service (*aka* hidden\nservice):\n\n.. code-block:: shell-session\n\n $ sudo apt-get install --install-suggests python-txtorcon\n $ twistd -n web --port \"onion:80\" --path ~/public_html\n\n\nRead More\n---------\n\nAll the documentation starts `in docs/index.rst\n`_. Also hosted at `txtorcon.rtfd.org\n`_.\n\nYou'll want to start with `the introductions `_ (`hosted at RTD\n`_).\n\n.. _Twisted: https://twistedmatrix.com/trac", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/meejah/txtorcon", "keywords": "python,twisted,tor,tor controller", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "txtorcon", "package_url": "https://pypi.org/project/txtorcon/", "platform": "", "project_url": "https://pypi.org/project/txtorcon/", "project_urls": { "Homepage": "https://github.com/meejah/txtorcon" }, "release_url": "https://pypi.org/project/txtorcon/19.1.0/", "requires_dist": null, "requires_python": "", "summary": "Twisted-based Tor controller client, with state-tracking and configuration abstractions. https://txtorcon.readthedocs.org https://github.com/meejah/txtorcon", "version": "19.1.0" }, "last_serial": 5807261, "releases": { "0.1": [], "0.10.0": [ { "comment_text": "txtorcon v0.10.0 wheel", "digests": { "md5": "65d6689766916f4b08d1a3395849026f", "sha256": "910ff3216035de0a779cfc167c0545266ff1f26687b163fc4655f298aca52d74" }, "downloads": -1, "filename": "txtorcon-0.10.0-py2-none-any.whl", "has_sig": true, "md5_digest": "65d6689766916f4b08d1a3395849026f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 173905, "upload_time": "2014-06-15T16:14:01", "url": "https://files.pythonhosted.org/packages/e6/e4/489573cb315c9bad0fad8250c178799fcf50dd0aae4870230ce79edf570e/txtorcon-0.10.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.10.0 tarball", "digests": { "md5": "83f192df25ce5f481930feed9b42d2a7", "sha256": "c93f3d0f21d53c6b4c1521fc8d9dc2c9aff4a9f60497becea207d1738fa78279" }, "downloads": -1, "filename": "txtorcon-0.10.0.tar.gz", "has_sig": true, "md5_digest": "83f192df25ce5f481930feed9b42d2a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194838, "upload_time": "2014-06-15T16:13:53", "url": "https://files.pythonhosted.org/packages/3b/36/9832d5009c7ed3cf41eb7f8bee787b81b2555db45a623bf7169b8d6ee477/txtorcon-0.10.0.tar.gz" } ], "0.10.1": [ { "comment_text": "txtorcon v0.10.1 wheel", "digests": { "md5": "60b114e98463cf64c8699266dd9444b1", "sha256": "33f04523329b14accb2054b81c5da887c28b402c797ba895dc1ee58824e107f1" }, "downloads": -1, "filename": "txtorcon-0.10.1-py2-none-any.whl", "has_sig": true, "md5_digest": "60b114e98463cf64c8699266dd9444b1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 174946, "upload_time": "2014-07-20T22:22:16", "url": "https://files.pythonhosted.org/packages/37/0f/05a98a66dff2c80ccc27f4f36f2d7e0d278b248a9300fd169eaca6261a94/txtorcon-0.10.1-py2-none-any.whl" }, { "comment_text": "txtorcon v0.10.1 tarball", "digests": { "md5": "219858c5ad1b648de2e2c50508621ac9", "sha256": "7a6e8fab71fd05c223d866b60b998cf308661ef1fc87d94e06c3b51f4ada4a6a" }, "downloads": -1, "filename": "txtorcon-0.10.1.tar.gz", "has_sig": true, "md5_digest": "219858c5ad1b648de2e2c50508621ac9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196853, "upload_time": "2014-07-20T22:22:09", "url": "https://files.pythonhosted.org/packages/0f/2e/9ac0b9d045c67c143454a171dfef0013126cd23c3a3c60bad362ed6385cc/txtorcon-0.10.1.tar.gz" } ], "0.11.0": [ { "comment_text": "txtorcon v0.11.0 wheel", "digests": { "md5": "8053cbe0cfaca9dd06ae295819c0122c", "sha256": "5efb7ba4faf698e68daea3d8711ce0ecfd8b95501cbec00b2093dd99f72dc8cc" }, "downloads": -1, "filename": "txtorcon-0.11.0-py2-none-any.whl", "has_sig": true, "md5_digest": "8053cbe0cfaca9dd06ae295819c0122c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 175839, "upload_time": "2014-08-16T06:53:48", "url": "https://files.pythonhosted.org/packages/40/f1/5faba249d7845e8eca995ba228889364a41f07914efc7b495a13146265aa/txtorcon-0.11.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.11.0 tarball", "digests": { "md5": "6f8cd93cb4e4342793fbf769ad0cf2af", "sha256": "ecb7cc8ee002ead5481c17fd62576521862e93081c58d7118f53cf3c8817f857" }, "downloads": -1, "filename": "txtorcon-0.11.0.tar.gz", "has_sig": true, "md5_digest": "6f8cd93cb4e4342793fbf769ad0cf2af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 197872, "upload_time": "2014-08-16T06:53:42", "url": "https://files.pythonhosted.org/packages/4f/1b/f466ca0b720312759c3078c0b587395d8082159d6fea1a74dd1ed9775d50/txtorcon-0.11.0.tar.gz" } ], "0.11.1": [ { "comment_text": "txtorcon v0.11.1 wheel", "digests": { "md5": "f49f669d244ac312a360ae3f1b4d88bd", "sha256": "da08a4bdc1dd2b721d66015bb74547957fcded647752a4840e353cbdacb4d0f4" }, "downloads": -1, "filename": "txtorcon-0.11.1-py2-none-any.whl", "has_sig": true, "md5_digest": "f49f669d244ac312a360ae3f1b4d88bd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 178459, "upload_time": "2015-09-06T06:13:39", "url": "https://files.pythonhosted.org/packages/08/90/e7805dd6b874d8c421a0a71ac2e74f4a57b0b77d32bec78906d359a9fba4/txtorcon-0.11.1-py2-none-any.whl" }, { "comment_text": "txtorcon v0.11.1 tarball", "digests": { "md5": "1627755fd9c17e43db7d1b17b402a578", "sha256": "854709302dae9ded3a39e4379bd6abb8149c8f2b893566164d2231109347f72e" }, "downloads": -1, "filename": "txtorcon-0.11.1.tar.gz", "has_sig": true, "md5_digest": "1627755fd9c17e43db7d1b17b402a578", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 199358, "upload_time": "2015-09-06T06:13:32", "url": "https://files.pythonhosted.org/packages/91/3b/e42b267b22d05ade1ad3f74ea466d5d3abaa45e744faa87431d3310d13e1/txtorcon-0.11.1.tar.gz" } ], "0.12.0": [ { "comment_text": "txtorcon v0.12.0 wheel", "digests": { "md5": "65a12114f107b97595aa75fe79175e1d", "sha256": "4e4f6aa2ec677f6c27bff41d17888d31a979f6b831a20501101b39ca93ede9da" }, "downloads": -1, "filename": "txtorcon-0.12.0-py2-none-any.whl", "has_sig": true, "md5_digest": "65a12114f107b97595aa75fe79175e1d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 180497, "upload_time": "2015-02-03T21:11:26", "url": "https://files.pythonhosted.org/packages/ac/9b/b60d1153bc77513f454578c92b9ffefb7ca8f4f81d37e42418a4a370f2a5/txtorcon-0.12.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.12.0 tarball", "digests": { "md5": "dd1a1f015f6afa670898f3976f6b00c5", "sha256": "206b1bd8a840119c12d9b85d638ab9defec5b376436fa36be9139ab1ebc8cd78" }, "downloads": -1, "filename": "txtorcon-0.12.0.tar.gz", "has_sig": true, "md5_digest": "dd1a1f015f6afa670898f3976f6b00c5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204441, "upload_time": "2015-02-03T21:11:19", "url": "https://files.pythonhosted.org/packages/bb/30/bbeb58bbc962ad71dade8e9d5bd59fa41b5e9503d40a2d31deffc4ba64ef/txtorcon-0.12.0.tar.gz" } ], "0.13.0": [ { "comment_text": "txtorcon v0.13.0 wheel", "digests": { "md5": "318f887b99000a2961fdefb3fd12914c", "sha256": "de266cd1b35cc2d9f4600e510d9d3a5645771d36ce36a5888a2828594feb1ef0" }, "downloads": -1, "filename": "txtorcon-0.13.0-py2-none-any.whl", "has_sig": true, "md5_digest": "318f887b99000a2961fdefb3fd12914c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 182904, "upload_time": "2015-05-10T07:42:24", "url": "https://files.pythonhosted.org/packages/a4/1b/309245d3abeab1e4df025ea4b7cbaa4127b32951f4684a9753466a4cf6b7/txtorcon-0.13.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.13.0 tarball", "digests": { "md5": "6e70a8239ac8f1d92f8bf7f8c19a9606", "sha256": "3218d0fa0c22f49eee9324a5862b2d53ef77d5cb8e555e2bcffc24070aaeca7d" }, "downloads": -1, "filename": "txtorcon-0.13.0.tar.gz", "has_sig": true, "md5_digest": "6e70a8239ac8f1d92f8bf7f8c19a9606", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 208077, "upload_time": "2015-05-10T07:42:18", "url": "https://files.pythonhosted.org/packages/24/17/07335ec2f9a602bf3f11a9a7780b161e77c84197ea090a58089900901c1d/txtorcon-0.13.0.tar.gz" } ], "0.14.0": [ { "comment_text": "txtorcon v0.14.0 wheel", "digests": { "md5": "5fd048c7b72385c55ea6d2bb9acb1db8", "sha256": "d44be978dd9521f22333edea49789fe7e19c4bea9a02d63e6ec826d08fb571d1" }, "downloads": -1, "filename": "txtorcon-0.14.0-py2-none-any.whl", "has_sig": true, "md5_digest": "5fd048c7b72385c55ea6d2bb9acb1db8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 187797, "upload_time": "2015-09-27T06:21:33", "url": "https://files.pythonhosted.org/packages/aa/52/7f33ee4dd3db836ab2975fd2e977e7e40a9931c1826840a42af77319177e/txtorcon-0.14.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.14.0 tarball", "digests": { "md5": "c05c7e72fe8e8e0b3aee995f015897fc", "sha256": "a2d0fae65da015840bb392ffc4fd63918168edb6b634941f6b8aa843b338edbf" }, "downloads": -1, "filename": "txtorcon-0.14.0.tar.gz", "has_sig": true, "md5_digest": "c05c7e72fe8e8e0b3aee995f015897fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 212684, "upload_time": "2015-09-27T06:21:24", "url": "https://files.pythonhosted.org/packages/28/bb/36b1346af73ec9540abd5debb2a9ac120a00155888bb833dff711c30cdd2/txtorcon-0.14.0.tar.gz" } ], "0.14.2": [ { "comment_text": "txtorcon v0.14.2 wheel", "digests": { "md5": "b0cde10af14758a234cbfb9a0b25a0c0", "sha256": "fbc95c41e924b0e10156c46227eac2b4acf42a3b8d01f0ea3022897a10dc059a" }, "downloads": -1, "filename": "txtorcon-0.14.2-py2-none-any.whl", "has_sig": true, "md5_digest": "b0cde10af14758a234cbfb9a0b25a0c0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 190216, "upload_time": "2015-12-03T05:08:03", "url": "https://files.pythonhosted.org/packages/0f/e0/0d84a7e0b26cf878fab505754ef202ab3e26f23f63b32022d42fe5206b4e/txtorcon-0.14.2-py2-none-any.whl" }, { "comment_text": "txtorcon v0.14.2 tarball", "digests": { "md5": "ed7930859b66f05b7935cc0a05ec05b2", "sha256": "f99819b1a71b8dea9e80317ec83c990b4ff608c98bc78a9fc1dc9991d349d13f" }, "downloads": -1, "filename": "txtorcon-0.14.2.tar.gz", "has_sig": true, "md5_digest": "ed7930859b66f05b7935cc0a05ec05b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 214927, "upload_time": "2015-12-03T05:07:54", "url": "https://files.pythonhosted.org/packages/69/f9/57b6179ba15c111f4926284a16a4486bdc3648508feeb72a93d203eb9b3c/txtorcon-0.14.2.tar.gz" } ], "0.15.0": [ { "comment_text": "txtorcon v0.15.0 wheel", "digests": { "md5": "8152795738f676ca593000d02c1c578d", "sha256": "a359fb5e560263499400018262494378b3d347cd04a361adb08939df95ecedf6" }, "downloads": -1, "filename": "txtorcon-0.15.0-py2-none-any.whl", "has_sig": true, "md5_digest": "8152795738f676ca593000d02c1c578d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 195207, "upload_time": "2016-07-26T23:15:19", "url": "https://files.pythonhosted.org/packages/6e/59/ab3e71b7d8e28909d023554141fd783106dcfd521be911ef914571a2b8ed/txtorcon-0.15.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.15.0 tarball", "digests": { "md5": "93a0aea050e99bb2df95626655826805", "sha256": "f2e8cdb130aa48d63c39603c2404d9496c669fa8b4c724497ca6bfa7752a9475" }, "downloads": -1, "filename": "txtorcon-0.15.0.tar.gz", "has_sig": true, "md5_digest": "93a0aea050e99bb2df95626655826805", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 228998, "upload_time": "2016-07-26T23:15:12", "url": "https://files.pythonhosted.org/packages/bf/24/0b463ac7657f4932810136ba519c0cc136a593b092be51e618da7ea8b7c8/txtorcon-0.15.0.tar.gz" } ], "0.15.1": [ { "comment_text": "txtorcon v0.15.1 wheel", "digests": { "md5": "cc1b63e5067629911adeea2513e44533", "sha256": "35c15acb2fda99dc35279286f905e38e3e19f15fe229c13164d4ae37a75d6df7" }, "downloads": -1, "filename": "txtorcon-0.15.1-py2-none-any.whl", "has_sig": true, "md5_digest": "cc1b63e5067629911adeea2513e44533", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 199857, "upload_time": "2016-08-11T22:34:39", "url": "https://files.pythonhosted.org/packages/5c/fc/26cb67b4236259d4716857cd5e23fe454f7975216f7ff5543f9106eddb56/txtorcon-0.15.1-py2-none-any.whl" }, { "comment_text": "txtorcon v0.15.1 tarball", "digests": { "md5": "d1a9af34e5465fd744d8ae3b9daf97a8", "sha256": "bbf69b7642d18b0678580e91d92ed91601759aea2de0e971539a2fb96fbd607c" }, "downloads": -1, "filename": "txtorcon-0.15.1.tar.gz", "has_sig": true, "md5_digest": "d1a9af34e5465fd744d8ae3b9daf97a8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 227461, "upload_time": "2016-08-11T22:34:33", "url": "https://files.pythonhosted.org/packages/42/d8/4c46d4690fe6dfe4abe395b4fa9d639a34ce28a03d19b83187807ea49d0c/txtorcon-0.15.1.tar.gz" } ], "0.16.0": [ { "comment_text": "txtorcon v0.16.0 wheel", "digests": { "md5": "e3313bb6b1fe611e5140cb573b8c6917", "sha256": "779bfd3ee0192d1c5994b5a23faff2f9f881e8d804cd7630ca558e305ff07a2f" }, "downloads": -1, "filename": "txtorcon-0.16.0-py2-none-any.whl", "has_sig": true, "md5_digest": "e3313bb6b1fe611e5140cb573b8c6917", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 203472, "upload_time": "2016-09-01T00:02:41", "url": "https://files.pythonhosted.org/packages/d3/61/d4b6de88241f842417aa155271dc216635e525320d12912fc28db328d9f8/txtorcon-0.16.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.16.0 tarball", "digests": { "md5": "48c339c7dfb9747bed3c2749dee3fac6", "sha256": "fe5851db5f4c1ff552973a680a2e575308fc9ce34d2657aba03fd244d74b7318" }, "downloads": -1, "filename": "txtorcon-0.16.0.tar.gz", "has_sig": true, "md5_digest": "48c339c7dfb9747bed3c2749dee3fac6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230539, "upload_time": "2016-09-01T00:02:31", "url": "https://files.pythonhosted.org/packages/77/c0/ad489069bf45664417f15f5c7568cc64400dee2c0637d3646a61f89e4ae5/txtorcon-0.16.0.tar.gz" } ], "0.16.1": [ { "comment_text": "txtorcon v0.16.1 wheel", "digests": { "md5": "4c96279eaa1812f11b0b06a144d67126", "sha256": "e89a785f64f3544b19f7b1e6cebdbd6914475e0c60f508d9f0b6ce4a840769a7" }, "downloads": -1, "filename": "txtorcon-0.16.1-py2-none-any.whl", "has_sig": true, "md5_digest": "4c96279eaa1812f11b0b06a144d67126", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 203580, "upload_time": "2016-09-01T00:30:02", "url": "https://files.pythonhosted.org/packages/36/c9/01aecc68549c6172159f558019fdc4d7b97b2b7703e7be5713e13833382c/txtorcon-0.16.1-py2-none-any.whl" }, { "comment_text": "txtorcon v0.16.1 tarball", "digests": { "md5": "846008daa25172b260dba9e3294c4b9e", "sha256": "d551837025bb9f4fdded58cd11025c6e42924b6eb20dcb2a49f182b3fd85f377" }, "downloads": -1, "filename": "txtorcon-0.16.1.tar.gz", "has_sig": true, "md5_digest": "846008daa25172b260dba9e3294c4b9e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 230620, "upload_time": "2016-09-01T00:29:55", "url": "https://files.pythonhosted.org/packages/68/7b/cf211f51b572f303164124d45b46560c56015dc440ad26267dd0c60e933b/txtorcon-0.16.1.tar.gz" } ], "0.17.0": [ { "comment_text": "txtorcon v0.17.0 wheel", "digests": { "md5": "8950ef3521b57e2ca946113db1276932", "sha256": "e1da13cc43328e040335d091e2ef15717a2b836b48fbede31fc6a7e332b699b4" }, "downloads": -1, "filename": "txtorcon-0.17.0-py2-none-any.whl", "has_sig": true, "md5_digest": "8950ef3521b57e2ca946113db1276932", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 205342, "upload_time": "2016-10-04T21:39:57", "url": "https://files.pythonhosted.org/packages/0d/e3/b1603bd44f08735b062489bd66d5621d360011be7d5f09e5374e359806cd/txtorcon-0.17.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.17.0 tarball", "digests": { "md5": "cf6aa355002f641f7533de4403cacea9", "sha256": "5e321387ab56f22d184b18d91a60c30dd1f72575d9e32ff3614ef911bce49daa" }, "downloads": -1, "filename": "txtorcon-0.17.0.tar.gz", "has_sig": true, "md5_digest": "cf6aa355002f641f7533de4403cacea9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 232900, "upload_time": "2016-10-04T21:39:47", "url": "https://files.pythonhosted.org/packages/42/fc/de34ee8bc9620498272cba765e8b8eeabffcc346aa83f8d0d441616d5dd6/txtorcon-0.17.0.tar.gz" } ], "0.18.0": [ { "comment_text": "txtorcon v0.18.0 wheel", "digests": { "md5": "aef3337117468973b72251fd4e416de0", "sha256": "cffe063dbcedd9d344e88a572c0de39b0390562165a865efa27019260c2119f6" }, "downloads": -1, "filename": "txtorcon-0.18.0-py2-none-any.whl", "has_sig": true, "md5_digest": "aef3337117468973b72251fd4e416de0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 206478, "upload_time": "2017-01-11T21:30:23", "url": "https://files.pythonhosted.org/packages/e9/1c/a9f0d408309406e3c13a1d07c595ed801b93ffcf3a96ebacb21fbae8dd72/txtorcon-0.18.0-py2-none-any.whl" }, { "comment_text": "txtorcon v0.18.0 tarball", "digests": { "md5": "a819b4a921a89e234f2d037406dce101", "sha256": "12be80f1d5e2893378c6e8c752cf159479f868f8424e16b34b75cd679a0ab171" }, "downloads": -1, "filename": "txtorcon-0.18.0.tar.gz", "has_sig": true, "md5_digest": "a819b4a921a89e234f2d037406dce101", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234109, "upload_time": "2017-01-11T21:30:17", "url": "https://files.pythonhosted.org/packages/03/23/4453ab8728c84963cf293d5180b9f529bb10bf8285031c4681e2621b175f/txtorcon-0.18.0.tar.gz" } ], "0.19.0": [ { "comment_text": "txtorcon v0.19.0 wheel", "digests": { "md5": "df50bcc21414ed1cbf81ced6b57a75d3", "sha256": "cc51b4249ad126c31ea2746ec5ef1bcb7f6b0c34ced070913ed7772c0e48edf5" }, "downloads": -1, "filename": "txtorcon-0.19.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "df50bcc21414ed1cbf81ced6b57a75d3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 218919, "upload_time": "2017-04-21T06:22:34", "url": "https://files.pythonhosted.org/packages/aa/5d/45c887d1c56ea252a9fb19902df53c8033fcb60ca8bb68b3f1caa5cebe04/txtorcon-0.19.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v0.19.0 tarball", "digests": { "md5": "ca7d74d53c8a6338abe2d21e7278f4b5", "sha256": "09d56fbd6e33eef7405c8ca354bbba06da2cefa02763d15c4bc9ac274c5daeeb" }, "downloads": -1, "filename": "txtorcon-0.19.0.tar.gz", "has_sig": true, "md5_digest": "ca7d74d53c8a6338abe2d21e7278f4b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 261639, "upload_time": "2017-04-21T06:22:30", "url": "https://files.pythonhosted.org/packages/a1/ea/4c1382c203523266f7eb4193bb21ca9d3c5d23e759323e65480ff77e248e/txtorcon-0.19.0.tar.gz" } ], "0.19.1": [ { "comment_text": "txtorcon v0.19.1 wheel", "digests": { "md5": "2c2ffd0cf54cbec35e3dd3ba743954c6", "sha256": "c2071f55239cb657469aeec06b8095b63bdaf4c3124c3438ff9107984d844c87" }, "downloads": -1, "filename": "txtorcon-0.19.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "2c2ffd0cf54cbec35e3dd3ba743954c6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 297334, "upload_time": "2017-04-26T20:40:03", "url": "https://files.pythonhosted.org/packages/22/8d/a4cb6db459ce489f6d62ccb6cd6e012fc1be517a1357d26a69645384bba6/txtorcon-0.19.1-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v0.19.1 tarball", "digests": { "md5": "f5338236b2d206a20c5399c17bb529ac", "sha256": "cfc390a37bba1cbd3cff0b86a8e9b7033df143d54ad7389305ba02848eafa198" }, "downloads": -1, "filename": "txtorcon-0.19.1.tar.gz", "has_sig": true, "md5_digest": "f5338236b2d206a20c5399c17bb529ac", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 262623, "upload_time": "2017-04-26T20:39:59", "url": "https://files.pythonhosted.org/packages/0c/94/2fbfb859f1c8eaa1aedcf5339365f6289a4145a25c8e9e690da64febbe9a/txtorcon-0.19.1.tar.gz" } ], "0.19.2": [ { "comment_text": "txtorcon v0.19.2 wheel", "digests": { "md5": "d3c04be0690b40f37c1a8782328fa1ee", "sha256": "0e2e85424c8f4c4627066ceebee59a931300e3712007f0a7620791729c80d459" }, "downloads": -1, "filename": "txtorcon-0.19.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "d3c04be0690b40f37c1a8782328fa1ee", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 310321, "upload_time": "2017-05-12T03:33:32", "url": "https://files.pythonhosted.org/packages/1e/da/4e77b6c2523f99bb63606c01babc15013eba1aa1d15653ce922ba13baa48/txtorcon-0.19.2-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v0.19.2 tarball", "digests": { "md5": "8fc022b1d0d85960ca04b70d92b0f3c6", "sha256": "c0e05ff4878468474167536a7b30edec23ae69eb26869c3e9ed9878e63ddc882" }, "downloads": -1, "filename": "txtorcon-0.19.2.tar.gz", "has_sig": true, "md5_digest": "8fc022b1d0d85960ca04b70d92b0f3c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 278806, "upload_time": "2017-05-12T03:33:27", "url": "https://files.pythonhosted.org/packages/4e/83/6a6de4e41af66b69509f38e30f1289fe37d70462f14d021e328aed61d6cd/txtorcon-0.19.2.tar.gz" } ], "0.19.3": [ { "comment_text": "txtorcon v0.19.3 wheel", "digests": { "md5": "c6a8093d019f845ebb58c5c542e36762", "sha256": "e0901f7743a43ed6389f0de31c1f547d89b32723a5ae9316d6cae9ad8eacdbea" }, "downloads": -1, "filename": "txtorcon-0.19.3-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "c6a8093d019f845ebb58c5c542e36762", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 301202, "upload_time": "2017-05-24T07:14:42", "url": "https://files.pythonhosted.org/packages/9b/38/b42bc32d57a1befdd87f764877c3c90a515ce2c4396c654e1d1e2db68b88/txtorcon-0.19.3-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v0.19.3 tarball", "digests": { "md5": "4d7380fa7e721c77cac103d971882374", "sha256": "f73396667909a3c7a98f4dd865edf4ed6a2518ee5a935d92e18b8a479ec244fd" }, "downloads": -1, "filename": "txtorcon-0.19.3.tar.gz", "has_sig": true, "md5_digest": "4d7380fa7e721c77cac103d971882374", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 265716, "upload_time": "2017-05-24T07:14:35", "url": "https://files.pythonhosted.org/packages/05/4b/d2fbfdc08ab83c299f2ad22ba38ea35f71f1c966684f5754e079108a1f64/txtorcon-0.19.3.tar.gz" } ], "0.2": [ { "comment_text": "", "digests": { "md5": "f21ad3a69af12aa75b75c0de7dd9fa5c", "sha256": "105d263988fc670c2deb9a4cf0bae38243b4ea8fc9d57fc8d69e5fae69271f8a" }, "downloads": -1, "filename": "txtorcon-0.2.tar.gz", "has_sig": false, "md5_digest": "f21ad3a69af12aa75b75c0de7dd9fa5c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 65152, "upload_time": "2012-06-06T08:15:10", "url": "https://files.pythonhosted.org/packages/af/a8/cf0d3c69f05262d89e34defb0135bd2fa04f7d9e3b916fa9ef6dddde1975/txtorcon-0.2.tar.gz" } ], "0.20.0": [ { "comment_text": "txtorcon v0.20.0 wheel", "digests": { "md5": "fb0c95834982856024cb5b60293c0f15", "sha256": "a957b3dc10f0b2b882ef6ad46d2932fa7731d5eeee6d52ba9d736d2bc4f1385f" }, "downloads": -1, "filename": "txtorcon-0.20.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "fb0c95834982856024cb5b60293c0f15", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 299390, "upload_time": "2018-02-23T00:26:30", "url": "https://files.pythonhosted.org/packages/43/83/8497cb78f12460535335a3186142a59f97a295a9ad42f9f1dbb08d462f76/txtorcon-0.20.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v0.20.0 tarball", "digests": { "md5": "243ca09644a742755b043d274b5d63f4", "sha256": "dc80cb76b3ddacef6d671c0a088cb1a45274c0858554c32ce55d0f41421c740e" }, "downloads": -1, "filename": "txtorcon-0.20.0.tar.gz", "has_sig": true, "md5_digest": "243ca09644a742755b043d274b5d63f4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 268909, "upload_time": "2018-02-23T00:26:26", "url": "https://files.pythonhosted.org/packages/45/33/18887e6c29c1b5ff1c254f3a9f5e9c15ca7816815e84cc77396ac4e893d5/txtorcon-0.20.0.tar.gz" } ], "0.3": [ { "comment_text": "", "digests": { "md5": "31b70ef39afda2df3d88134b9dad50a9", "sha256": "b1675581c115ebbd2d5ea1d85dcf7720ee136138f7923041eceaca044422032f" }, "downloads": -1, "filename": "txtorcon-0.3.tar.gz", "has_sig": false, "md5_digest": "31b70ef39afda2df3d88134b9dad50a9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 114545, "upload_time": "2012-06-06T08:43:29", "url": "https://files.pythonhosted.org/packages/f3/7a/a4d5a8c0d580c5364029a34221e7d792cb09f4389c295e802842a3ec7dc3/txtorcon-0.3.tar.gz" } ], "0.4": [ { "comment_text": "", "digests": { "md5": "fcf93b3caeb2cca2d9395a78d1e119d4", "sha256": "18504ba24c89afa372e2e68a61337a9e2e4a774c28aee69cd05cb67c1f4e05f3" }, "downloads": -1, "filename": "txtorcon-0.4.tar.gz", "has_sig": false, "md5_digest": "fcf93b3caeb2cca2d9395a78d1e119d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118347, "upload_time": "2012-06-06T09:01:06", "url": "https://files.pythonhosted.org/packages/c1/f5/12aaadffb362ff7c2edc6a09817d43ddf488db2e08a70f9dc48bd3a9f7ae/txtorcon-0.4.tar.gz" } ], "0.5": [ { "comment_text": "", "digests": { "md5": "1822949762873eb6448f0cae0ab7c940", "sha256": "f3d41915bb26cb54cc77f870c0ecf7c560c83cfeeef91ab6a23ecfe8414b4117" }, "downloads": -1, "filename": "txtorcon-0.5.tar.gz", "has_sig": false, "md5_digest": "1822949762873eb6448f0cae0ab7c940", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 118518, "upload_time": "2012-06-21T07:20:49", "url": "https://files.pythonhosted.org/packages/ee/31/179e561947891eee42743491b0b6e4f618d88ff90f3f1e42164bfe5298d3/txtorcon-0.5.tar.gz" } ], "0.6": [ { "comment_text": "", "digests": { "md5": "d6af4bdfcfb436336462acffd5de6449", "sha256": "73df33a0eb4c93ef1ae79df7deac33c34c81e49ccf3c77f25f124981340c962f" }, "downloads": -1, "filename": "txtorcon-0.6.tar.gz", "has_sig": false, "md5_digest": "d6af4bdfcfb436336462acffd5de6449", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127256, "upload_time": "2012-10-13T01:36:12", "url": "https://files.pythonhosted.org/packages/35/35/042115ac1ff68381939dcf047460af044c4714bfefab975b86ead2b21fef/txtorcon-0.6.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "d9c9ae93f81878d1f56d8e463f92d196", "sha256": "ee6329320195c5404487bfb2e33519d5aabdd225b1aae95dcb3e286d5411d126" }, "downloads": -1, "filename": "txtorcon-0.7.tar.gz", "has_sig": false, "md5_digest": "d9c9ae93f81878d1f56d8e463f92d196", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 128696, "upload_time": "2012-11-21T19:41:55", "url": "https://files.pythonhosted.org/packages/36/e2/4696cb219f42164ff29e4323d35e76cc0afb89142ac8c435416bb68b6b20/txtorcon-0.7.tar.gz" } ], "0.8.0": [ { "comment_text": "", "digests": { "md5": "1c16dd0407061398a9376b8e7046b0dd", "sha256": "87fcb3bce3ac3b48583f637bf69445bd50071411dc3fded89df7600d870a3094" }, "downloads": -1, "filename": "txtorcon-0.8.0.tar.gz", "has_sig": true, "md5_digest": "1c16dd0407061398a9376b8e7046b0dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 135397, "upload_time": "2013-05-12T06:00:11", "url": "https://files.pythonhosted.org/packages/64/ec/ff2f64dd6b3c491bc6de81dd1e2138458969d8d73207c435301eca3dd43d/txtorcon-0.8.0.tar.gz" } ], "0.8.1": [ { "comment_text": "", "digests": { "md5": "03edfcce39c44eeacd827b894924d99c", "sha256": "363e682e116b16542a6fb6145329b6c2843b57b380c51910bac621f26a453c80" }, "downloads": -1, "filename": "txtorcon-0.8.1.tar.gz", "has_sig": true, "md5_digest": "03edfcce39c44eeacd827b894924d99c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 151301, "upload_time": "2013-05-14T05:32:57", "url": "https://files.pythonhosted.org/packages/a9/71/b9df262be33d2b1770ae9cf425bba8de52a34f2f0534a34b75a9cdc72fe7/txtorcon-0.8.1.tar.gz" } ], "0.8.2": [ { "comment_text": "", "digests": { "md5": "2ef958879d16975bda9527867610220b", "sha256": "f16518c1f5a5286ead1174f661db9bf8d91c330192bba630566d9848560cc352" }, "downloads": -1, "filename": "txtorcon-0.8.2.tar.gz", "has_sig": true, "md5_digest": "2ef958879d16975bda9527867610220b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163960, "upload_time": "2013-11-26T20:08:17", "url": "https://files.pythonhosted.org/packages/4f/49/2d2b3951e467fa3c132621bda6143a6b4d74514d324caf3922ab5a9e1450/txtorcon-0.8.2.tar.gz" } ], "0.9.0": [ { "comment_text": "txtorcon v0.9.0 wheel", "digests": { "md5": "774fce0173e9bf54ef58c822656353f2", "sha256": "06b518fa5aa98fb56e3b0086842a9418878d2440abfc94463d59df9ffaf898c4" }, "downloads": -1, "filename": "txtorcon-0.9.0-py27-none-any.whl", "has_sig": true, "md5_digest": "774fce0173e9bf54ef58c822656353f2", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 150440, "upload_time": "2014-01-20T18:33:07", "url": "https://files.pythonhosted.org/packages/60/f6/024d173a65d3ba10645f6b895a2f3601eda50eb76777f289fe061e40bdfc/txtorcon-0.9.0-py27-none-any.whl" }, { "comment_text": "txtorcon v0.9.0 tarball", "digests": { "md5": "af64e24f8463be031c950fdc2194d79b", "sha256": "267ef64d0fb73e3f71aea4a6fb2b712f157961f6b63b21c0342f9ac309622b51" }, "downloads": -1, "filename": "txtorcon-0.9.0.tar.gz", "has_sig": true, "md5_digest": "af64e24f8463be031c950fdc2194d79b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159991, "upload_time": "2014-01-20T18:33:02", "url": "https://files.pythonhosted.org/packages/03/79/8005ef12adccc6de269a585eea58b015667fd450f4e0990c4ed62ddbbe97/txtorcon-0.9.0.tar.gz" } ], "0.9.1": [ { "comment_text": "txtorcon v0.9.1 wheel", "digests": { "md5": "2788b6484dda5ab1e903985a1857d8d2", "sha256": "b92fb5a767eeb3c3d1ec7626fb992d76c73f068e00e69bda51cdbbfc8868eba7" }, "downloads": -1, "filename": "txtorcon-0.9.1-py27-none-any.whl", "has_sig": true, "md5_digest": "2788b6484dda5ab1e903985a1857d8d2", "packagetype": "bdist_wheel", "python_version": "py27", "requires_python": null, "size": 150442, "upload_time": "2014-01-20T18:48:28", "url": "https://files.pythonhosted.org/packages/ca/bf/00c0cf74d6b0e3b44bf43cb9d99838c8638ac9a22ea5df4fc085e9605d34/txtorcon-0.9.1-py27-none-any.whl" }, { "comment_text": "txtorcon v0.9.1 tarball", "digests": { "md5": "a3c91728c0b57680bba0f69afe5e21d7", "sha256": "68e21f719f6541448c0ec8e4a95787a0fe13452dd4086631ffdce79b47134e37" }, "downloads": -1, "filename": "txtorcon-0.9.1.tar.gz", "has_sig": true, "md5_digest": "a3c91728c0b57680bba0f69afe5e21d7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159951, "upload_time": "2014-01-20T18:48:21", "url": "https://files.pythonhosted.org/packages/29/9a/c3ade026f7d9dee70088d5af06d3a411e51e767e8858aa69363733fd8970/txtorcon-0.9.1.tar.gz" } ], "0.9.2": [ { "comment_text": "txtorcon v0.9.2 wheel", "digests": { "md5": "9fc8bf7b8c131801fa479a2245c37b8f", "sha256": "93e934f83e3fc6fcf40e76f7c9c28459af04205fb912d384aaacb7ac5269bb8f" }, "downloads": -1, "filename": "txtorcon-0.9.2-py2-none-any.whl", "has_sig": true, "md5_digest": "9fc8bf7b8c131801fa479a2245c37b8f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 150644, "upload_time": "2014-04-24T19:10:51", "url": "https://files.pythonhosted.org/packages/ea/07/cf031da492ec4bb9d703f62ab9dfbd4d98f7d363104337d46c8905140603/txtorcon-0.9.2-py2-none-any.whl" }, { "comment_text": "txtorcon v0.9.2 tarball", "digests": { "md5": "b0a41af2ed9411167bd63eb8507a9c62", "sha256": "fe90743cdc453002ad046aa6556b611b4e85b813ff92865769d3d27712c2ca47" }, "downloads": -1, "filename": "txtorcon-0.9.2.tar.gz", "has_sig": true, "md5_digest": "b0a41af2ed9411167bd63eb8507a9c62", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163953, "upload_time": "2014-04-24T19:10:45", "url": "https://files.pythonhosted.org/packages/98/25/d1a33d42b0114a7acf615809365042b65043ae6199f3f1eb1612fa8dff7d/txtorcon-0.9.2.tar.gz" } ], "18.0.0": [ { "comment_text": "txtorcon v18.0.0 wheel", "digests": { "md5": "a3e41dc17997374b9d2265ddad8aa110", "sha256": "d2f91a3770d7fd8c46372e5573bb23ab65c1be33f12e9ff4ac4af24e6f5f6069" }, "downloads": -1, "filename": "txtorcon-18.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a3e41dc17997374b9d2265ddad8aa110", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 335978, "upload_time": "2018-06-26T03:27:08", "url": "https://files.pythonhosted.org/packages/be/82/86941644b879cd046b7c9b596549f075ec0a314471f72f26b76fff9a7dd1/txtorcon-18.0.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.0.0 tarball", "digests": { "md5": "dff2a58a018e4d5c78b03ca4ab8aed8d", "sha256": "818f6ec96a9d60cb4cb47d98f2c843c7a83004c25be07daafeb9eb9aaed74f7c" }, "downloads": -1, "filename": "txtorcon-18.0.0.tar.gz", "has_sig": true, "md5_digest": "dff2a58a018e4d5c78b03ca4ab8aed8d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 306005, "upload_time": "2018-06-26T03:27:03", "url": "https://files.pythonhosted.org/packages/da/84/18b97e2f1590fb8b1acb45d6f4ca09c834949c92ab141e43bab2096ad855/txtorcon-18.0.0.tar.gz" } ], "18.0.1": [ { "comment_text": "txtorcon v18.0.1 wheel", "digests": { "md5": "a8bfbf059794903d9c5bee1fcd9540c8", "sha256": "2c3f7c768bebf081d0742cdce023b4496bf3b44c423ed7f06bd8d6254e07273e" }, "downloads": -1, "filename": "txtorcon-18.0.1-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "a8bfbf059794903d9c5bee1fcd9540c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336752, "upload_time": "2018-06-30T05:09:18", "url": "https://files.pythonhosted.org/packages/3a/42/ca07af5f72cb6185c3579f65fc68cb3536b8423425796dbefd05eaa7a2ed/txtorcon-18.0.1-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.0.1 tarball", "digests": { "md5": "93dfb085842593ebb44b3631f7a1d777", "sha256": "4c158ee5cfc294a0e20c00dde2a146f04ebe6c6d1c3d7c164c0bd1c56e3d1bc6" }, "downloads": -1, "filename": "txtorcon-18.0.1.tar.gz", "has_sig": true, "md5_digest": "93dfb085842593ebb44b3631f7a1d777", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 306137, "upload_time": "2018-06-30T05:09:13", "url": "https://files.pythonhosted.org/packages/f7/03/1debba155a8a683a666396e6747095f16b5f557197804cd9bac46253d144/txtorcon-18.0.1.tar.gz" } ], "18.0.2": [ { "comment_text": "txtorcon v18.0.2 wheel", "digests": { "md5": "91a99269caff79eafcd44caa74201e5e", "sha256": "cb1a681e424744c50eefb02b7b777cce80a505da1e89ee4886fe62013afaf858" }, "downloads": -1, "filename": "txtorcon-18.0.2-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "91a99269caff79eafcd44caa74201e5e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 336177, "upload_time": "2018-07-02T18:47:13", "url": "https://files.pythonhosted.org/packages/3c/87/61c0693a950530aafa6737184ccf92a557ca49475c0623e3aa12d079ed2d/txtorcon-18.0.2-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.0.2 tarball", "digests": { "md5": "76ca73a069947726216477c8da75f798", "sha256": "ce50fdd00abb8b490b72809a2c664684f67f3c9467f392642d36f58309395a87" }, "downloads": -1, "filename": "txtorcon-18.0.2.tar.gz", "has_sig": true, "md5_digest": "76ca73a069947726216477c8da75f798", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 306364, "upload_time": "2018-07-02T18:47:08", "url": "https://files.pythonhosted.org/packages/0d/cf/d60e12055c2930aa5a347043423e59e29241d03fd1f2316d1dea08db383a/txtorcon-18.0.2.tar.gz" } ], "18.1.0": [ { "comment_text": "txtorcon v18.1.0 wheel", "digests": { "md5": "b6c711bd1edeeca6229c43ca2013d4a9", "sha256": "98aba4a96c355c55ee5d8290b67a09380b02e1044fb2e76737f47f5a33659dce" }, "downloads": -1, "filename": "txtorcon-18.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "b6c711bd1edeeca6229c43ca2013d4a9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 337180, "upload_time": "2018-09-27T02:38:09", "url": "https://files.pythonhosted.org/packages/26/9c/c7998fb5769410f4caecafa5f59496bd53d3f5bbda54ec7046bce9abae20/txtorcon-18.1.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.1.0 tarball", "digests": { "md5": "2b39f371ae08cd7cac34caed7d6aaa56", "sha256": "b61cf175a5f1d4092609caf05d178fcdcabf513928eec98d38125c501afea43c" }, "downloads": -1, "filename": "txtorcon-18.1.0.tar.gz", "has_sig": true, "md5_digest": "2b39f371ae08cd7cac34caed7d6aaa56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 307409, "upload_time": "2018-09-27T02:38:03", "url": "https://files.pythonhosted.org/packages/d5/e1/577e28231013fffdc97c3078bbd37d9001e6cbea757b0b10da34d765dc32/txtorcon-18.1.0.tar.gz" } ], "18.2.0": [ { "comment_text": "txtorcon v18.2.0 wheel", "digests": { "md5": "4b366a394f84e20263c00bdce7ae7bad", "sha256": "9d05f2b1144dfbc63844e78fbc51a195e3b39a79f280db50a81b346476c47e7b" }, "downloads": -1, "filename": "txtorcon-18.2.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "4b366a394f84e20263c00bdce7ae7bad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 340870, "upload_time": "2018-10-05T00:12:41", "url": "https://files.pythonhosted.org/packages/a7/15/383cbc9a440afc7ec6ce3e167d61974c6d425696ff90aa14ce0fa3c6d675/txtorcon-18.2.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.2.0 tarball", "digests": { "md5": "a7df623f400668daf588a6f028864c52", "sha256": "b1714dfa633cb4097c9ea649c8c49657d9d22a990cc465bb904620428c5e684e" }, "downloads": -1, "filename": "txtorcon-18.2.0.tar.gz", "has_sig": true, "md5_digest": "a7df623f400668daf588a6f028864c52", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 309656, "upload_time": "2018-10-05T00:12:36", "url": "https://files.pythonhosted.org/packages/08/02/5a38afe0c96bd8da466716f51c72b3b52d3a76399e62b37494b97489f74a/txtorcon-18.2.0.tar.gz" } ], "18.3.0": [ { "comment_text": "txtorcon v18.3.0 wheel", "digests": { "md5": "ed094c4d7d5c53c301419a9fb80404c0", "sha256": "8edac3b6d9c633b9182b4e5a2ed3ac86953ed44b9ea230aac3e0708c30b73861" }, "downloads": -1, "filename": "txtorcon-18.3.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "ed094c4d7d5c53c301419a9fb80404c0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 341074, "upload_time": "2018-10-05T23:11:14", "url": "https://files.pythonhosted.org/packages/0d/d5/1a42358e22223390a1dd1aac60a8bfe8a04e948c07bad2b4ff12a042dba7/txtorcon-18.3.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v18.3.0 tarball", "digests": { "md5": "31492e847973710f6533e9979a134ffa", "sha256": "5601956b3a2452526cd1ea31662696a51ddbf8ed6452633ee464fc1ff275f8b0" }, "downloads": -1, "filename": "txtorcon-18.3.0.tar.gz", "has_sig": true, "md5_digest": "31492e847973710f6533e9979a134ffa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 310025, "upload_time": "2018-10-05T23:11:09", "url": "https://files.pythonhosted.org/packages/a2/71/2fe0c7d9350ff95cd22128f375dbf2b49438ca1a5d8ca0795311a964586b/txtorcon-18.3.0.tar.gz" } ], "19.0.0": [ { "comment_text": "txtorcon v19.0.0 wheel", "digests": { "md5": "33779c9ddbc959b3c17bf6910c35817f", "sha256": "196b7b5726e3c69a602071295368da9205c0cd1e26aba37536d3b8fb3b08ac9d" }, "downloads": -1, "filename": "txtorcon-19.0.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "33779c9ddbc959b3c17bf6910c35817f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 338271, "upload_time": "2019-01-16T05:14:51", "url": "https://files.pythonhosted.org/packages/a2/88/f8b7f4ac3c82864e8b992a33a58cb40d7154c606e7b1e909a8de73dce780/txtorcon-19.0.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v19.0.0 tarball", "digests": { "md5": "7e6ef4d29c2cc51e85614cd2d57bf8df", "sha256": "3731b740653e3f551412744f1fcd7fa6f04aa9fa37c90dc6c9152e619886bf3b" }, "downloads": -1, "filename": "txtorcon-19.0.0.tar.gz", "has_sig": true, "md5_digest": "7e6ef4d29c2cc51e85614cd2d57bf8df", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 310418, "upload_time": "2019-01-16T05:14:46", "url": "https://files.pythonhosted.org/packages/b7/93/e16d8160bac3a19d13c9ead9ac6b38f837f2534d40884109a334be1f849c/txtorcon-19.0.0.tar.gz" } ], "19.1.0": [ { "comment_text": "txtorcon v19.1.0 wheel", "digests": { "md5": "cee1a33539664690c28588b45631f0f0", "sha256": "e93aef50f339b537ed969a4d83a704a2870658bb49cdfa95495ba5a740548d32" }, "downloads": -1, "filename": "txtorcon-19.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "cee1a33539664690c28588b45631f0f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 341041, "upload_time": "2019-09-10T06:52:57", "url": "https://files.pythonhosted.org/packages/4e/36/910a6991534847eda30e99a7c363cd2bbe6710fc05a2d54c9abe22507ffe/txtorcon-19.1.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v19.1.0 tarball", "digests": { "md5": "fb323f9874298a8145dbe8d43c387932", "sha256": "25d8e52c3eac45bb90ff958ca7cdd7674fb3284e3a50826a58ab7b9578b15ea5" }, "downloads": -1, "filename": "txtorcon-19.1.0.tar.gz", "has_sig": true, "md5_digest": "fb323f9874298a8145dbe8d43c387932", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312682, "upload_time": "2019-09-10T06:52:52", "url": "https://files.pythonhosted.org/packages/8c/26/d5b2fba4ffbcb23957ff2cee4d7d0a2d667372b9eb04807058bd561c8e8f/txtorcon-19.1.0.tar.gz" } ] }, "urls": [ { "comment_text": "txtorcon v19.1.0 wheel", "digests": { "md5": "cee1a33539664690c28588b45631f0f0", "sha256": "e93aef50f339b537ed969a4d83a704a2870658bb49cdfa95495ba5a740548d32" }, "downloads": -1, "filename": "txtorcon-19.1.0-py2.py3-none-any.whl", "has_sig": true, "md5_digest": "cee1a33539664690c28588b45631f0f0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 341041, "upload_time": "2019-09-10T06:52:57", "url": "https://files.pythonhosted.org/packages/4e/36/910a6991534847eda30e99a7c363cd2bbe6710fc05a2d54c9abe22507ffe/txtorcon-19.1.0-py2.py3-none-any.whl" }, { "comment_text": "txtorcon v19.1.0 tarball", "digests": { "md5": "fb323f9874298a8145dbe8d43c387932", "sha256": "25d8e52c3eac45bb90ff958ca7cdd7674fb3284e3a50826a58ab7b9578b15ea5" }, "downloads": -1, "filename": "txtorcon-19.1.0.tar.gz", "has_sig": true, "md5_digest": "fb323f9874298a8145dbe8d43c387932", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 312682, "upload_time": "2019-09-10T06:52:52", "url": "https://files.pythonhosted.org/packages/8c/26/d5b2fba4ffbcb23957ff2cee4d7d0a2d667372b9eb04807058bd561c8e8f/txtorcon-19.1.0.tar.gz" } ] }