Skip to main content

No project description provided

Project description

Sapota

sapota is a Python library that provides a convenient way to construct and manage HTTP requests using Rust for performance. It supports various HTTP methods and can generate cURL commands for the requests.

Features

  • Construct HTTP requests with various methods (GET, POST, PUT, DELETE, etc.)
  • Generate cURL commands for the requests
  • Manage collections of HTTP requests
  • Export collections to Postman format

Installation

To install the library, you can use pip:

pip install sapota

Usage

Creating a Request

You can create an HTTP request using the Sapota class:

from sapota import Sapota, HTTPMETHOD

url = "https://api.example.com/data"
headers = [("Content-Type", "application/json"), ("Authorization", "Bearer YOUR_TOKEN")]
method = HTTPMETHOD.POST
body = '{"key1":"value1", "key2":"value2"}'

request = Sapota(url, headers, method, body)
command = request.get_request_command()
print(command)

Managing Collections

You can manage collections of HTTP requests using the SapotaCollection class:

from sapota import Sapota, HTTPMETHOD, SapotaCollection

url = "https://api.example.com/data"
headers = [("Content-Type", "application/json"), ("Authorization", "Bearer YOUR_TOKEN")]
method = HTTPMETHOD.POST
body = '{"key1":"value1", "key2":"value2"}'

request1 = Sapota(url, headers, method, body)
request2 = Sapota(url, headers, method, body)
request3 = Sapota(url, headers, method, body)

collection = SapotaCollection([request1, request2, request3])
postman_collection_json = collection.export_collection()
print(postman_collection_json)

with open("sapota_collection.json", "w") as f:
    f.write(postman_collection_json)
print("Collection saved as sapota_collection.json")

License

This project is licensed under the MIT License.

Project details


Download files

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

Source Distribution

sapota-0.1.2.tar.gz (6.0 kB view details)

Uploaded Source

Built Distributions

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

sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (328.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sapota-0.1.2-cp313-cp313-win_amd64.whl (165.9 kB view details)

Uploaded CPython 3.13Windows x86-64

sapota-0.1.2-cp313-cp313-win32.whl (158.9 kB view details)

Uploaded CPython 3.13Windows x86

sapota-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (325.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sapota-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (266.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sapota-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sapota-0.1.2-cp312-cp312-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.12Windows x86-64

sapota-0.1.2-cp312-cp312-win32.whl (159.0 kB view details)

Uploaded CPython 3.12Windows x86

sapota-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (325.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sapota-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (266.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sapota-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (273.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sapota-0.1.2-cp311-cp311-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sapota-0.1.2-cp311-cp311-win32.whl (159.2 kB view details)

Uploaded CPython 3.11Windows x86

sapota-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (326.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sapota-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (270.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sapota-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sapota-0.1.2-cp310-cp310-win_amd64.whl (164.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sapota-0.1.2-cp310-cp310-win32.whl (159.3 kB view details)

Uploaded CPython 3.10Windows x86

sapota-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (327.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sapota-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (270.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

sapota-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

sapota-0.1.2-cp39-cp39-win_amd64.whl (165.4 kB view details)

Uploaded CPython 3.9Windows x86-64

sapota-0.1.2-cp39-cp39-win32.whl (160.0 kB view details)

Uploaded CPython 3.9Windows x86

sapota-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (327.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

sapota-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (270.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

sapota-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl (277.4 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

sapota-0.1.2-cp38-cp38-win_amd64.whl (165.4 kB view details)

Uploaded CPython 3.8Windows x86-64

sapota-0.1.2-cp38-cp38-win32.whl (160.2 kB view details)

Uploaded CPython 3.8Windows x86

sapota-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

sapota-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (327.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

sapota-0.1.2-cp38-cp38-macosx_11_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

sapota-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl (277.3 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file sapota-0.1.2.tar.gz.

File metadata

  • Download URL: sapota-0.1.2.tar.gz
  • Upload date:
  • Size: 6.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2.tar.gz
Algorithm Hash digest
SHA256 55692c30816e1d2bb63c19bf120cd282012732574f17f9c402e9698787df5aeb
MD5 fdc5c8f9b254dcf7526bb14e4747693e
BLAKE2b-256 5e1dd8513c47678f08fcf0fe51cee8a97ca2ffa2efa6ad98e62dd9ce96a91959

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e71b17f804ab79723b9bf838ce3459d4f3699bd63790b89acfd45e01f4db0141
MD5 e5aec6d1307e07461d809be149e606c0
BLAKE2b-256 fb9a44fce4e6e035fc2d28ca5aad1f80109b502e9400a6f1648c292035d72219

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e93d72e23d0e16bb5ab8ffcea7213bf79f86848c1f3680fffde0d8d807bea2ba
MD5 f4b9d565a4c519c7bfbd6e6c20f5be85
BLAKE2b-256 beeb03214622947092d19e433cf29ffb39d11037f7ca3b678cee40cc2ed86975

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 165.9 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f52a87716f570408e02f7085be1609d509bfe5ebef993f9f5982943a7afe2b82
MD5 95f1cb302d8ed299485a4f6a326f08ed
BLAKE2b-256 98f7beb6373c96f342127c3f65b825d8c18da5556441ab7a9aebfc08b229ef2b

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 158.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2326f76f610abc7d39c75f736736a2d0af5a5bad14d78149b233f7bbbbd7012a
MD5 a2f64e8e916237d895ade36640660a1b
BLAKE2b-256 3a2481ab3b9231278940990addc25e90da008c290b90144aa46e1f5fb48ed86e

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 02329707918f35e0c3d0ed49bfa787cd947f8376a2abd2f774413d73ae817449
MD5 acbc9208ca765af6b47b2598b43497f5
BLAKE2b-256 ae9dcf62a72d3c4a828e9053305c5f95f13e453b8ac1968490c96ec4a129d849

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0e26f2c3442f8eaf2789051e10ab5fcf964d07ea7f6c51b32a9be2b88cd22ca
MD5 6f5365f4ce9cb77ab27ae19fb731eef0
BLAKE2b-256 699a819d294ef353de32e13485b5c2ba9724dccc2e5dab4680d18d293f1cf68c

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2ca7f4344982f42f3f302ba8648651ad91194353bd06943db1d1aa6eb8c5cd4
MD5 1ba87f39a79d29f38a3fa68c5536e912
BLAKE2b-256 78ff3c9d53ce9838bdcce466ea627546032b84a085d7444b5a202d2bb868e5fa

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8d901aed40e44a113e8dcb9d4ea518f6381a3431dfe4a8fb48726dc544b3e9cb
MD5 188426c5e8a5d8ac8a70bda47cb9f4e9
BLAKE2b-256 7d8a4205a2d30c4f73190fdff8c70273ccacc0c182c6a37020fcac9a365e2d85

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 165.6 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 13e26a19d04f30ebcef6a2bb36559a124d174d9b39501e61d651b5737626d66f
MD5 a7a5b38bf0b688eceb8a10215cc26ed5
BLAKE2b-256 bad48ad1f7a3e5ea6649851787c93f22e7a4e07a58a3d2ccac131c0865fd87dd

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 159.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 215683318a8a6bbc0cce6ffb8276d817852026f5ce236fadc41148abb635298c
MD5 6f8314493d91390bbd9fffbd1d1931e2
BLAKE2b-256 a7cfe22fc17d2824d2c965943c5754f5920264f6689fd3f87138c847d95e8137

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b19a4b710e27ae2ea007544357e8413d126d79476a8e967c4b60d4aa4ba69d75
MD5 df2b007cd80f20de08bd62d02b88250a
BLAKE2b-256 545197fe4e9bebf2c2924f67ea90592fc550335c83fa8719ab01b3504c068ab7

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 086716efab1d8ac956b16250a868a3370044c03d0f9f20043fc93195208f6eea
MD5 76e3f5c5b6ce31f3a665897c9723ad28
BLAKE2b-256 b7e1ab6cfe36ce725483d13da17c1c2e6eea92ced503959a6ac193f6f1e4a5d2

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 398209884c8033f39e6f01cb403e06a34be323c12b77f1f78fdd07a80343d651
MD5 5c813a1731169b6832460b7545df9a40
BLAKE2b-256 26a89a34c00f00c5a9af5979affd31b2aa1c9c0cfc7ecd06cabe1d10ecbf6c3f

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bc14254fb4ed5d92d0cbaaac2c0cff8f2aa3ed4b5cc3fad4a091fbba648b8d2
MD5 e85a24419d408327052bdb75812670e6
BLAKE2b-256 f90824b163540363f649fee3072dd581bf338bb09536e9e6da386cd1ad5a1ae8

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 164.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 36f85b6bdd8a8306607b13e64d3fc074be882cc30f38da08dd934653c714a71e
MD5 011a63f0eb09d64de76931785cd0fbbc
BLAKE2b-256 778e5bf2afa86e9e32c523fcf1236b3e29bcf76fc557223f983e8f03b266cdcb

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 159.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f0f7ce81b519113b6c59264f319695edc0b0206af653ddae037d6f2eeecfd7ac
MD5 8d49ea05890aa7e0c35a49fe46f18602
BLAKE2b-256 646d8fd163e15871b91bcfa58e744d04f827a7cfe23457f5e97efb4b33dc09e3

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b2040efe0296f81d9291022418b68149e6787880b831875ee6c57fdd5c48980
MD5 92cedae835a2443e6b5b85d4b1ebdc85
BLAKE2b-256 1b94e91029c61f1c674c9320eb99bda31c302d0bee2e21d0fbca7f17f2fdb461

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d639ba5bd8207355295b46ce0dd4ebad0e156c7256b41136b952d133039d9a38
MD5 555ce9d41a10ccbff77aa8c62999dd63
BLAKE2b-256 7bc1ca005e27b9d2fa6c58e92874bf40b2880d9b05861a3d80989f763851db3e

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 013c3e0ed42cfe41f3530a123825cb32764d068949d798c86064643a7331d1ad
MD5 9f6ed5a232c819434f71ac846fc999ab
BLAKE2b-256 6f95f3d1375922d3816d3ca2ea6a63009e448c63e00ab6a57e820141b6ccb76f

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f088459a1efce39246fcc11c0adbbda99d445236a233ffe040da75e9d46ee0d2
MD5 1e60c3c15208c628ad933e95c8844a77
BLAKE2b-256 49c1ed49d6b0d2d417fdd6724f91be2eb7c0d6ba9d0ab0d4ca0cbbd903c76d3c

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 164.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 120fe57ad5587dfd8eec0ab09c8e73ca8257e5818949edc5090b61621113dbb5
MD5 87428160aefa4d24cdee59782e4c51b7
BLAKE2b-256 2a359b9f257704ccda0d6afb69bc2e0fc61f3c95ab50129e93ea876043202311

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 159.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0aaf408c30ecdae380e831d8ecaa04bfcd4c883cfa4088c9f20a4802ec862ad0
MD5 eb87491fbd9cdcc669f9e995d984045b
BLAKE2b-256 2a782065888968ee9fe61c372888059d1a7560ca4447aaac27afce0ef83b6a83

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60df501023fad96d3906d6204b1fed7bb261866c773bbaaa896bba9014086a4a
MD5 45c09b7e3b7841fac49beb92ecd41452
BLAKE2b-256 af01a2dc4fe39f49bcf9b4d68dbd29676cfbeb41efb8636c8bdc817a78652bf6

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99af4620f116638d071c138852d8e287c6f4edd5f33d98f945787e4094a08212
MD5 c633e3c4459c36053474b5977fdf7c76
BLAKE2b-256 e40412361c3c9e0d08a3d45750ea8264af3b2ac741104bccaf6665fe07fe3bd9

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3378d1cde83f0209f4cedf444d70d85ebad4780aebff96607e46fb7c564a3c77
MD5 b290629210da487c55e63f0da572b5ef
BLAKE2b-256 c09b5f0b9cb7e709da2c27a496a6ceb15b19e47a1079cfeb81916f57cd9ebc1c

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 049fa95267faf94a3e5f6af613893bbb4f18dc6b6c3f38b09dbc3bb8714d1149
MD5 c1eded11a9b685d4df73aac5e97bca98
BLAKE2b-256 0736987b9b592e2acf03dec49a2b6740c0e27fe6198ded2aea731e4f6c003619

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 165.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b02d72765b82ef4f86396faec021af1faeb841b4ab50aeceeb9ace68c1a1a71a
MD5 fddb8fd7e26dbc2d9d0f5b2c835f815b
BLAKE2b-256 049223119151d0a13d26facac01edfa8dc92ab81260497a5f866d53ec73952fd

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 160.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 116f0c93c36a78e7345bb3898e4a7cd93412c04372ac9f3599f4b24353612167
MD5 f73d7d0d1a6002eb78488a52cf4764f2
BLAKE2b-256 96d24fcf52e45d6aa0f7437913ad8035228d3bc3643ba0c9e5901985a44a490e

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55c6eca307683d71008e90f30400dc5bb16eb789051c4a3440d57854fa1344ff
MD5 ff7c737345618e889b0012aa23639069
BLAKE2b-256 24ea1e625fc30b4bb2aa22a28932771d3cebc86f2846f2f67465e3ddf8a15421

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c9157749f9e21e91bf3fb7111f9f86dee25071cd2ab2b8f630b25768d2d3c388
MD5 00f2cc4a24285b225deb18ffe6aa1da0
BLAKE2b-256 d68170b47030e0f515b2c6e1b962b36d78890b8531bd84a459845422f441a4e0

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 846dfef983218a57e4703ed266e35ce02a1f83f701670f397fee5b143138162a
MD5 731c477d9f0d0e7b8e7e83e837c70cc6
BLAKE2b-256 c16c7f1fcd938583bc6d31c61621875c281f1536af000b45b5ca0b5b474b3e5e

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fd8baea8e547987015545ccb6d54cc07ecc83262c414b3147dbd4705e29ae65
MD5 fab3ff7a0f27a709868956f3b106c805
BLAKE2b-256 f71b064c5851b25ab6232965c0020369ebe781c550361a4d0a4db9980eabfeae

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: sapota-0.1.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 165.4 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 271911df4798c31c5776d4f877f3854563009be06606c5a2a82c0c23f7ec03ae
MD5 819455f826e590da9d4a49cfb07a1c5f
BLAKE2b-256 5d0db46083cbc8078a8ccd48a5dad98ae74d5e12168b829c5829ff1f84474ac3

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: sapota-0.1.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 160.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.1

File hashes

Hashes for sapota-0.1.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50c2f6d19deb47ec75e2a21fd51849ea8ea9c28e67b974f712c67190439368a3
MD5 d881e54f34aa064841b07155b11e2c00
BLAKE2b-256 d92ced8f5c2c51a4b5129a32480384dfb800bfe9aab117f17b840b5169995925

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac1e5dc89e4fb57db66c281c35cb610d5bc5368b6e94fd24c5f914b052fbc0e
MD5 021407e1108283bb732cfa8d41911e83
BLAKE2b-256 e7823dfa1a07abe3ea4a91650d2624ba6c022ba0ecdaa827262b5523da086335

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cacf94f8715d66513c3be7ca9455c6ac8f1a1d140eb26ddae96f31d8156c545
MD5 50a0b159a5de6f4a88aa08b1a73aebf9
BLAKE2b-256 6969e25690b48b41999036236f27dc360877873db329a517cb86f68af6066d21

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3f0fb9c42e60abaf5fcba9521d569e6c916a31ae7ceea8bff39a39d031236de
MD5 ec87dcac2e1b5960be08bac665daf086
BLAKE2b-256 ada34bf73dbb8e9b6f2456fca96ebbaa80d5e8bfe3133916adce0b13a5f9605b

See more details on using hashes here.

File details

Details for the file sapota-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sapota-0.1.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 012a30c2559175b528477dd9b5a02d4664c040eea66ee660b84bb73988f5c6c7
MD5 015dbd17dfbdde4f2e3e8cab6dc999db
BLAKE2b-256 d6bbfa6bafa3b836a399df5ce612e3f66801a98adbad24bdd3254daa86451aaa

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