Skip to main content

A High-Performance, Community-Driven, and Innovator Friendly Web Framework with a Rust runtime.

Project description

Robyn Logo

Robyn

Twitter Downloads GitHub tag License Python

view - Documentation Discord

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.

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.8

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
  • A simple API
  • Sync and Async Function Support
  • Dynamic URL Routing
  • Multi Core Scaling
  • WebSockets!
  • Middlewares
  • Dependency Injection
  • Hot Reloading
  • 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

  1. Install the development dependencies: poetry install --with dev --with test

  2. Install the pre-commit git hooks: pre-commit install

  3. Run maturin develop or maturin develop --cargo-extra-args="--features=io-uring" for using the experimental version of actix-web. This command will build the Robyn Rust package and install it in your virtual environment.

  4. Run poetry run test_server. This will run a server containing several examples of routes we use for testing purposes. You can see them at integration_tests/base_routes.py. You can modify or add some to your likings.

You can then request the server you ran from an other terminal. Here is a GET request done using curl for example:

curl http://localhost:8080/sync/str

✨ 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 Distribution

robyn-0.49.2.tar.gz (4.2 MB view details)

Uploaded Source

Built Distributions

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

robyn-0.49.2-cp312-none-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

robyn-0.49.2-cp312-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86

robyn-0.49.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

robyn-0.49.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

robyn-0.49.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

robyn-0.49.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

robyn-0.49.2-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (4.7 MB view details)

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

robyn-0.49.2-cp312-cp312-macosx_10_7_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

robyn-0.49.2-cp311-none-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

robyn-0.49.2-cp311-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86

robyn-0.49.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

robyn-0.49.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

robyn-0.49.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

robyn-0.49.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

robyn-0.49.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (4.7 MB view details)

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

robyn-0.49.2-cp311-cp311-macosx_10_7_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

robyn-0.49.2-cp310-none-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

robyn-0.49.2-cp310-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86

robyn-0.49.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

robyn-0.49.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

robyn-0.49.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

robyn-0.49.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

robyn-0.49.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (4.7 MB view details)

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

robyn-0.49.2-cp310-cp310-macosx_10_7_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

robyn-0.49.2-cp39-none-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.9Windows x86-64

robyn-0.49.2-cp39-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86

robyn-0.49.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

robyn-0.49.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

robyn-0.49.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

robyn-0.49.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

robyn-0.49.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (4.7 MB view details)

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

robyn-0.49.2-cp39-cp39-macosx_10_7_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

robyn-0.49.2-cp38-none-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.8Windows x86-64

robyn-0.49.2-cp38-none-win32.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86

robyn-0.49.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

robyn-0.49.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

robyn-0.49.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

robyn-0.49.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

robyn-0.49.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl (4.7 MB view details)

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

robyn-0.49.2-cp38-cp38-macosx_10_7_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

File details

Details for the file robyn-0.49.2.tar.gz.

File metadata

  • Download URL: robyn-0.49.2.tar.gz
  • Upload date:
  • Size: 4.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2.tar.gz
