Skip to main content
Files added late

21 files were added to this release more than 14 days after its initial publication. Inspect the release files before installing.

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())

Release files for python-pytun 2.4.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Files added late

21 files were uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release files before installing.

Source distribution (sdist)

Source distribution for python-pytun 2.4.1
File Size Uploaded
python-pytun-2.4.1.tar.gz 8.5 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for python-pytun 2.4.1
File
python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.5+ x86-64, Linux glibc 2.28+ x86-64 Details
python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
python_pytun-2.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
python_pytun-2.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64, Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
python_pytun-2.4.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64, Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64 Details
python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64 Details
python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64 Details
python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64 Details
python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64 Details
python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64 Details

Total release size: 1.0 MB

Release files / python-pytun-2.4.1.tar.gz

Download URL python-pytun-2.4.1.tar.gz
Size 8.5 kB
Tags Source
SHA-256 checksum
How to use checksums
20b53ea7a09dfe173c00ec0a00eea508b05e959f5dc4b4bb698aa52252192f8f
BLAKE2b-256 checksum
How to use checksums
b3744fecb3eeb2de2e672db6eca5088afa63541f0abeaaef5b7c6549f430c084
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Size 27.7 kB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
10a56ec550f838849b38548ffbdbf82ac83f41a2ad738ac7233a4ff7a1486b67
BLAKE2b-256 checksum
How to use checksums
7204b214cfac2a0434051fe2f517badff3717f954646adcf88fcbac9cbf5bba5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.11

Release files / python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Size 28.1 kB
Tags CPython 3.14 Linux glibc 2.28+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
6f43337550bc08977a5931518ba2a55d9d0f581c417a28cf89bb9dcb61c6911e
BLAKE2b-256 checksum
How to use checksums
52a0446899953eea4c10bbccf36742b65812d318437481403142c30af10d4620
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.13.11

Release files / python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Size 27.4 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e17a36fd49df08dcb28fe033b3f4a56ffbd9677e8bc63773df970a8b2cd6a0aa
BLAKE2b-256 checksum
How to use checksums
c967c7c676d40314f046a337a5291b226b83c57d783d9eb5055857c5f3ec53b8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 29.1 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
4a93cdfe99ffc3f129ac2cd2030142d7c7920eecc0e7232941df8dcf0dd9491d
BLAKE2b-256 checksum
How to use checksums
76ed3571b917157a91b7ad8001521b7d9c1c52495d3d8ad9313ba3750b0c52a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Size 27.4 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7164330f64fe3fd53c94ab7b57ce4f21de77d23c54bf957618a482a26e8cd6c9
BLAKE2b-256 checksum
How to use checksums
40a0175956acd0b24e47e42519b7eef7c35cdc56cee77fdafe004217372e70c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 29.1 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
9d5a5706da7dbd5d623956959fe3a7a65936f69187821167be5a6ce128fab927
BLAKE2b-256 checksum
How to use checksums
a7daae4ad297e8c011e97ba2fcf5c2e47625e96ece5ee29085276e9ffd45c655
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.1.0 CPython/3.13.2

Release files / python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 32.2 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
029b831a17184b93639f485ae73f13c78db9e87af59d620f19cc8d339be1e1bc
BLAKE2b-256 checksum
How to use checksums
49ab03407d8010438cfdc819560359fe1f76115be27b1179f910f3a70cf4155e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 29.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
fdf1db07ea00bb1fe9dd2237054122a80a2684195edd7fa497d6beffbfe8a8d8
BLAKE2b-256 checksum
How to use checksums
f52de42c9392cc6960eae1fc807763b2e11d98555ae30653476aea4a619cb54d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 31.2 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
32c7c06467653f308359e36c429040918873211b3cc0488f28790156bdb19cf3
BLAKE2b-256 checksum
How to use checksums
e438e047b91fdd1941a8b8f39666dceabc70994260c0e694aac0fff710c969dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 28.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
ce28e8b17bf6af24ed9adf06d126bf14cf29a2c768fe7cdc432cf89bc926f4ed
BLAKE2b-256 checksum
How to use checksums
1a9d107c54856dff3a1d879126b659b1c187d12bcc30cdc79c0f393f0f6b1e91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 30.9 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c0300d07321c9a9174ac6345dc2e37563b0ed7f708abd5f72aeafce989ba8a6e
BLAKE2b-256 checksum
How to use checksums
dd6d97499ca661030ba003f26044005fe4bace6d0cf6974c366e141e7f565286
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 27.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
dff659c2a4bcdf51e72593f4373ed0bca4535d657e325845c7b20499f84de946
BLAKE2b-256 checksum
How to use checksums
8b4199ac3e06ec7a041b9859e6a691b24865c1716312bd91f0a31fe425bea4cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl

