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.14.0.tar.gz (78.6 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.14.0-pp310-pypy310_pp73-win_amd64.whl (35.6 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.14.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.14.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.0 kB view details)

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

csonpath-0.14.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (32.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.14.0-pp39-pypy39_pp73-win_amd64.whl (35.6 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.14.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.14.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (34.0 kB view details)

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

csonpath-0.14.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (32.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.14.0-pp38-pypy38_pp73-win_amd64.whl (35.6 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.14.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.14.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

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

csonpath-0.14.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (31.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.14.0-pp37-pypy37_pp73-win_amd64.whl (49.5 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.14.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (32.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.14.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (33.9 kB view details)

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

csonpath-0.14.0-cp313-cp313-win_amd64.whl (35.9 kB view details)

Uploaded CPython 3.13Windows x86-64

csonpath-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp313-cp313-musllinux_1_2_i686.whl (120.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

csonpath-0.14.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.5 kB view details)

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

csonpath-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.4 kB view details)

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

csonpath-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (32.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

csonpath-0.14.0-cp312-cp312-win_amd64.whl (35.9 kB view details)

Uploaded CPython 3.12Windows x86-64

csonpath-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl (126.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp312-cp312-musllinux_1_2_i686.whl (120.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

csonpath-0.14.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (130.4 kB view details)

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

csonpath-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (122.4 kB view details)

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

csonpath-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (32.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

csonpath-0.14.0-cp311-cp311-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.11Windows x86-64

csonpath-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl (124.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp311-cp311-musllinux_1_2_i686.whl (120.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

csonpath-0.14.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (129.6 kB view details)

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

csonpath-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (121.3 kB view details)

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

csonpath-0.14.0-cp311-cp311-macosx_11_0_arm64.whl (32.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

csonpath-0.14.0-cp310-cp310-win_amd64.whl (35.7 kB view details)

Uploaded CPython 3.10Windows x86-64

csonpath-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl (121.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp310-cp310-musllinux_1_2_i686.whl (117.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

csonpath-0.14.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.6 kB view details)

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

csonpath-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (117.6 kB view details)

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

csonpath-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (32.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

csonpath-0.14.0-cp39-cp39-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.9Windows x86-64

csonpath-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl (121.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp39-cp39-musllinux_1_2_i686.whl (116.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

csonpath-0.14.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.4 kB view details)

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

csonpath-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (117.3 kB view details)

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

csonpath-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (32.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

csonpath-0.14.0-cp38-cp38-win_amd64.whl (35.5 kB view details)

Uploaded CPython 3.8Windows x86-64

csonpath-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl (112.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp38-cp38-musllinux_1_2_i686.whl (107.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

csonpath-0.14.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (114.9 kB view details)

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

csonpath-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (107.5 kB view details)

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

csonpath-0.14.0-cp38-cp38-macosx_11_0_arm64.whl (32.5 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

csonpath-0.14.0-cp37-cp37m-win_amd64.whl (35.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

csonpath-0.14.0-cp37-cp37m-musllinux_1_2_x86_64.whl (110.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

csonpath-0.14.0-cp37-cp37m-musllinux_1_2_i686.whl (106.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

csonpath-0.14.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (113.3 kB view details)

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

csonpath-0.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (106.5 kB view details)

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

File details

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

File metadata

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

File hashes

Hashes for csonpath-0.14.0.tar.gz
Algorithm Hash digest
SHA256 82cd87b7f104f13c875af69044068ef7fbd7802937e75a7de7dce4d4be85b23d
MD5 034e94f11cc045dd8ac7df296a9f2113
BLAKE2b-256 e12c1e65bbccbd32abca9fe12b08c193dc56b6d5c280869f6de8066e232d6f7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c4c04c49caa4f5b260f6f4e45fee17341d9ca6a197facf63f0dae1f02d0ff52b
MD5 871e23cfe010e801fc2300c0e6a00479
BLAKE2b-256 009ab06dbaa3cd2db8799b0853e51f92b8780ac5b5eff8c4225f260b2c8cdb74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4d492a60e44c4894c9d0d7a8d18042a01f035d8b7e27a9bc650e2106cf67906
MD5 f314c7325c07dc8e9e1e3cf6207635ab
BLAKE2b-256 d631917b726b05e34f0035b5282347d28fa187fae78d56dd5eb677f98bcc806a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d9517479f819961b908259989dbf4217e9ddd4e2739cc7150d84ffb7fd5c151
MD5 c1f2cfe74a5648d0352f31e70704f4d0
BLAKE2b-256 79c22dd0c0b8558e62863d6d5b0ca29d12eca2454a58beb8d6b462d605212f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f3c314b05a2acfe7a4ea8e404c0a9011fd3281ddfe092bfdf9cc680c42f96a
MD5 64aff177ea148e8b4706e1300bd4da2f
BLAKE2b-256 778539e238445a1714d9194d73087fa992e3de0cefe27c4cd7740e5be8539e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 33b98d3b26d9bb644abee9b05e10d9d1f376c80596661161cb0f75890274b7e3
MD5 3bc60cb50c93962292a1464e702c58bc
BLAKE2b-256 e455e08b24982ca07d4bd756f945ad5d73fdc7fbb81c26047b822bbc4a8811ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25c5985256fd46ba7298a383ca651f360f141633a307eb156bb3ec47d2a3a0f
MD5 02c237168f9608a1ffffd0c5e54332de
BLAKE2b-256 d70c5c57d1501e6b2e0e2070a6ee21651b87f568cb2f63abec7c1eb704d12ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 75817f00b03b5163c9b2c57d9913105f044b2ec9c0408a39a710eae7372cae1b
MD5 1eac6541d38a08da2e6270a505d37286
BLAKE2b-256 29b5151814976d1a873d53cbc341a994d2359da1242198f02d0608c828777a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2be91596085ac7460c3e3b32b702ee68edcf036503c5278d7ea865300bf0115
MD5 650f4af018e087c86ff1598f573c062a
BLAKE2b-256 757c4f90e6cf8771583686cdab1af71ef2c869bc1e84b4eb805b4837dbba8d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 46105627c78fed080ff9d47e06e502ad043c2f4f0fb44f3803353edc33e5c9d7
MD5 3623758efbe3f98bb613383173869688
BLAKE2b-256 4d273fbdaa36ee8a4a5220e1b81fceb73ae4863611c6d4d6fff48e0f02394571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14e151c0245d89f7b7af7e55ef7a2214af7858f0e2637362733e7dc5db5a6b4c
MD5 57944c1cca869fabdc91acb149bd4848
BLAKE2b-256 bae68da5dd1a2209ca8ae97ce454cc43b43efab62cc296ad9aa7a8fdc4fc8bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b1a09485037cac3f7adce75e5ba3cd14ce1a496d8a6c9504fa8579d74d1d6217
MD5 8d531124b91faf134e3ca7149992ef11
BLAKE2b-256 1ff55deb358954efc6a84f4a68ddd9550e9197e97abee0f851a1e5b7baaee97d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 786342aa13163cfaacee8fa191dc1e56fdbb1e18ca3589d7510a3e6ceddc5775
MD5 cea70a5be7aeebb71cb8c378a007476d
BLAKE2b-256 3463c45e1e84a1a929d16e706f6825680a3215f2b8df4c0c4155f3ef760cd77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d3a5ebc2d83bfc4ac05351fbe0403255aa4108e92039415cb562af7dd3b1416
MD5 4f02c695240bd880feced09568b9ad4c
BLAKE2b-256 bbea1d340ef52bca4e8540b0a0f40da9322563e7473dc6b1913137c00e1bd180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aebfe57e192eeceacd7f77edffb2874441e3002511568117049a813dbfe8582
MD5 4a9d9c702fdce10ce3ee40872c023b90
BLAKE2b-256 3140223c5f5da14780232f86c35de74c1286161ea15b4146c0bb145514ba5d85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e1337a7656de509809eeb5950a76f400226effda5b07dd891dd15ef172b0d33
MD5 45fafb9a0de58f3fdaac0e6a94d5024b
BLAKE2b-256 fc3fb4382b7ed5025c70b03d0369f84b425d9950bb4f73f8355dc7e3823eee9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 35.9 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.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0519b8431ea97b82cff081ee4f388e467dcc31432affb167a61dd8f5a1d5e3f4
MD5 0afdbef29a0b0ca2bd36cd99f219e0d7
BLAKE2b-256 94017ed96eed86bee8efd9f3e311a18bb5295606fe586429db70a7321ce88f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77e498e676c7593f36e2460570d51d2f50fa289377ab01b908e59f005ccb7962
MD5 9f601f5b7816de206d8997264482112a
BLAKE2b-256 1d06d15f51a586f7b64dd32106ce1d5916f5debd91e50af06738bcb2f7c305e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dcab27fef2f4d565957e7a8aa832518e329ee91e6ed525e8ee1673d7c00640a4
MD5 559acc135dc3a9542c1871d691d56d9b
BLAKE2b-256 3283d8bdfd5ab588befb8a272415ea16dd0f0fd15d3831ef84d73a35f811df1b

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08014c88879dfbd9c7c558f1f1924d7c51b69543c9249b964b7fbbcec6bbb8d3
MD5 293693b1b59f01f00ff9fd33b93f6022
BLAKE2b-256 d4fa7a0c915fe55ce8da41cb00cd44037281325eb158bb1259dab57dedc7cb4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37658df293d5daee4ab0617e5572d75a0188a75bb292abf6671146d27c732023
MD5 48674b79675ea8875e7eb422b5bb544d
BLAKE2b-256 e472474920dcfc844ebdb4193850186094b9415ad2f737ff0a0887ee25cb0817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8919b75c0eecc2eaf73cb498971cff335b9a98c743a68198be549464314a6b0
MD5 80b9e6e3ebf618809719e3814126a864
BLAKE2b-256 01ff2d487cbaddb3de1a7071d75158e51c6c2b461000a4a2d22b020d6b3e8a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 35.9 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.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e139932372a3f1935b5f7a4b3f3f2dda3fa594160310bb8fcded226b2c16ea1a
MD5 5a52d9318a84bf1ab949bc394c7f20f2
BLAKE2b-256 6a327f7e9e0212049afe98f834e38bed485900f8bf918e53cc1a70cc02431bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d996da36e3c6d33fd2ce4b598f6378965f664a14da052ba9c7dc9bebf64a5e34
MD5 289f3b46ca3495bb068c5ea7a1c96a45
BLAKE2b-256 d430f24fec64c5d964ea66713b3e6f0f195f6ec5ab70ecde078c12382c61dfbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffa5534101593648e180d8f631814a713dd05171fa24f3f649e32493ad7eaeff
MD5 96e851e91c15e243b13b76fd558e603d
BLAKE2b-256 97eb14760b4d0ff3087a53bc3c54460ae4649368baf644aee97daf742056a1bb

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6d37070eed8b764f4483c2fb72f821833244b6a65a39c8adf1794d0c67dfc8b
MD5 cdf66236bb461d66c90a83ca7ab00500
BLAKE2b-256 2e830cd3a8597dc4a07c058a49bf7c73fcae9afb44c319ee025b66b1bd2fc9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 80517f6c8398917c02b44967b2ff4f541224d0c4e72034da4b75d81fe6182e7c
MD5 f68d87c3c82f72fe40ea2115451fd75e
BLAKE2b-256 226dc9a5e97ce8090202c54f7cf8a5f1c57e23312c5441d56bc84d4190ce56d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a29ba69ebfd9f91f3c50a4bf0d9ddd08323a40266c4ebd240aec275f74168cc5
MD5 5c6c3e435732e0197853d1e65f5caba6
BLAKE2b-256 0ee639c925e96c5bed46c30f7b4a839baaa8a1fc22f9fdf541e607b35e85c83a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 35.6 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.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b1581f994091fec9d5f845936042c84605e6ad1d933b20ed929a8ffb2b7bc23
MD5 fc23801ef32d8396b1b2a7911c88bdaa
BLAKE2b-256 f90678900b109f4ea41a72a88a5bc4b3fbe7456646bc274e3420f63ac8ba2aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a22212add98b85a9fddd1948f3fa161a2eb4cf469ff590580fa18221ecdb6b7d
MD5 cdce45228b42f888c2bd18eaddfee8c3
BLAKE2b-256 f9a810aa328dd668c27d4d28d52fafbb26f5db3520ebbdb34787a1118da3a3ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfa050a261a72758a5c3f74c22d2abc96e2ad907f4b10969069a70b20eb154c2
MD5 6e3c3a30a24f9e5949e3a6668deaabd9
BLAKE2b-256 1fac04fffdc493e2ea5f032ba9ba47ccb0f4cf9db9a532ca9dc2c3c0547e03fd

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0901189394c0e72c07a43503ea9f394949eb54fa02a5541718f12da069d29181
MD5 06b02558b2a73efb2e258d3802048d6d
BLAKE2b-256 6acdd6929c037bd1c22f3f88a42b489ac2f5dda8063aa687f198aabe1e6b528b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d82e2aa2e748491805aaab9c97af5722bc60d3dd5e151d1f3fa9442f71b3d46c
MD5 64e321a54edf0c2bb294b8ff0ff2c849
BLAKE2b-256 55ddc292dbc73724085cb80f342609096fc956cf725078028670fb48ab2c2384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00fe3fbf91bc66945aea1af6038ec0ee44815ae10fe1e04095828ecdceaf524d
MD5 f71f786d0a642a5f757db5a689238d2b
BLAKE2b-256 ce7c6314ef683e6115c8e20ef3b5d03d0f6eefec41930e8b144aaa7a1fcc2037

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 35.7 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.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0b6ef0eb75e5f0b0a8485cc9de13e9f27ab554244dad1fa4e4c199662e0d373f
MD5 f2710753010371eceeddd7fd9c7a6568
BLAKE2b-256 c95c39f4732c30d6a76da066b0842dee603b5e1ed352d50d0f975718a42fcc81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7d726dfccae16bc1f13bea390833796a9316afa8b46cd6b04577c370dcfe51b
MD5 ae361d680cd38ebc8cff75cbc2fbc59b
BLAKE2b-256 6d9802380ea32ca7f0a011704734ee70e26827c57e0d1999eea57130d048ddd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73e788da91b85fc159fc63dd1a0e4ea6170529382c36d5dfd5379a3810012319
MD5 ca86a711b16c647e8c4eca21624dbeec
BLAKE2b-256 4aabb6d1c4b8fa109c2979c715d151fac4a01e1bb4ab347c83025bc024bf0fbf

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0961f2a2eca17d2a9691c31995951e6638ffdac73bf2f982c223ddcc49ef7fc7
MD5 46a9a7ed271caebc61b2452fe94ebcc5
BLAKE2b-256 85b3d18549700743d0bb01dc8e15b8f67bfc16fb7e9561c11ceacbf9a76a424b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c8ce31904948d1e8f3ed4627caa35d3f465fb3ee2d84e9dbe3b72e67cd72459b
MD5 e9c310ae5061b0f424fbd545e5fe0c98
BLAKE2b-256 381505180f52da97abfd95ccf7239432bf40a3b8fcb8e9f4dcfebed5ddbdf0cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3919294139cd2a8f9fd2d5f662316b95b29950f04665e84669bd0004ee3094c
MD5 0ccb7ae2b2ed87d3669afc44d4b456ea
BLAKE2b-256 7c14598634385088c15fe1e3c073f6c26268dc64b330e7b3a750b6919e975441

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 35.6 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.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc27776e738687e180111e66e1801253637bb0725e7f38b84ec85ea1ef1e28a9
MD5 b65a228a4154a025f8ae69e3919dc660
BLAKE2b-256 a22b353a6ef70514556dc0c258d8f210c0b2aca4071a97fa0d18782dc07ba5a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1641661c29be49724c53ffe36adce15e58085fb62e8b0c986c3aeb3fce553a7
MD5 eed922614805b0854ab21d9b4f0a2f58
BLAKE2b-256 1f67d00120823309627d5bd2f34d979dec8b2001a81fdb78831e2c2d4a8bd338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b49db102a55c825f8e8d5f43e100c4d4733deb9533cf4f88f0dca1305224305a
MD5 acfe0aa92aa92ad0604eb97e2903074f
BLAKE2b-256 55cd90af3399c44f57c9fc9e18e9ec482cd941c73f68a648025e60dd0e95fe05

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6dc5a50ca5c0cfdbe8c2b877ee98108789d8bd8687c2d0ed014e6697367c8c0
MD5 b7d867967df432aefbe709d601f92da8
BLAKE2b-256 44973998ad52e4d56b9846aa9f906e0f901240c217e8aac2dc35b5dae334ed85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b4744f00407b387aad0030693a6190c7532de44746cc24025bf12084d5ba5a47
MD5 4769d92592c76efd968e585f108dc414
BLAKE2b-256 9b58750ca3a88891ef626da7ad350941ae71d7637a6723a5bdfe8f3410e3f34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3a21fef8ae31a61f9c7a58eeec582f87694568c163e64eb226096fc2188dc2b
MD5 c6967538dd59c3e793511ffd2c94d8bc
BLAKE2b-256 3212a9f0cbf2b7764f2ddc77e37d8bfbab3518fe124a8935940372a6da674838

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 35.5 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.14.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c29aa4004b49ba474e693c59637252b6e07b003de0645b31153f4c915452ccb
MD5 a55cfdff61b5e133b0912670983265fd
BLAKE2b-256 0938f68950f88f2db2668668b4e879d5089af94eaff19b801fe79354ffea1d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9584482fea77fe45e03889a81b14d6ffcc3c1330e40c31c4fa32f409a88dd0e6
MD5 7365f3f9790203e4625d0ea825b54fea
BLAKE2b-256 bad3057c3c515762a9498bde0d2a77adde4eb99de0ac5d429377a1e31f18ec4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d38e921038394931947b9681af3505af7f9c86f08236440d33f70b49a3f12e7f
MD5 006059c802d990648aadf87d716588da
BLAKE2b-256 c137c50e81c3c4bf967bc6a30ac968bf33bab5b8de8cdb28ba960bc4428b1467

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8de84269418875bb9b16a04794f8248054b0a4cb9050811827e243876213bd00
MD5 863e4609d41fffb31cf0390009f4ab56
BLAKE2b-256 8affd71938ff396ff07e1c1c8fa479ff1dcc1f19dedb1cb48d15171a9ad0bac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47657f96f6dfa7cbfa54d3330453df2209af5155b65258b81cacdcc67cfcff5b
MD5 b5d3d95d540c69c83806674702aac3b5
BLAKE2b-256 4213d7c904fa728031e2b55ea417cb4494fccf3c58fbad4afdc90913ab9a3790

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1033b7a1a139895b75dbabddd511e1aa8aae0ea0379d8b3fe3e36768cf4a7f4c
MD5 4649f9d955742d13ec11e698f2887b7d
BLAKE2b-256 a189020c6ab8cd0aea95cd39b297218397e2d2d6ad9dc046682b6227408c4e7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.14.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 35.6 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.14.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 9a7f5979b1d5d45057162e42bcfcd6d58c49b23ec1e1758f8ba66f34c854cf7c
MD5 86b4ceb1f7af8e67b8f6c05bb15122c0
BLAKE2b-256 ae02afb14513adcad0e61ed86115e30119ba5c0c2bcb10b3de93c2164bed5ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a795b47c68af1dd3d99da6d917caf31cee2bccf5b057967b9b8e96041c748f9b
MD5 a11a8fd961ab42e9eb6b50f51cee993b
BLAKE2b-256 2b000d494d26367ab023c154fe33d06b8d7e7ac743454ce9f770f1c8cd00b0b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9743b78b549300ed017cefd4e2a9297ca593b743b62aa089baaaf9a2397e106b
MD5 b0899e37218e060beaae99a4ce0a5388
BLAKE2b-256 d80358012cbe39e8f0854cfbe7b19466141f010415b75b048c27032593b92934

See more details on using hashes here.

File details

Details for the file csonpath-0.14.0-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.14.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fc705026bade80ceaf3b331eac1da3503918f4949c1ef7d8d12924db8f15565
MD5 b5faf73fed478b60d12deb716391c80a
BLAKE2b-256 2b3838625e0f3f8aaa7aa5c92f64877251f3c34579446405d20c14fc49c17105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.14.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5098781bf4e180d609bb0518626c08448279236cbe60a7ed8c10efcfb3cc3c02
MD5 b502e18af103b058e58fe4abc06d144c
BLAKE2b-256 b54e3dade636c2d5c52833b53e5ed94cd75a17748f87468797e08b233790652f

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