Algorithm Hash digest
SHA256 ed0e8837a47c27a6ad208ef2e9f79f585db2a4c31058c7081fc0e0062575616b
MD5 38d1e54ca0802556e11e67a8c4774343
BLAKE2b-256 1cb31e3beee2edd20b4583dd5910af76aa43372508c089c6bb05accb1d6dfac5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ec61ded335eb6abf76eda430e3a2f440794c917f607df6cdc139f1433936dfea
MD5 7604e25d6f40bb977b4a96ef41b51920
BLAKE2b-256 d068046b050eab8a6762aa9c266de18005761c628a88ab4d76bc826427d77043

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp312-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8bcedd70f45b54e528a01ce3ffd8d5ce3f4b0c9bf010ac3a2389199c9519287d
MD5 2ad3601e64c466425a18249fa3331bbd
BLAKE2b-256 04b8d8a64e01acb8829faf05acd525059c92cae59eb360d29573d10e070126b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdb699ac5991785802865b8f3e2193aef06e4c200c9a0ef322486ac84e2071e5
MD5 787b052934c49b49ce009ffee959c618
BLAKE2b-256 2b86e49599d7c40e51063317869a9dbf867cb0bae12bce60ba6eec64c125cec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b1ee26651b2ff60b5a770ac0abe42d4eb48342f0eb01561c224ff20f082f676
MD5 43a7611bbbd7932205a1cca0e1be9ebb
BLAKE2b-256 9a632564d0aeb851c217df23ddca546ef9186214284e8519539a63de63c901dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c7138b08a46d31f38a62284a6cd2ccb67141083a9bfc3726ff203eb4859ac34
MD5 15ea884836092cbb814f3ba8466e06c5
BLAKE2b-256 8387fb23357ef8b699ad34271b5960b13f20f19f88f373a9d50defc8f49f0c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ccc94ea089b3deed2369bed1ced2b8b98df5ddcc47e4ed2353fa7c0be6654c60
MD5 ee2eab10abd40ed23dbf1230a6841f42
BLAKE2b-256 1612f41101333348db1de44b3ffe5a121949dfec18f4bb18a5906df2d8819cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c28dcdfc9bff6c28f34fb49f5ed6de0bcaa9c004d8c51754eef8497290d06b00
MD5 dcc87a85a06b3554bf7d8ea775c8dae0
BLAKE2b-256 e7415eb4a4d9336f8ba4edffc37d16480d852ba7289412f7f3b3885f76a42276

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 22f073fc3db5dac0652f004bcb91b2f81550e923e7e81fd8dba18239dc70ac16
MD5 ad4dce3b54a35024da29833919b04126
BLAKE2b-256 d694ffab8ab327b04f84a4e0cb8a3624efa588035ea6599dcaabba7d954c1fb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 92366f25849d7a309bc16ee9e43f85ef76309aa24bb78cedee71d5f8e25f3d01
MD5 2de388c43c77c704063d03db01d50f37
BLAKE2b-256 e7db41cc89c41cf953c060ae5e6b88f21559e11bc67aefd61cb624fc11ad8e9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp311-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 33394627825b654a32cd1ae6fa67b1389a22d6f41d3baf6768e2f3d17d733365
MD5 99d750fc1984e11966ef91ebda3490fb
BLAKE2b-256 7c1ca7a5a1a3e1f7169ef59b0230892f686add5f8207391091b5a24c62ebd640

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 229628d4cc1a7b385193f85fd16f5fbf04cc4dffaa1b87918ef0da22a2d7fd6e
MD5 f58874ff1d2b55b118b47553e4be4125
BLAKE2b-256 be965a97bd4ac70a7a4be6b879b60d6e8db9029e0caa0dc6b6f94e2af0a09781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d2f1a760c4e9ceea3ec5db230a5a1a898b78bf460915545f8a11a0fa9c00625
MD5 f598f3f837b3ef527dea7da082011cf5
BLAKE2b-256 4930bad69893be0e0596e35401c6286a8ad82150047557ac722197f45587dc0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c6f3a8bbec1c6abfcff0cb3fe505fe8dc4bf570133a6ed4864fe6f18ea497b5
MD5 fcf2cfbe7bfa766a1c8b495e2f07368f
BLAKE2b-256 040f0bacd669f3c424ca312f4acb01ab09ce10a91ed86759702565d9d7691089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ddeafec238b3c90d7180b513aaae2c9d8c1beac9ec496a2404f091f319dac584
MD5 a18551c285f093a96b1ee9a994825575
BLAKE2b-256 8cbc71fc89e3d078eabcc84b45d5192960e2848d460750735a7b2da7512d5cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 322a16b0ed3a9999c006d0c52d956bc4525de5fe54e1bafbf6b2bd19eabe06d7
MD5 269367bc75af73fd41148405a037a42d
BLAKE2b-256 4c01c40121ee61988fa2c8842d797cc85518424550080c1671734a25d1db3f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e042b3bc59af6a28d5bdae07f82d3928ea7b9cc04970bbe3cae750061da235dd
MD5 26bfeefced04493da2793e973a338f07
BLAKE2b-256 69695959d8e199d273369a102c252bfb19ef6df791e1a6618ca8c595e272b1b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d991979e72e45b177649957c9886d3b33c1f1673b0cc8796198a8921f663397
MD5 cbe8d91550a6b79d9a0d4e6df042bad6
BLAKE2b-256 ef5951974cb945776990085623e78ed0cac06cf2db9f14dab30202704e80fdc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp310-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 4fc5ce0c1af0b3c112aed7ec626951a29edc688bd6b905396b725df24f779a36
MD5 3c9101e0bac3eb5158f2419c935deae9
BLAKE2b-256 4f30923bd2efbca164861b24630dcadd21ffb33f483f6b2ef539e347e5c0d37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 552eb5a141b1708c0c829819f8ba865d5e8bdbf8cc73dae4341693c05f59282c
MD5 fe5841593d43494a4598cfba1e4dbef3
BLAKE2b-256 bcce27dabbe04c5ff2f6fb3ce7e7710706b550d091047efac652c7341c87ae01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15e944c04978c9cf0f6ff163ba3e9f61896ffc201a87e6aa0c395afa9c881216
MD5 e5cdfae9fc8e38526bed7608ae41af26
BLAKE2b-256 731a26c2a2a91663cac4278b62b4f2204b8caf95d68e2e6040f5d48314c2f902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2f8cadd574146e717db8ad815aa8c9fe353c3a5baa943588458320fa3ffee35
MD5 7a772c73aceb3fcf4c0d72d90f9b48fd
BLAKE2b-256 53ee57c0a22391952cf75110e9b25b6ff897d6f477646a43e073847836d3f319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2808c0787dc8565bedd65c648cd9c4bf32a7a09b2f4b389733b2549d2716e371
MD5 c03b9b80e7d9cf52431196ad2be1b01d
BLAKE2b-256 1f5e05f38c284c1a3308af87db34403022057e483eb61b1c92b88f2d058d1d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 cd79933f96539c80abec45ca74a2c7b1024ad4b330eebac74167eb62ca6fa02c
MD5 5a9ddbfe9ebd6b1f219d5a7855b6c9b8
BLAKE2b-256 5037adacad9af50a77e34eeef65d1455e03280a0117466e544d3504ff92ebf2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c4b3efdef9469c6746a4324ecfbb9dcd0d6136357a980a54e32a250025dfc618
MD5 15e07d9bda14ae89578467d9eaaa4d74
BLAKE2b-256 6dcdb65e90ae6812f95e807c8a22523a0f631d1fead4c352a3cc6ae222e00c8b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a260aaba4a258563e9d628ba74286a2a76edbd118fbfe5278cd3b1a5cb5bc41e
MD5 f58f8ab7aa3c958b38519ee1cffa968d
BLAKE2b-256 ffe168625ff428d28fb5050dc816af7d7de1b23e0c342535d75280feddb59e3c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: robyn-0.49.2-cp39-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 724fdb77fe4009b9067ec5c30268542d15e7ceb497aa7d4b0908d5fbc782b925
MD5 5124fd88bab9fb85868c6b6b32f5e086
BLAKE2b-256 cc349cd1b910068d84ee38af461f3e227055456226eb9274b16ca941c8c02a35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7843492af5a888c8845ac327a0cd5d5a6ac65b068db9d4685a23adfe85f5dcc3
MD5 fb466aadee7786ab1969da9fd6b87834
BLAKE2b-256 01dfb83a94d443b26946328c5b6276c1d0e65b020463f5d7c64b09b875cdb537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49d80160d5a1e68a162de00ed8fdb4654ba061e5bec5bcd4a44564ba54906e72
MD5 5f0656e46e3ff851f9f603545368ddf5
BLAKE2b-256 4f352f981e23563e58f0446fb043434110a6954f7375fcce9c3ffabb2be2ccee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d04ab0fb602f410c4f36ec69f9df4c2faa9683adcd24332ab0e02b2e5d6b535f
MD5 9b27d59da7301ba8ac06d238a96b54ae
BLAKE2b-256 936f84b0d9ad994c62a6762ee26f471a1cbff841daac8398c6428a421d0d8e99

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 926fe75b1781aa1e993e03e2feca0ddc158c899b16867ca652399adb7aa1c73d
MD5 677570e8920c02518d51716b7bb825f9
BLAKE2b-256 3ee6770e89efe133f67042ab8d5454e70869c0da26cd1f0a81b1bbcafadf2551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 9df31ee6640be9cc4cdac21e8f832528a31ec800e1043da2a7b282a16df1612a
MD5 15d9ae0c6ad411b2e3c6bf593cdc15b7
BLAKE2b-256 a3e3ebb84e74eb60c884d1f7cbec32c8979c85a0d486bd73b7c803584378478f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for robyn-0.49.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 038419f3fb3eeac21555b879b55d552cefb9648c7916f2ca4cd35e8105eb2f25
MD5 56b04e2bb5a3afb9d00db2d8afce8dd8
BLAKE2b-256 61e9241c1ce26421f80c245c910c73f797c1ecb9727771d1a9733dd437d13477

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: robyn-0.49.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3bccab467ca0e26bd233273738f0d2a9394156af34e239554b648369cadb475a
MD5 3311f0a71b4e7232dd2b5b7b71a5c573
BLAKE2b-256 5e28fbef92002f143486eeb79efa38d2bb4c23f7b272611acd3afffdd0fdffc4

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-none-win32.whl.

