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

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

🤔 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.9

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!
  • Written in Rust, btw xD
  • A multithreaded Runtime
  • Extensible
  • Automatic OpenAPI generation
  • A simple API
  • Sync and Async Function Support
  • Dynamic URL Routing
  • Multi Core Scaling
  • WebSockets!
  • Middlewares
  • Built in form data handling
  • Dependency Injection
  • Hot Reloading
  • Direct Rust Integration
  • 🤖 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.9, <= 3.13
  • 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

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

robyn-0.71.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

robyn-0.71.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

robyn-0.71.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

robyn-0.71.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

robyn-0.71.1-cp313-cp313-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (3.2 MB view details)

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

robyn-0.71.1-cp313-cp313-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13macOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

robyn-0.71.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

robyn-0.71.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

robyn-0.71.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

robyn-0.71.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

robyn-0.71.1-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (3.2 MB view details)

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

robyn-0.71.1-cp312-cp312-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

robyn-0.71.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

robyn-0.71.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

robyn-0.71.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

robyn-0.71.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

robyn-0.71.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (3.2 MB view details)

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

robyn-0.71.1-cp311-cp311-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

robyn-0.71.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

robyn-0.71.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

robyn-0.71.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

robyn-0.71.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

robyn-0.71.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (3.2 MB view details)

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

robyn-0.71.1-cp310-cp310-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

robyn-0.71.1-cp39-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

robyn-0.71.1-cp39-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

robyn-0.71.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

robyn-0.71.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

robyn-0.71.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

robyn-0.71.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

robyn-0.71.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (3.2 MB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)macOS 10.9+ x86-64macOS 11.0+ ARM64

robyn-0.71.1-cp39-cp39-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

File details

Details for the file robyn-0.71.1-cp313-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.71.1-cp313-none-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.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 a5cea482e9ce9ce9f164589087e8daad01284c1876c5fbb145a0c56a19df822d
MD5 23955d08ca0aa493478cd8576a25221a
BLAKE2b-256 09e13a6a19c51af867287e9fc624316aba8a231e8d9e070417588614a1352027

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp313-none-win32.whl.

File metadata

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

File hashes