Download URL python_pytun-2.4.1-cp39-cp39-manylinux2014_x86_64.whl
Size 31.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cf71a416ef2d5836b409fc9f6a35072343d0e46372bb001a55ce21df6479e148
BLAKE2b-256 checksum
How to use checksums
d3d8ff10c686e55a0b2e7f89d08281515b18232271524ab75181f5a51b48feca
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp39-cp39-manylinux1_x86_64.whl
Size 31.2 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
1bba06f87cf49dd226907c5fcdfab86edd427027cd863b47b69c9ba863b81428
BLAKE2b-256 checksum
How to use checksums
26bb4d533936a49a0b3b12993c08e640fc37b7227cb7580f38fc8afc09667397
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Size 31.5 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
2fbbbe30b3c3d5ed87e8db7e9ff521123844096b5e71ceab90e3c45b423ff7b6
BLAKE2b-256 checksum
How to use checksums
a9fcaf2b7ffc17effee1eea5fa484cdcf3f6085983c17c82f9b63eae3c6b4134
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 28.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
b7be32f99adc656a91e810c6a6cbfda0001b55f64d3671cbe9376f98a33cd02b
BLAKE2b-256 checksum
How to use checksums
452a574d9630a5da26b1d50a739c1cd92ccc8baaebde38b5648e54b803e5f394
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl

Download URL python_pytun-2.4.1-cp38-cp38-manylinux2014_x86_64.whl
Size 32.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7fe69665812eca121ad67d7cad0fc0188e0a8e9ada13b2160fd72599eb9d6785
BLAKE2b-256 checksum
How to use checksums
2935ba54b4c6aac9fcaee7b7275fb769ddb7143b01b17c0cf9aeb72b36648a3c
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp38-cp38-manylinux1_x86_64.whl
Size 31.7 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
290ccface53aac4978b3d6318b63cef40218f9cb2d3d8d31e23360e378a60d89
BLAKE2b-256 checksum
How to use checksums
fde297be63607c85d6aaa88fd42cd8a7ede7eaa5a61def6431ed22994eefdcaf
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 31.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
a635cf1ce6954062d98e153d8ab13fc1f46b8c020b49c6d3d148c5f6bd9bc7ef
BLAKE2b-256 checksum
How to use checksums
df27122f29a42c88f3ddff0a2734e044f7c483af3feba5970e2a0d3649a33b63
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 29.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
f220e52e870082f17a169689dc1527bb2deab04e7b922f4d7092ddd908a51151
BLAKE2b-256 checksum
How to use checksums
33627699da0923a2078cf7d4e078cca935d29ee6fd04b764b4b55705b8b31c3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl

Download URL python_pytun-2.4.1-cp37-cp37m-manylinux2014_x86_64.whl
Size 32.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e13ae10c2e4d7ca9d9993b1d448c70e1fdbea000b016a9ac9064fdcc498fbd9a
BLAKE2b-256 checksum
How to use checksums
fd2aa8f18e47a278b49b4f2549107a3c8427f28b71d7d96162729a42d3b38df4
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp37-cp37m-manylinux1_x86_64.whl
Size 31.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
47fbf0eacc1a3f77ceeb632596c8d9cc39a7f6235a710aa7b970577b09d0194d
BLAKE2b-256 checksum
How to use checksums
0bf1c6c6e71d4ffae4c0c49ceb45493455020aa56c974bfb47536db29f8ae09b
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 30.7 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f47f596d89cc2a51e74dfa99759320414b38a4165102fdf5c8fcba25423ed433
BLAKE2b-256 checksum
How to use checksums
c12261e16a75846c68dccc02b851a4fe37b0f15acb06c7b5abcf507403d9d2a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / 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 added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 28.2 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
00e95d50a0e99c3e425041aa312adafb81defda056d4f1769468a32d40aa2360
BLAKE2b-256 checksum
How to use checksums
6dcdbf9cf1817ad3d151b2601acc5d11bdccfdecfd1020657994eef9b811669f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl

