Skip to main content

A Super Fast Async Python Web Framework with a Rust runtime.

Project description

Robyn Logo

Robyn

Twitter Downloads GitHub tag License Python Ask DeepWiki

view - Documentation Discord Gurubase

Robyn is a High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime. You can learn more by checking our community resources!

image

Source: TechEmpower Round 22

📦 Installation

You can simply use Pip for installation.

pip install robyn

Or, with conda-forge

conda install -c conda-forge robyn

To install with all optional features (Pydantic validation, Jinja2 templating):

pip install "robyn[all]"

🤔 Usage

🚀 Define your API

To define your API, you can add the following code in an app.py file.

from robyn import Robyn

app = Robyn(__file__)

@app.get("/")
async def h(request):
    return "Hello, world!"

app.start(port=8080)

🏃 Run your code

Simply run the app.py file you created. You will then have access to a server on the localhost:8080, that you can request from an other program. Robyn provides several options to customize your web server.

$ python3 app.py

To see the usage

usage: app.py [-h] [--processes PROCESSES] [--workers WORKERS] [--dev] [--log-level LOG_LEVEL]

Robyn, a fast async web framework with a rust runtime.

options:
  -h, --help            show this help message and exit
  --processes PROCESSES
                        Choose the number of processes. [Default: 1]
  --workers WORKERS     Choose the number of workers. [Default: 1]
  --dev                 Development mode. It restarts the server based on file changes.
  --log-level LOG_LEVEL
                        Set the log level name
  --create              Create a new project template.
  --docs                Open the Robyn documentation.
  --open-browser        Open the browser on successful start.
  --version             Show the Robyn version.
  --compile-rust-path COMPILE_RUST_PATH
                        Compile rust files in the given path.
  --create-rust-file CREATE_RUST_FILE
                        Create a rust file with the given name.
  --disable-openapi     Disable the OpenAPI documentation.
  --fast                Enable the fast mode.

Log level can be DEBUG, INFO, WARNING, or ERROR.

When running the app using --open-browser a new browser window will open at the app location, e.g:

$ python3 app.py --open-browser

💻 Add more routes

You can add more routes to your API. Check out the routes in this file as examples.

🐍 Python Version Support

Robyn is compatible with the following Python versions:

Python >= 3.10

It is recommended to use the latest version of Python for the best performances.

Please make sure you have the correct version of Python installed before starting to use this project. You can check your Python version by running the following command in your terminal:

python --version

💡 Features

  • Under active development!
  • A multithreaded Runtime
  • Extensible
  • A simple API
  • Sync and Async Function Support
  • Dynamic URL Routing
  • Multi Core Scaling
  • WebSockets
  • Middlewares (before and after request hooks)
  • Built in form data handling
  • Dependency Injection
  • Hot Reloading
  • Direct Rust Integration
  • Automatic OpenAPI generation
  • Jinja2 Templating
  • Static File Serving
  • File Responses and Downloads
  • Authentication Support
  • CORS Configuration
  • Streaming / SSE Responses
  • Startup and Shutdown Events
  • Exception Handling
  • SubRouters
  • Project Scaffolding via CLI
  • Experimental io-uring Support
  • 🤖 AI Agent Support - Built-in agent routing and execution
  • 🔌 MCP (Model Context Protocol) - Connect to AI applications as a server
  • Community First and truly FOSS!

🗒️ How to contribute

🏁 Get started

Please read the code of conduct and go through CONTRIBUTING.md before contributing to Robyn. Feel free to open an issue for any clarifications or suggestions.

If you're feeling curious. You can take a look at a more detailed architecture here.

If you still need help to get started, feel free to reach out on our community discord.

⚙️ To Develop Locally

Prerequisites

Before starting, ensure you have the following installed:

  • Python >= 3.10, <= 3.14
  • Rust (latest stable)
  • C compiler (gcc/clang)

