Skip to main content

pytun is a Python module which let you create TUN/TAP device very easily.

License: MIT (see LICENSE)

Installation and Dependencies

Install pytun with pip install python-pytun or download this archive, decompress it and execute python setup.py install. As pytun is a C module you will need a compiler (e.g GCC) and the Python developpement headers installed on your system (e.g on Debian-like distribution check that build-essential and python-dev are present). There are no dependencies other than the Python Standard Library.

Documentation

NOTE: On most distributions you will need to be root to create TUN/TAP devices.

To create a TUN device:

from pytun import TunTapDevice

tun = TunTapDevice()

To create a TAP device:

from pytun import TunTapDevice, IFF_TAP

tap = TunTapDevice(flags=IFF_TAP)

To create a TUN/TAP device with a custom name use the name keyword:

tun = TunTapDevice(name='mytun')

You can get/set some parameters of the device directly:

print tun.name
tun.addr = '10.8.0.1'
tun.dstaddr = '10.8.0.2'
tun.netmask = '255.255.255.0'
tun.mtu = 1500

If the device is a TAP you can also get/set its MAC address:

tap.hwaddr = '\x00\x11\x22\x33\x44\x55'
print tap.hwaddr

To make the device persistent:

tun.persist(True)

To bring up the device:

tun.up()

To bring down the device:

tun.down()

To enable/disable the queue associated with the device (works only if it has been created with IFF_MULTI_QUEUE):

tun.mq_attach() # enable the queue
tun.mq_attach(False) # disable the queue

To read/write to the device, use the methods read(size) and write(buf):

buf = tun.read(tun.mtu)
tun.write(buf)

To close the device:

tun.close()

You can also use TunTapDevice objects with all functions that expect a fileno() method (e.g select())

Download files

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

Source Distribution

