Skip to main content

No project description provided

Project description

csonpath

that's not my path, that's not your path, but csonpath

Project Sandbox

csonpath is a partial JSONPath implementation in C, with Python bindings. It allows you to query, update, and remove data from JSON objects using path expressions.

🌐 Links

📄 Table of Contents

🚀 Features

jsonpath

  • support simple path like ex: "$.a[3]["oui"]
  • support ..: "$..non
  • support [*]: "$.array[*].obj[*].field"
  • support filters:
    • with > or <: "$.obj[?field > 123]"
    • with = or '!=': "$.obj[?field != "123"]"
    • with regex, using POSIX regcom: "$.obj[?.field ~= "123"]"
    • with &: "$.obj[?field != "123" & second = 1]"
  • support |: "$.obj | $.otherobj"
  • support subpath: $.obj[$.key], even in filter $.obj[?field > $.value]

Functions

  • Find First: Retrieve the first value matching a path.
  • Find All: Retrieve all values matching a path.
  • Update or Create: Update values or create new ones according to the path.
  • Remove: Remove values matching a path.
  • Update or Create Callback: Update values or create new ones according to the path, using a user-define callback.
  • Callback: Call a callback according to the path.
  • Supports both C (using json-c) and Python objects.

✅ Getting Started

Prerequisites

  • C compiler (gcc/clang)
  • json-c library for C usage
  • Python 3.x (for Python bindings)

Build

To build the C tests and examples:

make

Usage (json-c)

See examples in tests/json-c/get-a.c:

#include "csonpath_json-c.h"

const char *json_str = "{ \"a\": \"value\", \"array\": [1,2,3] }";
struct csonpath p;
struct json_object *jobj = json_tokener_parse(json_str);
struct json_object *ret;

csonpath_init(&p, "$.a");
ret = csonpath_find_first(&p, jobj);
// ret now points to "value"

Avaible functions:

int csonpath_init(struct csonpath cjp[static 1], const char path[static 1])

init a csonpath struct

int csonpath_set_path(struct csonpath cjp[static 1], const char path[static 1])

change the path of a struct

int csonpath_compile(struct csonpath cjp[static 1])

compile the path, doesn't need to be called before using it, but can be useful to catch error earlyer.

void csonpath_print_instruction(struct csonpath cjp[static 1])

print all instructions once compiled

struct json_object *csonpath_find_first(struct csonpath cjp[static 1], struct json_object *json);

Retrieve the first value matching a path

struct json_object *csonpath_find_all(struct csonpath cjp[static 1], struct json_object *json);

Retrieve all values matching a path, return need to be free using json_object_put

struct json_object *csonpath_remove(struct csonpath cjp[static 1], struct json_object *json);

Remove all matching elements from json

struct json_object *csonpath_update_or_create(struct csonpath cjp[static 1], struct json_object *json, struct json_object *new_val)

update and push new_val, in json.

struct json_object *csonpath_callback(struct csonpath cjp[static 1], struct json_object *json, json_c_callback callback, void *userdata)

call callback on each value matching path

struct json_object *csonpath_update_or_create_callback(struct csonpath cjp[static 1], struct json_object *json, json_c_callback callback, void *userdata)

like callback, but update json base on the path, along the way.

Usage (Python)

Example

import csonpath

d = { "a": "value", "array": [1,2,3] }
o = csonpath.CsonPath("$.a")
print(o.find_first(d))  # Output: "value"

Avaible methodes:

  • CsonPath(path): create a new csonpath object.
  • CsonPath(path, return_empty_array): Create a new csonpath object and return an empty list instead of None (like jsonpath-ng).
  • OBJ.find_first(self, json): take a json, return first found occurrence.
  • OBJ.find_all(self, json): take a json, return all found occurrence in a list.
  • OBJ.remove(self, json): take a json, remove all found occurrence from it.
  • OBJ.update_or_create(self, json, value): take a json, replace all found occurrence from it, by the value, if doesn't found something, create it.
  • OBJ.update_or_create_callback(self, json, callback, callback_data): take a json, if it doesn't find a parent object, create it, then it calls a callback.
  • OBJ.callback(self, json, callback, callback_data): take a json, call a callback, an all occurrence.

callback is a function that take 4 arguments: parent, idx, cur_value and callback_data

Check tests for more examples

Backends and Direct Usage

