Skip to main content

Release Status Tests Status Coverage Status Documentation Status

Flask JSON-RPC

Basic JSON-RPC implementation for your Flask-powered sites.

Some reasons you might want to use:

  • Simple, powerful, flexible, and pythonic API.
  • Support JSON-RPC 2.0 version.
  • Support Python 3.10 or later.
  • Experimental support to Mypyc, it compiles Python modules to C extensions.
  • The web browsable API.
  • Run-time type checking functions defined with PEP 484 argument (and return) type annotations.
  • Extensive documentation, and great community support.

There is a live example API for testing purposes, available here.

Below: Screenshot from the browsable API

Web browsable API

Adding Flask JSON-RPC to your application

  1. Installation
$ pip install Flask-JSONRPC

or

$ git clone git://github.com/cenobites/flask-jsonrpc.git
$ cd flask-jsonrpc
$ python setup.py install
  1. Getting Started

Create your application and initialize the Flask-JSONRPC.

from flask import Flask
from flask_jsonrpc import JSONRPC

app = Flask("application")
jsonrpc = JSONRPC(app, "/api", enable_web_browsable_api=True)

Write JSON-RPC methods.

@jsonrpc.method("App.index")
def index() -> str:
    return "Welcome to Flask JSON-RPC"

All code of example run.py.

  1. Running
$ python run.py
 * Running on http://0.0.0.0:5000/
  1. Testing
$ curl -i -X POST \
   -H "Content-Type: application/json; indent=4" \
   -d '{
    "jsonrpc": "2.0",
    "method": "App.index",
    "params": {},
    "id": "1"
}' http://localhost:5000/api

HTTP/1.0 200 OK
Content-Type: application/json
Content-Length: 77
Server: Werkzeug/0.8.3 Python/2.7.3
Date: Fri, 14 Dec 2012 19:26:56 GMT

{
  "jsonrpc": "2.0",
  "id": "1",
  "result": "Welcome to Flask JSON-RPC"
}

References

Download files

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

Source Distribution

flask_jsonrpc-4.0.0.tar.gz (4.1 MB view details)

Uploaded Source

Built Distributions

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

flask_jsonrpc-4.0.0-py3-none-any.whl (892.0 kB view details)

Uploaded Python 3

flask_jsonrpc-4.0.0-cp314-cp314t-win_arm64.whl (1.3 MB view details)

Uploaded CPython 3.14tWindows ARM64

flask_jsonrpc-4.0.0-cp314-cp314t-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

flask_jsonrpc-4.0.0-cp314-cp314-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.14Windows ARM64

flask_jsonrpc-4.0.0-cp314-cp314-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.14Windows x86-64

flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

flask_jsonrpc-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

flask_jsonrpc-4.0.0-cp313-cp313-win_arm64.whl (1.2 MB view details)

Uploaded CPython 3.13Windows ARM64

flask_jsonrpc-4.0.0-cp313-cp313-win_amd64.whl (1.3 MB view details)

Uploaded CPython 3.13Windows x86-64

flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

flask_jsonrpc-4.0.0-cp313-cp313-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

flask_jsonrpc-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

File details

Details for the file flask_jsonrpc-4.0.0.tar.gz.

File metadata

  • Download URL: flask_jsonrpc-4.0.0.tar.gz
  • Upload date:
  • Size: 4.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flask_jsonrpc-4.0.0.tar.gz
Algorithm Hash digest
SHA256 468018215a1363f44e519d9f50248bfd4f3e1f6a7c6e709ac4039fa43be327ce
MD5 f5c5a0364fc189e185ac6ddfd700bf0c
BLAKE2b-256 b92e74dcb729aa2f5b49d4731cfaab5cb5fbfd867906ba7a0a6e32c66779dbb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0.tar.gz:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-py3-none-any.whl.

File metadata

  • Download URL: flask_jsonrpc-4.0.0-py3-none-any.whl
  • Upload date:
  • Size: 892.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for flask_jsonrpc-4.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fa6ae9e8cde3a2a84f78b5b1f2ae87312dad55fd503a419246796218446757e6
