Skip to main content

An implementation of WebRTC and ORTC

Project description

rtd pypi-v pypi-pyversions pypi-l tests codecov gitter

What is aiortc?

aiortc is a library for Web Real-Time Communication (WebRTC) and Object Real-Time Communication (ORTC) in Python. It is built on top of asyncio, Python’s standard asynchronous I/O framework.

The API closely follows its Javascript counterpart while using pythonic constructs:

  • promises are replaced by coroutines

  • events are emitted using pyee.EventEmitter

To learn more about aiortc please read the documentation.

Why should I use aiortc?

The main WebRTC and ORTC implementations are either built into web browsers, or come in the form of native code. While they are extensively battle tested, their internals are complex and they do not provide Python bindings. Furthermore they are tightly coupled to a media stack, making it hard to plug in audio or video processing algorithms.

In contrast, the aiortc implementation is fairly simple and readable. As such it is a good starting point for programmers wishing to understand how WebRTC works or tinker with its internals. It is also easy to create innovative products by leveraging the extensive modules available in the Python ecosystem. For instance you can build a full server handling both signaling and data channels or apply computer vision algorithms to video frames using OpenCV.

Furthermore, a lot of effort has gone into writing an extensive test suite for the aiortc code to ensure best-in-class code quality.

Implementation status

aiortc allows you to exchange audio, video and data channels and interoperability is regularly tested against both Chrome and Firefox. Here are some of its features:

  • SDP generation / parsing

  • Interactive Connectivity Establishment, with half-trickle and mDNS support

  • DTLS key and certificate generation

  • DTLS handshake, encryption / decryption (for SCTP)

  • SRTP keying, encryption and decryption for RTP and RTCP

  • Pure Python SCTP implementation

  • Data Channels

  • Sending and receiving audio (Opus / PCMU / PCMA)

  • Sending and receiving video (VP8 / H.264)

  • Bundling audio / video / data channels

  • RTCP reports, including NACK / PLI to recover from packet loss

Installing

Since release 0.9.28 binary wheels are available on PyPI for Linux, Mac and Windows. The easiest way to install aiortc is to run:

pip install aiortc

Building from source

If there are no wheels for your system or if you wish to build aiortc from source you will need a couple of libraries installed on your system:

  • OpenSSL 1.0.2 or greater

  • FFmpeg 4.0 or greater

  • LibVPX for video encoding / decoding

  • Opus for audio encoding / decoding

Linux

On Debian/Ubuntu run:

apt install libavdevice-dev libavfilter-dev libopus-dev libvpx-dev pkg-config

pylibsrtp comes with binary wheels for most platforms, but if it needs to be built from you will also need to run:

apt install libsrtp2-dev

OS X

On OS X run:

brew install ffmpeg opus libvpx pkg-config

License

aiortc is released under the BSD license.

Project details


Download files

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

Source Distribution

aiortc-1.3.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