python-pytun-2.4.1.tar.gz (8.5 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (27.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

python_pytun-2.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (27.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

python_pytun-2.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl (32.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl (31.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (27.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl (31.9 kB view details)

Uploaded CPython 3.9

python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl (31.2 kB view details)

Uploaded CPython 3.9

python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl (31.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl (32.4 kB view details)

Uploaded CPython 3.8

python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl (31.7 kB view details)

Uploaded CPython 3.8

python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl (31.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (29.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl (32.7 kB view details)

Uploaded CPython 3.7m

python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl (31.9 kB view details)

Uploaded CPython 3.7m

python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl (30.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

python_pytun-2.4.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl (31.8 kB view details)

Uploaded CPython 3.6m

python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.6m

python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded CPython 3.5m

python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl (31.0 kB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl (30.9 kB view details)

Uploaded CPython 3.5m

python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl (29.1 kB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl (29.6 kB view details)

Uploaded CPython 2.7mu

python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl (29.1 kB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl (29.6 kB view details)

Uploaded CPython 2.7m

File details

Details for the file python-pytun-2.4.1.tar.gz.

File metadata

  • Download URL: python-pytun-2.4.1.tar.gz
  • Upload date:
  • Size: 8.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python-pytun-2.4.1.tar.gz
Algorithm Hash digest
SHA256 20b53ea7a09dfe173c00ec0a00eea508b05e959f5dc4b4bb698aa52252192f8f
MD5 4c426775e9a5699977c1fbb0f5ee8452
BLAKE2b-256 b3744fecb3eeb2de2e672db6eca5088afa63541f0abeaaef5b7c6549f430c084

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10a56ec550f838849b38548ffbdbf82ac83f41a2ad738ac7233a4ff7a1486b67
MD5 af98c333857c8bd7b7bae1fceb5188d7
BLAKE2b-256 7204b214cfac2a0434051fe2f517badff3717f954646adcf88fcbac9cbf5bba5

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6f43337550bc08977a5931518ba2a55d9d0f581c417a28cf89bb9dcb61c6911e
MD5 24259d44442618750a654fb61ff81c60
BLAKE2b-256 52a0446899953eea4c10bbccf36742b65812d318437481403142c30af10d4620

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e17a36fd49df08dcb28fe033b3f4a56ffbd9677e8bc63773df970a8b2cd6a0aa
MD5 79514faa2d53cb509e5089aa4052e4e6
BLAKE2b-256 c967c7c676d40314f046a337a5291b226b83c57d783d9eb5055857c5f3ec53b8

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a93cdfe99ffc3f129ac2cd2030142d7c7920eecc0e7232941df8dcf0dd9491d
MD5 9e0eea514ce008b98cfc2f7b46e3d7c5
BLAKE2b-256 76ed3571b917157a91b7ad8001521b7d9c1c52495d3d8ad9313ba3750b0c52a6

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7164330f64fe3fd53c94ab7b57ce4f21de77d23c54bf957618a482a26e8cd6c9
MD5 6911aa54cc33d491841a9c82c76178e4
BLAKE2b-256 40a0175956acd0b24e47e42519b7eef7c35cdc56cee77fdafe004217372e70c0

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d5a5706da7dbd5d623956959fe3a7a65936f69187821167be5a6ce128fab927
MD5 cf9994ce430231410381bb4074accf06
BLAKE2b-256 a7daae4ad297e8c011e97ba2fcf5c2e47625e96ece5ee29085276e9ffd45c655

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 029b831a17184b93639f485ae73f13c78db9e87af59d620f19cc8d339be1e1bc
MD5 991a2ec49120b33e408175f1ff20f2cd
BLAKE2b-256 49ab03407d8010438cfdc819560359fe1f76115be27b1179f910f3a70cf4155e

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdf1db07ea00bb1fe9dd2237054122a80a2684195edd7fa497d6beffbfe8a8d8
MD5 6b6b6fdf9e749ab0e6585f2d279cd80d
BLAKE2b-256 f52de42c9392cc6960eae1fc807763b2e11d98555ae30653476aea4a619cb54d

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 32c7c06467653f308359e36c429040918873211b3cc0488f28790156bdb19cf3
MD5 e2e0b00706aeafec3cb5721b36fd0479
BLAKE2b-256 e438e047b91fdd1941a8b8f39666dceabc70994260c0e694aac0fff710c969dd

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce28e8b17bf6af24ed9adf06d126bf14cf29a2c768fe7cdc432cf89bc926f4ed
MD5 b7d2072903e5ee70d308adf1b1efa70d
BLAKE2b-256 1a9d107c54856dff3a1d879126b659b1c187d12bcc30cdc79c0f393f0f6b1e91

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c0300d07321c9a9174ac6345dc2e37563b0ed7f708abd5f72aeafce989ba8a6e
MD5 1329050b988817df193c7cd88cddf3e5
BLAKE2b-256 dd6d97499ca661030ba003f26044005fe4bace6d0cf6974c366e141e7f565286

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dff659c2a4bcdf51e72593f4373ed0bca4535d657e325845c7b20499f84de946
MD5 003b84868ed2cf86996a60efff573507
BLAKE2b-256 8b4199ac3e06ec7a041b9859e6a691b24865c1716312bd91f0a31fe425bea4cc

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf71a416ef2d5836b409fc9f6a35072343d0e46372bb001a55ce21df6479e148
MD5 a6254d4ce0ca456c40a9acd3c1e1e0c3
BLAKE2b-256 d3d8ff10c686e55a0b2e7f89d08281515b18232271524ab75181f5a51b48feca

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 31.2 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1bba06f87cf49dd226907c5fcdfab86edd427027cd863b47b69c9ba863b81428
MD5 15953d1e5c1cb4c0c2f84c34142bc376
BLAKE2b-256 26bb4d533936a49a0b3b12993c08e640fc37b7227cb7580f38fc8afc09667397

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fbbbe30b3c3d5ed87e8db7e9ff521123844096b5e71ceab90e3c45b423ff7b6
MD5 14bd0fc078f0355d7ad27a117c7cb809
BLAKE2b-256 a9fcaf2b7ffc17effee1eea5fa484cdcf3f6085983c17c82f9b63eae3c6b4134

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7be32f99adc656a91e810c6a6cbfda0001b55f64d3671cbe9376f98a33cd02b
MD5 304ed6f2d65557af8ec8be637a648a0a
BLAKE2b-256 452a574d9630a5da26b1d50a739c1cd92ccc8baaebde38b5648e54b803e5f394

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 32.4 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fe69665812eca121ad67d7cad0fc0188e0a8e9ada13b2160fd72599eb9d6785
MD5 98f6c1b95f381c3f446463b6da9a32e2
BLAKE2b-256 2935ba54b4c6aac9fcaee7b7275fb769ddb7143b01b17c0cf9aeb72b36648a3c

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 31.7 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 290ccface53aac4978b3d6318b63cef40218f9cb2d3d8d31e23360e378a60d89
MD5 e02ee4f16de8376491384e25a09604c3
BLAKE2b-256 fde297be63607c85d6aaa88fd42cd8a7ede7eaa5a61def6431ed22994eefdcaf

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a635cf1ce6954062d98e153d8ab13fc1f46b8c020b49c6d3d148c5f6bd9bc7ef
MD5 e163d11c59c757f744c27a34d613ee0b
BLAKE2b-256 df27122f29a42c88f3ddff0a2734e044f7c483af3feba5970e2a0d3649a33b63

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f220e52e870082f17a169689dc1527bb2deab04e7b922f4d7092ddd908a51151
MD5 276a4598a9b14c5967da2878e2e13a09
BLAKE2b-256 33627699da0923a2078cf7d4e078cca935d29ee6fd04b764b4b55705b8b31c3a

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 32.7 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e13ae10c2e4d7ca9d9993b1d448c70e1fdbea000b016a9ac9064fdcc498fbd9a
MD5 b20a920adfee73688d211c85d505c643
BLAKE2b-256 fd2aa8f18e47a278b49b4f2549107a3c8427f28b71d7d96162729a42d3b38df4

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 31.9 kB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47fbf0eacc1a3f77ceeb632596c8d9cc39a7f6235a710aa7b970577b09d0194d
MD5 06eca3f29d6e34b87b7d389c5f2f2e9a
BLAKE2b-256 0bf1c6c6e71d4ffae4c0c49ceb45493455020aa56c974bfb47536db29f8ae09b

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f47f596d89cc2a51e74dfa99759320414b38a4165102fdf5c8fcba25423ed433
MD5 7d093b585ff51018c6d4844686668338
BLAKE2b-256 c12261e16a75846c68dccc02b851a4fe37b0f15acb06c7b5abcf507403d9d2a0

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00e95d50a0e99c3e425041aa312adafb81defda056d4f1769468a32d40aa2360
MD5 855bb5f43b0454908b16ae685e1a29f4
BLAKE2b-256 6dcdbf9cf1817ad3d151b2601acc5d11bdccfdecfd1020657994eef9b811669f

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 31.8 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f087c6301d17363356c2d23073e47d3e5abd9a49df9550fefd4759fc62fac0bd
MD5 e8c6d9bc460f3dc2d043f4c8a8b67b53
BLAKE2b-256 24362678acdc83c4d25e21584714137cf8e0dc77d96808c879722aff9246faaa

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 31.0 kB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 831576ba1ba9d4b02c2af1825aec031d3e79a0d6e27a691a8348cbe6c9cb17b5
MD5 13ee561217add85962c32a4d6e0dc3ae
BLAKE2b-256 8749f17cb763a8febd3132094685991b16769b9044cc67d558c50e3f5ec38d3f

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl
  • Upload date:
  • Size: 31.5 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28523749d0825211af163551a92233455bbd23e128f1d00dd25048b79d97fa34
MD5 a51cf24b10898b7a8906d22d9f3414ca
BLAKE2b-256 e327726e467aab205f546aeb97aa9a36c4ef249fbeb6886d27b95732665b723a

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6575ce39e3bcbb52e98983c0b15da3dcdbbf1866924837e995b3f0b78037ef73
MD5 55ab80eaa68dc37e6dc380749fb53e8f
BLAKE2b-256 0a2c052eb74b60ae9bb262ccfa38e22c0fdb3f0598429a11bcf48784ed2b2287

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 30.9 kB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0b2516d347f5090ba58bd70003d9cb1d6c6071e81bd133f445132d644ed2c631
MD5 266033ad958095ee0e8cedc47a55b051
BLAKE2b-256 79c1e1378cb510a855e902b105b6ad52990f01610d640468fb9446c03da2e5a5

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 901aa6206411286b82c1e943fbcc1829192051b208967d5b2a0181a2846c9f98
MD5 31becabbc66dbf9ae29e95e10543432d
BLAKE2b-256 3a7a40c7ccca38dd0a7120e333f17b3aa4379a585c22aed93b935b9609fbe26b

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8c8a2f0c98958ecd038616945c40d00ba6b70ce7da9624ff04cf5ad36b80a85e
MD5 ef608becaa6908a122b660b3b3946814
BLAKE2b-256 07fae5491ec4195905c28289149898f1ddfe2732f21f275cf05147ff797bf354

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

File hashes

Hashes for python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b1d456e62f32f4d1d7e00d868741d245c58d98602d9b6e99d771b8b5b412572d
MD5 a66622cad91058a0c20af3647eb4dbae
BLAKE2b-256 06143740fba2c5f8200ad51f72e3489c57ec73cce2527f0ab83e3327b191d027

See more details on using hashes here.

File details

Details for the file python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 29.6 kB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a971384e2a700b46e2f07adb90d65d60d1c3965e9963964b5f15b0781a6524e1
MD5 31779136456e86e14788cd4c639eaf20
BLAKE2b-256 b6936d7b6d4f12ca8fc002fedcf05ab4134f8d36c02fdd329e84b2e6485052f5

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2.4.1 This release

34 files

2.3.0

7 files

2.2.1

1 file

2.2

1 file

2.1

1 file

2.0

1 file

1.0

1 file

0.2

1 file

0.1

1 file

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page