MD5 656f356b5c9c8fdfef283335a1b606cd
BLAKE2b-256 ae7b582979e6c3e1325e87a975742d5a73c9f5fe4bbf62759dcdb91335a7d765

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-py3-none-any.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 49ce1e579ffa67c8724d9d983d8480eb0ee99fee677895e43098d65ea24932ee
MD5 e503c355a072e9d149cea593bff6bedf
BLAKE2b-256 8df2aaf7a6bdae4a0595d8ee1c3dee88f4e9735c309b5239f1c1846c21eb8564

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0a55aa382a307f8497a65a8e37547d7ef7aea58e8ab1a52c873db5c34b5444fa
MD5 3d099039a33bb74038f01b5bfeb81b97
BLAKE2b-256 f21712c26b7aa7990e3f4d6bb72ac51dc4f7e6fd004b217ed4518c4f2108961c

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5982cd2c974d8cc2e7f215cad510e93a82ef4aaf9c4dedafe28436e92e586117
MD5 04a615c494ef36c4fdae777764c1166a
BLAKE2b-256 d3f5492a32cc29340ed28252889daf44d15bafa00d23177b45f157b1ff1fb75d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0b7feef2e5c90f922bbbabd9a9bd67a98330a8ddb034fb6e36e23f5e240f425
MD5 67e006c80239bd0f861264d534108096
BLAKE2b-256 39aec823dd6f9a1309cfe01522f5981c1035bed9f52a32f3384778565b97f2a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 76b2f0d03080241e3cc442a3ab333670e4d5e0b3997f681ba290724f32113393
MD5 2fcbbbad95c15897b92e6b4d39aba6d4
BLAKE2b-256 64e2fe2e7742d0c62b9cf9b3dacff413f2627287c7cdadd32c7ac20b94b7b1cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8491ec1ef9e1895ef070179b28e5b43589565ac9e8a82065fadf618d606ff11a
MD5 421c1a0d26d2233d07b705e36c02b260
BLAKE2b-256 10c80181d62f992cfcf0611197bec74038cc4885aa24d7b9197ba9ce380bab3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbcc5a995db6eef7732c06531eaa036efec94d8614abf68b686d116a8412db45
MD5 444d49e931d6d8fb95ba1a066e8a1b77
BLAKE2b-256 d019732e97b8ac76d47dbc32c4366e71e3d8c253adcb01e76329f2335eed08d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bd008c05d3a2325d67cc53be8ad42677c72f6aa4868959bdf981fea61d18f111
MD5 e5892bacc664752db58e9f67fa65f525
BLAKE2b-256 e0d5e53520a214cb53f94b4fcad4079b98a4a72a687bd2aa9564e173bbc2a0ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f7c9286c8d26ebc03852fda5200e4f1c78da0f6619b3aa7ba7b2a81c5bb9f812
MD5 8de098973e890ed69ae4e73236653273
BLAKE2b-256 352c6aa19ce8b5bbc673aa02af80e86c9e0687a5a84cb288b0511a9dd5cbd0f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-win_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d37db68be812c2d5c5a4c84a271531046eaaf61fb6344521bd5484fef2cbf541
MD5 eb2344fba37c6f9eef9dc6631dd9e72a
BLAKE2b-256 234683fff4aa8c912d4377f6e59fd2685b902c3b3e9f778bee076fada641548d

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abc2301761b7542514d494477590059bec87246e4fbad7207669f17d91ffa555
MD5 8a285a51ac04cc4db4c7cbb54992cfae
BLAKE2b-256 42c434d9af8e8428178bd28adf8e44417120c6531d319dd0c93770a10bf3985a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0973ba8e3e2236141273442198e884f6e6aa8e5ec42a507f64aad7c1c2d45291
MD5 b3266c0fa10d98d58ddd04076e25b87e
BLAKE2b-256 296d38ea55d4ca8b2a3c2b071cca2dadfbde1831d55065c28e2ba1033edf4546

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1269f214e31fc271b43efc6aedcca5c349b221d684eff420c49efecd9d012640
MD5 08a90c1b79bb73431373c48815ae6149
BLAKE2b-256 971a0cc40ad50d17faa6dabae882462ebac8c13a0200b538d4b7f2014a6854b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1672ba4e376280d96eadbfc034a571ea5f5d41abcf73a340f78cac004feaa314
MD5 cd683a4a044e781bedf7f979301f67c2
BLAKE2b-256 d53fa6016a1e59058ae908feb20fbf1571318bb71b277736de917579318903c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdfeb3a5c397296724abc3ec32780e01aa98ddd76f2cb447c5028ddede933f20
MD5 4560f6dc5ee68be8e957fab12b6ceebe
BLAKE2b-256 714cc50ed4c0887277309d37c2b5a085899d346bd32248893adf262aaf28c9b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fb855d6e4a435b922b39f0aabc556eea12a411c27314802921a25d9200a04b62
MD5 ff254e0d59a47abafffc584a6906caf6
BLAKE2b-256 ad4a003d39c68f2f1fa5615c1727233caf0d347220dd89644108bee7be5672c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a52f39fe8ce09c17a7cd0bc260d71ae25dc8c1f93561d4623c482e79d6ad23ec
MD5 0ce10c4b644735ca8d5a986b587258ef
BLAKE2b-256 867c3b64d232852ce0accb8ce56a7ec77e3cf94850e850ba50f97e1e5c1b9de1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-win_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b2d710d739d5fc6353487995e18cb0f4a459fe1fa8cc6773da0debb39d15376e
MD5 0301016efaa2464cb5263e9aaa0c7f96
BLAKE2b-256 8ce833b96ea33d5427a9a76cc01c4461fc27c438591275b77bdcfbbbef63c5b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21f949bcc07c114537b8ba7ba6ffe9b54728612d92626ff40ef089d5e595e02b
MD5 b0569e544aa3eb33841ece3dad7212b6
BLAKE2b-256 df901ba8eda88a71ea61f2934445d1af483f9e1ad742dcf407db99a2966f1b4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8b1ffe3d71cd0321f2d255a91fe70fd9e95d5080119f5f733f6eb74b214353d
MD5 e88ec2cd1e8278c8ac1c76f975f7df30
BLAKE2b-256 37c0500a62c5dcd5dbc3dc0869480f5548c02f7f4e5efb3f7c9329780ce76ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40ce663d26f569bd52a2b52a656dc12e766bb85a9ae58e3fc52425f2cdfc0570
MD5 e6a12bdfeaafb510169f0139d739e7b2
BLAKE2b-256 0ed794cc10eed8855eb1238f030cf6013775067071879aabd742673b1b03bc91

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d12550425e5e0b550139d02597b28966f0e57dbbac7bfb8f36f2492c4c61a596
MD5 bc623e5281772865bdf8d62c42dd1dd1
BLAKE2b-256 678d1473bf458027064f070d1c668d7b29699a0be1b8d901bf2fab0c089251fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97bfdbbf1f77c40f30a7dcf42d445fb47c09e06a0d2396a5b33476cce54a22dc
MD5 74fb9945485c7bfc357e9477899a2e3e
BLAKE2b-256 2ffd98bde41280162e97806e8954536d1a8fad34d768a42997e61e7387a90485

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file flask_jsonrpc-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for flask_jsonrpc-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 d0ee0fca077097ec8554d7e9a30f48db5b8ca02439f1d0e930c24a66bc6e6ec6
MD5 8111755d50be630e70fe48c2edad786b
BLAKE2b-256 4d55af3de66b5d01dff46ec8214ead40aa33643669669c53da39df3412aa1297

See more details on using hashes here.

Provenance

The following attestation bundles were made for flask_jsonrpc-4.0.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on cenobites/flask-jsonrpc

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

4.0.0 This release

26 files

3.0.1

2 files

3.0.0

2 files

2.2.2

2 files

2.2.1

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.3.1

1 file

0.3

1 file

0.2

1 file

0.1

1 file

Supported by

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