aiortc-1.3.1-pp38-pypy38_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (2.3 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

aiortc-1.3.1-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (3.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (3.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

aiortc-1.3.1-cp310-cp310-win_amd64.whl (991.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

aiortc-1.3.1-cp310-cp310-win32.whl (913.1 kB view details)

Uploaded CPython 3.10 Windows x86

aiortc-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl (866.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

aiortc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

aiortc-1.3.1-cp39-cp39-win_amd64.whl (991.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

aiortc-1.3.1-cp39-cp39-win32.whl (913.1 kB view details)

Uploaded CPython 3.9 Windows x86

aiortc-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-cp39-cp39-macosx_11_0_arm64.whl (866.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

aiortc-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

aiortc-1.3.1-cp38-cp38-win_amd64.whl (991.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

aiortc-1.3.1-cp38-cp38-win32.whl (913.1 kB view details)

Uploaded CPython 3.8 Windows x86

aiortc-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-cp38-cp38-macosx_11_0_arm64.whl (866.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

aiortc-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

aiortc-1.3.1-cp37-cp37m-win_amd64.whl (991.3 kB view details)

Uploaded CPython 3.7m Windows x86-64

aiortc-1.3.1-cp37-cp37m-win32.whl (913.1 kB view details)

Uploaded CPython 3.7m Windows x86

aiortc-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

aiortc-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

aiortc-1.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

aiortc-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

Details for the file aiortc-1.3.1.tar.gz.

File metadata

  • Download URL: aiortc-1.3.1.tar.gz
  • Upload date:
  • Size: 1.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1.tar.gz
Algorithm Hash digest
SHA256 578d4ce2618c257c1db4fa9845dc2ab4a196b1b2d074d67c92a634356a06de83
MD5 03e6705010222c2809202a935968841f
BLAKE2b-256 0d228c6b8e220537770b582a67b3f4e3cce3df796e63e4daa43f0f50da54ccbb

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp38-pypy38_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 43c2e012dc8113f74054284ce21234ae2fae2fd5c84e5412079a4d50e7297aa6
MD5 d8f77e1e47ee426202aad4f526aa158b
BLAKE2b-256 c0dad13159f1ccf940ca14587d9e9441f10e22df6422888d3fe672ffd257f2cf

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b170701e5a86774f222e1de2fcad25e9a23af1d108fd619b830f543152f78bf8
MD5 924f5523c21d5b043d7831b77e61f90d
BLAKE2b-256 6f7166ce2eee0402b01ed9016b1a9f4360dee3e4249b37651fc5e7e1610815d9

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ced47d53b333f51a915f7e0bebf0fc2f964d6500db8d5336ae84562eb85f7961
MD5 c3c4a89c6ea82c6017722ee222cbcd97
BLAKE2b-256 bde58585590ea17cad7cbf9d5ee092e91964be91f764ad6e5189d71c4dc90d4a

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a26e75b6eeda43cba0c4e298d25d5a0f9ad45226a628ec702d93113609628728
MD5 18dbde81b50cf6220f5aab4d15c1ba60
BLAKE2b-256 7e68285dcd1704e7f34d4009737763b6f6b9e4d2833e0f2b8d1a4f2e391b7792

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 79de6be581605799a3afd66bc406d1da2c88c83b6280e16f19f2ab56e7308f3d
MD5 dfa95b83a2b2de0e83cc36617daf41f9
BLAKE2b-256 9ffa75d7a0556e604206161004fdc5e04ee529003d49d4fda7c0180e529bf191

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp37-pypy37_pp73-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d1908c77e87c9c71d8886d8d769fe2e1666367c959513554793ff2a2d05c408
MD5 b9a820b789719a19fb621ea44732f82a
BLAKE2b-256 88b36e267c1c2170b25005eaf4dedb6307f92d638d888b42e3fb92b0d61cc451

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d2016efd30795d5adb60fd90d2e678262b215ed9d3919edfb3d5e0746f6d014
MD5 ea0aa06c99c4bc48fcca8201e980ff1b
BLAKE2b-256 17ab34774879c714414a6ff512eb8d82fc159714f1892c806c7a4c0766cb7ec2

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b99f3aeb94dca9db43e76d1e1696d40c70201f9c1ecf81e2cf338a728b854f4
MD5 7116e235e7b490a0f30e94e73d4d11a3
BLAKE2b-256 8edbe175dab7169c8ce833e11f34fd5673468586b6a9c805c73a5667add9933c

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6b4ce0f2fab071070e14a62b80f535a8579d7c89c82939de1cb18d44881939c0
MD5 1971dfac625132a6906f5513fc40f6f8
BLAKE2b-256 14bf5bd1870d948ba3da0b19fac2d64270ba6dc4b85088b3495a21521254396f

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: PyPy, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d69ef2cec5d4b49e34c3ef8fa6cbdb3ad3637fe384b1189c1d370e270a0b56c
MD5 760f2c8010b00e3f43a2a31d5137cb2f
BLAKE2b-256 0a65de3c800108aceb33b576f0d1afbbbbf70fe5859a7897b84f79d293892d07

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 991.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 76f23f54e9dfac1fef0a255b435b84b25598f480c989bce44d206a4204e8e4e1
MD5 c140a913f7685803c09205e71c819994
BLAKE2b-256 fe09ce0a39bbc1f0bbc145e2fce9ba030989b1a7b8b0e64fb649ddb39ff1502f

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 913.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 04de21c708031db2159fedf5689cfdab03bb0e93cd495b33626422692498cb80
MD5 a6b5f560ebd6f69a1e66635038cb3207
BLAKE2b-256 b382c22f0c41c5477d8b42a3e7d9ddcee8ddddda53774c1babd2e3b46f0358e9

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ab49032c1d8b5fc9eed862e30f1005116d7ab90a4bd87e455a0223468e4fe61
MD5 f3b9f49af48d9deb0d95039b1e1624f5
BLAKE2b-256 f331c138e706285f820941977c906a27b1ff53de5b29950ff6c1520627092030

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8322700166147d704be8b5639070c0ad3bbf276a6c419928f9af6268d4ea810
MD5 e2594e46213a32d1a37d54b1112e8abf
BLAKE2b-256 756daf27e909d840456dc2f13da431a829648a8436b1683da6444669e6afa20d

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4885166021978aee2b568b2f07d633f69d796598fc843716d86db81937463ec1
MD5 4f920729302a46da74d2a587f38803a0
BLAKE2b-256 6dd7361368785c8e51bece138aac4b00ed575ad91175d20cbe56597e2e9a9afa

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 866.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda864c1129e82fd6952c6519de799972b3940c2ce6dee2c47e4beb7661c9d10
MD5 1cdaed5587b6aedf38e17ba9d6713863
BLAKE2b-256 707aa21e4a19747e3aa6391c6c161bbefae42615812ac435661c8883d9188599

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f7a10c893387648b0d36de5f229b03190def5adfdd70a7c21c21ab7d94c92088
MD5 0a17d2cab4c3460026716b233a82ea65
BLAKE2b-256 3b8c562f4f53777b0113ee95bf8b57cae3e5899b619e9220bf86e9964934854a

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 991.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 680676ca220f19eace64e7443ff8be2c4ef90142ee45baa5163bef957a03a336
MD5 100cb36facf43b2514af25c287793a07
BLAKE2b-256 c03ea9ea71d851de37a1096916755cc6eb1e0a360e56281a945e0570137ba27f

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 913.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 429645b4049d1f7ba6e92638afa2074d51d2b362f3cd434d52c9bf5046198c71
MD5 d1e328b6a448e2468d19d2b7f44474ac
BLAKE2b-256 cd0bf9ce786dbe60eb8fa1e04f369a7f0ede0a0bb78078e902599ce832a09a44

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb61fad023ccfd0bbaf9c8feb9f314d3b0234374104277094453b01dba682e0e
MD5 a59c05c411473ed4f64e970e2b120f3a
BLAKE2b-256 25b0b24702c3f80de11ca4ffbd16060bbb9210ca908a7408b6d9788e8a17184a

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 839c0aa9b81c5fdc9da9f9f5feabd3b98fa476e36e67bbc2a6ffbfb8dc6036d0
MD5 ded7e6e95f46938bddc3aff9e8243b05
BLAKE2b-256 2a65eb652af4b9e5b814755e2019c22a089269a55e5579234682e18ada1b3fc6

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdb96723c2ae8d40948d924a9593986078c303548de1a2cd7f779f7333123b83
MD5 81b1f68a1dee9e5fab82052450f5ec37
BLAKE2b-256 f36601c7ec757b0c011e405494e78039d0f0a85b5250f89a7925fd36a9e61792

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 866.4 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 062c6d4ebda28f83c216d5bd049f1aacac8c14ea59cc0be23a82ead1ca76c2b9
MD5 68128b281fd5014f4dcd6b38c7274061
BLAKE2b-256 4aad5892feefde3666307f924d14ac219884d49fda26e2ee99006590f0887ed7

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7d17eab6dc1d2e215448787e8e577a82eba4aec507913186c16702e5c0133964
MD5 3e93f28e17ed4f90920d31637fb59d0e
BLAKE2b-256 a5f7f92ee275ac7056130de698127ce25a7ed8b00510a884801775406bda4605

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 991.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 1c923879412134e354479bd7db8e165e911a9b7e2e0bfdf02d6bf8edab5665d0
MD5 829ac2da5137c4b6a0b147fcabe17257
BLAKE2b-256 193bf9f23dacef621505a149869b6ffdba697206993289c60e00594d4fa59318

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 913.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f7a256ab9e63a2812d29cb5d979e208f8da1513be7d9afc13e7b98493ae54129
MD5 cb073690e72907403e1a9811e6b83cd9
BLAKE2b-256 1727a327daaf88348d63139e06f8ea51f0f37790369fc71e42bdac69b9476cc2

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b84841d3fa693dc7b27f170e842231cf2834f426110387f5b3d7b8ec92aa2ae
MD5 f7f0f626255f9467989b574ae6276d94
BLAKE2b-256 4839cf21e458cc015617086f1e8ef92b5faa8df55595bdf6d845bcc08b41d6e1

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffc0402cc2ed3cb953ef7cfdde0da147a892b16651023f4deeef29e5bd7861cc
MD5 0239fa8b30a14fe8995f9ca6e83f072c
BLAKE2b-256 ffa5ad1efdd5df68d7ee08c2473fd4b0d5b2159c1867076fb2ed2198eeed2912

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 18a02940107e0ed3117e4ea42ce1c4e4f96fddc2f0b1930510c281f160430529
MD5 5807eb985abcea5636692488a9c36e23
BLAKE2b-256 1b3d5a2878f4545513e23889f85a262aefb0cc843bbeed110be37c52860f2ee5

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 866.4 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eaeda50b60b79ac9b5037afea631784f92b425cfb2e82d07c5ad711e16d7cc9
MD5 b12b03eb795863c736dd485124a559e0
BLAKE2b-256 6ff3b856fd9d5ba48520195abb05bc7242b642cc7b1d71d8ceec22d29ef404cf

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c2ed4e4b179d0c0fd25ae341868ae5e04e7323536b47f97c4f7bea7fe498bda0
MD5 2fac3f24cd2e2dabad9f29f544464fd2
BLAKE2b-256 6a5d8617e2c2dd4f755c13a5bd0e3ecdee20df659061d179323db654d41c4b61

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 991.3 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f9721a8a24dd759a467b55b9214e753b889e2d1c0be30644f2ee20741f6cf458
MD5 59ba2a005bb0df8f75ce712d383f11b6
BLAKE2b-256 3c2ccc4b60b0b64bfc829dc0b8c83f02ab821a4ec43381f29396949aeafb5c1a

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 913.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 d6efc138ee93d6ffb9755b4c600e10ac63f622dba49a55801ecbaf9274f29ed9
MD5 3fe8ccaac532565ed21e7b5dab65f8f9
BLAKE2b-256 e5733d890f972f5c4c94560c058efafcd6d60c215392b7c999f769b7c935e047

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e0bed9b0b0581e6f64e100ff9c7e1e44850360f15eb45258b2043495408fa8d2
MD5 8ab7634eb5ad1fbb532e5b56fbbf4977
BLAKE2b-256 3b75f702458a8193af168434e476df0142b584b5b1103ceb12575cde5b01e49b

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e8fe0b79e30be27b195316c048553a9d1f9450a706dde29556ad544147c0f6b
MD5 dbdd5220791adaec460cc0f72572de9c
BLAKE2b-256 cee9bae38651ea695b00dd39c663d9ab3d22a3ae719e1bbe7184c7cec17cd6f5

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e838f023d8ceeab0e1d33c779251ece971ec18dd78c12e479753e317dab9077b
MD5 8e63cb2c339b17302d5ae9b0bee41e9c
BLAKE2b-256 a1577161d326ba800ea200d0b30d96e01e06f4f22f5373cb53229d1e7907e996

See more details on using hashes here.

File details

Details for the file aiortc-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: aiortc-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/33.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.63.0 importlib-metadata/4.11.2 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for aiortc-1.3.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b2f4f56659f36569866883f694e1bb6732a81687db98d5b40592e3708a958954
MD5 560554d6e9e365074bc4976ef9fe952e
BLAKE2b-256 02490c764f01d2158080f3db611ff42ddf95a1b56316d2641b586f0c924a6b02

See more details on using hashes here.

Supported by

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