Hashes for robyn-0.71.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 a04067ebd965439c3ac68f0c458dc4c6d1562ed31a0e9c428dff4f929a33dc50
MD5 df9c405bd0cf2a4e0aeb82fae95bfca7
BLAKE2b-256 03187e14d22f7cb9e2a5c8391ba2045070d242a0b0ff78900a0d8378056b0ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09333a0c3231025da1ac009cc250c17f7c79158e9a1c77d00cca42a6c7e1f381
MD5 558ad5449b7cc32a8a65e99e428389f6
BLAKE2b-256 615c82ec80c36313519f0c4226c3cd23543ab8e9848890eb0cbc010a9cf4466f

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e531bf0735e1127178acd5122e40f60e4f0129243bf28e60d03ec589e0cb814a
MD5 710993ea7455fa3b006db03c24d0a947
BLAKE2b-256 88674e3c51b688e808fe15e003ab0aeea03ed20b73231b00b578c2041ac0d955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f5d669f26729cd44aee39af7ca0d62e53d12a0178cdfec0f712bdea6d4c412f
MD5 2898d84ca639faded7fab12a86fc6749
BLAKE2b-256 bcb3a227827fda48280d4cf3f027b50f12e4378d8537b2614a66a2a770d06c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f00dee62147073cca0f8eddba9cff0a136666c44468686ab2e23fb63c6f9793
MD5 751196c4662fb4f3a05092c23b7a0c93
BLAKE2b-256 16d21f366fe1f46fb482e481f65ecca1dfb8ca88c1c4bc2164b6c147562d29ef

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp313-cp313-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 112afd9dfec3bf4834030963bdd4631ada204b1e9f9f89b2f90ce4d639641da3
MD5 bd8de32f609eecc909801fa3ccf24545
BLAKE2b-256 55b567c3b0ec3b7c19396b37867975d5ac14c598b36ca3c0da396d1aa7393197

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp313-cp313-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp313-cp313-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 604cf59499bb30833e490cefc04ef577d55e8703bfd48b02bf48da503456db2c
MD5 ad19bc99510ad0b4056fd172375cbf3a
BLAKE2b-256 67324574f3750e9c54da0f92ffcea6f48a326efbb890a11bc1619c7979a17d28

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.71.1-cp312-none-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.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 77076d924a2c3961ef243597bda2ebc84f600acb90242e11573cf4856c479f82
MD5 d6d81dd09f24870079e62cc5d3ad50f9
BLAKE2b-256 6cb7af5e2460748c12c135111d010a22609b0d41b2a09849f9567767b5ef8502

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for robyn-0.71.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 324980ea526b583bb9f3d8713c23d9380114e4288ea5b1e939a77d2716037817
MD5 e4431b8f2fc258ce55a8ea1da5a62616
BLAKE2b-256 df8b8304d0bb2db7b3126a08ed832ee4a8affcec30e9514991f50beef78d0063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0917d1ed7ed2b505e5adc2ad849c3ea6e12fa552299c03b2d4dc1fdaa03ac4da
MD5 4153278ce0a1e3a2455bde04abe425a0
BLAKE2b-256 b0b47dafc2c766bbdac032688c0d14ed1aad4101cbee203688b1db1dfdf06846

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 644e870176d9696914840f82728833f102d8012c657f7c7e27f2d35dbed8a29f
MD5 a211afd212f2f81dd7f6d2f9390d7e6b
BLAKE2b-256 b66fc53bc9d643e72b9254cd2958c05a692b42d77d2ed7f9b3e1dbf1a6f9dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78da84dd20b76078b50772df43cee352b461ffd27d190395a692e88d28305f4e
MD5 6c2254468ce9bac3905addd2af6130e0
BLAKE2b-256 d1cf6c6e5957d4aa843b30a8b0ef81282ae3b2c4f2105e077ddfa49a8f13c8c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 736ec2968573b464ac6ec0b685c777eb746e3fbb7dab1e6ea1fd62a608f808e8
MD5 8de18d9aba0fae2c96132cff53722e94
BLAKE2b-256 12fabd174a23e9ebb71ad2ce30ecd7c6e2836efbdcf33f75ac11a4605fbe1b05

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 f22e431aca0d1c27ab3567fd56dc330cf96d4d10131a7ef6388fb4952b8466a5
MD5 6919feece3646f543a6988855dd122bb
BLAKE2b-256 a545ef3e79e2ac30662e0d00787dc7b87f81dd8178613a8ade12c59838da8fdc

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2ea72298080462ae55190a7adb3cc6724490219677346db1a07125c3b8b15b7e
MD5 5d35c75d803c38f8adefb26eee1fc986
BLAKE2b-256 acf05f1f718e3002baf16faf9c796d4f758420c10ffa370b58d14442ff90bbad

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.71.1-cp311-none-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.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6fcae9b9b35192662083e8ba27dae55d8cefcfed345a95d4cf57d5256d6994a5
MD5 cee51246094d29f4fa414466d16834da
BLAKE2b-256 2fc090c293df758073cdcd7c770d4f01b93696b9131d36b1fcf6f07b5310a835

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for robyn-0.71.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c8dfdac76f93b8a5ccf450201337b33e4848fd625a84d78e9efa0a5af326e634
MD5 e9e8899755b2f13ea50c7cd1774fd6c5
BLAKE2b-256 1cf4a996369d8d31fd2129711949a0c16f787786c6f4ce862c17b658c1e195d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ed0f0103c30d13431e094bbb1b6bc44988455fa6945d55e1d0a850d74ad1d71
MD5 737045f8a2602ed5f406b2b2fc127e77
BLAKE2b-256 ec6b5d0ed502f8d4f062867b489a73b77d4e729a2a92f9d98a1a6fbdaaab8bc8

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc61b028a28d31151a4d92b0ee02301c30d43b9dc83a0fad370b3a1f0fa4106f
MD5 04de521d031f99a352be89bd63422d8e
BLAKE2b-256 54a18affe86a2a1310de92e7e8b91890eebb610cdf084b917d2aa5aae96032dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a640710a9f21f1d1e788ac6b8d3b2e706bd42c3dcd3126cf3372bd12a81dac3
MD5 38ee65c564616dffaa42aeb6a29da005
BLAKE2b-256 fd75e9883f54308ce4ac6b624ea96524c85c612804f59b79dcb7f35876e5b4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8fe65488e9fd3526ca8d92d87b2e7dc49d84aeb751de39e5d0d8675085108da
MD5 410eba4537e6a41ba4057da5bd192dad
BLAKE2b-256 03845dac630db06c04300b0117a430c7190fa759a44d70943925e3ba8fe09aec

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 eaf9ef74020c988f36514627fe607e22fee0983f17c3d059f1cb662bbf93a609
MD5 1cc288c24309d6270df1bce3b9a4ef0b
BLAKE2b-256 019cd0baba61b49f672dd07fddab7748f2a24a52b93d65ca311589a3c12151c4

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 45c09f4c84697f2f4e665cbcd751cf21236f802a887ae33f2a78e64955a48c40
MD5 e164bc94130ff549e7b8547cad5c17a9
BLAKE2b-256 5ab90063ff57c04938e74a8754abdd9c268a7a360c5a95a1451ec8f74a0a6111

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.71.1-cp310-none-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.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9232989966b028b34f3ee305eb1f49ba611746427f65339146c8003650ab14b4
MD5 bb881a1b78d193f973ec053b9131443c
BLAKE2b-256 23ebcb949d4fe67306e13c30e85319db58175ec1fec2b70af6356ffa3f03d661

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for robyn-0.71.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e52dc7f66f952bb862966ca3d3491daaf86ec18a1e6fe21a36ddf72336861401
MD5 dcc474a736ed36ed045fd94f7b800076
BLAKE2b-256 e156ac746afad8b09fbd117e8ad567ce0eae701b45235f45d3ef000d515c0348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d90bb7880bf8fbf70af5972d60bd76f3f7d9876aa79f6795e7c6d11605c3682f
MD5 59e68048f9b8287583715a543d808ca9
BLAKE2b-256 4c84af6d325cac2f5c622be4c1a33d4c90c6d19db46002e26bee06f194a5660f

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8debc1be5c512feef9ba3fb3f278ff0a8e62037667a72efc81b73efeff88faee
MD5 937540c8816578fbaba4a1e1c5569cc6
BLAKE2b-256 50d5b6913b2f7e15d619a1f994342494b6f4bda404de2c56df360586b8e77b40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e7b331e53359daa1863c0ac0e72b01fe61ec7904ad391b88ed7aecc1be292e6a
MD5 5948d6dace1c5456af409b450ccdad58
BLAKE2b-256 59f9897fa83f6d6e4dcbfb5208ad705cc01734d2d75216de8f12e063be40d704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cd771bac8de1eb6e80e0f2ae7775fc9ca216f99523f1f80cc3eb699ae7b94a4
MD5 277a021a57655be62d7965af783b4ac9
BLAKE2b-256 3a1a57aaf5ee1ea067d91a9c844c32a0e74ef6a2c5d20a14419565a788b4755c

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7a438b23c39e4427f3c7e9673d28f6307a75134d76e7723a2bee9a5b6ca858b6
MD5 1f6f5b65c0a59b71416c7dfc46828222
BLAKE2b-256 4de048f67bb5dcdd490dc4314ce914af5badb9e58fa329bacbdb5930604cbf3c

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 922b90166aa177adea57acc7ecf83aa754f5d858829f5f05a0400a893795c341
MD5 28196fae29c894adeb92f1abb6fd7376
BLAKE2b-256 acce0cfc27e0bb9ea678c95476bbd81af00eb13ee96281f4a4f84eb6e262d62e

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.71.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cf97b8b5327ee9efbbff96f8a54b7245bbf96171875fbbb4c341e44356d96951
MD5 d1c1f9563ab944499ef7567c09bd57d1
BLAKE2b-256 721a466c88c64b5ec9fc2cfe8273e41debb6b09ea26b85b342a0ea2f758660d3

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-none-win32.whl.

