Skip to main content

An asynchronous networking framework written in Python

Project description

pypi travis circleci

For information on changes in this release, see the NEWS file.

What is this?

Twisted is an event-based framework for internet applications, supporting Python 2.7 and Python 3.5+. It includes modules for many different purposes, including the following:

  • twisted.web: HTTP clients and servers, HTML templating, and a WSGI server

  • twisted.conch: SSHv2 and Telnet clients and servers and terminal emulators

  • twisted.words: Clients and servers for IRC, XMPP, and other IM protocols

  • twisted.mail: IMAPv4, POP3, SMTP clients and servers

  • twisted.positioning: Tools for communicating with NMEA-compatible GPS receivers

  • twisted.names: DNS client and tools for making your own DNS servers

  • twisted.trial: A unit testing framework that integrates well with Twisted-based code.

Twisted supports all major system event loops – select (all platforms), poll (most POSIX platforms), epoll (Linux), kqueue (FreeBSD, macOS), IOCP (Windows), and various GUI event loops (GTK+2/3, Qt, wxWidgets). Third-party reactors can plug into Twisted, and provide support for additional event loops.

Installing

To install the latest version of Twisted using pip:

$ pip install twisted

Additional instructions for installing this software are in the installation instructions.

Documentation and Support

Twisted’s documentation is available from the Twisted Matrix website. This documentation contains how-tos, code examples, and an API reference.

Help is also available on the Twisted mailing list.

There is also a pair of very lively IRC channels, #twisted (for general Twisted questions) and #twisted.web (for Twisted Web), on chat.freenode.net.

Unit Tests

Twisted has a comprehensive test suite, which can be run by tox:

$ tox -l            # to view all test environments
$ tox -e py27-tests # to run the tests for Python 2.7
$ tox -e py35-tests # to run the tests for Python 3.5

You can test running the test suite under the different reactors with the TWISTED_REACTOR environment variable:

$ env TWISTED_REACTOR=epoll tox -e py27-tests

Some of these tests may fail if you:

  • don’t have the dependencies required for a particular subsystem installed,

  • have a firewall blocking some ports (or things like Multicast, which Linux NAT has shown itself to do), or

  • run them as root.

Warranty

THIS SOFTWARE IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE USE OF THIS SOFTWARE IS WITH YOU.

IN NO EVENT WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE LIBRARY, BE LIABLE TO YOU FOR ANY DAMAGES, EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

Again, see the included LICENSE file for specific legal details.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

Twisted-20.3.0.tar.bz2 (3.1 MB view details)

Uploaded Source

Built Distributions

Twisted-20.3.0-cp37-cp37m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86-64

Twisted-20.3.0-cp37-cp37m-win32.whl (3.1 MB view details)

Uploaded CPython 3.7m Windows x86

Twisted-20.3.0-cp37-cp37m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.7m

Twisted-20.3.0-cp37-cp37m-manylinux1_i686.whl (3.1 MB view details)

Uploaded CPython 3.7m

Twisted-20.3.0-cp37-cp37m-macosx_10_6_intel.whl (3.1 MB view details)

Uploaded CPython 3.7m macOS 10.6+ intel

Twisted-20.3.0-cp36-cp36m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.6m Windows x86-64

Twisted-20.3.0-cp36-cp36m-win32.whl (3.1 MB view details)

Uploaded CPython 3.6m Windows x86

Twisted-20.3.0-cp36-cp36m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.6m

Twisted-20.3.0-cp36-cp36m-manylinux1_i686.whl (3.1 MB view details)

Uploaded CPython 3.6m

Twisted-20.3.0-cp36-cp36m-macosx_10_6_intel.whl (3.1 MB view details)

Uploaded CPython 3.6m macOS 10.6+ intel

Twisted-20.3.0-cp35-cp35m-win_amd64.whl (3.1 MB view details)

Uploaded CPython 3.5m Windows x86-64

Twisted-20.3.0-cp35-cp35m-win32.whl (3.1 MB view details)

Uploaded CPython 3.5m Windows x86

Twisted-20.3.0-cp35-cp35m-manylinux1_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.5m

Twisted-20.3.0-cp35-cp35m-manylinux1_i686.whl (3.1 MB view details)

Uploaded CPython 3.5m

Twisted-20.3.0-cp35-cp35m-macosx_10_6_intel.whl (3.1 MB view details)

Uploaded CPython 3.5m macOS 10.6+ intel

Twisted-20.3.0-cp27-cp27mu-manylinux1_x86_64.whl (3.2 MB view details)

