Skip to main content

Core library for django-components written in Rust.

Project description

djc-core

PyPI - Version PyPI - Python Version PyPI - License PyPI - Downloads GitHub Actions Workflow Status

Rust-based parsers and toolings used by django-components. Exposed as a Python package with maturin.

Installation

pip install djc-core

Packages

Safe eval

Re-implementation of Jinja2's sandboxed evaluation logic, built in Rust using the Ruff Python parser.

Usage

from djc_core.safe_eval import safe_eval

# Compile an expression
compiled = safe_eval("my_var + 1")

# Evaluate with a context
result = compiled({"my_var": 5})
print(result)  # 6

Key Features

  • Security: Blocks unsafe operations like eval(), exec(), accessing private attributes (_private), and dangerous builtins
  • Variable tracking: Reports which variables are used and which are assigned via walrus operator (:=)
  • Error reporting: Provides detailed error messages with underlined source code indicating where errors occurred
  • Performance: Implemented in Rust for fast parsing and transformation

Supported Syntax

Almost all Python expression features are supported:

  • Literals, data structures, operators
  • Comprehensions, lambdas, conditionals
  • F-strings and t-strings
  • Function calls, attribute/subscript access
  • Walrus operator for assignments

Security

By default, safe_eval blocks:

  • Unsafe builtins (eval, exec, open, etc.)
  • Private attributes (starting with _)
  • Dunder attributes (__class__, __dict__, etc.)
  • Functions decorated with @unsafe
  • Django methods marked with alters_data = True

For more details, examples, and advanced usage, see crates/djc-safe-eval/README.md.

WARNING! Just like Jinja2 and Django's templating, none of these are 100% bulletproof solutions!

Because they work by blocking known unsafe scenarios. There can always be a new unknown scenario.

If you expose a dangerous function to the template/expression, this can be potentially exploited.

Safer approach would be to allow to call only those functions that have been explicitly tagged as safe.

If you really need to render templates submitted from your users you should instead define the UI blocks yourself, and let your users pick and choose through JSON or similar:

{
  "template": "my_template",
  "user_id": 123,
  "blocks": [
    {"type": "header", "title": "Hello!"},
    {"type": "paragraph", "text": "This is my blog"},
    {"type": "table", "data": [[1, 2, 3], [3, 4, 5]]},
  ]
}

HTML transfomer

Transform HTML in a single pass. This is a simple implementation.

This implementation was found to be 40-50x faster than our Python implementation, taking ~90ms to parse 5 MB of HTML.

Usage

from djc_core.html_transformer import set_html_attributes

html = '<div><p>Hello</p></div>'
result, _ = set_html_attributes(
  html,
  # Add attributes to the root elements
  root_attributes=['data-root-id'],
  # Add attributes to all elements
  all_attributes=['data-v-123'],
)

To save ourselves from re-parsing the HTML, set_html_attributes returns not just the transformed HTML, but also a dictionary as the second item.

This dictionary contains a record of which HTML attributes were written to which elemenents.

To populate this dictionary, you need set watch_on_attribute to an attribute name.

Then, during the HTML transformation, we check each element for this attribute. And if the element HAS this attribute, we:

  1. Get the value of said attribute
  2. Record the attributes that were added to the element, using the value of the watched attribute as the key.
from djc_core.html_transformer import set_html_attributes

html = """
  <div data-watch-id="123">
    <p data-watch-id="456">
      Hello
    </p>
  </div>
"""

result, captured = set_html_attributes(
  html,
  # Add attributes to the root elements
  root_attributes=['data-root-id'],
  # Add attributes to all elements
  all_attributes=['data-djc-tag'],
  # Watch for this attribute on elements
  watch_on_attribute='data-watch-id',
)

print(captured)
# {
#   '123': ['data-root-id', 'data-djc-tag'],
#   '456': ['data-djc-tag'],
# }

Architecture

This project uses a multi-crate Rust workspace structure to maintain clean separation of concerns:

Crate structure

  • djc-html-transformer: Pure Rust library for HTML transformation
  • djc-template-parser: Pure Rust library for Django template parsing
  • djc-core: Python bindings that combines all other libraries

Design philosophy