Download URL python_pytun-2.4.1-cp36-cp36m-manylinux2014_x86_64.whl
Size 31.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
f087c6301d17363356c2d23073e47d3e5abd9a49df9550fefd4759fc62fac0bd
BLAKE2b-256 checksum
How to use checksums
24362678acdc83c4d25e21584714137cf8e0dc77d96808c879722aff9246faaa
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp36-cp36m-manylinux1_x86_64.whl
Size 31.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
831576ba1ba9d4b02c2af1825aec031d3e79a0d6e27a691a8348cbe6c9cb17b5
BLAKE2b-256 checksum
How to use checksums
8749f17cb763a8febd3132094685991b16769b9044cc67d558c50e3f5ec38d3f
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl

Download URL python_pytun-2.4.1-cp35-cp35m-manylinux2014_x86_64.whl
Size 31.5 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
28523749d0825211af163551a92233455bbd23e128f1d00dd25048b79d97fa34
BLAKE2b-256 checksum
How to use checksums
e327726e467aab205f546aeb97aa9a36c4ef249fbeb6886d27b95732665b723a
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp35-cp35m-manylinux2010_x86_64.whl
Size 31.0 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
6575ce39e3bcbb52e98983c0b15da3dcdbbf1866924837e995b3f0b78037ef73
BLAKE2b-256 checksum
How to use checksums
0a2c052eb74b60ae9bb262ccfa38e22c0fdb3f0598429a11bcf48784ed2b2287
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp35-cp35m-manylinux1_x86_64.whl
Size 30.9 kB
Tags CPython 3.5 CPython 3.5 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
0b2516d347f5090ba58bd70003d9cb1d6c6071e81bd133f445132d644ed2c631
BLAKE2b-256 checksum
How to use checksums
79c1e1378cb510a855e902b105b6ad52990f01610d640468fb9446c03da2e5a5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp27-cp27mu-manylinux2010_x86_64.whl
Size 29.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
901aa6206411286b82c1e943fbcc1829192051b208967d5b2a0181a2846c9f98
BLAKE2b-256 checksum
How to use checksums
3a7a40c7ccca38dd0a7120e333f17b3aa4379a585c22aed93b935b9609fbe26b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp27-cp27mu-manylinux1_x86_64.whl
Size 29.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc wide-unicode Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
8c8a2f0c98958ecd038616945c40d00ba6b70ce7da9624ff04cf5ad36b80a85e
BLAKE2b-256 checksum
How to use checksums
07fae5491ec4195905c28289149898f1ddfe2732f21f275cf05147ff797bf354
Upload date
Uploaded using Trusted Publishing?
What is 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

Release files / python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl

File added late

This file was uploaded more than 14 days after the first file in this release.

While project maintainers occasionally add legitimate files to an existing release, late additions can also indicate a security compromise.

We recommend inspecting the release file before installing.

Download URL python_pytun-2.4.1-cp27-cp27m-manylinux2010_x86_64.whl
Size 29.1 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.12+ x86-64
SHA-256 checksum
How to use checksums
b1d456e62f32f4d1d7e00d868741d245c58d98602d9b6e99d771b8b5b412572d
BLAKE2b-256 checksum
How to use checksums
06143740fba2c5f8200ad51f72e3489c57ec73cce2527f0ab83e3327b191d027
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.1 CPython/3.10.4

Release files / python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl

Download URL python_pytun-2.4.1-cp27-cp27m-manylinux1_x86_64.whl
Size 29.6 kB
Tags CPython 2.7 CPython 2.7 pymalloc Linux glibc 2.5+ x86-64
SHA-256 checksum
How to use checksums
a971384e2a700b46e2f07adb90d65d60d1c3965e9963964b5f15b0781a6524e1
BLAKE2b-256 checksum
How to use checksums
b6936d7b6d4f12ca8fc002fedcf05ab4134f8d36c02fdd329e84b2e6485052f5
Upload date
Uploaded using Trusted Publishing?
What is 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

Release history Release notifications | RSS feed

This release

2.4.1 This release

34 release files

2.3.0

7 release files

2.2.1

1 release file

2.2

1 release file

2.1

1 release file

2.0

1 release file

1.0

1 release file

0.2

1 release file

0.1

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page