Setup

  • Clone the repository:

    git clone https://github.com/sparckles/Robyn.git
    
  • Setup a virtual environment:

    python3 -m venv .venv
    source .venv/bin/activate
    
  • Install required packages

    pip install pre-commit poetry maturin
    
  • Install development dependencies

    poetry install --with dev --with test
    
  • Install pre-commit git hooks

    pre-commit install
    
  • Build & install Robyn Rust package

    maturin develop
    
  • Build & install Robyn Rust package (experimental)

    maturin develop --cargo-extra-args="--features=io-uring"
    
  • Run!

    poetry run test_server
    
  • Run all tests

    pytest
    
  • Run only the integration tests

    pytest integration_tests
    
  • Run only the unit tests (you don't need to be running the test_server for these)

    pytest unit_tests
    
  • Test (refer to integration_tests/base_routes.py for more endpoints)

    curl http://localhost:8080/sync/str
    
  • tip: One liners for testing changes!

    maturin develop && poetry run test_server
    
    maturin develop && pytest 
    
  • tip: For IO-uring support, you can use the following command:

    maturin develop --cargo-extra-args="--features=io-uring"
    
  • tip: To use your local Robyn version in other projects, you can install it using pip:

    pip install -e path/to/robyn/target/wheels/robyn-<version>-<python_version>-<platform>.whl
    

e.g.

pip install -e /repos/Robyn/target/wheels/robyn-0.63.0-cp312-cp312-macosx_10_15_universal2.whl

Troubleshooting

If you face any issues, here are some common fixes:

  • install patchelf with pip install patchelf if you face patchelf not found issue during maturin develop (esp. on Arch Linux)
  • If you get Rust compilation errors, ensure you have a C compiler installed:
    • Ubuntu/Debian: sudo apt install build-essential
    • Fedora: sudo dnf install gcc
    • macOS: Install Xcode Command Line Tools
    • Windows: Install Visual Studio Build Tools

✨ Special thanks

✨ Contributors/Supporters

Thanks to all the contributors of the project. Robyn will not be what it is without all your support :heart:.

Special thanks to the PyO3 community and Andrew from PyO3-asyncio for their amazing libraries and their support for my queries. 💖

✨ Sponsors

These sponsors help us make the magic happen!

DigitalOcean Referral Badge Appwrite Logo

Star History

Star History Chart

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 Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

robyn-0.82.1-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

robyn-0.82.1-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

robyn-0.82.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

robyn-0.82.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

robyn-0.82.1-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

robyn-0.82.1-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

robyn-0.82.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

robyn-0.82.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

robyn-0.82.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

robyn-0.82.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

robyn-0.82.1-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

robyn-0.82.1-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

robyn-0.82.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

robyn-0.82.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

robyn-0.82.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

robyn-0.82.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

robyn-0.82.1-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

robyn-0.82.1-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

robyn-0.82.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

robyn-0.82.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

robyn-0.82.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

robyn-0.82.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

robyn-0.82.1-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

robyn-0.82.1-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

robyn-0.82.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

robyn-0.82.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

robyn-0.82.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

robyn-0.82.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (3.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

File details

Details for the file robyn-0.82.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: robyn-0.82.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a92da7c952fd4c309575140622004d88bd8c1cf29c39a798091f0a21ae8a042b
MD5 69e0ee53eae4373fb2643232afa2c709
BLAKE2b-256 bd1f045bce67c22f189dd911e680ca8185c83456dacd4f1216683a542cae007a

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: robyn-0.82.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b63aa83f5ff0b35e48d9b3a7ef6fb4246dca559b1f7147c14147418d9efda203
MD5 865bc6546bdd37c9ff967515a0045ce8
BLAKE2b-256 fb6b169a935045972a1db583ef0951d7ce5a3fe6f13b43a5b09b305141bf771e

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7c3be3d24efff3b9dea20fb8d02a4f0922bb41eaf498ac335e136e928d6464
MD5 fb5f90012536953afc1297235183791d
BLAKE2b-256 770d92f7808c0024bd83171998603deda9988d95dedaf921a1848e636884dde0

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2f6c31b7326b329ce81bf382a06682a78b2d53975726b45d42caf9472b05b88
MD5 ef8667459cfbf9e4c6849764929d676c
BLAKE2b-256 4ce232c2823803870958c6b1157c9ed9bac93df6741ccd38d960c7edf3df0ece

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8580fb78f1703156be172e8149d58124e425e80e8fb75f7f3758937805cf7f15
MD5 3f505137a2e4467ea4237f802f7dd8aa
BLAKE2b-256 08d4862aabe7ce7b58d7f1edc7d7f78046c10ba80b1a6a250287f9ed80998659

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d79c205884f8c41fa4e84e516e9d053ae07a21efd4faf8ec6fe3ab79827edf92
MD5 7c27939e64d093182673efb8e2012774
BLAKE2b-256 1f47290430f69318496b58a3a6a3956f889e02027fc2bd74406bacaba910321e

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: robyn-0.82.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ec3462e4d5b8ec927c7685e6867e9c11bd8150ef4b3d8a53629923db1a3e72e
MD5 a80d2750d862afae7cabe4a9ee593700
BLAKE2b-256 2d9fc6607656bec2175d29ef5488a02e27bed00bb49c548472b41e0a896f74a7

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: robyn-0.82.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 81a23e4b6cbd9e748114b215fff19f0da31e76d2ba3a03b2108ba42d01989582
MD5 66b846d02b4aae4316bc71cc6a47da2d
BLAKE2b-256 11f489829812f1837764cc81e4e64553af67fa3c47b4916ba1711be97ce2fa29

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79d7b52a753de42f9611ed72a491ad3cbb8c84b830aae9abd627d135b68f7da8
MD5 c7d09dfb8c39aa31dce2eb4354894457
BLAKE2b-256 c423a744efb788490f6fa2e319c89643268f3029e1a9033a3df6e900c93512cb

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cd8036f2fc9fa7ba81e01651472b329c3015632c41793ab0fb67db3c4a74e12
MD5 696423a562207a1a18a140249d06947b
BLAKE2b-256 08db94ad3a3c60daa7eba5d593c77d22b50ad100a8912b0ecff38fe9cb67f76e

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d81d52614f461baac78b84ce8cb884002fb2c1f29d73fd7d40b2b07a1b962bd
MD5 6b844c5ce65a827b0d50460c1e8b7811
BLAKE2b-256 a09a72076484de824d2a7938576f30c0bbfdd87903e2d56d7e6634be21db1016

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 c7f7c7dc6cf3093526a90bc1150675855bfd3bdce814833278aefbb0a4653507
MD5 0993b1f95b057182851af817481ec9fb
BLAKE2b-256 fdc83aaa2bfa7925c85c450c57d4c03ad0403a0a19149f5338f349cae37e40c2

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bcdcf57a229b0c0e324541828799da5707d39c4d845eb9e09e12204cb863028
MD5 2266144996de5cf86dbaa17a3c5ce4ab
BLAKE2b-256 be7ec738a7a50b7302ec5f2e20b07e4a0e4cb2ccdb2dc1864e53a16f3b0ebb7d

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 757053d91c6671bf5032e2eca44628876ca9e26bd41d069bd6997daaa6e5bc34
MD5 55d67d3562ddb6c039e3c7b749841bcd
BLAKE2b-256 d688f2b73878c2d9adad40ea2547e259940c1e23debd0290e431bcdb895ff3ca

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: robyn-0.82.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0b27cef8417bf42f7d3fd4712a8cd6dcb09337e256cce00af99e972bd71decb5
MD5 06c4a82ba17535f522d09fbe420932b3
BLAKE2b-256 b0934eae4b3197476fe829a8a685a60ea33e69039ed81d4db92ee081aa105195

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: robyn-0.82.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 42d741a9ad2072058c4410822c6940a8e1e18635a18e1412d11f6df708112556
MD5 c3fce766114eae3586762760bc54c277
BLAKE2b-256 68b9e53fb914f61c51263f64621679062112729a146b75c8ae24683e8556e8a8

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25918ac99ad71b3fa47b8b26792ec6cafc2c24eb1999eb2854d41238413e511a
MD5 0cb372554c3c493728d344af7681c097
BLAKE2b-256 66436bb38a4c4cf4ba9cc6a27b83e5694e38b0d8d91057f19e83e7462af32c67

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25cfde97321e858a33fc3f1774dd876bac1c5648538ee23f7d7ae4252156e59d
MD5 0996e8d9c353d98bfadad841bd519285
BLAKE2b-256 5f9b042043f410587b4eeaa64b047a0ad1699cf2ad742e3e4b60e19381ada341

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac224451feb182859e2a2e098d45155e1f374cd74137ac75b4ffb829f0d38893
MD5 8d2edf5bcdcde4fba69055b9ce2424c8
BLAKE2b-256 1e89dbf6f8d34d017976dff0cd8f665f35bd81fe92872c3c8a81262b1e545ae7

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 efec2f1cfc26a2f2e16fc6fcf2582250c53000bdd4d6ba2eb58329cc7290a523
MD5 01a9da3b84706c8daf892fa8725a1bd8
BLAKE2b-256 3321f77c042258b4a9c543904fa08308d57f5c5a4c4575e3d8704bb03a721c7e

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cdc1020e6a8f39f3251eca3401dde60504af938d69242180ef42d0e21d703923
MD5 77299926531e28dc716b820899db6caf
BLAKE2b-256 ff696570652ad3ba0aa648bdde541ab8e3422cb3145611d711431b4b0cc3e4c3

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 f02c32477cd0af66d2bb90abff5fdb8ee9e634656ec3d1560d73ae84a5bca7ba
MD5 d92c5a661e69bc13cd60b218cadb35d5
BLAKE2b-256 8b408c7ce245aac8403be8e1e3f0adca2d2712e8b21d4b7990bdd7433ef4bfa7

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: robyn-0.82.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a681fc2dfc829c9b1d95c7002f2f614bb13c1819f28dc61ddb69836be34e009c
MD5 691b1990ad31c21f2d9984dd435b7a1b
BLAKE2b-256 ef070c4a3278795ce62d8713a60544176adcea392ebb36095e8284210b225263

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: robyn-0.82.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5a6f4f98740687f372a5e22d5ae63f9e8897ad5133d41a08d4579445f05bc760
MD5 32e6a2667fec36e88fbf1d7e160865a9
BLAKE2b-256 b1cb52e91ab4fde6467ff68d798c02f96016256c412a288fe17db2a22280d8c6

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9dbf8e90711e20fd94ce767717b6632b68a66e5c373ac393a948826ca53244b
MD5 14662e80d435032d13d141e6e8fd8cad
BLAKE2b-256 8539e09403d353132327eea2bec03906ad7448c38ae65bffbac765bdb8542064

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 033be8aa61e92f85cde5c3802a3facc079fcb844c9051f2edc89cd60412c4252
MD5 a0be616ec62983a1ee9db7d5089bfae1
BLAKE2b-256 f86ea0d3f7c49db71f3cfb2c0fad96bd9dddb4ca3d3ca780c701009953da0709

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9aa9b4f6f61c9bb3ced1a74590f655e4a6b55c0191180142954236efa0684c9a
MD5 5765cae1d4d2afb35ab7d59bfc8953e6
BLAKE2b-256 5c97c14d55b813c711883e83c9db5414e8c160ec0ff710a91349517b0286ae0c

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 01b374688a4d797cce0727b28c2248ad3a42d12087364d17cdf3fcb0f7717d94
MD5 ff505378c99b7d4b0ff87ab991501403
BLAKE2b-256 e30debe60552a28124536d7918bc9064e76848d55b3e6fe1a09bff87bd12d82b

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aff04c9b2e233a5f471918131250f6af1f5a7da1428d4da928da1a9c8d395bf7
MD5 2ec40f6230ddf3ee95ef187d8fe5d15e
BLAKE2b-256 6427a6647948816e42126dca15a01f50eb0ee9aef376c4fbef62e61d7a9a6064

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 6e6db4f86bd463b4ce6e64e6dae2825c8118c1d83c6d34bb6cf6b7c1e9a396cc
MD5 efdf71550bb4d7ef6d1b30cc96fd138e
BLAKE2b-256 264326882f42b98e375312318eb7cd1540bbdd40a754a39860623adc35864224

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: robyn-0.82.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3436f2f58d6c5805844bd2491a70476304fbb6e035f1d65b91df94fb9ada20c5
MD5 b3496a7d61737e8a8f83403ba66473d2
BLAKE2b-256 27646006e5385df702480e3be0bdd59d05ce66cc34c42f0de462ca1b1bbc38d8

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: robyn-0.82.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for robyn-0.82.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4b7958d5a54f148188dacece1764c9eccca0afec372206e694b85cddf7f5f9b6
MD5 ec8098bb91dcf981e0a260c5d3069aea
BLAKE2b-256 6cb6d0093a6681bf23a5b4ba0be8eb803bb7f2247a71e98e4d3d10c352e17905

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01325163b6b5802e3ccac9b7b03458dacad68e1a598cbdb5b575bb5f6752d845
MD5 ef2ffb6b15bed31c7d999f773a0a16d8
BLAKE2b-256 b033ae73d7943d3a29795129849eb9e27a988f8ea4e02bb45261ec53dbe86334

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa4c2a6a8f5e911573725a74695848ac75b1bf18ecfe5142e5a30a1d86880481
MD5 4d8bc647f2d437e9678bb007d5a004bd
BLAKE2b-256 ed13b65cea943a129bc822f6ddd07671a49d55cdc355cdcd1377dcd28ff25fc1

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e339768ce1723dcb3f838e6b5ab98640488a0b213992abdc671a329eaf7c2f22
MD5 a7c3c5d87bff944e77a21c724acfb254
BLAKE2b-256 95c17ccf82790c507651c46f8c4d1bbe815e1b320a51bf959d5f2cf04b2e06ba

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 87358eb295d901eb0510c53b23f34e65c1b3858a1b5cf8a462d5dd9bfcd569ad
MD5 9b152cc7d127bb8df497469f4d9b9369
BLAKE2b-256 6ebab59fb01d16d57b030761dc4c6944e021f95e7b4c954e099dc6a66561cff8

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a103847ba379198652a662d125f7b19c2d4121e3ad87d7425ecdeae25d15d93f
MD5 faf1ebe04098513a4af0c91fd8b3e8dd
BLAKE2b-256 399c584bc0e118f08725ff021a0498f6fad58f629dec048cb7524d134a4f4c1d

See more details on using hashes here.

File details

Details for the file robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.82.1-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a8fb2c975aa9c911fa87f3bd17c8ab4fe8bdba694b4c6307859455e6fa74e688
MD5 f5a2bbc602c71ff5094f4396575207a2
BLAKE2b-256 737ce438a39a8e655e4099ea18197be2e014a908a9185ca814bd5339c5913f3a

See more details on using hashes here.

Supported by

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