File metadata

  • Download URL: robyn-0.71.1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.5

File hashes

Hashes for robyn-0.71.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d1f4b345acba8ab0055604178462159c29d08db6f0435608f29eb2af61be6863
MD5 440bef13daabc0cf4a2023235a64fd87
BLAKE2b-256 b9c5cc7d2ab24c81051302fef28dfcfe208a66ac8495889f1c119261a0d55cc8

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab4813152cfec75e2bc90a06a1d14862a96416a5990ed0a8671b8ba90214e38a
MD5 e3f219934efb63659d232ff44efca364
BLAKE2b-256 e262f015c4ab3b3a50cfddb0ae8dc7377bdf44f22ec4c8e53248f615f138f6e2

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 994a12ef972d1b878e72aa3e0caa4b8ac42ee42a8ea3b97ab55e860802462767
MD5 ad021ed468f0a4f889a6532b33a85cc5
BLAKE2b-256 e52942555f06fff17844d18e3633efe8e05fb5d83cbbfca1c3ce1f24e91696bf

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7ee02944132be1fe9755a14f808ab017fb1370f1b085900a6afd71e90ee516b
MD5 20816add0701041f2b6a23f57d957d88
BLAKE2b-256 9f82166a40804489f740b728cd1aeb53d07726c71bbbbb0d47e29de8da3a70ec

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce670cbf8cc09c2e1fdf08c301919b200ca144223cbdd6d077ff0e9fe2f75856
MD5 9ff4d19ed5b9b9ad5d0f1370958581eb
BLAKE2b-256 f848549ee7e91b36ec05b969f88194fdbafec90adb7d385b0d9e341ec7b2a54e

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 34e772d930731f949009fe9d4dbf8a5e4113b35f0f45df2c15ec46ffb2a08fc9
MD5 59c0929c328de668b3ab4e48cacd5208
BLAKE2b-256 38b63de43118d239d6bf6d8338e792b202089757d38dcbc643ee496c679d4664

See more details on using hashes here.

File details

Details for the file robyn-0.71.1-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.71.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c18a04b41220726fb5a6301aefedc2b92b40748dde345f3234abb396de4d8ca5
MD5 5e56bb8abbace73573c1a4aa71c38abf
BLAKE2b-256 53ae85abe75321abef3cdf114fc642e083428a66c72b8eb0020dc2d2da093f39

See more details on using hashes here.

Supported by

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