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.0.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.13.0-pp310-pypy310_pp73-win_amd64.whl (34.1 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.0-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.13.0-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.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.13.0-pp39-pypy39_pp73-win_amd64.whl (34.1 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.0-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.13.0-pp39-pypy39_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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (31.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPyWindows x86-64

csonpath-0.13.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.0-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.13.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (31.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

csonpath-0.13.0-pp37-pypy37_pp73-win_amd64.whl (48.0 kB view details)

Uploaded PyPyWindows x86-64

csonpath-0.13.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (31.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

csonpath-0.13.0-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.13.0-cp313-cp313-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.13Windows x86-64

csonpath-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl (118.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp313-cp313-musllinux_1_2_i686.whl (115.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

csonpath-0.13.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124.2 kB view details)

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

csonpath-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.3 kB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

csonpath-0.13.0-cp312-cp312-win_amd64.whl (34.6 kB view details)

Uploaded CPython 3.12Windows x86-64

csonpath-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl (118.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp312-cp312-musllinux_1_2_i686.whl (115.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

csonpath-0.13.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (124.1 kB view details)

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

csonpath-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (118.3 kB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

csonpath-0.13.0-cp311-cp311-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp311-cp311-musllinux_1_2_i686.whl (114.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

csonpath-0.13.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.9 kB view details)

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

csonpath-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (117.2 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

csonpath-0.13.0-cp310-cp310-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.10Windows x86-64

csonpath-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl (114.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp310-cp310-musllinux_1_2_i686.whl (111.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

csonpath-0.13.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (119.1 kB view details)

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

csonpath-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.5 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

csonpath-0.13.0-cp39-cp39-win_amd64.whl (34.2 kB view details)

Uploaded CPython 3.9Windows x86-64

csonpath-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl (114.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp39-cp39-musllinux_1_2_i686.whl (111.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

csonpath-0.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (118.9 kB view details)

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

csonpath-0.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (113.3 kB view details)

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

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

Uploaded CPython 3.9macOS 11.0+ ARM64

csonpath-0.13.0-cp38-cp38-win_amd64.whl (34.0 kB view details)

Uploaded CPython 3.8Windows x86-64

csonpath-0.13.0-cp38-cp38-musllinux_1_2_x86_64.whl (106.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

csonpath-0.13.0-cp38-cp38-musllinux_1_2_i686.whl (103.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

csonpath-0.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (109.3 kB view details)

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

csonpath-0.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (104.9 kB view details)

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

csonpath-0.13.0-cp38-cp38-macosx_11_0_arm64.whl (31.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

csonpath-0.13.0-cp37-cp37m-win_amd64.whl (34.3 kB view details)

Uploaded CPython 3.7mWindows x86-64

csonpath-0.13.0-cp37-cp37m-musllinux_1_2_x86_64.whl (104.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

csonpath-0.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (108.2 kB view details)

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

csonpath-0.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (103.8 kB view details)

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

File details

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

File metadata

  • Download URL: csonpath-0.13.0.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.13.0.tar.gz
Algorithm Hash digest
SHA256 4e797e0e29ec12719b5fa609fee5a79558bb92b3c1a23f43d4fc15dc6d36ecec
MD5 d2916d1b71210ff6076e4b8dbd49c163
BLAKE2b-256 7ee33e17d4b0461d22492d2305d75bd37a85cad48c019b8e165f74633f42f81e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 11145995c76469e98c29534c7a641b04771e2d6c626a90ead75a7ea1fb8cfa36
MD5 5a7ea9bedcd158d65179d94cb93a9638
BLAKE2b-256 d99418b7f1d4342d0f9fe087fd44597d7351d5e1ed15ec59fd1e8020b9fa1d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a7e80d00cbab6ca4a8a840a00dae17d13a4974b38e829322dedd32c599a7a69
MD5 803bbcacc2ad58165cf1d773ea062555
BLAKE2b-256 5d4c3ecfb56a37394c4108e83e7e58673488fc71b4d361f4e823371eaf025d05

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d9731b892eed398cb7e2d65e252e62a3a7b8178e9e6c7e261fe63b894d398231
MD5 dff972d7bbce41a934164731fd7126ec
BLAKE2b-256 17b7f69ef6bcbffd51fa008975713334cc5679ee43b3175aae38709aa64ef80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e93b554bb3591211db392b92b006a6ec8baea29b64e4757786203f51abf650d7
MD5 0595e50b1cdf16203ecbcc93375aa61a
BLAKE2b-256 f435e50da28976f121eb13e745cec4eb506684f0b74fcdb97776e323898f587d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8bc80914a5fe3a1061d1e4114cf1ef3fa12dd6d1aafdbdcb8698ba34fe323d96
MD5 96697fbf5096f34752217d4cda1cb49a
BLAKE2b-256 1701120bfeadea22acc30e4e4100ab9b3a349c00d4a8ee8bb42ba01df21b4930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3540710d3beb3dbb2eb6bd88d3515ceb45d557b990f9e28fed8a1b5dae900510
MD5 dd2fb6c69114eb2e99fbec8f6980f3cf
BLAKE2b-256 523677979db77e66b2beeadd5a908a04a84c6df8a7603005505fb867b0c1f9c0

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7630f777b034aafaef87eca514d1a68083629e84a3c52568a8fbb5ca662d114a
MD5 c27297bb7e776178491bbad45fb25bb9
BLAKE2b-256 079d74a34fb5cf7411e57af28256b68f0f25656f58b88f5128c7e0d6eff3782b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed33371bd5e8ac6cfac9de74d6701dcd743f845ce86e75bfe2838db36d3c1820
MD5 82bb87bb2e3539c220b820edc949cf2c
BLAKE2b-256 7bf325d25e7f633c629de42ae459628ed413e05dc73f2b930d9007c288b658b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4c6d51b52d805958c56dfc06f4d1d9ce5b8d529e2cad116e0961d379fe25b443
MD5 88f3681a1a58acd2d48cc9d9778f7f3e
BLAKE2b-256 695bff4cd0bf607e1107401775d86e2c953172ca84be247de526232aff84eea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d0f215b743b278b1299d940c120c8333707ca2612a5375365afeb9878d5476a
MD5 819d63dea1a5a186cfee0794e82670d6
BLAKE2b-256 f4a66a75ffdc791a66cefe4bc665950303672db871818f25eb40057b78940c2d

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db3024b47cdf692d04d25d47a410eb44bcdc859db225722fc091dd6186884423
MD5 dbc18c68e6962251f7a18c2690c5d62d
BLAKE2b-256 bc90ebd222c0664a74b2de085c493d7e4ac88d413022ab766f0805491f1f6e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffe0275bcd0bce54b0458b47f5a3307d68c054d5acbcacbdf31c6fe85133b191
MD5 9bf604af47ab287ec19cf80daf16f55f
BLAKE2b-256 b41ea2ce123e6a4e1e6db932c622119cc6b473a337a98d0e9a8e704d8b674a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 106535d09b1278329257cb9f10a5535c362494dd6648da244fb156826398a0c2
MD5 578c6ff813971f66dff9718e856c7590
BLAKE2b-256 80faa9100fe72edd690a820cddd77bd441fa3a2027ec3fe2db845f328f1790cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79779dd3b9fbf890cb578aca47e2ee22149751fda06a5db91e9529a86c5b3043
MD5 a820b2df15f392859d6e9c0fd11305ed
BLAKE2b-256 b0eb3f8cd3f6c82cca745982c5ab8951f007c197a043b46999f48a05804e7912

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b045d57b03081a9e673ae532d86d7a944a1d0a4cc69e272b29c8b73e2289b35
MD5 66a9ca67aca7cc4a697fc26732e3eb3c
BLAKE2b-256 71ad3e24c3dc7b721a2db3567ae037655a47aa5d88b9e8157fb362210b456663

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 34.6 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 02c49b163f5b6ca1455d23da8f809c29456137ba7220d58e1b9030e53f6ab4d9
MD5 99ede74418c0e890aa17b5f0e780d484
BLAKE2b-256 ed3ad50be62dfbb4909ef7fc2dec2df0d1baae2043a83813f3dc6ad852e9e2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe969cb0fea5f5c208d964d466c04a035c61dd9a335579bae99fc056a4871077
MD5 d8bec29bc3de366354467bc332547900
BLAKE2b-256 5b6d0a8f9203055a11b1e75be1cf1b606136ab66016d46714c57469e34a02021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 58bb4424f83495a51e0e3c40f166df141c3ab4e55903e1f1dc5670f9f27f66fd
MD5 72acf0d86dcc0ffeabeb84fa7fb47291
BLAKE2b-256 179bb181b43cea3fab62b21a6a9e6f905c462d435505564d1788cf653ab17967

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 634fac84dc5eb5c57a1ddb3817854770ab223ec9ff4182d8028a029ea3275daf
MD5 d3c2b78297309164ead82ab2a60736b2
BLAKE2b-256 1443a606ea7ad5b9a931a835f1ded41ef3cd16132c29698be9049c53031bc2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0b30ef8951736725c379004fb0853e1fdfcf5cd5b53846810030c0ae07e6af2
MD5 d1917840d74754e1de6162c6b642bcbc
BLAKE2b-256 5a021b3c06f9ba57b3b35605db5a88aa778660effc81a85a8bd4a45acf61ff4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30c74cf236a55396fca7208f04143ca8445cb10aacf19f53b9a963e8288f8ff9
MD5 f487dd6da3f8ba794d808d44d79d61f8
BLAKE2b-256 4b3099bda89613d6f4c205fe7c27facb108bb354a38d88dfbd2ceb8391a7fe7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 34.6 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 18af05550e6cbb780a832c41a2bd7c36a9ed8cc63f3ec308dc58b65d90b3dd78
MD5 09e27b996e921d41fc8c8032cda99744
BLAKE2b-256 ae54fda1b69980c78906ad0b4bad1d2e7e6126f0d460d4c1f1b45701edbe03bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf250b4be86ba11e9727c47f6e4b46901e768148e3506b9048a9ad4e1683b6d5
MD5 5c7c0941a8ff2f9e732fa7d29428cbbe
BLAKE2b-256 cb628151bc63a0f4c30d418edbe4364caf62e78d747d8518514b147fd5c7deeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1b15bb32462a3b62177f15fa9b41ba496e2f221db22fa7a40a0be41a444c129c
MD5 53816dc49d613a19d1e53502866ac6be
BLAKE2b-256 e85ac8d7ca7d271169fd6b9642edd50a61f1d44debddde6cdf314b1e339ba1c1

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 664b3db4827e7d99bd3223c17b96dd2f86e71fe23c85f2db079ee561cadf95b9
MD5 ad857660548171b71c7c99e1da69fd49
BLAKE2b-256 b21da1b591d59ce2991398e5be5b1a92ea150aec4bef70367eab4dca483d6111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6d0a023f9f8b4bcd24c52bb0b3c7e040a8a1dc7c6fd95202ad191fb0ee4326f6
MD5 e72e6a0b61d9d92e1b0d4a4cbc4f9a40
BLAKE2b-256 07e7dc608ab1791b33e53d1472b5a9217676b44dde4cc294e6b48513b6ad20c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91cc8619753edcb86acb4f7d8e3ca43ef9d8e711bdbb51ba93c085a9c497ee6d
MD5 46fe783c45d7bb900950319cdc090f17
BLAKE2b-256 cb35bd8f500d3ca4fc7f784cb50e6d60b901194f3917998116134dda07764c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 34.2 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 592d6463461bdb212d39e3d46c4ba2043c4cc60ca1236a56f48fc1dd5725d653
MD5 0b7f108a57d2f30b9c811189b7e4ab37
BLAKE2b-256 4261c2e3b12a677532ea3d7cafe2bc9fce1b784acc29a2cd70f55e9555a95660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53a26281ec146c5dd3fb1331ee72a8443f48dc9b511193936b1fe21e0899b64f
MD5 26fd4071ea7aea66dce29de7434238fe
BLAKE2b-256 4d8820c0b13b2038c396a7ade51c89e54dbf79474aa3941c4c21c188a1319e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a1c1597ff8b0f9da49e04eac0643499354402ddc0680812f591784abe6c465f8
MD5 ebdb10528b428ac5c80abe28928e3280
BLAKE2b-256 35a6eb60611a9f0ee285c0437087324e180155249ae44c9af8b236c52344b1c2

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 97dd30438862c1a9705ac14af04503e43dcf69953a587a2df339862d9003ff60
MD5 1f0192566694ba1d460034622287769e
BLAKE2b-256 2b416407ec51199be76e99ef17065640307c7f9815021a76fe439ebc56506c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98a5d071bef84fa378755199f91c253c48060f079b35b0b2f1a8faf2a0f8783d
MD5 44ded29409cf6a0599316951ab9d25a2
BLAKE2b-256 427fd1c94b630bab0747ad6aee84851aa1750c03c865ab811c30e0bb2e491300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa71a8474182a3e4af46003bc2b6b84567ea74b4a65776b2ee0a6122922f86a0
MD5 c40aff1fd433ca1cafd56172d82b6054
BLAKE2b-256 ebcd3bf7fbfbb503f96580efafb9857b3beb07d2df7c0a10cfc5bc40a97702d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 34.2 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 335dd9c153b1faf6c27e98887661cd7b59b195ce8fb5e26e34a84d6537db84fb
MD5 75839b89a3d6bf75e616f9caceaa8487
BLAKE2b-256 2e67aa822a21501f5f832c967ae4147453a887ba6e453f99b8cb90fa6c614374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 acf38283f39b1e00d10ba56260f675468323194905b71693973b6a4d2be0f11b
MD5 4663f428cd417890132bdea3b2c44c4b
BLAKE2b-256 28ec81a3279f689bc25e8ee04abd059d907799a2f771db3c5eab6318f121634d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b369b4a17020ae56cf60bb272f1c4a5c8fbcbba58e0844e7e522001f8c2930f
MD5 255ebbfdcf0bd2226f7b6860cdb57d6f
BLAKE2b-256 1e9f22917580d28b0ff96cd6a5b5d29d633863a4f3461a4e8115e00f5a1ec7e2

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d6885d9feef68e3789de5cc17f31aa290ee1195b6570475dc573945bea78889
MD5 aa33ccccc27955e563cfb4e155b5f8f2
BLAKE2b-256 1284abd513c029b327f043904910dd416e451a1f4eacf9d86918ff80bc235f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9340507550915004fb7f2840a88e6bf9fd95dbb3108f74d4f2058fe213153711
MD5 783b337500674a479e1586f261c7f605
BLAKE2b-256 5f29cbf4abf031a20cfc2f8de01a219e367bd2425e3b2a44bfade22617bf3f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cd4f37f45ad60862a979d885ad10cc505f7f13cc7a1f2335b481e55494a8791
MD5 661a5905e1ad91524379039c802913ea
BLAKE2b-256 f32f7db59aadfb413df30a08458e680a9693666b9c71c8dc37f5c0d5c9e1f0b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 34.2 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 191c2d4f592f36cbea51836e0a47e7d1fa240def9d6752cb8eaf4b2ff214b927
MD5 13a304b05a1085ffc483b374083d09c8
BLAKE2b-256 567496447b107835d2fe0aad7283b9c82ee866035c6ba8e72e2d27f9f5ccb2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e79db363845c450090d646a27a989693c7c17caaca5f5e01924d08e3bbd64f5
MD5 3b6ecbdbd6be0ec50161d3a97f8109f2
BLAKE2b-256 7aeeb75fe64ac4fc50283479cca3e4d7ebdc6581154f32f118fead6bb70c3bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 287f5a50ddb5539d7dc2ca68c1d78e58126b237081123e7272d9cb82362bfb26
MD5 9e045a98aaa8236ee6f829b9ae80cf2b
BLAKE2b-256 8fd2daf4204b7ac1d8d06faf4f4f1d06d93213d45cbc463f92935f2ac765f36a

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b0d9c4d9acb43d6c27c5479a18dffabf7287aecc4da5eed3e3f495a07fa3e4eb
MD5 1e43c15c9b0d6e6dabdf9198288fd613
BLAKE2b-256 0092d08cefac928fd228fbc8043d260f67f99b2de4466d2eaaa644e9ecccf922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d53082dd07d262e26a5e007fbee6049087adc259b8f92fa8f20f13e50b491b5
MD5 79f0e99306964b4026547825c095e4d9
BLAKE2b-256 0c77efd950bead6f4fa7f0b8f8b0baa8a94567becedef2085f6f78320950074a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 682b4eef520255fcfc2bbdc9d5312a6c246e8d39807e06e2cf5ec70df93da5ea
MD5 7e2cca015b57552d1eb1eeb0d522dcf7
BLAKE2b-256 59332ee74650c26286f3a2141134a65864516ad2de7cc41f5a767254495d130a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 34.0 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18ecc67de4e0c96822b9b8815e1b6a87de21fa8ec1b052bfae9403a8fadb4af6
MD5 2d6cdfcc23dc3ac5acdde0ff6db55aba
BLAKE2b-256 8972ff1d5950a93ff05e129143e11376913bae16b38d012e4a4ba6b31016253e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2542e7e5b1bb639ba8b2c5137480f4648cae2cbe7e1357241ab33a73b318f6b
MD5 880d64f96b5fe12128062bbca1609fe2
BLAKE2b-256 4326137bb42ece89fad3ab99c0f9e3f7cd24ba7b906e17fbc9ffcbb1b27f15c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98c73faded52aeb08509d27ee0703eff7ac510c38af92a556dde2cc716eb0d91
MD5 b90853ca54da371e30236d75b9b4d20f
BLAKE2b-256 9a8e582cff02fc60b64d6fee9c7dae5b722ec1b2c02fa8c27270afbcaf403000

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4b16166a94f41fe1c647c90649543786e50b89fc25b356febd8b31eb85010a8
MD5 0d0331c42c85cbdf7e336006b5726ca1
BLAKE2b-256 d8a4282a1786ee536067e08a2ea02c73c3f7d13c47d05dd283e888fc16c0947a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c77716cc45428751661427700b145f36f8bfe419ce0ad2320e9f51b70d623518
MD5 3558007603238ce70c9a1fc4ec5a4777
BLAKE2b-256 50d623d7e76aa7d6ccb084ad1c71eccecb8d443c7e9372ca0fbaf66447371a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a17f77f3a9d3a99818f474c21cda8478e9352717e4b5f0e572a4ab2129095d0
MD5 6d8a88febc47caaca85b35cebef571f1
BLAKE2b-256 4b99f22e0d822c63d36f2d91e62463e44a73669d3d2af0c266d438a2529f14eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: csonpath-0.13.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 34.3 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.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3e8699508030b1253418e7c8232c6722a0ba971fce371b9dd8c8ea9086df0cb6
MD5 705cdafc0ce1d60653ace87580ae7e2d
BLAKE2b-256 14b459eaf0d7fd97714f091b8530f040d99e764aa5a43446ce0ff8ab496cfcb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 398097d680282e1b1e82f6607efd8aa8a5039e87670fd5ca954256ba07d85fa5
MD5 200239101ac8b2d30dfac55fc7101cc0
BLAKE2b-256 cf6fdf9150aeb68308e57c8953cb3bdde195ca01332199b1b85729b2e675279a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3eab93fabf288f4ac68e6b72faf28e6e6160dda6284ffdaa231ddc685f5cef25
MD5 056ff32a643883da5843df4d04d9173b
BLAKE2b-256 08ac97c2a3e7083624a271687ab0e29b022c5a8ece45fc84b11e1aa60b2390d6

See more details on using hashes here.

File details

Details for the file csonpath-0.13.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.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c692e245fe9c73c033cfe27cd336ab357e4d79b80608f5893d7b476e45acd021
MD5 925da0468c2e4664ef9d87a89a77de24
BLAKE2b-256 2200475c4e70636896ce3632b73057b0182d69dc100b231def741e0ae3fadc1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for csonpath-0.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 979572a97d9b3a690e488fc17df55bc9cd8d44a2291fa3728f224d38c5643275
MD5 d72bf1e77785f6d3d8b3172ae58f92c1
BLAKE2b-256 b49ac8d0ee6ba3cc34d7af201b416d6453f760c978254f95dd033197ac31ce90

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