Uploaded CPython 2.7mu

Twisted-20.3.0-cp27-cp27mu-manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 2.7mu

Twisted-20.3.0-cp27-cp27m-win_amd64.whl (3.2 MB view details)

Uploaded CPython 2.7m Windows x86-64

Twisted-20.3.0-cp27-cp27m-win32.whl (3.2 MB view details)

Uploaded CPython 2.7m Windows x86

Twisted-20.3.0-cp27-cp27m-manylinux1_x86_64.whl (3.2 MB view details)

Uploaded CPython 2.7m

Twisted-20.3.0-cp27-cp27m-manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 2.7m

Twisted-20.3.0-cp27-cp27m-macosx_10_6_intel.whl (3.2 MB view details)

Uploaded CPython 2.7m macOS 10.6+ intel

File details

Details for the file Twisted-20.3.0.tar.bz2.

File metadata

  • Download URL: Twisted-20.3.0.tar.bz2
  • Upload date:
  • Size: 3.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0.tar.bz2
Algorithm Hash digest
SHA256 d72c55b5d56e176563b91d11952d13b01af8725c623e498db5507b6614fc1e10
MD5 fc16d575730db7d0cddd09fc35af3eea
BLAKE2b-256 4ab44973c7ccb5be2ec0abc779b7d5f9d5f24b17b0349e23240cfc9dc3bd83cc

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d95803193561a243cb0401b0567c6b7987d3f2a67046770e1dccd1c9e49a9780
MD5 36fce2eeea45ca3e8b16034ede8be3bf
BLAKE2b-256 5bb1c1944ce7c2e42afc0ee8888df118d9691c5e446cf6fbb0ec1898f2bc0bc9

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f3c19e5bd42bbe4bf345704ad7c326c74d3fd7a1b3844987853bef180be638d4
MD5 01911fb7f3fc75e8e7528073e82826ba
BLAKE2b-256 798e7bdeba259b98d3702c06ca28bab76a7871cec5de06df18fb9b8d372de13a

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 894f6f3cfa57a15ea0d0714e4283913a5f2511dbd18653dd148eba53b3919797
MD5 e9acf6663b91c04aeefd8d60a30d1c1b
BLAKE2b-256 b8f9489416dda6de8ae6419356bf003c10d1ce6fb8377b6a3207b02b3a39c42a

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 f058bd0168271de4dcdc39845b52dd0a4a2fecf5f1246335f13f5e96eaebb467
MD5 b7715f34fb31c68aa431efb5c4faa422
BLAKE2b-256 df0c3bdbc8be6adab98e69a16b26931a1c6f28a18fa628d7d397dda1a7d49a42

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp37-cp37m-macosx_10_6_intel.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp37-cp37m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp37-cp37m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 e92703bed0cc21d6cb5c61d66922b3b1564015ca8a51325bd164a5e33798d504
MD5 42cacb1f22886088b6de28e5d72c78b3
BLAKE2b-256 656e8c2e113fe866e280bca8f45192dba4db8ce1796b5fb8dcc70daeb08f2f15

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3281d9ce889f7b21bdb73658e887141aa45a102baf3b2320eafcfba954fcefec
MD5 796174c9d44c0d5639d9eac2dfc73da8
BLAKE2b-256 d73478c513dee7ffa0f897fda8623f571e2b6aca0f504cdb91da65e2ac492074

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 70952c56e4965b9f53b180daecf20a9595cf22b8d0935cd3bd664c90273c3ab2
MD5 1a855fb60536453123eb4a180b89b45f
BLAKE2b-256 6529207a946b1379ffc77be30b9593a7e008e3d92ea1bea1b73999ddfa8e83fe

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2182000d6ffc05d269e6c03bfcec8b57e20259ca1086180edaedec3f1e689292
MD5 425b7864b9bd72ab223d87a3018d84ce
BLAKE2b-256 b7041a664c9e5ec0224a1c1a154ddecaa4dc7b8967521bba225efcc41a03d5f3

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c547fd0215db9da8a1bc23182b309e84a232364cc26d829e9ee196ce840b114
MD5 41c9303a115c32e11012e112dc8148b3
BLAKE2b-256 24bf4f9595bfa1bb7faf308262747fdcac56dad364d1922e04d07c1af7681d1f

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp36-cp36m-macosx_10_6_intel.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp36-cp36m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.6m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp36-cp36m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 a58e61a2a01e5bcbe3b575c0099a2bcb8d70a75b1a087338e0c48dd6e01a5f15
MD5 ce290ddda7fa20e9d5ecb18a0c8cba25
BLAKE2b-256 75d6fcb5f4cc0eec7ae4543052ca38de5f88f6b96f9faab2caabbead1c873f38

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 25ffcf37944bdad4a99981bc74006d735a678d2b5c193781254fbbb6d69e3b22
MD5 4fb8223f750a0623b407f9f91e02a156
BLAKE2b-256 6da121a5793f374c589e9df69bc8d63af932c1e6e198a26961616667ac4f06aa

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 147780b8caf21ba2aef3688628eaf13d7e7fe02a86747cd54bfaf2140538f042
MD5 ada97f623f64e1b9766d12d9b65dfebf
BLAKE2b-256 7aac7e261e27a92b6aee5d745ce9ca311d96eb188a3c394ad41198d03d4d9dc0

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 040eb6641125d2a9a09cf198ec7b83dd8858c6f51f6770325ed9959c00f5098f
MD5 5dbe6283fcf8d0de3e6d289bec20006e
BLAKE2b-256 8635277208855efd887688b50dbeefd2b5a68f02867fcc197a57d294db6782b1

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 158ddb80719a4813d292293ac44ba41d8b56555ed009d90994a278237ee63d2c
MD5 4e3fbfd5420097a9404b331f339da57b
BLAKE2b-256 72d4a9b890fefedc26c5cfabe941d7b49e23e90af020b47aec90b1132f68ced6

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp35-cp35m-macosx_10_6_intel.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp35-cp35m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp35-cp35m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 c09c47ff9750a8e3aa60ad169c4b95006d455a29b80ad0901f031a103b2991cd
MD5 786d326bfcef454edd41744efe810185
BLAKE2b-256 8feb49e6c9ccd2dcc609202d51204c56a61a28a93cdd76a93bf4bf7f69264b33

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 7408c6635ee1b96587289283ebe90ee15dbf9614b05857b446055116bc822d29
MD5 743c701423db6be0f39318585df3f4bc
BLAKE2b-256 4d15890ba1d83dc29ad71427ce5174d5963b84a25c8cf1973815107709fbb520

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 94ac3d55a58c90e2075c5fe1853f2aa3892b73e3bf56395f743aefde8605eeaa
MD5 da57b660abcbe7801913bd93e8399cbe
BLAKE2b-256 6a8822d7696defd59e0a2c3a12a1546cace8e871e873ab9598d293d4681d2b8e

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 cd1dc5c85b58494138a3917752b54bb1daa0045d234b7c132c37a61d5483ebad
MD5 87e7e125f5ffcbb5378ecf3fe783796d
BLAKE2b-256 9f1f0fac71451a6dd074f6c194809f08f7588b62b2ba07f93ff649ace8b729fa

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 ca3a0b8c9110800e576d89b5337373e52018b41069bc879f12fa42b7eb2d0274
MD5 7571609df5986b6d49b97beb5c660357
BLAKE2b-256 31fa02d96bb2aa336e792f37c41d770d6db5712b82a9c00971d1367da2f07bcf

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 356e8d8dd3590e790e3dba4db139eb8a17aca64b46629c622e1b1597a4a92478
MD5 8d6ebd8ebb97979cd00d6f98df6a579b
BLAKE2b-256 e68e2475ae7d3220f3cd351b30d107f792ac24feceae3686b9dacb3c07d436e4

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d267125cc0f1e8a0eed6319ba4ac7477da9b78a535601c49ecd20c875576433a
MD5 e0cea303a080d049cf9c10bb43ec286d
BLAKE2b-256 8efe89e33d2ae93264c9a8ce8ccf03dfb416bcfc2645ed5aa86a00857715a74c

See more details on using hashes here.

File details

Details for the file Twisted-20.3.0-cp27-cp27m-macosx_10_6_intel.whl.

File metadata

  • Download URL: Twisted-20.3.0-cp27-cp27m-macosx_10_6_intel.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 2.7m, macOS 10.6+ intel
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.8.0 tqdm/4.35.0 CPython/3.7.4

File hashes

Hashes for Twisted-20.3.0-cp27-cp27m-macosx_10_6_intel.whl
Algorithm Hash digest
SHA256 cdbc4c7f0cd7a2218b575844e970f05a1be1861c607b0e048c9bceca0c4d42f7
MD5 6f320e48c903d5022f56562702a3ba01
BLAKE2b-256 92553117dffcc3cf2bd79cb46935169aaaea7b232b8f633da6bf938949b2b92d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page