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.0.tar.gz (935.1 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (7.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314t-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

djc_core-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (7.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djc_core-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

djc_core-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

djc_core-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (7.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djc_core-1.2.0-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.0-cp313-cp313t-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

djc_core-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

djc_core-1.2.0-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.0-cp313-cp313-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

djc_core-1.2.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core-1.2.0-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.0-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

djc_core-1.2.0-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.0-cp312-cp312-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djc_core-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djc_core-1.2.0-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.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (7.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

djc_core-1.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core-1.2.0-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.0-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

djc_core-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

djc_core-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (7.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core-1.2.0-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.0-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

djc_core-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djc_core-1.2.0-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.0-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

djc_core-1.2.0-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.0-cp39-cp39-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

djc_core-1.2.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

djc_core-1.2.0-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.0-cp38-cp38-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

djc_core-1.2.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for djc_core-1.2.0.tar.gz
Algorithm Hash digest
SHA256 979b3cb035b940ddba6fe01701deb037b6a17e85fd493ec1868ce239416bc279
MD5 3e95bdbe91463bab90c72fb3ffd5b5ac
BLAKE2b-256 277a4f4f0ba897201baae1e9bddb76e0880c315c5127149e9f101e10b7ed826c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ebedc597886411a2b6e5567ee5fae91ae59011433633499660a1ac99da39572
MD5 30fb052f38e0aff5d16ca25c8348c6d7
BLAKE2b-256 bef59b834717a3760368f463489b81413bc1e290217f7991f87af03991a07871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb74459dcc3ef55804a6aaac2350c4b7f5e910cadd1e228fc52025adf1d9fcff
MD5 a3230369d2d4f9608b5cae64e5ad75cc
BLAKE2b-256 5b21713b50029216b47c9ad7a0f4d8ee8ba58b16f79b90ea75597a293ebad9f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c227941f54e69a4612f771f264eb513a6533117fc1e6e1683bd4806b7c1da935
MD5 f45358efc0f53aac14262f372fade4f6
BLAKE2b-256 53e60493cf490ae66fb88af3064a3caa64f51ff248cd47a80f7b1a5d27e849cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4977994f120a52e52e2f3741224860d436be0cc9b2c49baa751bc0bc3ac94f62
MD5 ebc84e197d362975e2cf53850fbc3ba3
BLAKE2b-256 bb9f6a6266044b3599de6b52df9e69649c659fd6408c0a93277352f80d8c306e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d42db95b31fa690ababd411eb011d651a2bdf1f43c674988caf44bddf64bbc
MD5 3af16f5e9ba65e6c07e2ecc821692077
BLAKE2b-256 e8e6249c70a869b39613340c8e7e612bd04afa4fd0afd5a85ee2c5e83dbd6d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fe0c140bf900ab75e54c1f77417ac3e7871e725cca12d0db7e3dd82483a10a6
MD5 e902a6ebe662b730453e88c33422adfb
BLAKE2b-256 24e76c563c6671b9396070a58f9812d22cc6298cd40a51090f6b8b72f0305e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57ac40d577420d5cabd15967b3144960bec128d8c6638a7e8392c82b15b92914
MD5 b490098ce1aabe1da6a460d28094cc41
BLAKE2b-256 a4eff7e057a862280d78511ff7b1b6d6935d556ecff21e3dbcff1e79bf27fef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0d05c56b4f7d1b972403346e33f8c996b8617c7de1dacd943fa4218b95d55153
MD5 56139f03a4e4159204b0f2e64b29906d
BLAKE2b-256 ae9d1a46af95562b5b83d13cd43598167e6738c81723c07584779a82432fb1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e0d707ed7d53ae8ba9b768ef3c9621b0a41f8ab9b0b0c93c76d661bc9bde672
MD5 6417b2a3b5077552931c084ad998b8fb
BLAKE2b-256 75bceab1fb2fe37eac2e1402a4360be26a0612779123bcb6bd06e6620666ec41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc94f4297b3b1d699ddcbef8b416e76a93cbcbc0b3372c5f4aea861c1b6f342a
MD5 484c617ad887a5f64140180640dbbace
BLAKE2b-256 7ddd7378331a090fc4bea7726cbd62afd46d372af1af78d37341d65b53b96e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 59fe515788b62f4f67f0240600f60d366d984e9471d8a3fce5792f4bb98d731d
MD5 844b49126de8074c291c04cb056e1cf7
BLAKE2b-256 3d1a7cd684091423b8de094be149ca90eb36b717ffda11ca9daa540883f63acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 08c946268bbe3d8158462b1c651ea0e8b9ad3242f94a84b013bbbfc688817e99
MD5 325f6407601760e8e9c9fcfcadc3a0e0
BLAKE2b-256 a0285f8b57f5d92a6b92d140f474bd260a3c8edb103c4fd364dd73c5e86a62a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a506472c022e8973ef9756d706b44e2405851f1340f5c0d437349b4158899418
MD5 f2501ac13ff1b9cc4ea9712f90dd0dec
BLAKE2b-256 e7425b054357d76413eaa97064976f2086860c3511c10c1ae7f82f24818f6d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b0fea977c02dc82314363a39eb9e2d71de449ec067c2b4777c8e2b34f25682b
MD5 f2f40ef74519be7331383264a4dd1e46
BLAKE2b-256 e40510f80f8a7b34da3859f3f9c614113ef477c638b7db21d90820abbad4e53b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4e9582711a2066fa0fd12bb35279ab9e38bd4e8ebdae0fb605bc94a24da877a1
MD5 60c8353c60b04ae605b6f8b7735d6d89
BLAKE2b-256 583ec41e22ca7a4cde79311831fb094f2876a2669f095d8d08c54792b8ec508b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98e376fa293193e94cfd8228ddaa0331ec04c7f9fef97931de1018961e5191b8
MD5 19e3e387c1e8b78507fbd3dd7a3a5821
BLAKE2b-256 80fb3d5cfb5f0b5b2dce3e1f87c6e3f0b1741479b636510788002e316c451014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1c5ee9aa35165710905fa30f4f4996e4435a4029e59f0fc1209efb97a452e345
MD5 4159952da1f97ce93a68a7d35656cb54
BLAKE2b-256 c3fe83e74af37ad637768e8f5a1dbf1d9e1cc5429e806bf94367b3c42be229b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d0c69c69e77e28cabf914fcee29dfebc4ca967151a638655537799becd69f35
MD5 0ab7bacbe4ffc9f6df76930172d88062
BLAKE2b-256 c06a0616f1ad8a250c1b7123dc0700e8a7b90af19f8d8ebf8bfe24d6208a6009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d6cada696da543acfe42655c75124af570789d3704968a0fab064dc24f5bfede
MD5 ffdc1636bd912a86f36eb3e451cf55f6
BLAKE2b-256 c7b00cc0505f70488355551ccfd7188a8ae60729a9ca980cf77140e26673aab8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6762236befb8694b2ff2ad0a2728e1411259af00333aaba32d17a5eaa1ba3e76
MD5 7439f0c92f6b9be017db82e01f1bb965
BLAKE2b-256 9a69489b754325a917a98d0f89427df7fcb26006facf93225a5de11a053071aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b638264d2fc4329da9c2409ed2a5b9b1d71fd5c3de88bc8bf0fc527762bc7177
MD5 79fdeb0d0d8c2f0c39cf1872117d2ab1
BLAKE2b-256 eb65a49a3161d51fd727d5671063d51066f3d2c6a65a666bb754df9bf6931f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1b6d8b74151c598e37e0f23b673e19d108d0d39807bda746621fe705b31d01c
MD5 e37acd48cc3cf5dfabf519c53b464669
BLAKE2b-256 9f4cc8e4955d4256780f463f8b38f849cb80ac127fc6ab29660e6f92e29e659b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2033d906bbdca9aee6636ecd3699674345be90afd18e43de601ff87f6f48cc9
MD5 9b51cc9eeca7293d8afd680036f9ddc9
BLAKE2b-256 839bf33d1a2d9814bf1c0bbe33ddd065ff56e07a16e949b5295a7e7ea3986b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0b71a53b3c3dfbf59355380e73e2f405b8f955d14c5c8817bb1f675a49bca9f
MD5 bdef1d6a81e1407fb166e20ace8b82bd
BLAKE2b-256 09b23540bf3f3584d3484304a0880e06f9529f9ae48b225c2757d26cd87e3392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc52f637bc91edefd88076c98ad8f1172b52572832b22f588bf07dbd823865f7
MD5 b31c447a37b5861ed66ec576eaf87172
BLAKE2b-256 5b78c5329303ca01fee577a2a2949e87c8027a74fc5b6ab093e4e8ad10fe4081

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9329598c5b79212ad0b13091e912199889c506e5e55d40009dfa114f725aa180
MD5 797b6f41f5151f1a1eb0e58ae6cf0614
BLAKE2b-256 b73ae49cb1d58306f80769a2b64fd057a44863e3b75be0fcc6c4ea789adfa4c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f0f775773b3da0446e8ec9273ee5985753d90e799e8d64ea6a995747118715f
MD5 f64a0ac390599ee84adc814f14dbf265
BLAKE2b-256 d61b6b288665c25bab1d36b11a479ae74ec8b21075746fb37bd36ace66552de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9253b25e2975ece0870468f8e49019442ce43daf1824b6624c9e32474a6a2398
MD5 c342b60baa09598fec57c69fe933afa9
BLAKE2b-256 d8e85fe4f7d301fd6ea3424d43edb95b340aaf1cc3ed8c7a2ba547e029295169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1ade86c2920098e99a09c7331069b4bfd886c366c29f5dd9ad787c4bbe11d96
MD5 ed58e4d86302fcd4c8f7d652edcaaebd
BLAKE2b-256 20ef3163cd9227e77681fb2f1768e7119a3032eb9f78dc0419b75cb0e32ec4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4cba20515db2ae26557c34201902f51a9b105a1ee52a3c0ff1bfa817b142ef4a
MD5 d7554fc5daa2938ed6e469b711ae1522
BLAKE2b-256 ebc1c4c78f9ae4d77b592160944204ed6437341639dd7f76da69efe676683a38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7a4ecc0ef3d6f5903f9d6255835c64ccf83239ae6500380cb0dd093efc7bd09
MD5 990a213db7cc8ffbac06833f3208b5dd
BLAKE2b-256 ee2220afb3fed2144ec1f76ce3ea50583b996e2abfd9ce53c41217ae5c4b141f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6cff3a3aec2aadb62474784d3b41c989c3361714a9e7e5d5510e954b0717b61
MD5 dc5bf9f3c37f01115928880079dd7a87
BLAKE2b-256 eaf9b0713afec7a5cc19ccace2c8bc04b1560c972f5eb6404a318c28692ad103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41d63feb45989d090568079a397b0baafe2b0aa2d6716dd15d805d6767d5b7c3
MD5 0e9e548b161b0abb0f384a5d05ca1be3
BLAKE2b-256 760ee69cdc017a5d7796d7627e09f8bceec5cdfd260a0410581c64ab17bb2268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b36c38f01438e2d45af97b76231cc0882110386731c58d2ca928298a685d0218
MD5 8256ce104215cfe4b1274f61b9fe622f
BLAKE2b-256 74fc352cdf48db9855606d1bd110302fe21bfdeb908ee073aa45332f146ee68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 412f1bec1e65f714bd4f727270fe7e6509e4bf60aca6fa8e2af5c3791742f1d9
MD5 74db29994a16cc01ca846eced4223c17
BLAKE2b-256 eea1c711364a1d68ad494660fbbe13197845a5d24ffe18a9bf0f301fe8f5a6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a55def514bf7d4adc844538f4825170562071f7d888a1fa2ff2958eb2da765e2
MD5 8d47755c86f325f46d0573d6a570d12f
BLAKE2b-256 bb50d5f99724e23802e46b947f7ecb70ea88bc44ff15d54aae361021b33d62b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42b2ccd0dac79657adb8f39b927e3c2115f07fee16a7bb05e187f8e665f74446
MD5 acaebf8d54ce82c7e6d435e38d6dba59
BLAKE2b-256 e720d901ce2d5de324c7ef1b1b9ea85852af341a0132bcfa55587c969d2715f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebe3395d36d4cda73c06a72c6cce84f24183ce8ee7951a74c04a4a5ff9e8c25f
MD5 e2deca98aa474003cfa51b9e8f540679
BLAKE2b-256 8c9cc62871ada108ddd3ba25788dfa43f2dacf5b664ba3700398241d0d78c473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dcf6f88e030b491b83ba65f7a087326394784b0f2f26f96af3de3e1a5e0892f1
MD5 f321c6197dae4db97d77dd21e4e9d38a
BLAKE2b-256 96a95aee368b7d0c8e11d768a490c8ec48fa47314fa646ab477bfd62bfaf57e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dceafbd82b5879d1bddce9e8832b232643778f7049178702ddf74faf518446f3
MD5 a3ea1062075c49b372df5f9db6f25cb4
BLAKE2b-256 c1a9e1a9569cab332828636b13bdfb65b921855ed107754bc1e11cf2aa60dc1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8d1dfd9a1557b1fe3889d6dfc686603ff58129d5ec8b586fa34a2e703db976c
MD5 85ac3046978fb931b96113978aa24647
BLAKE2b-256 ca9e189991a99abaabcbe6e26813cb591304303ed271042498aa42b53781a627

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee24e40398e941655a517c1962e0a2be00657d973aaddf1cf6b0a92561f8950d
MD5 a04691b3eea875d957ddfe9e34ca5e21
BLAKE2b-256 6e9e0a2977cbe936131aab1133a4e0dc650951ed693d4ed5ad05c9971525271c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2aa0dd0c7d76be19add86292dfa376630835a96b3abfc03dc84a2ca2dde60fee
MD5 bb4a0202418bf76b309fee455d1dd8b2
BLAKE2b-256 f3c3e4b7a9c8edfc302f46bd2598deaebd141c51756cbd280c2969c1f56b97e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b96023913eaea61d210836ee3e5eceabeee096bc30b8159ed1ceb69460377736
MD5 e68cbc48f3d24f30a528b2eb737e434a
BLAKE2b-256 2b8268ad8a477153f4058f7452a3b4e1a1c6b9d9a3cd75f38f39e0994fd97dbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 354a705c248bdd59477d640f71214c76179fd9b56a543b3b9c8a2736357c5bec
MD5 61d817f2ed17861952ff06c6b38db7ed
BLAKE2b-256 e0e92fb572de67948733883e6de145fcb5cd9afd6e1984550b2a17d00a2de494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc649f35b113eb7ab1fbee868d44663320dae46d3029c2b1c962ba51332e7f3b
MD5 56da5108d4c5cfa4d345fcd0426199fa
BLAKE2b-256 58e0dd2051be7ffcb88a202fdc031e6ac82aededa3fb296aabd5a050e480bced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c2c63663f2e3de4988268b3038cd6663372d41b39e4750aef9b0a11429953e7
MD5 bfb8895c30552f5eb5752ff546280284
BLAKE2b-256 01aa78008cca414f19086e2cec59b6dff1281bdd841528b939dcbaa434848a65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29fe69306bd382b4d31e9ace077ad83c676dbd5dab7b197944e32fff694dc8a6
MD5 c9b0cd1334f5a7fb54ca0766c2dbb142
BLAKE2b-256 5f4fb3df0532b028df127a1318918d801611c7e068e23b5fbd486b1e8995fa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d27b46ada20847f05de373816d47644911f53b62b83435fd6eea5a26a6857e6a
MD5 d03ad3a3908606ab66e3cae658b5cd1b
BLAKE2b-256 3c04dd003e41d335481da04065fd27426e8127bbcc46eacc771b7b42157c09c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11496ac13f68ed11307154130be10c424aacfd9c3e1d69177016929afa9f1693
MD5 c67fb5840805a7d7e59c60e4cdb16bd7
BLAKE2b-256 2d6415e372d1593df304abf6a528483875516542e643fadbc112875b76c54dd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b29e9d980dd317e513daee16bd334f76fea8a7a6129f16a49abb8d06d3e078d2
MD5 40e1221f46ff1afbdbc8db5f3719871f
BLAKE2b-256 195589b912e84bcc15902511978fb544815fb9913b622b262b83fa55c0263589

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d43408e57e5bb1f8ad8decf6e58eb48f95b3ce96b0095a4a752c3f371ac3cb1
MD5 e4acfe592478369f91c2c4754716191e
BLAKE2b-256 335872e0bb27699291493458ef2bf38ffd8bc948a63643033475e7f750dd06af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c9f713c33ce06f4e868cd435f0a8142e634f1715c555eb8df66168a4053dc82
MD5 7ac07fb3e144dac6a1c65674f31b0550
BLAKE2b-256 a634df70a4684fe21541afb651c193fb7f4a1fddb100a9a405ef2029bf0abacd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3cdaf118144064e6b4088e1095ddecb73c029046bd6d60e1e4fbeb21e3552f6
MD5 ad0d793f0cb55a72e93f34b1c9379f36
BLAKE2b-256 c53647a346d3da93bb05d49ebfabfd991cc0013d1da1e52b2b4dc5de2af55c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c4ef5aeb1249a6422f7f321290d783423be579532f46c5f5e703f53c368f7f8c
MD5 9fb48270d1087223d37f63ef6da1128e
BLAKE2b-256 5ff4ed81c4c30d18ca902bb4b8402745329b8b9e21136b8719932b6a6326f1f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7ef1bb34e4ed0fbccc53cef4ec4df8a4ea3053d6cc3cd07c26b7896bdf6bbcb1
MD5 a9824850e9cedb6922a5b939e7cb59f3
BLAKE2b-256 162c8a340e84ebaa272f0f288dd17ab052075bde8ec81509702ecf0508639ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f047536a0689a306695a52c7fb52e96be2f088ae0b2aa7f0c52499b0efde675
MD5 c0ecda9be02e386e2ff81506aaa7f78c
BLAKE2b-256 4031bde9db23bdda030b15ca65e4a518d149dfb434918e42c9514d4c7be508aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e83c6160b6125c4ffd0df7242a61623587f983c607615e5228fe3149f85b2704
MD5 d2e707b3b962774ad55a285b093c5a49
BLAKE2b-256 92f9853a587ed6737cd3cac2faed39c7d4efbd6fb127d93f2b8d46c24c245f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1ec2ad35b7bc8aaa9215ebdbdd24aacb5d9cc9c15cd914c883d6a4ad4198ed3c
MD5 fcc21c7c36a626f916af05ae4ccf3052
BLAKE2b-256 13376aa44383f4073f067340993b80cb1f80696eaa61bd3c820376dc7c8d3890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f97185b70b2cc4e558139b3cca3dc01079955f3656280b9418780bc914a23f7e
MD5 1ed098ec7e2f40f8d77e003f4b1ce45f
BLAKE2b-256 f2051e1678ad7bc4c0d84246ca71b72cd2c91e9d93cc961477888f598bbb27c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f4645a336faeb16cc644b641007625b1924bf6cec667b172e84e3751767cdb4
MD5 3b5a640530cbb524d36e37bcee42f13d
BLAKE2b-256 58a9e4b14ee4fdd01d27163368d4a787fdd8ab519372a6201f70c0fe6ddab877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60c1be6f2615abfc9362776e0812392e99915a9c73e8de52d79777fe843d0c1f
MD5 e45409fc6a640291e0fe6a91a9ba8d09
BLAKE2b-256 afb980c30ad40503eae2edeaeb7936bf709d9d860a697869c2026470ab57f997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4be915824519808395cf56d9e502e8604ca42dfc5115a677da897c6205360669
MD5 e033ddb928a330063b8cd23621cca13d
BLAKE2b-256 aed45dca5658b4c2803287341fb9bf051af85ae7f48fdbcd97fc27bd15a38295

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5bd1ecd8add045d9b5f9679a121b190869b1abe3755c76511fdea0d43bef8b1
MD5 6901cca856d721ecfc56dbb6fc34e9e3
BLAKE2b-256 1b6d87da650da2ff5d70fbb41f22960232b5674a27f26b602d8dd19ecc4870ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd20b8bdeb971ef8490bd36c7ba4a25aef3d53c81df9108af3cabf434efa0e72
MD5 012c1752db50bf66a7172d7927addf92
BLAKE2b-256 8d75c8010ab706a220ff47e4258c4fe5866c864d21263cc23ca2c314b2956056

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5128653018ac089bd9c117e5c84327f5755f13792c2ee3f92c25b0352e7b47ad
MD5 af7f31b136f04a9775354b4663decb80
BLAKE2b-256 831d80e99c9804d06aac4dcd944a4651a609aa07210c657cd80d1c756b4a8353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c29df112ee24ed11bb7dd4d0d2617023edfbf9b9647d0be676ddf2409315787f
MD5 ebe433e55d2d9009e1f45db7717609cc
BLAKE2b-256 3be79e475224b5d2bc3dfb7fe2542d0409657e6313ec1d817a4cc09894ed63f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e55566cc59055e56d12cf7e696a85fcd4a5cf6d4e751e48fd456195e7ac7fab
MD5 5b7cf0a28f6da655d6458530bfe20006
BLAKE2b-256 7f5f8f702c3edd75277b0e89532daabaeacc802833b8c4d7d10d746ade182b76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a66270e55d42201a55f7f1fb4c85b76bcd48f42b0f0aafa85e5be79753751ad6
MD5 f0361d3d98d1e060f3c5cb12dcb39c3d
BLAKE2b-256 ece42d55e039a0f828099fa95f9c8fd3af400aff28f01a4c992a2a1e15be7266

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 172a881871f9e0507f3a32b593c6faa1a9cd470035128f1f18458f004a302d6c
MD5 bfb3330c9b1b9248eb5dbecee67808c0
BLAKE2b-256 e0c237a1ca89bdc4fd1105cbe2aeeda717da6213cd67f42fe44bbcf8741a193b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbae993339445d687a181280259ae2e1c8ee92d1b15916a2b257819239bcc7c4
MD5 4c8e3c8c4c4dd71fca98b9fd90324eff
BLAKE2b-256 bce27a494f6aa78365edbbb733352651e6f19c3162bb0d025a95662c8aae124e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 38538724b9fd45073b1c0d4901b3ea253f9ba67b64853b84d8d4aca2bbd89c86
MD5 99b1895994bb4f820ff0e3a503cc4ad4
BLAKE2b-256 4b50be4752b7410e28532c8533f808a7bbb64f75befc41ca257f18d5eb897dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ecc65f50b1b2863a9f619906a7f49050fabed4a46eaa1bd96ce114d78db4195
MD5 4f75b9501ce022a0f7b6e9df0a0527b0
BLAKE2b-256 a3c96820ffd9860c98c42a97e2cf6be1854a73fc3e9e15fc9c8d567a6e0eea7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfb79006bce8becdd026c59e4b0da8fc918f606022012c5ee3ebd20cb809f63e
MD5 5090047d393703754fe1df8d21a590e3
BLAKE2b-256 335b064933e4ae6ea92efa8edd83eb71834658a546b7140991e4d6c0a449517f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4980d33161cda588f5f9e5543d2580b30198bae4db39b43721dfb8fd53be1034
MD5 264073a4ad73b7924aaea80d649ad4ac
BLAKE2b-256 274efa78b3634d9a5b818533069db5e585e169b2702be2c3e473739fb96ab0d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc76e06cdc3d0d12ec4de294795cfa7b5a5d2770b9a7b0b0616a6ceaa37f8350
MD5 08a9b5fda93b8ae78be0905ca21d5113
BLAKE2b-256 21e03655fa378aa5210078145041ba06b1f0a7520a838b5fec9752a3cb741a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12ed7b0a4a051147e11fc38331eb3869b465c592214d1597344668b45e54a639
MD5 58c91ce4f2ac200011d6be25068304a9
BLAKE2b-256 df16c02ba976169973d481cf668163d0ef8e99ff8358803954278b10ff09f0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7645b49deb78a70727722e36a237199c6ab4a7dfd9de58b0342a97fd128e778c
MD5 74c4876c374139a5b1e9d16d12a92ec8
BLAKE2b-256 66b07da3a33abab1ef42f5e7fe5bd3c99463ef6a17b41e22903025ef8e55984d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2fda65d4655ef022ea6e08f24a2fd8bf03c5e990c5d748e1262da3051821a8d
MD5 31a3a718ac3722e856ceee965dcbee9d
BLAKE2b-256 5b5b213f2efaff9dd2fa8975eab0c48069f3236bee82fc43f0ee198062f92875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3369b5cbdda595ead4b7b4f25d8c1142d4bfe5f8c6927216800994b735111fb
MD5 887854578fb1a665c4e02a30d76e6ad4
BLAKE2b-256 197dd176ac222c6276443a41b5970a1da6b711e118da0cd4ff56eea185b16478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b845cb23b28ed1c120fc63d2661a6683e622806d404b10f0694b24eda9374d68
MD5 bdece908b3082ca9adc58a693c3eecc8
BLAKE2b-256 0b0ef73fa22b6f4d67e88641d34598de5d0339442823286bedd2e84e398bce46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0aed737b2c4af7e63603bdd1945125c13e23b0d2e83b1a860c52ad71782940e
MD5 61d983ae087be9fa2a2b59ac1b7ab4f0
BLAKE2b-256 84c2b48d05a3a7b0159dc8a4b518dd8ac027958f3207f6d11be10608483deae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 feeb3dc5548461c360f180fc2c79b12b06fa21c90e61e4a40cc10db974657914
MD5 0186c27041441d1e94f0323ae95a5a27
BLAKE2b-256 c967bec0a2cc62e7aa876254416703f0f25d84e836190c5dab3dc4a30ddebad5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a249558932c81b8b97a814c57cd9e09e03d439d4b6634f72df33fb27adf73a10
MD5 d920b0d2f6822bf46bbadafce5531337
BLAKE2b-256 2862fcc7e79659d096cf24eeb095882f11c40d3de0ca893aa2e0165563b6605e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21e44232be1644020a7c591c90e7b016e85d76890c6dc8ed4d493b889b91e472
MD5 1268fa4aada9bf81eb517accab2588fe
BLAKE2b-256 c21745b22e9cfa15cd56e26acccaaf3b96a1defcfc483e02be6ede82117461b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 10db85639aba58925101731f2887907258b40a0d9574e78c76b5e38173d88a4d
MD5 0d0537690da170fec95602f1a829fbde
BLAKE2b-256 a9947a08b5e4fda8c11f159d163876b5f2ab9996622bb541b7ca964ea44b0bf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b14e54997c41b67894ddf9c60ff891e40e0335c8fc35df5bf3c7a975fc6991b6
MD5 c11c1c24924fad241ad7c6dab07b2c5d
BLAKE2b-256 42666faea911ec5e6d6d9277a43afd2e31339b500750f52c08529c7a6ff776bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57ca965fdc47b20414cd75aed9d0899383f39e8de9094199be55ec8b8c4f2307
MD5 28ddcf78fb7161f3149d02b4173df486
BLAKE2b-256 c88a9ce33870f7261d7ed0602703d27a61cb6b951b12679aaf39e20d9b28a018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93882b433efdbc1b89a9eae6774912b18ce2e35c864207ac7e22ba3673b2e9cb
MD5 09dff03d1a5dfa9c1fe2151c15a828d9
BLAKE2b-256 649ceb791647d9eb1a9227922811ecf832f4f78f553c34e9d177a511544e375b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03ea955cdfc7e3c8c4c1a563a2f05b21420ec0b1e1afae8ec435beebf9c86a52
MD5 c02ecdb0efe67635355a4b212fd8e0e3
BLAKE2b-256 bc1361158434a870bb3d3b76562bf4906dc424e605e3d8024030259e73d7a5fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1d381b2ac89a74dd7e8912c100d12057ce5ae4a96098880a92257b376eda705
MD5 a166b096645606569ccc216baf43e1e5
BLAKE2b-256 13a692688b3d145c3157eeef7d5678d8b0680c3e8b635ae1fc8d999dcf17f978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d76e7b3894724f593b3b6a9bc8757e72b9ec938995d54d55c010004cccdf36b2
MD5 cfdbe2ea437dcfc1956e4c2ef8c3fa0d
BLAKE2b-256 7ee643916b33812577a86fe2718d0fe39c380832297dc72f9ae05593300954c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c95c8853575825fe7f6cc8ceb6f79ab66363747a4ee358504161eccc67b41ea
MD5 893f59cd8ad945f142da677ed67ae7de
BLAKE2b-256 6cef22ccfb134a2257c29a122b02caa13a52332e1ff538f2c3008dc81dbca614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac482ec8ae62ce34e1c3006ef9cb95900503a3f456564580c94c4473d5b7797c
MD5 f639b8c0a33438e455f6bd1d93f525be
BLAKE2b-256 0a52e7fffccbe9f38c815658bb680d8097432c298e29b1049954396adb9dadd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f006f7a976071026d2f78fedcd4d0d4addcb3087ee4b4af45c1062170febd893
MD5 7b9714bd5e48e1b14613b44c0050f8f5
BLAKE2b-256 4ee2a6827eeac98035a5c2e6fde60d46973bbfd935c89049e3f2b97e4a630a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bd4ae95e50928457f4756ea5c5c7680baecb29f37396d02ea70b7bd10a7422a
MD5 889b1092acda87898edf13b29593df91
BLAKE2b-256 211ba6a4d7ff7a5e60fe002711a9fe8c390050b47e8ab9b3effeb6dc92f8c7be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 36c4d5f2a5d21db6201eeb6bffe46dca93546e7eb57fdb32e51c850849722987
MD5 6d30a336e871bd75ae131bbbe2e72b81
BLAKE2b-256 cc725824095b5a0cfaf329369594a7ee21d7357addea2cff3256b7760c3daf0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2c094bf809164f0c1fb8e95d4bb500702fb2882d81af6aa29b7d3396727e6938
MD5 e555168479bba9e05a7cba631ac32740
BLAKE2b-256 5706a4d347c7df4b390d1b0ad25f2da54488d3ca583944b2589833f286ffa85b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 768ebb3a65660c8561b83e5f064616999b013bb1247a9c413df2fda2b253d0af
MD5 63519256e8e02df5170c097dc87954da
BLAKE2b-256 c1e16df33113e751154e8464b621991c3f97f91307345ea2ac7b36c3c9922fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d740472d763ed659fae469d46a9d4e07a0bcbc0923bd632ba30a4057f1322af9
MD5 1654c091558423cf8a13fd301258e295
BLAKE2b-256 acdba8f5f62345921e1b9c92b13d32b894f51c0afbd6c744ff40aa58c6e127df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9fc569a8c48be3c2c35c994869ed5f5343be8f7d61bd30a013a0959996acb30b
MD5 ee2daf8e49b569c7c224a6cd0db6b7e1
BLAKE2b-256 9ff4b5d4a2996d0310f5136f4aedb8bda575f25c22fc57fa7e2557a705275572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7adedd7d73861098e9beb755d98750e66eeae99c5a1a3160361dd48883aa333e
MD5 4fc60a0f1ffac80fd97424e27838abbb
BLAKE2b-256 6e866cc73b4a56c57a163eb660ac5af8115d31ef9d96ba23eea8d12226337d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0bd258f50b3c5850ab4899eda8086e582b412e70342a8fd82ab2e701f311d0d
MD5 5781f7c82a9388bb7bfbad7e8f85be06
BLAKE2b-256 0b8a5bad3a82e34aeae1748e66516ba69be69cb0d329fa9407339a9a5c5f9236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc4a31ba8c6e7e4dc2a6614c3ce2cfc0e7bd21000488b67037dfcd8f4c7bf5c4
MD5 aef0e12c51fbb0fbb073eaf2fe6e12af
BLAKE2b-256 3a2841a9467215a009153fd612aebfda6051884a91154ed6a03a7a788ae8b74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d3dd2d0d11ad3d9bd89a9b4fd998c042bb55d478c50a7fb585d6bb589b36704
MD5 e6e350ab179e7d5bc49e6d36849a9989
BLAKE2b-256 a2e5ffbd0c44d833c95685691bf9242c2de1c45344011cd9f2b735e5a28700ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8f3005d39005b09f5aa52756af50a1b66ba77c66e765eb743921c4bc3ac0f9b
MD5 4b74f6cd05bab7ddcc4723a5d846d6bc
BLAKE2b-256 f3c8de73c2c85753ebeab2ee428366ee00a011f800b518731fe2d6920282ade5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb72540da9ab17572244d83fdc584d5dab98eb8dedac8c394da6a516b5e779d4
MD5 51fdeab3c369267a55d5706f1ec65f67
BLAKE2b-256 e2648d8711f2d0d2756ee3e47cfdb419dc179c056924cc139d3798eabbda700b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9e08b7a43a422f46b1700f9db8d9ae499c09eb145af866451b837a4b69b7975
MD5 226c8d30df20fe6d0cd9882a3452bcab
BLAKE2b-256 25a46e4fc68e4244bb2d92e8f8ac39e6e61df1a7a65745cd01f9109788b7d0f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bcb0d0e0e8bb6335486437223bd1281f281356acc2aa1f6585d3c80247b0a2df
MD5 9f6c9221f63fa96cdde55380c9069cb1
BLAKE2b-256 382736bd3f8c829eb8977abc290ce41c6bf28d50a0cfc3aa99d5faf477228c96

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7172fe54bfa1ff9ea6e7766b8747ae3b21cabef5c30d0c9bc8dbf3285d2abc63
MD5 29664b577e191154a797878da61a2c84
BLAKE2b-256 48e6a6bddde3f59b902d86347fc41900065557befbe5271e3d372a72c6559c88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 0aadff6e634bdb47914a32d815374e90b9c3623d955ce7bb6b75067f6cc83f90
MD5 9092a5f55c043f957a44e6af6791809d
BLAKE2b-256 c9c1d23f39a846b834ca11fd647f66388e5d213bc8c4a511475b75600edf06d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6abe4ec551f82931c05bacaee192383c99b2879c2621fdc90678804dc50e45af
MD5 c13438ce6824f6c2ce9018987e7ae6de
BLAKE2b-256 d5a5042cfa459922eacd8bf6278fbce422d4365f1d1ba051b27e9ecd779fadf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a0eedbc739d46a2477298f8115528677f11fa034255af1c39a5e369cfea2cc5
MD5 86b97299d3d0d01a2677dcef7d2f3a92
BLAKE2b-256 794d01b30db14d183a969c284408dcfe2c31686050e2c270f6d4695e26adce4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b379cbf7a402c175713b0bc18068e05ec73110883de196a1f32b2a0852845a8f
MD5 283d5ae5c22f1dae51d50a47eb75d78c
BLAKE2b-256 84bc883e7325652b82a232b7b6390104c12d0c502832d4cdd3fc541873a47e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21ae2b104d38103ae4ec0bd6c51b541a7777ed410a6f14d3488eb9cb5697ba51
MD5 76f6272250f595da52abb4fd4e02db97
BLAKE2b-256 9d20ba66ce862830d76666a4f38107c9be91d36ddb20fe0ced85db3954bcc1d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5929c7c72109241a47167679e65935600b153225f877624b5e1e5fc47732371
MD5 4b74edef13252aa435df9bf89d4de804
BLAKE2b-256 1b40daed76c2e9757ed91481cccd5b54f480a72c20c51244b357d4452a9c331a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2c494e11d1a752164cc4d94cbd14d93d43ad80816ffe99f1dd3153b474fa051
MD5 489113cf2981d4e122cc61966ac96bc5
BLAKE2b-256 a9b091a5a2f36a909bb19e5ad4137a83ff98894befc43589c8b18c22b43ad6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5c499953317e7e1945e5880eacc9a2b88b09a6ac8117e0f664066b3198c23e92
MD5 e604edf37d0a5bb68bcdc395713c61db
BLAKE2b-256 abd201af64b2407714d6a5b62dd5a0bfee27a760bfceefc3af15ecd8e51389e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fc39606a824ede0efbb9ef982ed541aa0f30f7fc04ff8229bd7a25f88bb2595
MD5 959b82d76e94c151069845e3935183cf
BLAKE2b-256 a389d804a6d8701f4f1b6b06bfbae8644df637e2882279c7a82849db8faedcb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbb2e6df845331b463c5581ad447b869ba2bbeb84ed8841d666c6a0b4145c6fa
MD5 1ad39130cb860baa4e76b09fc184d213
BLAKE2b-256 964f385abcac99f9656e2db42533666190ca8cf5b56ba9319c9c40a6cab476f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e55735b7ce045397e710717592eee32a1040ccc3026cf3766e41391916e0c28
MD5 f81c661d4d069d7c4cfd367798d6d613
BLAKE2b-256 b8c4b12250da6e5aaebeb4f30220d0a008848238b84f1435b8957060d451e65b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fdb409e34e1365f5112413cd2877bfbd232a80d1a6a612b26f089cec666bb3f8
MD5 9179518fa0bcc0cf6c8f1c94226a38b0
BLAKE2b-256 d3963fb41b1c42077e0dd6393c6a1ff909f5831948d38230de74365d5bacc61e

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