csonpath is inspired by JSONPath, but is designed to be backend-agnostic: it can work with any C library or environment that manipulates array, object, and scalar types—not just JSON. Out of the box, backends for Python and json-c are provided, but you can create your own backend for other formats such as YAML, or any custom data structure.

To use csonpath with a different data type or library, simply define the required macros and types in a header file (similar to csonpath_json-c.h or csonpath_python.c), then include your backend header before csonpath.h. This approach allows you to adapt csonpath for manipulating data in any format that supports array/object semantics, giving you full flexibility beyond just JSON.

Directory Structure

  • csonpath.h, csonpath_do.h - Main implementation files
  • csonpath_json-c.h - Json-C implementation, use it by including "csonpath_json-c.h" directly in your source
  • csonpath_python.c - python implementation, use it like a python lib (so pip install .)
  • tests/ - Contains tests
  • bench/ - Some benchmarks

🤝 Contributing

We welcome contributions!

Please read our Contributing Guidelines and Code of Conduct before submitting a pull request.

Feel free to open issues or pull requests!

📜 License

BSD 3-Clause. See 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

csonpath-0.13.1.tar.gz (77.8 kB view details)

Uploaded Source

Built Distributions

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

csonpath-0.13.1-pp310-pypy310_pp73-win_amd64.whl (34.3 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.13.1-pp39-pypy39_pp73-win_amd64.whl (34.3 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (31.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.13.1-pp38-pypy38_pp73-win_amd64.whl (34.2 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (31.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.13.1-pp37-pypy37_pp73-win_amd64.whl (48.2 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp313-cp313-win_amd64.whl (34.8 kB view details)

Uploaded CPython 3.13Windows x86-64

csonpath-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl (122.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp313-cp313-musllinux_1_2_i686.whl (116.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

csonpath-0.13.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.2 kB view details)

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

csonpath-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (119.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp313-cp313-macosx_11_0_arm64.whl (31.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

csonpath-0.13.1-cp312-cp312-win_amd64.whl (34.8 kB view details)

Uploaded CPython 3.12Windows x86-64

csonpath-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl (122.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp312-cp312-musllinux_1_2_i686.whl (116.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

csonpath-0.13.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (119.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp312-cp312-macosx_11_0_arm64.whl (31.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

csonpath-0.13.1-cp311-cp311-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.11Windows x86-64

csonpath-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl (120.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp311-cp311-musllinux_1_2_i686.whl (116.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

csonpath-0.13.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp311-cp311-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

csonpath-0.13.1-cp310-cp310-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.10Windows x86-64

csonpath-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl (117.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp310-cp310-musllinux_1_2_i686.whl (113.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

csonpath-0.13.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (121.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (114.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp310-cp310-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

csonpath-0.13.1-cp39-cp39-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.9Windows x86-64

csonpath-0.13.1-cp39-cp39-musllinux_1_2_x86_64.whl (117.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp39-cp39-musllinux_1_2_i686.whl (112.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

csonpath-0.13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (121.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp39-cp39-macosx_11_0_arm64.whl (31.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

csonpath-0.13.1-cp38-cp38-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.8Windows x86-64

csonpath-0.13.1-cp38-cp38-musllinux_1_2_x86_64.whl (108.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp38-cp38-musllinux_1_2_i686.whl (104.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

csonpath-0.13.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (110.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (105.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

csonpath-0.13.1-cp38-cp38-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

csonpath-0.13.1-cp37-cp37m-win_amd64.whl (34.4 kB view details)

Uploaded CPython 3.7mWindows x86-64

csonpath-0.13.1-cp37-cp37m-musllinux_1_2_x86_64.whl (107.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

csonpath-0.13.1-cp37-cp37m-musllinux_1_2_i686.whl (102.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

csonpath-0.13.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.4 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.5+ x86-64

csonpath-0.13.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (103.9 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

File details

Details for the file csonpath-0.13.1.tar.gz.

File metadata

  • Download URL: csonpath-0.13.1.tar.gz
  • Upload date:
  • Size: 77.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1.tar.gz
Algorithm Hash digest
SHA256 437e177fa8e92bbf95d20a6eec7883161e7c1e2c226bbeb74b0977f091871818
MD5 31af3f9806cadef9e840a920146c7766
BLAKE2b-256 8e65c68034a05c15bd33b8f924610089d7be6e030d429b9e3a2ef823d3997bb6

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01ad740f7e0a6a92e1e09d1c03159b25b1535283c33405af928938bfd00a54cd
MD5 1c8e9fd59e32df96fb6e9f3b39431005
BLAKE2b-256 9450602977d1525a3e4165c4574a37853b32ee0331c71c79690551ae8268fce8

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86308284aab640830aba910081a381e4a32952d3c07e6dff7aaf22ae1d0afd18
MD5 245c369228ceac1fcb6993b0cace89a2
BLAKE2b-256 fa229614f8e2020334531c7792b73570ac4eea48b941a0fcace181f9b4e7f763

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bab9264050038c8e50f86aa21fd67cb3ec720aef86f17877cea200958a76f7d
MD5 2d3ed3da9ba244044e2d2c35c876bb92
BLAKE2b-256 ecc463b369e666cb32077bcafab721829b99a4503fac73d2543a1d29c6a248c9

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cf875a9c02bcd24147036fccd89ab4ae7b4c23cc105ff4d19a478833b832732
MD5 c497011895aaf52e1d1c699c14052c5d
BLAKE2b-256 0e001868f079a059025bfaf1b868bd68ce7a17ad47616ff346e2f6d4719dd422

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5ef059dc0f1a7defed6e8fa4b71b93941282ea9c0f5d4e501a2b4b71e8d3963a
MD5 528257a1f52bf4bdc107c36196f9d4ca
BLAKE2b-256 178911bbebd2ba151a0212ee33e857da7757a9d84e982366e944346e064bc852

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9813443557b1b4f2e2f6c5ed15bbbc470278f4baaf15115098231547a6738e62
MD5 81842aaca937cc214ba1e333e12bd496
BLAKE2b-256 8fbe04fc97fdf6852732a9edf1072fe219c31c18bc5293017bd6d81e5ca69c0c

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6eb57936e4d2a2e09284e1f962b71fda763982e9c2a45240226b3cbe5241490e
MD5 11df598d52b2902ff632796922456a88
BLAKE2b-256 9879ad7ccd15799fbf582e46b2725416d335961b405686fa8f4eddc04fd42580

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a78da960cef0edc0eaef98db8148b990e05efbae0efe7460b84ae1869ce6c10a
MD5 006b97d0e06e3e4e9c84d19fd0d7430d
BLAKE2b-256 19593662347c01e9ab778dc2272d1f9ff09a4c26c5b7c1f93439fe87981f4ff3

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b11f123b4c48bfc7595a9d5273de0638e99261a7cf4764fa1ff3b22fb2da630b
MD5 99b79ec07e6fe0889aa07fc21e5d6ab3
BLAKE2b-256 9524dd93fd76faba801205b497ebd69f008f4645ebfcfdf88ffdad54f874be50

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 776ff93dda6cb02c729b890b428ca5d293d9e43b7b8b7c79eac96ddfc04e8b22
MD5 52cfede05db795f34ff58479cc79ee99
BLAKE2b-256 44f6fa9470368c3c408ee57faba581e2716fe6e461f9e7f12955de63c4e19342

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 119d46232c19ae86799aa9a8ac14dad15d4129f8d83eee31658bceb91d3ede2c
MD5 25134ead5a4f89e0b3bb8840a37ad9de
BLAKE2b-256 c974c96a4230ef452dd10872cbc5015f8d21bb92e805fc898e7c37598ab48d3b

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae59f18a9394b882bfa72589761eb9b69ef09abb7c05ff8897308e841d543346
MD5 c62da588221451bdfbc5ad88ef4ac636
BLAKE2b-256 30d07a1cc937623c56f1b7d45365dae77050ab474404778cea678e280cb2d122

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0a1021339c66586b43389d92c719f835c7c42d8745439c1c16fb57331af873d3
MD5 a8da6f1da23a2997261b3073443f1a64
BLAKE2b-256 801f1c3eec1bb3d22635b8d60367d144acaecf540116d8051cf16cb44c01173e

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c117beda5d3251ce9f8bdca40551718fa2d13117f8d5bced5eebd1dfe7350c9c
MD5 840916ae56941f5afa92151faa4f3cf9
BLAKE2b-256 94d3a646ff6ef54bbf7b165d201756b0c52c693681f844e0e81209f5133efb84

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 84b9fbe0b635b94899eae3b5ea1fd8a26904c0481d3dd24f246f69db155fa8fd
MD5 c158ac7c90594f2ff962c599ed6c7337
BLAKE2b-256 ebccc4b7f7f4cc0da595c5a8ae94458b63243a65056d5c1e82a792ecfacfaf7f

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d089b9850999d40d6be5c4b7eb60e8b7bae62a14c4cde89727b311054a6ca3b
MD5 88f0465b0b998bcbef5b425597b14d8d
BLAKE2b-256 92b2b422df2e6f7022b15fdc50a65c4d4277fcd06aec341aa58ff0210a781061

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24f48823d671354c89724e42f34160d83950ff551e5a3a78115e6ba99105069c
MD5 e54d7fc322079bc050989dcb3b9348fa
BLAKE2b-256 086472e9dce5e85a0eb6485526149901fd953cf6f17e21f5df50a858a410e4a3

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7a75969d277aeb1c7506ddec21c507524d6c64242529233fad2be354ed8f0ea
MD5 c8dd235723a9afa7a1e58c6742b09ed2
BLAKE2b-256 9365d08105912fc40fa1cd49965be3c4392df090f5777b7922eb2dadbd9cb038

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39771cbe74408b69498fc5a0e4f05105f1b7a0274e7c9d527a1309f6c7485dae
MD5 a83a7699bf54c5590e762f5460b8b301
BLAKE2b-256 ac4c0b29ff7f3fe148b45bb97e106c406a2ffc3decec67bed7624ecfac156ffe

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fdeb49a3a9c6a95521041fb1065cc428873f6affa94041de9133bb89b5fc651b
MD5 350b369086bec17ce72ab75eab168673
BLAKE2b-256 369b08848a7530a665ee1c51c0ad17bd3092c530668abcef7d28b2a40becadce

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a95a45a0164f9421526040bae41395f8cf60a8f8681cff716b98e770bddaf210
MD5 e0f39e91d5b2068a7ca688f55a6f9cac
BLAKE2b-256 bc8c58f1c4b3ae08a979408be0fc16fff74faa7a03a6ba0192d6a32690bba091

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba8b33d69ca8904451ed4aaf0956554698f4e85996951da5449778a23cb2a759
MD5 bc2566510a6ae6c253a86fec36f262da
BLAKE2b-256 c7b3ae55f0a50d9e1ef54c18a12bc46ba2a1c047a549f4020d32f8ddd49b28a4

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 605d2f08d7e73fddacc4619224fc2bc9ccf8e18ed6b2205aeab14ac205336c1c
MD5 3b5aa479eefb17b933185314d409bd3c
BLAKE2b-256 1811d04de4265d0e36a86363f1cc7a5ed7e37dc5e1e3c905b7fbdb844af16801

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16a1bbd14c630f46f30d39d8203fd49324b7f4ec61dc141e9cff76b98bf31355
MD5 d56329ec84e5cac85ab9846e22f6adb5
BLAKE2b-256 0b605e1f1166ba75f211236d53d1866e44bed9fb0dd835c4c26371eb6a3e3cbc

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c4b8e3aba3306a173eee5ad9423d352ce68f77995ef9382ad1eb5e5322181bf
MD5 e0f54188ce9e8a6952efe8a9de5a4a55
BLAKE2b-256 202201c1d8284d8bd6353b8aa0d9432d247a8c273fa9a7032e0e0ebf5362885d

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f8732069ac3e8d4b7538a9cfd5cdc7ea6374d4c86f1ca5a8a6f95191bd275a8f
MD5 fe520a626aa7a77d73c349fa964cc9c1
BLAKE2b-256 39e0103195c978b341e7e90014323dd9b0e1a588070f8c77b1211b41132dd695

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97d384ed506745251ac5df8f6a9f759ae9dea0fda6f7d9672c7733f11d5f47c9
MD5 837cc40c47fd04302520fc30ff23c02d
BLAKE2b-256 e4d2ec31dc8dbb33c62e01dc862f7f1b03dd09feead4c8e2312dc4b25c5e121a

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c17224064ca98b18449215e77bc2f6633121c0895803fe49cc232236580464a8
MD5 c3b977f2d6ef2fdfebb586452c5d0935
BLAKE2b-256 83eedff65d0b11056775f3e697cb8c2e010d5a6c57b755288f5a69c01bf28170

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f2ea549a4dc5297698a3728be7ae3a49f41f39f4d2f9877226e89b9fdd27ef0d
MD5 41af2ccdf5215c1b819c408562285721
BLAKE2b-256 e6bf34ab43fe3784782a6a422a8edeefb857b266c55648050b79aecc5ebfcb14

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6dbcbd71c2102ff9a781473919d15b4ad1805259fdb57b08ccd7312bf78ebd9f
MD5 49b9982c421bf00a991201804a96f4da
BLAKE2b-256 c83cb61273162c4542ce3fbfcf33ebbdcf053bc55fe8d4e09c89135b337d9bee

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1512a86787d89a4d1b69db994b91d6a490a39667258cdfdd2526b84cc134ffa4
MD5 6dd25d5aa488265f15b01b031d389150
BLAKE2b-256 8a2c7d73cbb55cb9f7b35730c9580ec1c9baf490ce0ba5882c1d77b5f72578ed

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 39f49b7f73fe18d9920e6376944eaf2d9c091f9170386b13e42563a10c0342d9
MD5 efe19701016252041f53922662e1364f
BLAKE2b-256 156a4b373b9c2c23e9191a100044ea646fa2e70d1f5978eae88df9355eb70a65

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7c11430105e87bfb584d5d8fb223b8690aab451d9d356db434bcbecab02d021
MD5 f63790a04ca6a82a93473937f67513af
BLAKE2b-256 4de2ece52c37a055f53ed3b5037ed3a0fd7db61c647900f59c4aed283ef14022

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 18c67bf7bc27650dcdc9bbbc0483f457e1f7f7db33306e78751f0f10918cb605
MD5 546a1102905c1e7409b8f9dafcae448a
BLAKE2b-256 e71e13cc304dc7bf1339154e2b3ecaf55666c7059b8542f3424d03079da4907c

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88aaec30ecfb05bf5ecd0e59823f25b0d378ebcc7eb499756bba46c1b8555e5b
MD5 6d69bd06fa0ebb470628461a117692ed
BLAKE2b-256 fb4b324db2ccbd1a491b31a4999359c6d13fcc1a00471ade9b5e024675011028

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd5e4ed116132ea188e55f8bdcc0151d6f5921159d4512f2e133246a9dfdc3dc
MD5 29f137d40c28ad6df188789607245860
BLAKE2b-256 f0def49c5506abbf6eef1ee82f9ab6a78edcb63c1ffcc6eac47f15439e342b90

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd58d006d9e6011dd83a80fc394797fd3d42159490e0bd789abcb62f59d8f5de
MD5 bed1c449429867bcad4f6733835de889
BLAKE2b-256 120c74ab3ceabfc2082c9a90176c7e8f657f74d84db50097fef83137d9b2b84d

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c14e3455a86a5f2086c96eea26afd1895859084d081a7a94147927a6f94fd799
MD5 d26c7499dd5725713343e6bb01c0b54e
BLAKE2b-256 3124a50840b7160464cc0fba4ba9ebeda150eb933aebad8b1e744b70b72f4e27

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e3ade4dcdd7389cf0bf189b6e21adf238a8ab9fc20d5b4b4fbe452049047d1f
MD5 21cc1fd2ced3a3c69d7e1ee26989991d
BLAKE2b-256 e7d6d508be27879bee32c461d9c96572589596e9af028517d21b5f700315b842

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b9456c08addefcd82f420e5834a1dd51e0d81e9f12549a3e56f304dd22c8a0a3
MD5 6408b0ed4b161fa9bc3f7fd9abde5687
BLAKE2b-256 38a3be0afa63c2ab3b181e6b93da6283307c387735ae6ee197aa0a69b66a3850

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89b7ca1f45125b79b317db140b888c3aa77ecf3bee40f12d5973a34331aee40c
MD5 04f9aa9fccc325351237f22df3363b13
BLAKE2b-256 5853d6d47d1796776075d8977e4f7ee83e487d4ab5bd47b49c1031133306d06a

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 276fcf950b2e4d8be88aaab013aa2694da7df47f0aa1cc5d37766e880e9ff944
MD5 daf439ca4b801c669321e31e0193c36a
BLAKE2b-256 6db12a7776c580f75fe0a03b30831c9fecebab3d39f3f2c861e067b709c05282

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9dd72efa67a101225cd6488cb8e9a266531b99769a96429c795c2955a5bec9a
MD5 03804b179c21000790880d53f54aabff
BLAKE2b-256 899c82d7fe96c26d7afcd8a644da0ac4cc6ee7be08955d1235474a7890ba2800

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 805cf61dda759cd3a500706d4f26279ef3cd8e454ebdcbcaaa6011fe9a13f50e
MD5 f127650be8ceab9faa4fd8efc7ca72b7
BLAKE2b-256 0aa8fe7f26c5dcf295fcd6a4cbb8e0a606ce49454b86a4f2a287dd0d480cb811

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ab54041c6d5a7b53146e583ec77f6865b8fbbce0c7e03a0554cbc6a63663862
MD5 0696813a152750f83e7836caac499d88
BLAKE2b-256 4f17a6f22041cb1536fa6648bd377c267af2e76d017734d5010e616f2850e99f

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 3e1cb2fe79e01a081818f6baa87c338d7cf008bc77677ecee28d6369282a4840
MD5 34164615d5f0723e884595513371b0d7
BLAKE2b-256 9cf5f24c9980ea3e981c18a801e4888c9cc9afdb01b06333bbaf46cde62dddc2

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6888d60f0f215464e2bd31e16575ec0c590ad892e20f8260649d9cbf1868c04b
MD5 e7672d560dc662c6832df1fc0ab351a1
BLAKE2b-256 992079f0d564f8ec60358941c0fe0f334dfe1b1db0ebad6c175232f0122c4fa0

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 320bd438acd2a967b51716905d590c654b6bbf603b8d431a7250cb3908c9ab41
MD5 88cd0caa7c502f880225c9fe7f14ef39
BLAKE2b-256 3b240b36ff0c205061658e57f9d22d58757487875fa3b731c11e43faa1bd2688

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72892d245cc4d9a4e0f77a115e3dfdd4c4280aacf1946b6acc05bb8fe80ee8d0
MD5 190cfe7cf4602bf1aca58d11072e72b6
BLAKE2b-256 7bc0b5e78596a4a148eef1d4d628621c7d389d695309bab1e9f50cefa1ed6f03

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2e53c88c844985d0557ca0d66b362fce1f7bd2ca79a9f96c80b97287e7497ff6
MD5 858b5f5aa63edc3bf0554b59d78ed26b
BLAKE2b-256 df8075b0774d1475a4fa0a5a99957d7f4692ffcfce7b607f05a50a1ab2f11999

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28935a33862815cc5ddeba5bd1a4de24b6e9e935fc731f840c8885d7e3fde693
MD5 e79d4723b7e5388c0f713603698b0e1a
BLAKE2b-256 68f906e0d48fb4dab17ae1e79f96d7162e3906e752bd537105609aa025701878

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: csonpath-0.13.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.4 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for csonpath-0.13.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d21f7e6ac351077404e07f39437937f2ff748290f65e55aa31fd96615ce593f3
MD5 b5bebe2cdb6aa4fcfadf838ac089c993
BLAKE2b-256 0c244f7e30e57abe1c100be4f2e9bf74ad3175805fc1f301c8ae221de1c20e4d

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e82e1d4239145c5b3cd99f27b60c25a7789fcc9abeffdf0c04fa251bc475498
MD5 7b50a1dd72d46c8c023e8d74d49e58c6
BLAKE2b-256 ef450ff06472717f58d0967f4e9155d77aa7342cd7c2874df62a94f1e5f3ea79

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dd34abf6dcfc0cd750758aa54ac98a0afe732392bbedd038ba95ffaeb1f5feff
MD5 40b4fdd4f15c544c7aacbeb1d9583677
BLAKE2b-256 d5a8ca05243d5f83393929647b61c62aa79b01a8c1b7d04f8912f41a844cbd1a

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a81998bbe4e3eb57ad0b04107f64d5c5efc94382fbfea9dc12c376d42085e48d
MD5 78707331d105485cafe958f847bf65a1
BLAKE2b-256 f629aa9264f79d90bd13ee4274ec77ed07d16fa96660229281316cea5720c5f1

See more details on using hashes here.

File details

Details for the file csonpath-0.13.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for csonpath-0.13.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc1ab4a4f1ba3c0a220e4d8b90e75b9544e0c4dc930903fe67f2ef00850412b2
MD5 f5e31a20197cfa6ad769f51d633a68bd
BLAKE2b-256 652aad4048bfed5bb4010d8d3ed28a0d43e8009347f2cb11ca14e8c39eb3851b

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