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.12.1.tar.gz (77.7 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.12.1-pp310-pypy310_pp73-win_amd64.whl (34.2 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.12.1-pp310-pypy310_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.12.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.12.1-pp39-pypy39_pp73-win_amd64.whl (34.2 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.12.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.12.1-pp39-pypy39_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.12.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (31.4 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.12.1-pp38-pypy38_pp73-win_amd64.whl (34.1 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.12.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.12.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.5 kB view details)

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

csonpath-0.12.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (31.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.12.1-pp37-pypy37_pp73-win_amd64.whl (48.1 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.12.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.12.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (32.5 kB view details)

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

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

Uploaded CPython 3.13Windows x86-64

csonpath-0.12.1-cp313-cp313-musllinux_1_2_x86_64.whl (118.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp313-cp313-musllinux_1_2_i686.whl (115.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

csonpath-0.12.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124.6 kB view details)

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

csonpath-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.6 kB view details)

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

csonpath-0.12.1-cp313-cp313-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

csonpath-0.12.1-cp312-cp312-musllinux_1_2_x86_64.whl (118.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp312-cp312-musllinux_1_2_i686.whl (115.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

csonpath-0.12.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124.5 kB view details)

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

csonpath-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.6 kB view details)

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

csonpath-0.12.1-cp312-cp312-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

csonpath-0.12.1-cp311-cp311-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.11Windows x86-64

csonpath-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl (117.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp311-cp311-musllinux_1_2_i686.whl (114.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

csonpath-0.12.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (123.3 kB view details)

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

csonpath-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (117.4 kB view details)

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

csonpath-0.12.1-cp311-cp311-macosx_11_0_arm64.whl (31.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

csonpath-0.12.1-cp310-cp310-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.10Windows x86-64

csonpath-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl (114.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp310-cp310-musllinux_1_2_i686.whl (111.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

csonpath-0.12.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.4 kB view details)

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

csonpath-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.7 kB view details)

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

csonpath-0.12.1-cp310-cp310-macosx_11_0_arm64.whl (31.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

csonpath-0.12.1-cp39-cp39-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.9Windows x86-64

csonpath-0.12.1-cp39-cp39-musllinux_1_2_x86_64.whl (114.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp39-cp39-musllinux_1_2_i686.whl (111.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

csonpath-0.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.3 kB view details)

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

csonpath-0.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.5 kB view details)

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

csonpath-0.12.1-cp39-cp39-macosx_11_0_arm64.whl (31.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

csonpath-0.12.1-cp38-cp38-win_amd64.whl (34.1 kB view details)

Uploaded CPython 3.8Windows x86-64

csonpath-0.12.1-cp38-cp38-musllinux_1_2_x86_64.whl (106.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp38-cp38-musllinux_1_2_i686.whl (103.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

csonpath-0.12.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.6 kB view details)

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

csonpath-0.12.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.12.1-cp38-cp38-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

csonpath-0.12.1-cp37-cp37m-win_amd64.whl (34.5 kB view details)

Uploaded CPython 3.7mWindows x86-64

csonpath-0.12.1-cp37-cp37m-musllinux_1_2_x86_64.whl (104.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

csonpath-0.12.1-cp37-cp37m-musllinux_1_2_i686.whl (102.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

csonpath-0.12.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.8 kB view details)

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

csonpath-0.12.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.12.1.tar.gz.

File metadata

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

File hashes

Hashes for csonpath-0.12.1.tar.gz
Algorithm Hash digest
SHA256 a9beb3a704ead9be1d143f22d56cd9ecac8d3a0cd25be31ced07bf3feed63905
MD5 99416e2e9766c816ea84c20e0ec87c1f
BLAKE2b-256 3cb3227b6ae2b00d29c2368f6f74a0d0f3bca20e9f50edbb13174877cb139e72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d87baad7747db92cbfbc8fdf2a7e4f94b063aa052b703e0be10ba7433d167bfb
MD5 2f82cb8b678cb8d21971acb3d9dd96a7
BLAKE2b-256 576207eed78322dcb38f65f0b304d29acbae4781658c9f28b6d6d8e7b5e809c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce52a530710504c87149a27ca2ecbc5d0be2706668eb7f22eb0c522c0a9bf764
MD5 c11b116a9f0f6b48675e80397a02839f
BLAKE2b-256 eff1666e402c14a19c524c207bfebb900ee2b953a210327acdb5c9d1b0118b0b

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5473d90e252a87834ce8552c79abee03c760dbff4c3800fd09258bd25898b62c
MD5 064bfd3ae9bafa638136dc9a8c434d23
BLAKE2b-256 cb2291ef1f770561ee7c7c8e7bba2b1da0dcbf6dbbffbab4456a02ee12de2c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 128d630f7226f4e3f4d1998320297bd379a4ea6155eb3d63c1c1505a630c250a
MD5 bda789b5d67df7d28fb67a236decc7d4
BLAKE2b-256 eeffd904b0fcf64bdf8a4234a5b4910df2ab96dc92cb51407b6106f469757fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 77abb4795b4daec71880340083f143a8ee3f607c9cac95ee47a1cf60964f19b5
MD5 6fbbddc14dc1c606355d18507ba51cb0
BLAKE2b-256 a2692bba1709150716344b30cea4cc991a8e033572869a5fc6de24c222e48550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0e2360158e3e9b1e6b012a29a61f4be01a0a2e1fa978cb632e066e2a13fbfec0
MD5 e82fef1c63d56d6bc80feb47150c131e
BLAKE2b-256 7f55bc56f1d8384b9ab73b31ad226a270b47bf88e41f73d0860e49e694af34a3

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2f858bb949581b4979061c16b5a312def9d7a28add794f1954eb42e1c08007ee
MD5 29835d5b5353644757531c34433926c6
BLAKE2b-256 ed78ccbc71c39b784d67d6ac5c66ceba39a92f921b832fece91c5164abc8b8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2da917c508175077e36de9ac62df329466c8e2447078e9e98a66df7a931dee78
MD5 6a0243a01a86804d70eeea5792dfb0c2
BLAKE2b-256 84f014032cc3192dbcfd4d36b64cc32f2daa2da374ad46666476f4325b36c168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 857285f5b451d7bedb0b7380fdb1e9d0fa251bd0e282107df24d4aab001ee5bf
MD5 42cd99d10052e083e9605d3a4e4bdc2f
BLAKE2b-256 dd504dda00205b27e32b3f78b3e7a7fe6108cc6e6dea3737b9acaa6fcc6a61cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb2877ff218e20adc616f7587024ea639a39213e60390b69af04a8754ad9f2fd
MD5 05a1e3cdc8976d23205b656b5e88d9f4
BLAKE2b-256 a7a66b320e4021f7108f8122805d5713f3eeeed9ee584707fd32bdefa99721f1

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ef1096c22389f0525750af22810207e9cbae923b8fa7b8998b148482bb59b6e
MD5 f40d0ce6f95a1dd59fd9aca7cca6aa0d
BLAKE2b-256 b61a52ce6ecc97308963a7cbc1b90d07b5f90cbc47433aee5a48de9fe4149a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69e8f1293b184d175722779e472c2a7e6a376f18b412f5e5d5728bb98654cad1
MD5 3f2c8b4f678d99bc907f0b43d1eeecae
BLAKE2b-256 3c18ab8e3dfb87df27b388923db03e368acf4e2e7836640b69717cd3e23b6afb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 99a05cb7fcde44e1f424893837aae143d3ca63f255eae842dbf865e73849de3b
MD5 40e19c09b516e8d067d323467ebeb379
BLAKE2b-256 83d128fc5f728baeb7ec6eef7243f9fccc9fc52b3bd07b4b6c9078e7c95af4a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f1822adc9d7c5b4a831c27ce8bc4a6c7fa25982cd908cce66c2f6c92e100fd2
MD5 824ac1246a427362fa099f5bfc31285a
BLAKE2b-256 93040085777e1d8e302c02f0829d22baac43bb4c716021c5decfa59bf76bf8cb

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f7536f282269269dbd430d9c96d28f995771ea01bbf511c967a0a2e7ecc9edf
MD5 2201a636e827f216c9fa3b6dea95157f
BLAKE2b-256 e3d43d4b2bb13251dda62b08418cd8e71991b663a8c6ddb9e10f8a6749495f54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.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.12.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e057a3903cca54fc52df267934e81345297bfc524fc1b6a4a887ebdbae1a6c8
MD5 758446103aa71f34eb6fda15ece78bcc
BLAKE2b-256 4b713e05a3de0bc90b747d12973efd3ce02bb5ef8f865b28c1806a8bb6c12a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7df7de25d382ff8dcd6eae6dc7ce425dfe3c3afb876d4b41ba45d18541f1310d
MD5 66b34db552675b872417534dce99526c
BLAKE2b-256 19109e51b4ced155aeb8449ec4d504ac922547ac5a9d840d729e0c67599d0f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fd85fe8191d55868763451bfc270d95fad932ff0cd91fa3a46481f87f2d95e4
MD5 4bdab885f02df36a432583a95138caab
BLAKE2b-256 9868fc0f9db7e5e96241d99509100694c4412accabea1a5ebcc3eeb0ddc2cf91

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8781b736961833825be9378511f4e23ea160b91a5297cb872b988ad8b1a10aa7
MD5 674b8ddcf3c84e9673375c601579de14
BLAKE2b-256 1bc8deb3c6de5188dc74f3c2e075c51ac7f707a3a1676ca110a7c1cbbfea2a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6bff9452acb45ecf739e6eff7c50347e77984b6567fdcd31ee76a86e62784710
MD5 a7fd62e747ddd499a4bb69042b8d2161
BLAKE2b-256 8af05736212208f73221c476a1eff4214e91e1825e6af0bf314703808d37406d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d23be0d0a0b20525352894eed0a9a68443a4fcf011eec593270daab5f5e0edcf
MD5 7e771ea8cac513c92453300301825497
BLAKE2b-256 ad438abd537dec130f00bdace43e570b8ed7df97f3ff72501e2a2fabc5f8ba63

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.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.12.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 54888db1a9d1b5866cb1a3c14b31ac512c364ca332a7f3635474ac0991ccc1cb
MD5 fd1d92e71a9152ebd4162e8fc7f8385e
BLAKE2b-256 93792a466141768a6415322e071635b6a37e5ef68394439244949904e12ed612

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0241dc14d8a11a938ccd328323652305e55258a92e6ff768360555ce1fe5f6f
MD5 50bee8b0379ab7f9c81d0f617aa35035
BLAKE2b-256 bfed981248378055c037a64a545c86f27167ddc9f89ba497606167f222635121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c6623cd4c9a64e4f4f9c6b46f679aad469bd62386eae2a8a1b0ca500df164464
MD5 78223a782f2b28aed8cfbf1f8c8e41fc
BLAKE2b-256 7963215040a4f67b8878ec9915c5d60660f34b6e43ff661cadf3cb1d3608508c

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88f1c32155c252fadb30dc5d52c2a5fab782ae78005d19df44fbddbf2c651b6e
MD5 8d91f04587b1fcfdb62a30abcd47839c
BLAKE2b-256 a1241c3e8c5ce62c3216659afef01a3fe56db4c43333ff02a54bd4ce6627005d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d68764dc70a8f47b404df798677f9d97caa97b3ed32923407c6b4540f9cb3bf4
MD5 9e9360839aca5b5afeb44678015f1e0c
BLAKE2b-256 7fa8551e2bad912490aeea3e7dd3594f6844a384e4fc5b7f319e7e7b1873c795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07580261dbe0b7064d68795ab3efde1763a810d65fa3e748fa79f34e7fd4c4b0
MD5 8d40332642b2424db608116c5ec9239f
BLAKE2b-256 a74f575147a126b558182bc76c6dc458dc981345af031cca38a387590dcb6444

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.12.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 40d747a6ff4353571a400d3732873e4c7096094d1c23b1b3da42031ac88a328b
MD5 51b8fc1e089420be986179760efd561c
BLAKE2b-256 da85860525d7c939062261e6d4717263230bab793045c1f5bd2db7d54074e9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6eb340045d9ebd17b21a61ac39338af41d515f56dddeb23406a5e3f229bc6c71
MD5 d78dc38ac7cec5835c565de1766b236c
BLAKE2b-256 7461d604158d9b060729769b42d4f59e04066736a7b0a2e2eefcc18119dbd04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b51b9dd31586b61923a6aa0e55786d0a684fe84053990792dfb113a4af25ef77
MD5 3d45e3a63dfe032716320c5e4e4a93f7
BLAKE2b-256 b654a9c7a7421183bbef06b933316f78a25d5b2fed2d6752c437ae7145dc3a62

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fb5b8fc722a89df18e9ca28406eefb6e46a0850ce1d688ef48db79f31d6013d
MD5 55dc6e012cd2088ef2e243be74059881
BLAKE2b-256 3dd6e7b8255f3767f4c4259df4b2121711cc1e2275a725b9cd016d4ff7cf89f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b6defebd3bfec53ccf5a9075bfa00ed8c8c0cf5715bd06e7c74a2d388fc31a2
MD5 2ce6428f88e320c860b7125269502eeb
BLAKE2b-256 dde41f7a8f8f6857fbc4d29e7540c41afe56d7fd1592c238b903e2f5137fa0a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b330b89e43ec67fe877f0ce6d1e5f5cb2cdf8e4e5cd2176cf0ba84316ef8e10b
MD5 b99b179d39e161ddf91a881afff45029
BLAKE2b-256 fb25d3e0689ecfd643a21b1ac8e8364eb42165faccf67f67345e87c54de90a94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.12.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9629269040c2e8fede7f5da560553c8b3d938a8b3c5bc85bd089f597ad07e049
MD5 ba18b7c39f1011835ac22697944a7140
BLAKE2b-256 3e3d2a6dc3374da47e5682b2dec7d4c26906986c535fc6ab260c616b07c29eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06767bb24cd67799b4c238c2a94a9331256f286f4191e62a68677285c33eac84
MD5 042a570c539f0da53d3255189ea6c4e3
BLAKE2b-256 d880363d697d08b394572f31f4bb57f7d64aefd63f636de00fe40311edfe5456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b844b799c2d6f57d49491e488e246de9e4f5a7002fefcf377615c151f805eed2
MD5 7e3c87c77a189599f49912e12d704667
BLAKE2b-256 f45b317de1eac5a04fb20d7c82a3aa5c019c9d5fe2ea8f6db6b8afbd4b9e72d9

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e23584ee0de73d5b7014f04f699b923a7764bb6ab2481f777109b0c3e6d2254
MD5 a491098c07f4170d86583f516963058c
BLAKE2b-256 9a7c5367e28b939b0c0f6f19a0fe7974f05127565b55eabb86c49b949c012370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e3f08f95aba50fb047ecaf5a0cb0dacbf9bb16e51f9e480fb601bc44b3e86a0e
MD5 2a8d1006229dd6cb2f8974ab8fe0e2a0
BLAKE2b-256 648873002a185383200173771eb4f9e2fef1af02567ca868cefd86d4fe6d9af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1a236e0dc394ac2bed992a1dcc824508ba9c03be91815ec65b3f076f8927fd7
MD5 13c494f520e443590370ff9c24e558eb
BLAKE2b-256 a445dd6bab275fc0b68a66c3c8e6ce730603f7830468507af8deb59c9e2b9c55

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.12.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f4cbd43c7e357735009120ab6df10505ee3d4e3e75196fb6e2be1ac091516e4
MD5 652f780ce6d778f1a0807e39685d19b1
BLAKE2b-256 0227fc885dfdd4366d32a4fbdab5260b794178db70f323cf04429580c9ba5a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8547f67f97c85437244b627d56458fc6f8dbc47e75801d85f2340528f3546c71
MD5 231d4a10168ba5aa506ca51cdb458753
BLAKE2b-256 af3286f16bcd3b399a58ee29f7b63af3133f1deacca9fb43f6881cba0c32af65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec7359e499f7114cc0d7012b93dd2c0e4e7d331c553dd76952a5771a61f7e8ec
MD5 336bb99242402005b04f0c4c91ed9e7f
BLAKE2b-256 332910e7aa2ec3861887a57623236abd44e0390f442df4be5f629c971828dfc0

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50528cc0f799e512c21a3701c2d23234dba04e1c9ab445975c5caa430426ab59
MD5 ef298817eb3220d63b02aea959f626aa
BLAKE2b-256 aac66e34ce3b0a1a9730083f7a5a5809700399ff89c59343c8c386b86338cdec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e4b60b88fb433380ca6f7f6acff76eca72ce6a5deadcfde2e921641f1a728881
MD5 a1b7181f458e0421708606d2d8ffd727
BLAKE2b-256 9dc3cf1c42715a1fa42dac8adfa0ac679f4721fc2c68d32d3c7e205a2ec25420

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb6bd02512110d2ce9e61e2af362952d54ecfc6ba54d206a70a5a4094f418d61
MD5 81c260214ff0bf96cf9e215dd377c924
BLAKE2b-256 0f93a3589c55ea8fe7b39b990942c88d0e655a6c66b2b0ab216991c1950f65db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.1 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.12.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d483e63b88af757c560ed54926fd4cbdc92cf04d3bad5c09c2d2cad7c396b3d3
MD5 f07c8ff7a490e30575f619500f0629f7
BLAKE2b-256 ecd8bad4aa7d61e33eccf5733b4181414809f696ef52bab4ee3da066c126b49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2ca81f3ad3c91dbd3041f2f47ee4fd77c3b8f6c67b5c66a85317bf39dd7429f0
MD5 4fa00db17a0896ccc8f1a6cafe5327ab
BLAKE2b-256 5568b78559ee218a926752f8c3e713a16c71abe0f4556b8b24538ac04b7e7888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06a43901c0c73e494e384bf556baa3cb6aa2dc48c3569019b28629b5967b066c
MD5 fc5a86033d9424ae409979c565677929
BLAKE2b-256 64eebf9f17f2d753cd091c3b3897cc68a39d8f81e3314bbeda5fdf2a13740bc7

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 255c9736854ebc37fc0402fff9f966aa8d81db3ddbf4333c0cbc2395b744416b
MD5 96754d494586a4a4f8046046cf94ac00
BLAKE2b-256 fb0417be60a58d337e34115a305239779eb8630a22eec3ace0cf88de6da2a62e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b225612718a9f7d5835a71a32e339a1369b62308636dc091e11c1dfd611336e4
MD5 1125cd588ee1b2359d1500ea74df03d9
BLAKE2b-256 7ae0c171de792d82b21dcea2795aea31ab7e3ed30718b675b50f5405a7b7c304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9a18511a8ee506acc6281f659cc15b424988de3b55dbe4733b059ee80959c91
MD5 124e76754c9333b2ca89a83f84b10a8d
BLAKE2b-256 c164d708d6104366d98bc43841cd7a093f5cd6d317a90771870210542c30853d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.12.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.5 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.12.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9dce48f0d632a8b813abbdbb496a1330bd5829bc8371abd8aa01c5b18b678cec
MD5 8adf487dd2be03ec4d1bf8bf87077422
BLAKE2b-256 0ae28e957670e9631d9d15d864a28a4017ae6f68f0e3dd5ffd83ba337b6de51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d77b0f475552b8c6b256aa5b3ccaca15f2a8959ef7acd7712318a373d55ac9b
MD5 045288f8311884a99d27efcd7b046ec5
BLAKE2b-256 cc27cdc2081c6a5b09f63241cc0e38b194449fa769aaf47df08112ec255c1ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2219e4838b45d0c59cc5899633a7628413353f609611dde5ddd9e6c52fa4da9a
MD5 3173425ab191b62b1f343f48895621a8
BLAKE2b-256 53d9e5a9996d9859a3272afa1e8984959d4fc2aad80ae05e9953dc79e23580b5

See more details on using hashes here.

File details

Details for the file csonpath-0.12.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.12.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dedc0830fc4ed2e294084006b7539f74c297c62cc6a62135e7c0c61c91e9aaf3
MD5 82649935b8d4a142428495f448d677f4
BLAKE2b-256 5bb3cf816019632969b98cf0f354b4f5c944774f64200970d1eaa404f3bde075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.12.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f38ce644f33cedd6ce5f24610d08aef815e5876457e694a3e81b1b0df880608c
MD5 32459d399467932738e776dd4ae5c1d4
BLAKE2b-256 7f018c36581f5cab85988b253de4d3381d5f72c1652564d7c8d205f54c013fa3

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