Drop-in socket replacement for transparent WireGuard tunneling in Python
Project description
wireguard-requests
Drop-in WireGuard tunneling for Python. Route TCP, UDP, and DNS traffic through a WireGuard tunnel without installing WireGuard on the OS.
from wireguard_requests import WireGuardConfig, wireguard_context
import requests
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config):
# All TCP traffic now goes through WireGuard — including HTTPS
r = requests.get("https://ifconfig.me")
print(r.text) # Shows the WireGuard endpoint IP
How it works
wireguard-requests bundles a complete userspace WireGuard + TCP/IP stack:
- boringtun — Cloudflare's WireGuard protocol implementation (Rust)
- smoltcp — Userspace TCP/IP stack with IPv4, IPv6, TCP, UDP, and DNS (Rust)
- PyO3 — Rust ↔ Python bridge
No kernel modules, no root access, no TUN devices. Just pip install and go.
Features
- TCP tunneling — transparent socket replacement for requests, urllib3, httpx, aiohttp
- UDP tunneling — send/receive datagrams through the WireGuard tunnel
- DNS resolution — resolve hostnames through the tunnel's DNS server
- TLS/HTTPS — transparent HTTPS support via memory BIOs (no real file descriptors needed)
- IPv6 — dual-stack config parsing and IPv6 socket interception
- Async — asyncio support via
AsyncWireGuardSocket - NAT-PMP — auto-renewing port forwarding through NAT-PMP gateways (e.g., ProtonVPN)
Installation
pip install wireguard-requests
Pre-built wheels are available for:
| Platform | x86_64 | aarch64 |
|---|---|---|
| Linux | ✅ | ✅ |
| macOS | ✅ | ✅ |
| Windows | ✅ | ✅ |
Building from source requires Rust 1.70+.
Usage
Global tunneling (context manager)
Monkeypatches socket.socket so all TCP connections in the block use WireGuard:
from wireguard_requests import WireGuardConfig, wireguard_context
import requests
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config):
# requests, urllib3, httpx, aiohttp — everything tunnels through WireGuard
r = requests.get("https://example.com")
HTTPS works transparently — wireguard_context also intercepts ssl.SSLContext.wrap_socket so that TLS handshakes happen over the WireGuard tunnel using memory BIOs.
Scoped session (requests only)
Only routes traffic from a specific requests.Session:
from wireguard_requests import WireGuardConfig, create_session
config = WireGuardConfig.from_file("wg0.conf")
session = create_session(config)
r = session.get("https://example.com") # Through WireGuard
session.close()
Direct socket API
Use WireGuardSocket as a drop-in for socket.socket:
from wireguard_requests import WireGuardConfig, WireGuardSocket, wireguard_context
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config) as tunnel:
sock = WireGuardSocket(tunnel)
sock.connect(("example.com", 80))
sock.sendall(b"GET / HTTP/1.1\r\nHost: example.com\r\n\r\n")
data = sock.recv(4096)
sock.close()
TLS / HTTPS
Wrap any WireGuardSocket with TLS using wrap_tls():
from wireguard_requests import WireGuardConfig, WireGuardSocket, wireguard_context
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config) as tunnel:
sock = WireGuardSocket(tunnel)
sock.connect(("example.com", 443))
tls = sock.wrap_tls("example.com")
tls.sendall(b"GET / HTTP/1.1\r\nHost: example.com\r\n\r\n")
data = tls.recv(4096)
tls.close()
Uses ssl.MemoryBIO + ssl.SSLObject under the hood — no real file descriptors needed.
UDP tunneling
Send and receive UDP datagrams through the tunnel:
from wireguard_requests import WireGuardConfig, WireGuardUdpSocket, wireguard_context
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config) as tunnel:
udp = WireGuardUdpSocket(tunnel.create_udp_socket(0))
udp.settimeout(5.0)
udp.sendto(b"hello", ("10.0.0.1", 9999))
data, addr = udp.recvfrom(4096)
udp.close()
DNS resolution through the tunnel
Resolve hostnames using the tunnel's DNS server (configured via DNS in the .conf file):
from wireguard_requests import WireGuardConfig, wireguard_context
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config) as tunnel:
ip = tunnel.resolve_dns("internal.corp.local")
print(ip) # e.g. "10.0.0.50"
Hostnames passed to WireGuardSocket.connect() are also resolved through the tunnel DNS automatically.
Async (asyncio)
import asyncio
from wireguard_requests import AsyncWireGuardSocket, WireGuardConfig, wireguard_context
async def main():
config = WireGuardConfig.from_file("wg0.conf")
with wireguard_context(config) as tunnel:
async with AsyncWireGuardSocket(tunnel) as sock:
await sock.connect(("example.com", 80))
await sock.sendall(b"GET / HTTP/1.1\r\nHost: example.com\r\n\r\n")
data = await sock.recv(4096)
asyncio.run(main())
NAT-PMP port forwarding
Request port mappings from a NAT-PMP gateway (e.g., ProtonVPN) to accept inbound connections:
from wireguard_requests import WireGuardConfig, WireGuardUdpSocket, NatPmpClient, wireguard_context
config = WireGuardConfig.from_file("protonvpn.conf")
with wireguard_context(config) as tunnel:
udp = WireGuardUdpSocket(tunnel.create_udp_socket(0))
client = NatPmpClient(udp, gateway="10.2.0.1")
# Query the gateway's external IP
addr = client.get_external_address()
print(addr.external_ip) # e.g. "203.0.113.42"
# Auto-renewing port mapping (renewed at lifetime/2, deleted on exit)
with client.port_mapping("TCP", internal_port=8080, lifetime=60) as pm:
print(f"Listening on {addr.external_ip}:{pm.external_port}")
# ... accept connections ...
# mapping deleted automatically
udp.close()
Lower-level API
For more control, use request_mapping() and delete_mapping() directly:
# One-shot mapping (no auto-renewal)
resp = client.request_mapping("UDP", internal_port=51820, external_port=0, lifetime=120)
print(f"Mapped: {resp.external_port} -> {resp.internal_port} for {resp.lifetime}s")
# Delete a specific mapping
client.delete_mapping("UDP", internal_port=51820)
# Delete ALL mappings for a protocol
client.delete_all_mappings("UDP")
Programmatic config
from wireguard_requests import WireGuardConfig, Peer
config = WireGuardConfig(
private_key="yAnz5TF+lXXJte14tji3zlMNq+hd2rYUIgJBgB3fBmk=",
address="10.0.0.2",
address_v6="fd00::2", # Optional IPv6
prefix_len_v6=64,
peers=[Peer(
public_key="xTIBA5rboUvnH4htodjb6e697QjLERt1NAB4mZqp8Dg=",
endpoint="203.0.113.1:51820",
allowed_ips=["0.0.0.0/0", "::/0"],
persistent_keepalive=25,
preshared_key="...", # Optional
)],
dns=["10.0.0.1"],
)
Dual-stack configs are also parsed automatically from .conf files:
[Interface]
PrivateKey = yAnz5TF+lXXJte14tji3zlMNq+hd2rYUIgJBgB3fBmk=
Address = 10.0.0.2/24, fd00::2/64
DNS = 10.0.0.1
Architecture
Your Python app (requests, aiohttp, etc.)
→ WireGuardSocket / WireGuardUdpSocket (drop-in socket API)
→ Rust WgTunnel (PyO3)
→ smoltcp (userspace TCP/IP + UDP + DNS)
→ boringtun (WireGuard encrypt/decrypt)
→ UDP socket → WireGuard endpoint
A background Rust thread runs the smoltcp ↔ boringtun ↔ UDP poll loop. Python communicates with it via lock-free channels. Each tunnel supports multiple concurrent TCP and UDP connections.
Development
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
# Clone and build
git clone https://github.com/bshuler/wireguard-requests
cd wireguard-requests
pip install maturin
maturin develop --manifest-path rust/Cargo.toml
# Run tests
pip install pytest pytest-asyncio
pytest tests/unit -v
# Integration tests (requires Docker)
docker compose -f tests/integration/docker-compose.yml up -d
pytest tests/integration -v -m integration
License
Apache-2.0
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
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file wireguard_requests-0.0.3.tar.gz.
File metadata
- Download URL: wireguard_requests-0.0.3.tar.gz
- Upload date:
- Size: 53.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0676793c79f27607bf78755c3c1bf01e32151d15ffa05e24f5782dd9af6711cd
|
|
| MD5 |
60107ab1738f81fccd1dd0c3a185436f
|
|
| BLAKE2b-256 |
884a877ef970d7ec0ea12b301998737fd343cea9fd9d19cca7f2ec9b076dd072
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eed8a427871c20091d1ffae4c67603359222f8d272b1a07f3fe6d7f565d3a358
|
|
| MD5 |
781ebe819cea63db2b260cc6934b83af
|
|
| BLAKE2b-256 |
6f327419a5b6b5fb4d4baf2e35652a42ca2d50cc0e2fe1ebe40e735d6a58571c
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-win32.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
827508f69b6a3ff9de41cbd01dcb8a176ccbb5aa37018a90967772e07616e34f
|
|
| MD5 |
67a82b43c0edf9280e7789b289cb1391
|
|
| BLAKE2b-256 |
8d08bacab519f6795004c871f39e2e99ef88a0324bda417e37a04b7d43638cb6
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ee4cc07ed74ead3a8a23211f3b78d2cce091d3fe4b9f522218a3f7684fd3eb2
|
|
| MD5 |
1cd74757b6276e5e85cfd694706f10e7
|
|
| BLAKE2b-256 |
01dc65ce170236ff0368ed55e2eafc80c398f2ffb6bf0d2b02b8a11caea23fbf
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
37e71c84937fe312f3bb64f2f7fec78ffa0f128a98712661e1e2dac72ef205fd
|
|
| MD5 |
c7845626ad0f6e105739a8540fa2245e
|
|
| BLAKE2b-256 |
72f4fd16883465a7a045103b4ef0106f326ae7058e3392a2258a69286fad5d11
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b67ee9ede1d7359bbaa2049754d09881e8c7cc470cc56b477383a71f34d8fc4f
|
|
| MD5 |
eda83b1aa3cb3a28a022c821ae96f8d6
|
|
| BLAKE2b-256 |
0e8224879a1d373943d561e486d41d731d77bd6d8288a952bff54f5de70982aa
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2030ed5045f6afc543568260bafe4aa093c02925ed3b45108671622723a1809f
|
|
| MD5 |
275c9ba094db030542b1a48c9793daa3
|
|
| BLAKE2b-256 |
56b774459749156acfeb844947036b089a123089cbd63fd86c4d650106c59ab2
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78097a9d64705dca1ed11af6002c31290c12689e8b9f50d25709e2d013f5fb76
|
|
| MD5 |
6512393193c861d4efc108df80c78513
|
|
| BLAKE2b-256 |
6a691439e5062eca6b0f2d9fd1587e170d586704a478e5d4c895260e5e6a0e8d
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cb9e91d415ecaab2a1d7d5dd70b8e4c44ad7be6996091a26738068251f873ae
|
|
| MD5 |
9c7e9a57c779dd187381317f0b9a8a3b
|
|
| BLAKE2b-256 |
486b15de753a07c8698b7018b0b819607714fab53331299501664319123bfbc9
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09481c59f1734ff78cd9cb13df7e95a721a83938f4e6a5134a6e7ccde2631784
|
|
| MD5 |
678e1510e5e4d1f3c340c89f0752d4a7
|
|
| BLAKE2b-256 |
7d0b409951d9d776f652fd99f00da21c112865b413aaec1945c6ce79a3c41e78
|
File details
Details for the file wireguard_requests-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
56fae784369d96c109f9dc768c1b8bbed58a76add97cf20fa3b8024c4018d273
|
|
| MD5 |
005b16d51832433f1cca3594f9f1c4be
|
|
| BLAKE2b-256 |
3342e60992f9829e9e1a52308c8ada1dfecadab8e5de2666027984fafa3a3f62
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
982b043293fb218deafc38f0964affe259604e30cc3738c4925e8706e538b658
|
|
| MD5 |
c7d1f63aff0249048d6af60afb9dc8b7
|
|
| BLAKE2b-256 |
d25b0cdde997feadb9a0fafbf9390d9a5ded96fdbabe318ed28b7e8f0820ce56
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-win32.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bb8269710afdffedacab152802568906f2e791f81a33aa103f98e1386c2a8560
|
|
| MD5 |
37dde2d7cc465cd801a442dac4eec8be
|
|
| BLAKE2b-256 |
5b19b07e67c9bb3937d46af3d517764861e6ad3c12d538b5b7acef3ba57fd5f9
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
67e9de9c73d81893f2634e96d8499c37b4017279454960be9391eaec8cde1818
|
|
| MD5 |
3de353e8c6fbbf5e676f5ac7a757d020
|
|
| BLAKE2b-256 |
68e6baf7cd2a91fce83a55f695dbe34b2ec8237d6ad0d0ab9e257629319657cd
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71af7e4577d0cecf4983e9ad67034290837884d6be64b348c3f3bc5f18b6701b
|
|
| MD5 |
2d05fa19d56c41c67a6b5e6a49f8874f
|
|
| BLAKE2b-256 |
6bcbf9ea90f1ce8c6793aedd15ee4af7bee40b20065c7261fcddb5f17561984c
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9e12031eea096de54abbac20981d542c7f3ab8810ff4c273b4f458251a921230
|
|
| MD5 |
521473f4649b9c810e75a9397b03f22b
|
|
| BLAKE2b-256 |
b5dfbdc702878253b490794455764bac44d9d5a1e1031657b706923f08973397
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74ef141c40367357f41cdea7c7a86d15c13fa16def42c5967c0e91056a9daf25
|
|
| MD5 |
4f405ac3690c35dddf6d9dfd532a1f6d
|
|
| BLAKE2b-256 |
6823ed7cfc51336143f01bbb5f3f16e4647214cec6634763e42834dbf934b284
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09725c361b71f595fb8534226bf1d251c4e777b0d88e98710410dc7e2914ca12
|
|
| MD5 |
368086029a2f182abdae40a5b0a42501
|
|
| BLAKE2b-256 |
bf76d8646cb09591f607e22c198f6a86ca106ff9b245209454cce5178063c378
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da6e35d459892ad4345ee94df97f0ebef2f445e021abbcb268aaab017b0b1962
|
|
| MD5 |
1f7b3a5aa6873278f799149be1c03d3e
|
|
| BLAKE2b-256 |
49433db4be8ec15bd045f45f381d05118a8bd39383bae66838682d69dc926da5
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
935d1a90c560dca062d93dc6f642aa8b8064701b4328c64211925d2493414fdc
|
|
| MD5 |
77a2b6d6725a23bd26dc342fcb4ce4f9
|
|
| BLAKE2b-256 |
bcf4a4c70858e831f4b0f6191a74a99544415b3c220f65086862ea24c0b8f773
|
File details
Details for the file wireguard_requests-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f6679f49d5197cbc6ceb9fd558af17d1a01009e3eb7a0ddd4a8e1227ea8b19
|
|
| MD5 |
542ca7352ed3022d51246710e75b67b2
|
|
| BLAKE2b-256 |
df40570af5d96b9426fe2fab319f59bd70ba043e0fb978009ffa654854b0c656
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae2b790f49be5d4a8a1bd2be1bd01516f45a3bec4480f6d626f8afdcd5cc7d5e
|
|
| MD5 |
23da394450eaf515942a8a25fd65e325
|
|
| BLAKE2b-256 |
f43365ce8898bda0423c298f1213db50d104aed683cd7f1319de089a021c6ee0
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-win32.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4fdf260e824a97ec86cf391babb7f8d16ead03248280775f0c384868f9df28a9
|
|
| MD5 |
d4a6bdb66eb36a4bf9616cd5e3f89b68
|
|
| BLAKE2b-256 |
b1d31bb1d2a561a116ee506fffb312f080d6163de02725dcfe420b3ea5be9cd8
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b4dd1d0594bb91e88d7c104df2bae4c0f8823de477ec8e491c0c6d2a03d6a2e
|
|
| MD5 |
4395b329f403550a5e56f821dac9ad88
|
|
| BLAKE2b-256 |
38484e4b446990f5d5427be33e71ace6dc1afbef50f068cd4458536c8c958303
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe38abedea9e93e6a9b7be1e21efc61601b65da070baa7c86bb7445b5ad29ad8
|
|
| MD5 |
b2314eebfff56f21bf67374999d7278e
|
|
| BLAKE2b-256 |
56020c41f5372c5756ecefcdbe2e4c3687d959a5880f03aff5655872e639cfee
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b6ef3059b36192dccc19afbeff05e38b6746bf39ec7faea0d090c44367c2806a
|
|
| MD5 |
638f4a95ce40477725e8e910cc78ba8f
|
|
| BLAKE2b-256 |
e52e2d99f44902187507ff1e34ce29281f1d13e016eea56933fd6ea1d6721a8b
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9c9f436fa5c193755de42b9f375d6e33ddf6a781511efb25c9ace05d7c446f70
|
|
| MD5 |
b8bd9ebb168ba73d2474a791ede8cf67
|
|
| BLAKE2b-256 |
8ad47f08eebad73787a17cc3aa5675d6d8082855a57f0396a96b1765ef7355c3
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
299ba8dabdff29963d0cd68d3811674766e09074a6860260f25acedd397951b2
|
|
| MD5 |
0367d21ce77f9538c32f2b2a142aaeec
|
|
| BLAKE2b-256 |
45769df4e85d548c72f934016a11c36b95df03f326b7eb00e8206e20132aa41e
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f546b6bf7453d5ad7d619ffb886d92a629f4f9d8e1ce6d9cbd71dc646d877dc
|
|
| MD5 |
8c41e614618e78354188eb00f0e83d5c
|
|
| BLAKE2b-256 |
fe14728c168cc262dd11a4f782f5fdbda7d7dd1db64e7fc14458a44caec197de
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c6c9205b5efffaa04d2a6f3b42df86647cc85da686a237133cd3c606139fb4ce
|
|
| MD5 |
891d9ced9ef93696e286f1329af54a14
|
|
| BLAKE2b-256 |
35cba5c0467354886cf73d4a8acd2f9f8e427ba9c484ca1ab1e41119e2dc3912
|
File details
Details for the file wireguard_requests-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
03543c92500cfea3b6333f605293be911ba0b652ea0073ba3bd7ace62bfeb275
|
|
| MD5 |
8cea3fcd2e31d34bac1ddbbd3ac842e6
|
|
| BLAKE2b-256 |
afce405594059179eda01521f09d406a7a7cec1d0d347486acc0a018422dadbe
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2677259cbc7dc29b8b6abaea8fde9e969a9031dbaa10b3325c7ee08ac28f21f5
|
|
| MD5 |
01f207df058c54964bc32f8374068cf3
|
|
| BLAKE2b-256 |
3c93d60e9b01976712ee45832022a694939df4bcb5e7eb0b4c112bb3b932d334
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-win32.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb23385145ac2f3682aff8706e149f4ec5ba277ceb70c8a820d7d42880274605
|
|
| MD5 |
59a8ab7823d375a68d4a6fafcad9ea72
|
|
| BLAKE2b-256 |
249414d6058148e367d285c7de4c8825e40efdec0d752f77062cbc5a32ced86e
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca1dec1b5046e416ec5c422a9694abec303903cf3c66f4d3794939b13c11c55d
|
|
| MD5 |
7cf823b645b6976a3ca279c045fd8c4a
|
|
| BLAKE2b-256 |
021b4ff53a4f2841a598208f9aa8e5f51aef513f08f4fe1b77e5e36941ddf416
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1640bb12e585a5eda20385193807bc2e1c2ab40a0d6b2261f3e637ff5bf945b1
|
|
| MD5 |
c6927455f4ed63b91c087836415f879c
|
|
| BLAKE2b-256 |
d0bd555b40373d3eec6af0674580f91c02f6985f60a1b5a6071b79d3dac1481b
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5607c92c9ffc5a744de4799db5a7c5b9698aebe03596417c3c8dc170ce55b888
|
|
| MD5 |
90cb475894deb363cc725c488b8a9853
|
|
| BLAKE2b-256 |
079a37c1a6dc4da290f1e1d804065cb124b6ed14f4b2b206d1bfaae81895bf82
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
038330e3cbcf9cac42f1eb1e56f56054d0d70a9c62d722053a156cb703d99f39
|
|
| MD5 |
b7520426c52281177f591cf8f41051e0
|
|
| BLAKE2b-256 |
bdd71c191876bf77570fb9f1d5dc006b59b3ad6f62a86e02b56345d0dd16d6ee
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7dd0b9736355b5c2bf926b03cbf279aac5f297fcce0605c403d286c313df3800
|
|
| MD5 |
acd6392f10277cb3faf8003b8edf23be
|
|
| BLAKE2b-256 |
4e784839adfa4957a886192b487eff4382fb2f74a430c5a1a252c745f517928b
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1029e33ed8c41a1fa53f71daee16f29cb2d12771b04d5cbbf194ae8fdeec4b37
|
|
| MD5 |
4f3d9f8cfc739537d510e5d1e69c4f74
|
|
| BLAKE2b-256 |
e831de74ad488536af3d2a3cc37ae7b452208a5f981b3df8f2cb26c9d8e49bcf
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdf645aa1bdc533d42d57538bf50a119a216692b488480d0a827408a97d247bd
|
|
| MD5 |
308aa6c1798d74973a94ba317205ad96
|
|
| BLAKE2b-256 |
3c609358dd21559878855932bd08bd22836b9f7a236fd31fb073765d7435b048
|
File details
Details for the file wireguard_requests-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
679e43ae3e1eed8d8482177f837a96afe1620bcac836aab65b2e2574261c9352
|
|
| MD5 |
15be4f8af65550ee424f4d6c939fbcab
|
|
| BLAKE2b-256 |
73c0b388a9765aa92bdb56d22cd13af7446b46d173b9263d71f956a9038e6547
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
34dc6890e0629de735420b5e8fc472fb07552f256054e6fefcb8c03ab828096f
|
|
| MD5 |
d068109b33476a18a3e9aa853a063b19
|
|
| BLAKE2b-256 |
20bada5274f6050babac0f4abb016ee968053cd8755b964bc80acf44b34b89f7
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-win32.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-win32.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3e4e636c4e18139a2c9d47cd912237acf3873e4145b38e634475aa8ea04ed049
|
|
| MD5 |
447a959bd54ffbb6ab35559b51ba4c90
|
|
| BLAKE2b-256 |
89a23a904db5bcd925a11a27a03f2cd7b75fd784c8d3c60eec3b13a8efe6d8bd
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 1.4 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b09b351b61edc5b5565885f658e1d1a5c609cf72034909d7bc3eae2a226e6d3
|
|
| MD5 |
609c1d1e7f2e20629b2b935ddf7ff940
|
|
| BLAKE2b-256 |
c4ab536749940a650769cbb64b59ca1dc5d0ffee62ca34edf282971b439d4d9f
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4e57e62871ed4e0d90482a7ae84ce716047d52038a291d4eb643bcee515fe2f7
|
|
| MD5 |
bd07160a2404e7b70c0ec106fce0831b
|
|
| BLAKE2b-256 |
afb36d8aa1dcb2ca3c0ab120dcd3d26be6a14f8a9e4dae56e58a055c2afbb6ef
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7c5face12ddbc89fca004de05ee67307ecb2fce8cded824cb91d264b62c04f13
|
|
| MD5 |
32967f6f21e5d9e55e348d170b1debc2
|
|
| BLAKE2b-256 |
e257754f7d9c66833829633e4171502361d18d872a905bf1c186d959e83935b1
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 1.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
75c3b2c543d47e0a8a807b522e5058410ccfb842a79a61b7e468c783d08d3df6
|
|
| MD5 |
8497d1ac399f7aea9462cb169a8c114c
|
|
| BLAKE2b-256 |
ff680b52ae7f0675cfcb8ace56fd19ef5afef1e8a71dda8feb6ae4e7682f4390
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6730326228a2a56b9224c7ea40f9a6467813ae321fd33abeecf097df25d7e8a
|
|
| MD5 |
e370d9417ea727ab75a7dc9934ec2826
|
|
| BLAKE2b-256 |
b6d6451c7175949af7532eaf06dfb6cc74b97fb44f973d2cbe02d28cc28b6080
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4582b005c1e2af657771f4925133f808b474233550401724f5807aab2e82c31b
|
|
| MD5 |
790bb6f5db7e26028c8497bf0b8b8f90
|
|
| BLAKE2b-256 |
4b7db691de455ccd3d31a71a7b3ab84c6afbf230f0df5359ea275c35f9b20f53
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.1 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b829a22a54c97ed1fde0d69b098cb60fe0b0c4df4a6067e5d7e785d55282c0d
|
|
| MD5 |
4986df12b13fab9532afe3d406b3174c
|
|
| BLAKE2b-256 |
5aca18085254d1f6679d6c9303c23a406930926f5d4af96343e84055b37e3a48
|
File details
Details for the file wireguard_requests-0.0.3-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: wireguard_requests-0.0.3-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.2 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7c9921d595f7b699b52034e41c494ee39707c0db33a39762ff0c5979ad802de
|
|
| MD5 |
7e77a58a343389fbf85544684a6aa42e
|
|
| BLAKE2b-256 |
0629b6393466d2ba95af20a5e86c808cf07f2d1a7db084b0e98956cfe48e41d9
|