To make sense of the code, the Python API and Rust logic are defined separately:

  1. Each crate (AKA Rust package) has lib.rs (which is like Python's __init__.py). These files do not define the main logic, but only the public API of the crate. So the API that's to be used by other crates.
  2. The djc-core crate imports other crates
  3. And it is only this djc-core where we define the Python API using PyO3.

Development

  1. Setup python env

    python -m venv .venv
    
  2. Install dependencies

    pip install -r requirements-dev.txt
    

    The dev requirements also include maturin which is used packaging a Rust project as Python package.

  3. Install Rust

    See https://www.rust-lang.org/tools/install

  4. Run Rust tests

    cargo test
    
  5. Build the Python package

    maturin develop
    

    To build the production-optimized package, use maturin develop --release.

  6. Run Python tests

    pytest
    

    NOTE: When running Python tests, you need to run maturin develop first.

Deployment

Deployment is done automatically via GitHub Actions.

To publish a new version of the package, you need to:

  1. Bump the version in pyproject.toml and Cargo.toml
  2. Open a PR and merge it to main.
  3. Create a new tag on the main branch with the new version number (e.g. 1.0.0), or create a new release in the GitHub UI.

Creating new crates

1. Create Rust-side code

Each new package should be a Rust crate, meaning that other Rust crates should be able to import from it. Thus, we start by defing a regular Rust package:

  1. Define new crate inside crates, e.g. djc-new-package, and give it Cargo.toml (crates/djc-new-package/Cargo.toml)

  2. Add the new crate to top-level Cargo.toml.

  3. If the new crate needs new 3rd party dependencies, add them to the top-level Cargo.toml.

    Then, inside the djc-new-package/Cargo.toml, link to those dependencies as pyo3 = { workspace = true }.

  4. Define the Rust-side public API for this new crate in lib.rs (crates/djc-new-package/src/lib.rs)

  5. Write Rust test for the Rust-side API in djc-new-package/tests/ directory.

  6. Lastly, write package-level README in djc-new-package/README,md

2. Expose Rust code to Python

Once we know that the code works, expose the Rust code to Python. All Rust crates are exposed through a single Rust crate, djc-core.

Bringing all the crates together minimizes the overhead. A single Rust-to-Python binary can have ~100 MB, because it contains the Rust binary, and other things. Thus, instead of having 5x 100 MB binaries, we put them all together to end up with only a single 100 MB binary.

  1. Create py_new_package.rs file in crates/djc-core/src. Put here any code needed to help with converting Rust API to Python API (e.g. Rust exceptions to Python exceptions).

  2. Define the actual Python API of the new package in crates/djc-core/src/lib.rs.

    Create its own Python module for this new crate to avoid name conflicts, e.g.
    let new_package = PyModule::new(m.py(), "new_package")?;

    Then add the symbols (methods, classes, variables) that the module should expose.

When you then run maturin dev, a djc_core binary file will be created inside the djc_core/ Python project.

Your new Rust API will be available in Python as:

from djc_core.djc_core.new_package import some_func

some_func(...)

3. Define Python-side code

By default, when you create Python bindings for Rust using maturin and you don't define any Python code, maturin will generate it for you. What this auto-generated Python code does is that it re-exports the API that was exposed from Rust to Python, but this time it's re-exported as Python package API.

However, sometimes we need to modify the Python public API from what maturin/PyO3 generated:

  • For some functionalities we need the Python runtime, like when calling exec() on generated code.
  • If a Rust function returns a union, you will want to wrap that function in Python function, and unwrap the union.

Because of the cases like these, we take ownership of the Python API, and define/update it manually.

So it's important to remember that the binary that maturin creates is NOT a python package itself. It's only a Python module, that you can then re-export as a Python package:

,-----------,
| Rust code |
|___________|
     ||
     \/
,----------------------,
| Compiled Rust binary |
|  (as Python module)  |
|______________________|
     ||
     \/
,----------------,
| Python package |
|________________|

The implication is that the final Python package can contain also OTHER code, than just what was exposed from Rust.

Here is how we handle that for new packages:

  1. Extract the virtual module that scopes the Rust-to-Python API of the new package.

    Head over to djc_core/rust.py and add entry for the new package:

    from djc_core import djc_core
    
    template_parser = djc_core.template_parser
    new_package = djc_core.new_package
    

    We do this to resolve issue with pytest and how it handles virtual modules.

    We need to do this because djc_core.new_package is a virtual module that exists only inside the Rust-to-Python binary. It doesn't exist as an actual file called new_package.py.

    See djc_core/rust.py for more details.

  2. Add typing for the new Rust-to-Python package and all its members in djc_core/rust.pyi:

    There create a new class with the same name as the submodule of thenew package.

    Inside it, add signatures and docstrings for all the functions/variables that were exposed from Rust to Python.

    See djc_core/rust.pyi for more details.

    class new_package:
       class Comment:
           """Represents a Django template comment `{# ... #}` or `{% comment %}...{% endcomment %}`"""
           def __init__(self, token: template_parser.Token, value: template_parser.Token) -> None: ...
           token: template_parser.Token  # Entire comment span including delimiters
           value: template_parser.Token  # Comment text without delimiters
    
  3. Define Python-side code for the new package under djc_core/new_package.

    If your code needs to call the code exposed from Rust, you can import it from djc_core/rust.py.

    Imports from rust.pyi will be properly typed thanks to rust.pyi that we've defined.

    from djc_core.rust import new_package
    
    new_package.some_func(123)
    
  4. Define the new Python-side API. Add __init__.py to djc_core/new_package, and re-export everything that should be public. See template_parser/__init__.py

    When the djc_core package is published, we will use the package-specific API by importing from this submodule directly, like so:

    from djc_core.new_package import some_func
    
    some_func(123)
    
  5. Add Python-side tests for the new Python-side API in tests/test_new_package.py.

  6. Lastly, update the top-level README.md, describing what the new package does.

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

djc_core-1.2.2.tar.gz (935.2 kB view details)

Uploaded Source

Built Distributions

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

djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

djc_core-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp314-cp314t-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

djc_core-1.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

djc_core-1.2.2-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

djc_core-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp314-cp314-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

djc_core-1.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djc_core-1.2.2-cp314-cp314-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djc_core-1.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp313-cp313t-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

djc_core-1.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

djc_core-1.2.2-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

djc_core-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp313-cp313-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

djc_core-1.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (7.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djc_core-1.2.2-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

djc_core-1.2.2-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

djc_core-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp312-cp312-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

djc_core-1.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djc_core-1.2.2-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

djc_core-1.2.2-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

djc_core-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp311-cp311-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

djc_core-1.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djc_core-1.2.2-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

djc_core-1.2.2-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

djc_core-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp310-cp310-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

djc_core-1.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djc_core-1.2.2-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djc_core-1.2.2-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

djc_core-1.2.2-cp39-cp39-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

djc_core-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp39-cp39-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

djc_core-1.2.2-cp39-cp39-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp39-cp39-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp39-cp39-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

djc_core-1.2.2-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

djc_core-1.2.2-cp38-cp38-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

djc_core-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

djc_core-1.2.2-cp38-cp38-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

djc_core-1.2.2-cp38-cp38-musllinux_1_2_armv7l.whl (7.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

djc_core-1.2.2-cp38-cp38-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

djc_core-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

djc_core-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

djc_core-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

djc_core-1.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

djc_core-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

djc_core-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

djc_core-1.2.2-cp38-cp38-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file djc_core-1.2.2.tar.gz.

File metadata

  • Download URL: djc_core-1.2.2.tar.gz
  • Upload date:
  • Size: 935.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2.tar.gz
Algorithm Hash digest
SHA256 79c42d03d01a92edf02c46af132b5c47bcbb89ba5c8496285651801f8ae5f0cb
MD5 35bd9e4f828a7d6241724100dc3b01ff
BLAKE2b-256 9320e6b95920affd96244219cdec329ae5442a49f033fafc87eea76bcce3603a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c11f730aaf855fe5d80b34aa15fd1652ad53a37502c95dacaaf3e08d638e8ae
MD5 a7495af834db6482d50c9579146088d6
BLAKE2b-256 6f033be19f0bc87a15bb12036486f5dd999f788851d155aab8b0813f92deaf08

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 112a0af530c24ecdaefa0cbc8a1656f5d747cee8e5a6f71a1c67395b2ef17367
MD5 8d139a715594e30dfb6c8de6c2e63707
BLAKE2b-256 c019b9503f2b2bc902439331ae07cfb6422d7498184303834a8ba6bf374fe33f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea5dcd2e1eb3de423fed9a61b2d678ab43dfa50731a97bc03a351a12a2206b09
MD5 ede5fe2caa6a6ee8a24f3f8284add4a5
BLAKE2b-256 76a8ed6bd588efb508da1944e3683fd0885806018ebe1735077d78442f864ec9

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8249a7d0c3c825c9b71db1ce874c036a110dd85fb12e06d10e0ed26b043f14e8
MD5 2fb768f6a1cd489c82d42f2d4a0351ad
BLAKE2b-256 cb07dee100d53656e9360d8253e25c8e514b3b651fcc302abe1312003ebe0b43

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6434c035f752223c4eebccb29548e9d2f4b766de17afc379ddf7913de1813925
MD5 d814e05ebadb1fa0300073fc37555adb
BLAKE2b-256 9a5bfc3f8ece772b0913e39769585d5f38efa705902dba6edeec30158e480c5c

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 479718fbd972abff4a614475eff3f0dfbe6edf6c5b3f7446d74e801ee042a198
MD5 8ee006dc79acc9cac5bbde9d2b5f09b8
BLAKE2b-256 afaf27c9d338736c0dac5eaf5cb79f19191a94f0c8e9b4d570bf9f172e7d2b77

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79974ba0d98cbca3b46ee916e5587c44589f1982d9a57102d0d5b10f32bc2ea6
MD5 f14927daaffb6a0d9045ea15231d55d6
BLAKE2b-256 75431575adf389e14977542f095732876618b2cddce75268bbb4fdae7feca20b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4035c9be731422ed3e006c61240fb3b3a4f03e1a0d406cf49ddfa0d58cb501ca
MD5 17468cd249e7383dc80199a0033eedfd
BLAKE2b-256 9fcbd0dd5339bb6b75f00fc49beea0f9045a80d157a6a8e421b910f3ae864f30

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d2e05f3dba02bf7a0c2099cb3c39bbd3379882267d578dd10918c3acefff16a
MD5 6ea5bb7b3af848cdee807074aa621850
BLAKE2b-256 1efec0287969cdb30ecc17b6e0ec5b80769349659d0c46abaeafee577f7687a2

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c68a67b1fce1317e63dec03c7dbfdeeeb713739b5239044313af39600b1ca83f
MD5 3642918ea75f454c25830979f5d8db76
BLAKE2b-256 e987acec02dcc8c9e9a47ee4a6104c869debd4464f852ebbc59225d05e0af811

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e13e189fe2bd4072dd11f3f4481131c53f4ece61d32fab9b9bb3d4c4c2b7bef9
MD5 4de56b577246f10538f7273bda35b3f7
BLAKE2b-256 04ada94f08aecec1a0553f033d12f8e7f25c599419b7c6adeb710261121dc7e3

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d56829edeeec6518167982b5bb9ee14cdd06a63df988a3e920bb0c5884a8e983
MD5 7827cbb086ea3104ef917ee92575c3b4
BLAKE2b-256 2f2d7e1b63a34f787a417d92bc80dc4feada61fe068f4f134fcc908d2afcadaa

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b8bbde12b7b9364be9b5df43a8cb021f9a9da090576ac892f41bf35e52403ff
MD5 4700d5b45ddb16ff5d59f7d4ae132799
BLAKE2b-256 ecd4d8593ab6cb00fff8d8c91336aaf3eb572d95d9afd4369a332a5b069bcd2d

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 635a2caaee89556474c085995878b801e469382fd1f84ef1cf6c423b5ce23fea
MD5 1673feaf90b64c51e8a30b035803e0d9
BLAKE2b-256 0dabbbb211936076c2403b194701419a1032ecf7e8ec308fe1bd39a9726f9796

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 930571a4a0aedf88f5d4e6e3fd0fe96528f992ab9893d044b8bbc9561d04741b
MD5 1bb8e10c40331c7c4a403b3545d85e05
BLAKE2b-256 5cc4f0ed4c9f374a6759e0cce58b32e12e4cbffdce6f906dbc907d9a419e9917

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99c64f241de417e56b1180a1f54e53898db9454360c375b4fe39abc60f0e78b7
MD5 884ac4b3e70387b1224abc15a1434cc8
BLAKE2b-256 4fc1ea3e0fd60eee430d38e50091021f58be9db4c5843519d86a81a7ecab56f8

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a54e1bc71994caf9428aaf4a76beef6e1816bc24485b5c2cfcfa6a6f7d1b92c7
MD5 dd313dfe9e96e146efb0155e64c4361c
BLAKE2b-256 6f427eaaaf57032b25000aaa33c95e4b49eadedb9dfeb2fa93289f039ec44372

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c43053340721f407b480e3ce4818207d6a965170742a502c4dd43518de11aea8
MD5 36703c07b95fb1ecbc4c9bb03569fbbe
BLAKE2b-256 04adc957f177e9583fc9a063f900ae7aa4a52f37276700264bdfd5ed44ee5b29

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b6bbbfee248ccb006740a8a36913e239545fca140a81c8a90f9426a9acd22c3
MD5 b0b37a676a98e8c3b0b1c069f4490188
BLAKE2b-256 22afd4e958e547bc48008db1d398d8afaa761e8f47c8a8e4a09855e6a0b85988

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 adb2eac98aebc40f6b8942ebc330fc97936e499bc71c363b4e6a9d95bdf56c71
MD5 662088aac3982ce33edcd64a0cccc8b0
BLAKE2b-256 dbb4f5758d5e0ab44c8c8587787924376024fe4213cf3e49587e855ca5a38dda

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99b25cac00bd469935fd78f3f486cde400d5379dcc83219e5193d831852a2ff7
MD5 0c48ddc01d70d6e82597f48a1e207b79
BLAKE2b-256 c60d943f69ae449675fe98e829bb154193588c535437c0af2aeae2f094bfd3ce

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21c36421cdf6b0e0fb8b8675c0d2911caa9e9b74d5e12ac5fa33f55fa0da32b6
MD5 523fd64f8e713ba24cf18a3300fc8782
BLAKE2b-256 b3836f270c37a0107123ad37ac3940c512b50c270e5115d49aba4932d404dea8

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8c7e9fae6a05fe474f9457bd6dc216467b1d550cd89f24dcc2783d64ffc8f790
MD5 5705bf9b9737c15ddd2144ed76f7629e
BLAKE2b-256 55d58f7ccde87207985a7dba184219f79e1d8a7e7460389a13e864f367eb6344

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af064b63707fb6be786dbdbbd5e4ef144f63cc4e15cfc133322356663f26eca1
MD5 c3d06f3555232814103f1309ed9a4e56
BLAKE2b-256 55d9a8bfbd5ca67dd547ab6b650ee8d742f3a10267b51bbf51bf1310aa672014

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c3d5ec2a69735a060e95fb04f75650ef127f2dd763a75d5a595345b34247ffd
MD5 a64f2471782d06e63cae64772ec7d463
BLAKE2b-256 95f422994909004afcd66a40e8cc1969547eccbdea97517a9f6e5d681d31cab4

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c9c9b9f2101c21c3ae3753424cbbbbf804954e138da1d381aed12b618aad1cc
MD5 10ba5648002ea8615b3eb32334a0781f
BLAKE2b-256 b18d4262eaad42bb62f251ffd4f0b554762f4d63a746828c05a3d9c126ef7f07

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1834ab5b21126a5030e4d3e38124320705503e9a7e4b1599e155266eb85e3c30
MD5 e4adc459686f6c85bf16b9edb0d176e5
BLAKE2b-256 3c9abff43918e99bab89bf9e7407184dfbca05dd03dc16663ad44b12d6d69870

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45f318bb1ec45a75fcc22d92ee11a08df5aa93c9d785978f0c31b9f104012700
MD5 14df8eae5611df3895d85846950c41bf
BLAKE2b-256 d6bc51bf622668e674c4bddeba08b2b186d0022431e8888e3da5ecb41357e76b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e0e13ed9a21d2e31d02973c6321ba04e03de1845d06ac653c52afb388164c79
MD5 01bea316629cdc163e8d77383d423e95
BLAKE2b-256 7edf23a51cab532f176402d7a28eac172e157249d3776af280ac971d46edeba6

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 058e42717b146f3b9de853199ea068de2f4a6d5c0c0186e1be955d5c822b2fbb
MD5 cae81b01725e5123bc84fd92a3ff9a37
BLAKE2b-256 15fb79a15023597d046b77ed392edcb4bb6d46728dbc2345e8db2ae5f4e82b3a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d632afb0cdbb5422215f818b4345d3338208db8c1a42fcb38223dff92eb31e77
MD5 268f2a8c1547ec1f59f37fa38db8f282
BLAKE2b-256 743997547758f3d27d54c7a35faa4b4a083b32eb8b6d666ac1f64ccf274bb184

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 74f056cb5f35c7f9dd638ecc7b7e80d47ed767620dd0f3ddb4fb8a21ba6dac59
MD5 61502fe5a9c17748cd19c657157aa78a
BLAKE2b-256 630b817f9b304ca8f93fa710f939fa45059c6d2afba5eeab1d448f89074d6a9e

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5634449f7c980e3075e254e0b109847296d58d8d49f6904f47b07acae8ddf74c
MD5 bb224cb4729e8cb2c6430d85e0e43d93
BLAKE2b-256 31dbc8624a480b5cdb7b4bae0c23d4e73434bbb0d7c1b4ee94dfc180a9018cdb

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1f241bac58d5a125c6fe0b8dbcfd836c80ef1f10cd88507e0ed55d9013a0298c
MD5 ecaab25beccd3e23f6fde0e7c23174ca
BLAKE2b-256 41e50d0c0693f6c0a5d5130487719c0f3225a7865995d201a1e5fbd4e99bd23a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9591b2a1781eaa4e7ceced21533a8bf5fca77b12277738564fda37163d4cfbab
MD5 44c18328e415e708cef3fa53f41e2872
BLAKE2b-256 e4664a0dd79f52341a08f90bcec680330dcef68fa8133764262302014feb3598

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 718073f0bdcec7036ae1dab803a5c9d2c546e0c80dc6bc23e5a64f1c24e3f35f
MD5 4422510a29c05e8a97045ee2258ac02e
BLAKE2b-256 4697f6cf5667564f3f30eacda0e66a409f840222e61ee2f7e089f5d7db613727

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e70547b20113128fbfc54641c755e38900f3b700def139d64db8bce7c275d89
MD5 249caceb05ee855eeda62b7a6ce4bd83
BLAKE2b-256 e95b70294a196297124ae2b88d71af07d236d5e821a9c815382c03b3df396ca6

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45752c1b534edc270088a9ab19c343101a2d934808345752766e72ccd05c6ed6
MD5 8886bb33feaf4fd73378cd895197e5cb
BLAKE2b-256 eedaf8e5505b925dd3c16a92f79e53c89f1ccfcef1874693a624363362c554ca

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a76a94d469f3613f17ff0349e22c8150820699db6a4a77bfc976be279c3dd0cc
MD5 3f2ad17abf5fd3a072b2a1ad8bafd83e
BLAKE2b-256 47463f5bd490bd0f5eb21b674377c69270600ecdf4cbbca09ce7a9ba017daf63

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a95cc5b7594b4f24003fa981c6466639f6e833a4b32b677e5450a0a927d8766
MD5 9ad95aa2a6d9b57a430adfae5b630b46
BLAKE2b-256 42d427a86e552b9be8179109155e6cbd3733741334e3c1049236a485877a4f0a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 789197a5b43d34c6fc91f078734af1596dc679f612d4af0a7de20dd2bf446617
MD5 fbb2d74c39d22364ec14a9873ff0cf7f
BLAKE2b-256 045ba4290883c9609d3d6d279260c84b90f049cec86c28ed4f2c8ae6e4556fae

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1a6c7ed48c9e6fc5cf37b0be3c3d5f334176a2c4bb0cbe4543dee5688e2d4b53
MD5 56fe561b7831129aa4f39c5346a6cf87
BLAKE2b-256 e9131ca47a187cd507a3cbb11d6aa6640e3a06554f9f788f81b6d35386015f7a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 274a64ac89263f0e89e301e57459e2621af79b46f3227c6e6c8ccf3513e7b7fe
MD5 5db4d0aad5b9de1d4e22d7e75e1cacd4
BLAKE2b-256 17bb2d4db800d93d519d839daff52604d389a9e945a3c9e26ca535998d90208f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5c25034d399a0c267e49d81dcfcd9b011f73bc19ecc8d02ad67fae3811fb945
MD5 58ffda7fb1c3b23b1e97ae8849e0260e
BLAKE2b-256 bad08f5ea756a37df60980c75d45dd8a556e7551a52f6a3e362080596c737a30

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a08cdcc32af54980ec8ec2d6197e3a6d7f42207d40c787855fd2b3ae2b51714
MD5 668dc9e459a42a4469556c6b777ab022
BLAKE2b-256 af40b89d33c1b772e42312fa8f86a52576b3b862bce90cffd93660101841d430

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 93a54ada8036fe2a835c7fc7456860eb9ad9ae82bd639b0f71cfabcba7b32442
MD5 d958afbbe606095ae3a96421043019ae
BLAKE2b-256 5a93c87343f980931c23f57d21f58bb5dc5dab91cb7df06d8bc897a241975a6e

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64bc5acd5993f3a1e9ac80dc88477fb9a0ff293072cf74cc042ad36ee58bc0dd
MD5 61207f064ce449a831b06ff8ebe4e8f1
BLAKE2b-256 a3bdf0089a15cc58fcb3b4eada3088d6c4f5ec675a36ea26ff2c7be0a1ae414f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cd246939c9101308170531ac305c6c9bc773764bb8c33bac92d9bbb80367376
MD5 76914b3e8415ee2d35f73d8282a5e1cd
BLAKE2b-256 ce920c1ef0bd4c1948e9f10da8edf438cac018bb25926f6adfda7225cc2a57ab

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1cbdc8a08c69fd21f7a3bde316ea33b0845a3397503e8b3e4d507963f4462152
MD5 be63a0f19b3d678040c86cc390e7c6d5
BLAKE2b-256 4941d1a1d3b0117e1f745966aef0bc4793e111f0e6ce7cc9496c8d3d9fa83449

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6ea2420ac8991324c9bfb8d8e141a681674b5636ddc088749413978b23622e44
MD5 94ac32fb0feda76b79c16d0cb0c9fc90
BLAKE2b-256 d4ff9edc7faf210722fe7450d2d113d4b83cdf7a11c00281434ad9b0987e9550

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a38214b17635e95e54ba641e4d7177793f39d5fef9556b05aaa8e2c4ecafd8c0
MD5 e020b58974ba98e1290a4fde8dab2877
BLAKE2b-256 e9381c3099ea04fe183fe0cda84802d5c6bee020d33c179245208c1803f555a5

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cae7f1fd6201d22c3e4c123fc56c5becf758f8604732d71cdcf6b108c0011309
MD5 0ca0b5544134aef38f1f3a428592e269
BLAKE2b-256 eab6b84631e647a5619a7ba8af10c2b2dd94638e44d776e78dc3380dbfe3a725

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20b577c07bb0a5075f729a09a9cac616151a5b6c731043b464c34b1d461e48e1
MD5 3bd35226c7c281599890cb227df0f7c8
BLAKE2b-256 18d3fe7026082ec72f4d10864fd8b75a817f665f6b28b4f3f133f582511a271a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6332cab1ebbe3d6bb69f09bb3227a974110b16757f912ef935052ccbcc6fffaa
MD5 69907d14df9a6f019cd4414e21a4855f
BLAKE2b-256 0f6431f72062a47a52ccaa473590b6adb3f234cd09e24960a7e197fa28da66d7

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e3a5ef0cd80f3189ee0eaf8b68802c69accb9bb4dfb17f0989f2bf13c965917a
MD5 699f4cf36b3c87479444cf1eab2a4d0c
BLAKE2b-256 793865928fc088fd3a8fe965a3aa9a5e90f9ee13b1f3d314f800d779eb510942

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8298430c9f2e944803a2fbd4719101d50d54f0b56694296dbbf16cba24e74155
MD5 121974d4af1556c840d37b8f44d7a5ec
BLAKE2b-256 5830fb0f435a24f57c9c260cf4e24a9d7cb1e7ff0e44c3efed05c3338c45fcca

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ff2786d420813f5ae2689fb2c74fb7a79fe12546de46e871491685720282d7c
MD5 f95729b0d6e77b8d9ae0fb4c990f35b2
BLAKE2b-256 1ee26365df9c7f7222dd5ea5cd1eb2cd02ae6f87df0523ce6fb0c450dcfa1f75

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 34880843ef94f8ed0fc337571abc7bf6b36699f2f6287cdc4b86d98d70cfe658
MD5 93e02ffb3574495948792bad35b14c95
BLAKE2b-256 7288127fe4350a391697a4f73dfda7e04ada83c7d210f33cbefe731e2e8101ae

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 346c6e9dddc9d124a063da7649efca9134a87b3196d8b751ad1bcb7572c46301
MD5 7655a02cc1bcce9639b836da39f96a2e
BLAKE2b-256 791c0b28bda72c246257ab316c0b88888e459deb74b78be978903f6e9cafbf1b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a2bae6c60d354fba2630e7a24e8cb283d2fdb405c733aaa01a8c5b66511f043d
MD5 11a685914a6c8293d54c070865536ffe
BLAKE2b-256 a538a428636e8ae082de7718a08993700da2649715f3d938e6194ef20e7a85f1

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3949e2b759bdae7155af76a726a25e67deb4994a144645e88dceb80b06b86415
MD5 18bb1cf61444dd2dba5cfdbc76620d63
BLAKE2b-256 3e7c88e730684b82f87a6c678f914d1e1fd7b99b00e7657bdd1c7998326eda24

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3d300a835b662d42b155f13f8975549e73ddc18a60ab5999cb8a00f89308c84
MD5 bf0192e22b77195a3d45c3126f816415
BLAKE2b-256 a3a3ad59fbbe05681e56705d0d9b91788d0c9cfe181eb67e0332b43a98b32c1b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f5b6698bb1cdc222271140f70ca2db3c4df3ac5bfc2f7300afcb3ccc8a5ef8c
MD5 215776e70ac0d49c0e2443f0f8d9d05d
BLAKE2b-256 5a98ac8b8a1e259900616fd24c8d39e341f3be05f780b549dd07ad790465263f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f2588ea3e256463424d32189722967c26f7473bd87d2fedc48d452bd0036843
MD5 9824e21aa7304ba963619b9562716f2a
BLAKE2b-256 3402b0a3e8ff2377c901a5f1f13043e3570a6196a5f36849db1b745f6697aff3

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f208d771d231af69955162233a7e135d85357f8fde382c872755c7f4787a07b1
MD5 8c003458674fe56ffbbd1819c9e11823
BLAKE2b-256 b9bb1732366806b15b4d76953e7497971840c66062dfcd609aea24fa52e04e18

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0fbd48399487e2c5ff6b2f6ab1b69ed8ac998b8540ad9524c56f94e74a8eeab
MD5 bd2bc91349264e3e49220c2b75df0dfa
BLAKE2b-256 37580651ccb8f7714eaad01b8efddcb46d241fc32e5e189021d0d3fec4379dcf

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d080c3e99b3985eb901ed9089b01de3518b4e9008caafba7190ad4e95e7fe8f6
MD5 f96c47e71199b82a307307cc9e8fb440
BLAKE2b-256 4ad9c9daf41e60cf923185cc448ceefad17bb1e467be49396d636a80f27dce6b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4b1df0efc78c5f0ea7e6dad95eeaf56fe6ec331c1566baa2ee2d7c7deb1dcf0e
MD5 83661a91cb625b08183d5b71787e6118
BLAKE2b-256 72546960312f7541eabbc412a8c2de6e1b12eb45af1af1d78fba815dca138f21

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6fef731f4abdfccf7843c28e674d19ff52872c4623e6dcdfe5372d4d94034ebe
MD5 927d748588c6c0cfa11d3e6d36eb2ee2
BLAKE2b-256 085c2a8535a04ad0c04321180e3f31863334c0f6cd1e454accba0c6259190b9c

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 84e1fa101f9113a249ac34300330a5acbaa888fe199aee7615f8707deb6fedc7
MD5 32e449bfc7576dee4b67d25b8a693fac
BLAKE2b-256 6c29f67e7506a4f5e63f1e6fd4e129f8b3086795befad84a85819615f1da0d8a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e257a2937defd5b979e92c8a97c02ab0314149789d15582f81adbb809e47b2bb
MD5 125974b9d52328563c27579758e0deed
BLAKE2b-256 7e9930c548702688763fe64541dc7ac64024056236c557584f483ea266f1016a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06418c7433fb082dd52b3e886c2aa9fa6ca76324edb357392589a80515410a2f
MD5 5e8bb1c562d78af0a9fe7eb8b9dd26b8
BLAKE2b-256 69a86fce40af032216b5f72b2de9cf0732262917f69b104a7a0fefd409ea8916

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 48c2138d582944c054cd178f53bcb3a55be1eac13a0383c231d53890860f99d7
MD5 d16480a6cfe04fbdd354f8d4d0d76c95
BLAKE2b-256 c57d4539ece6d7b17996b7ed90b7d8360a2b3e21f327dd5a666db45c0d53cc0b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa639697d666f5683d78fba77431920704501467dba0ef19e639484b0007bc00
MD5 d543944d926b08e15b308c2eb53a790e
BLAKE2b-256 0df0ae723e5773a54d12de46d2535c62866f6651644ae87c530cdac03aed5dbd

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f03644ca1c2cdd0cb7ea392d41be642b56cce4252d1246d31fb511c9408cfcfe
MD5 22733172559e5ac600173c27db4eab73
BLAKE2b-256 5adfbd3e14b35e3b4cba5fdb5b772d9b460c065e4000a655ce4ff9a555b12ed0

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 791e1fc8151fc04bb1bac70dc576d351c6506d3b1dc10eb8f5bfde1f255fdc60
MD5 5c89e26f19b3a1333c58922eca1fb2e3
BLAKE2b-256 87627141dcb95ead20f0c5647c7b1ba8d2a0517aba23978147fd2045541f241d

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8e9a652ad5499eea12d5a95c207a0b3b679a82d8034c2a9ec2029ea5e05b419f
MD5 f673885ff0a5ff675cf48d3526713b89
BLAKE2b-256 352436cc2974aa799d5bfbd1a733e1c17fa67ff553410727f3e223ebb9a9dec1

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e79d37fa260c3fce7c06eb4df1568ef7ccc950bb20178564d3353609a3b4a12e
MD5 c859b48afc1e8ca81f4e268446ec8593
BLAKE2b-256 d2206973da85ea82dee6b1d39b26fc879e6f2a16692e7579caafebf78707b2f4

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0994cf52aaf2da554cbab296e45cad957540267c65ec450d038cf858e5328fe4
MD5 6355291d73e4f18bff7c2b322a2f26d6
BLAKE2b-256 0912b06f006ad80937cb967513c3c40b304b5372e422edced835df46f1e0d7e3

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 618c990183b0b1340e1f8877b132704224b10af9093c6d76f70a0dede2abcca1
MD5 c10be9f5f0f2989cdbbfb7fec50db0ed
BLAKE2b-256 00c251817055c7f85d55ceae0310ffc4f96a952394ff9659909ca89b9d3c72d6

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223e378bb9d9c512fa1003c17ebe30c649eb64c07769ea2b527281fb54edbc2f
MD5 88a5e7ee014c5ec54ed9c23188e9aea4
BLAKE2b-256 8bfaad38a85657b56b90a0b3c69738e9c9f8733f388885cf2c60ed41228c759c

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0d479a52671dff617477a5b7afda3cbff11d11d0ef3fb3da1849e943916df29
MD5 fc10c6e238e0ab2c59d465f889751b55
BLAKE2b-256 9e6364e2715e9546ed9a39540b002709d2988e24f52ba7bee8527611d407bf90

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 533bffd7bd50e1cf8e72db4dec3f51a2b04c42807b941898dbca2e0533c5f561
MD5 87bcee902d6f4e6def86707426157435
BLAKE2b-256 461e0f84468a953b0e9eab29e94ff0665949b4a6b44d5b521339af3761ea59bc

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 550c0a545d961606cd4e4570f103c9f794e5735658fcb52ef2a6916773be311c
MD5 ab0c5100e403fa3da1e41a990f62d04c
BLAKE2b-256 469add5d667083f4960efe50e53f841481463349fd319d3d168f8efa9e1a4c5b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8b05ea839c38583190c5f5cb8864de80101b8c825347ecd21f31bcb38cfe3986
MD5 8a4ab19c9d0c436d01c2b8e9f733804d
BLAKE2b-256 573a97c4c3573d516d050c42f519551227ada48ff8ba8a94bcf82a3cf6437165

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4dd1e632d3db71ea8e9cec2e393d8554d300ccbf5f1af502adfeeb6835e71986
MD5 a2b085b3cba0d00a412fb30f2fdf61da
BLAKE2b-256 e672d7f960646f3a8daa451997355f86345d5113fbf1d617905634cef338fb1e

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2ef7634274ed6548e84698d6f0cbada70162a3cf3c16632743723568a784a9a
MD5 50eadaad46959ccae80b79a97bb673b7
BLAKE2b-256 fd34e7a9a0683b217f73962f7753f770c9a7eef206a721bbbd6532e38dc8df15

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b08db9fc945cb3170e10813caa64622a21f920f59ff26ebc6413b700f24a2d2c
MD5 f925a46d06aae9e58c26eee3dd261f07
BLAKE2b-256 31553ebcc2e0903128425f8563d19ee10fefb12c5b32100e37e1bdd5843f3ad0

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4f5eff2de786f75206bf7309d4d5df395baa206243889e07712dd221a18e77a
MD5 e9056fc5998b461eaf118c451e972c1f
BLAKE2b-256 523087c63a12ad670f128289e63c9617e20c7e87083eec6469c6fcaf5dc3a249

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d2926f0c335c00b5390aa68b198ed59f295a48f974371c11efbe6737880f03f
MD5 1978bc22525f05d09ab9601260250998
BLAKE2b-256 46fce54e1369b8c91806d9731a04c6bc2ded544d66279e6d27b189ba394154be

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 50618689fe22469eec1748a0e79e5127a63e52d21bfd0cab15039b1f2f477c39
MD5 cf1da87527127ac3f25cffc469ad031e
BLAKE2b-256 780b73622ca7d11fb516018ca8364881020cfd884d5ec46b5c096835a45903aa

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 86f3a874374b5dbe5244a941afdf673b229e994ddeee4768eef6c52b4e63914e
MD5 a2323c04d86a52e1a562df77782804c6
BLAKE2b-256 8694e129bfaec71051fcdcea79a0825c18c5d75964930ba6686ee421c533569e

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2be32870c2b04387c5dad65a481726c80a065930d8dc8d0d1f391be3bda0223b
MD5 27c2ac9d82d00fc3bddf30e6ec086ff2
BLAKE2b-256 afdbfe119b2b61f924e08cb765dacf1d2dfb0e653b38e383584da73fb3d60a3f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54f805c84d40302829f5c2f60b6439505af22249f1287be39481cdd056caa4d0
MD5 a36a09fed5aaf48c1eb7f8e7f7ce3bdf
BLAKE2b-256 560932c979b5c58b82f7034fab0d9340ccc78c6dee607564dccbed5647a9f52b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 653d160d8c37c7537aa448c0d6d1c4e1e359fb6882e0e4385fc28133e54d2291
MD5 820e84209e9a0f10b2e9cfa451336043
BLAKE2b-256 4c101d031410fe6f4053e13e8285c340f3c2e6aaa688e1938a5d22f4d42827c9

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e697c7eb18914c1841db01ec87bde3170226f4aaf52ea371a5c6c286c2c4694
MD5 d2e3021dc55b0a7fd4398088793147ac
BLAKE2b-256 82c8cd45e25133201fc72dbad5f6aabede365eb95bde9648bcfe398a7f725e6e

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 6c501d0b441c4d4391fe3ea4ad1a90018e85acb815b3f8a0fe2fb4405bd0181b
MD5 eb3c237af549e981c64b4ab648e1f41c
BLAKE2b-256 18d2250200ade9fc18a9c784bdf791a9a92e558a409c962e6d89883ec14769bf

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d1552dd07f63ef40154de314468a89bbb45151c369dec31a40d8f9f94b97b4bd
MD5 903cfd2a16b7ae9a2917c8cbb4315adb
BLAKE2b-256 f4917f741e1fd6e8bcb3f62e1c217878ce96d9aa03b7e0c73a2d58059a059bf1

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d51e811ba96e0a3bfd97fe5b3004e3171562bf5d6e34576037f7c721222bbc6a
MD5 f80f116596cd8425845d29c30ed4b9a3
BLAKE2b-256 45eebef8d4bceb7f0c58097ef3b9ee22ccb03cf59f5d55b6e5abf63ad670e9bb

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c34b6dcac3dba65cded4982c6520e33d47d48bef859105e03a2a1493fd4570c
MD5 2108b3a75b0805b1be7276a632ad2b1a
BLAKE2b-256 d77a220ad3de706e289df2e1e4f65aab402facc53b5aec14bb11e553d3ee6bca

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2f5d77d5ffb808f158716332d9347183193e2a46abc8c8a825133ba2bfd4a57
MD5 c1c1dbc82248cd39e1804e500f44e888
BLAKE2b-256 78e458c1aa56fc85e1a1d7f03f22763a94f2aabb2fda6d8e216a213f3eb53e90

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d30cc9ea4615d1b392302f9087d9e7585e5c035f99aeea3e06f0026252a22983
MD5 341fd7e18f473c1d934c1710c3a5f62a
BLAKE2b-256 9dc5ed32859d15b45cc01d1c254b60bb947369cd981e8882d93ae5925b925e5b

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45159025c7da9dd6a401e006b4d28f8bf13315bf51117b1ca63b540d40e5fde9
MD5 5a4079be49f08d856722c9f805f55795
BLAKE2b-256 830ea89264d56aeb494c93e848189207e65483692f1edd30b5bd9deaef9cb82a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1f7334f7d2b71f4c43a2078aaf43575741339e62932694f0a7cb91af959042db
MD5 ed0b35d9292107943da7f83a464f128e
BLAKE2b-256 c821655e324c9e956912b4a85981c8b0b7fba2f9a87ba359d38250f177ede88c

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 66833e7e374c4b64ad6b35f8eb4a2f14eecee8a64b9cb545514476dcfb2f29ea
MD5 aaa150537652f2fa07268fbc2b3685f7
BLAKE2b-256 c78f9ef744102c56fe39d7a0984d2918d5eaf499f6ada310fa202f529468cd19

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 687a3cb620cae457fd93fd7e6bea8f0ec55b1baaa38570d587ed9f73be471225
MD5 f73b349526789efbd89d528ecf06241c
BLAKE2b-256 4b43ac09817bbb41bb12385a92f91777fc46be0cfc1791abae85029536568d5d

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfa77b331ab646ca25e02d602864b160f204785884e590efac76f969ae726cca
MD5 500a6194122e8df53095bb9edcdb7b46
BLAKE2b-256 28c2c857f681240069afefb7f883bac3c53ebc6ea0ce4a41fac37323a4c01656

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05e5af889dcafc82a6c02a15f6792cd5e948eab92c1c91a7d7abcef9c915e848
MD5 562de413efed8b156446c822370567c2
BLAKE2b-256 b239a85731d89c2ddb358608fcbd9544b14e0a70907119f9ab0a23ae4b813857

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a8284ea2efd7529ed94294335898f489e580730cea299245f84704834c627fb
MD5 808b4709d05ab336864fdca1350bc4ad
BLAKE2b-256 a92fdce9fc3a1b29342cf19fa2709a109cf1d471a840b47b7ed19d159b0dd4f4

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 0c48449161490c52287b90c23cc70ff92b61cf9381b905eea0f7c7f7adb7848e
MD5 d6dd45f3af61244143882a21b8b090ed
BLAKE2b-256 5539e628549b06a50f0c961b822ed6d27ba8678daa3b9c9d063b7248d2456b0a

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: djc_core-1.2.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.11.5

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c5dace9d2fdf7cb042b29540f361a6c9c96f18db339cbceb7a0cac01a3a35a25
MD5 dc1266cfb427e493d144c2acf7dce5c2
BLAKE2b-256 3e8eaffa43861cbcda09f81685639dc990a85f732ce9ba2412727642492212ea

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93d9000fbaad95ae3f20fbb64da2e607770f41a2723f1eed567755cd6a58cccb
MD5 0097a99e93eee10126cca24ea2da920d
BLAKE2b-256 d359243d1e8f81d2c5cf1da45fd25a2162e2134ac42b82d38bc0a9867e0d6c33

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 531a491bbf844a14f76ab450cac08da82f8e526102527e122c4f7b13e86553d8
MD5 6587c35d9eac1d09b9cd06e08e6b997a
BLAKE2b-256 80c07013843de52a0cc80ad4cb4d132b97c2567fdd2da9b0ce9efd6941f5e495

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 088762a5b824ad0493e9bfb52fed11edfad8bcdc38685e9eaf2625a4939a1406
MD5 ec4dd36bc9209de39483169ea263eb7c
BLAKE2b-256 813b4d32e8e4d209ffe11d44cc7f6d750300de7e5759bc4296460de5b5b2793f

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4ff78a9b3f5931824f47db244e7c9560d5517ceb0a449c20308c0b367e66601e
MD5 57ed4ac6230bcf257fea233f20d4471c
BLAKE2b-256 73a46816ed79111b128b3f71995c47f176bf8f1d97818a4061f3952d219717c7

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40103cf17c050d18be7b1eb18f294c5b918fe69bfcb43e7050ee50cd23e5300d
MD5 7f1d400e389e2d514ff93dfe5e7ec6b5
BLAKE2b-256 addccc62fe698498ba473ee33b5057c8f6c7e439ba4ab392005d15b786b25095

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fcab0abc2369c649ed14650dc4d71420b2b066bbc67a876f7ec1a28dc0b6d143
MD5 a44f6aab613df29664bbba8db4c0608a
BLAKE2b-256 95778197ade65593b63489249ab0048835aef18c03139162edfff0d6c1963b1c

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec5b409dc5e57449d7b2e416dea2551a6ef9924d526fb81b973bd68a9dab37fb
MD5 6d13efb5f4be78cefb81aeb3fa09eda7
BLAKE2b-256 db83b6914dd7c3042d623f5112638b1579eb1a85cac243ba62994c890464a109

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17db18f0514a7d7de7faef250156fefb39e2a895a0e4aef91e18e72f87771a29
MD5 3e0996814f550942125181ea2c2ecc61
BLAKE2b-256 d4db90b615213fcda450bf1b74a77b9861cf60b35e4a974ec30f5773f3c61d47

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00199163f34edf37228fd16f7fae24cc8d6b8cdaec9e099c8c7921db712a936c
MD5 2f886d72240f020e6c0ba96e2047a5dd
BLAKE2b-256 147c45960badc0c1a119cb25c5b2f57b76b51cc8f4e6a29640c50e8b11e729e7

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 659abd4f7034ba12475028481a11f9765dd5cd37f9d2b12aea4641cb1553fb49
MD5 f5d095a72461cc0e557256b191e90db4
BLAKE2b-256 50b478df1c12d2f36a90c3dd88c6ff7b4c81537432161f4597801f01327a5e45

See more details on using hashes here.

File details

Details for the file djc_core-1.2.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for djc_core-1.2.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 098bfea038216e3cc42d2805aea67feffa71a8a3534567acb725bce3c5bb0992
MD5 983c4abafe14f0b2f1275f7cf4a3f4c6
BLAKE2b-256 cde6250efcda7f9a366f13b5c71c281ad1084b6e0126070a8147a8f0e9b4439c

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