File metadata

  • Download URL: robyn-0.49.2-cp38-none-win32.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.12.1

File hashes

Hashes for robyn-0.49.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0880ece105ab10327840f012b548d657967b8bd1b86b437021b2c0a95f751ec3
MD5 406d8f20369e28b32ac1263deaa88ccf
BLAKE2b-256 9680d7e13d4b00e51b9e0628504bccbf4edc35597ebe1829138a65eac0d0669e

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ee0320ec2168e633b326b3d79118073008e396288394a7bbc9fcca556916e25
MD5 e887e1f675f3eb06882c121ed72901d6
BLAKE2b-256 ea4a09d87e9fa88d25c8f8954f7aeabff0cb752694b95e52e33475981f5eb09a

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ee26a4c47ecd6039e18b270a92132ec9a630282e69e9f876aa4cad047f92c83
MD5 7a6e7792457a3031aed9a1987afecb59
BLAKE2b-256 32380888083409d56ee989ac966204e298d3da658b67c52a3ff2d2ae977606d9

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 850e3b8f7e9ccef69c0b58f29a8eaee5f2a5df0da03af4e6587209fd74c548f3
MD5 ba7f69d1cb70120deb2f7d197a188f4e
BLAKE2b-256 ae5e0611e03fc1306588605fa01c684429361b34af3fa0978310c55b39b6ad49

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 67c3d2a89dbe949307bf233b6370998a5cd5b5d4a069311539bd149cbb7be2db
MD5 1e9af8953ca6f37c2d5ae946a2add131
BLAKE2b-256 815b361f32f77b9de8e3236ded0dd40e6bf5dfa0f7a4b361710a742c46dce33d

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-macosx_10_9_x86_64.macosx_11_0_arm64.macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 47e808f1aeff69b2b61b037f0ba45e24cebc6a8be12dff8a98e2d6c19c7551d4
MD5 c7375441a08ddf543e701fda839270e0
BLAKE2b-256 b55f6a695ec56777181d9d4c9f329464ed9b3aae9c9ad41e7aa6995d9ffd33b1

See more details on using hashes here.

File details

Details for the file robyn-0.49.2-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for robyn-0.49.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2fc9a52cb8f7f50fb187e7edc3488fc6c20a67766a7e8ba842efaf1ecc46a53c
MD5 a9713b986dcf6a636d01422253cf7d53
BLAKE2b-256 18c0c4d5e38d652567720e029352538fb9afbb60ab11b60374f6774317e77523

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