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.1.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.1-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.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core-1.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

djc_core-1.2.1-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.1-cp314-cp314-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

djc_core-1.2.1-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.1-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.1-cp313-cp313t-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djc_core-1.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djc_core-1.2.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

djc_core-1.2.1-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.1-cp311-cp311-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

djc_core-1.2.1-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.1-cp310-cp310-musllinux_1_2_i686.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ i686

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ i686

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

djc_core-1.2.1-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.1-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.1-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.1-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.1-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.1-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.1-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.1.tar.gz.

File metadata

  • Download URL: djc_core-1.2.1.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.1.tar.gz
Algorithm Hash digest
SHA256 445e8a4781a615f7bb963fb663be3d408ee74b47791e03a5ae1166bcaea1bd0f
MD5 d08b50820f0d054bce6580a6e44d5a79
BLAKE2b-256 c70b6606d064ee22dec128852516f2a51b92e7238f54cff5f09b9a790ed0709a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6d2f885193bf08a48bfc989ce95ee29a016898cd5c68428775ff039faf9fbb5a
MD5 cbd7a4d65eab1a44d61e399662f390ad
BLAKE2b-256 ca23807472f5dda80ad2ab4bd82ca3dcd9c09bc481e41295bb137a51b08a63dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e31a7d9e467287ff5fb25f77cdd6f642837e02a3e3be5d234bae83620855b8ed
MD5 34c0bceaa4550aec35af0dca28e52662
BLAKE2b-256 c8835516d13ac2bd72c29a3809968ad294e4ebe0e428ebebfe14bb1531f05246

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a4876ad99b5c3888dfed0f2945a7ff09f601b871df19519676d40b173ca2b47
MD5 3c2e117f1a6be053ee83bc84ac352485
BLAKE2b-256 322585fac9de6efb411d7ebc319b109286ab9e1d357a12b4756fb21ff54e98c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 11efc742919f960cad44a9c59ef4cd8ba351cf92b0b0aad49a68de74c0209e4f
MD5 3cf8a4712cda0add497176556885ab9b
BLAKE2b-256 46d0fc01050ca97aa8a0745c5e0b812640f037a7e295ca2936c6a04fa5576cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9716ad5d378c2caca0c410de5a4a4cf668300822a642b3bb836717af30e87d9e
MD5 8fe55ff47f6af7f97d6142dc819169ed
BLAKE2b-256 67e3a32e5f7db9aae78899f8de3a1b72e5d44221684ff62f5498e23884060a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 342754f21ad613d838566a8d74825352100dd1ef182d47252ae6b8e02c9892db
MD5 8a666a98ebdc74adde11693022becab8
BLAKE2b-256 771a1cddf7c3510d05bc2221abcc1ead8b21a206a4bead57f9b91fbee4e4e279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0083dc20691a877683e0ed5b5659a4b25f6a97b17b482627ac446749f60cfbda
MD5 90b96500f1f978c08cc7c0b97849e7cd
BLAKE2b-256 08683ba615acc3116705a99f4435fc2b36cc0d0e6758fd7d4269020cde4e3b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ba3dbd7a5cb86d04f8eb2aeb17b50fc5485e886aebea4d2ff6e0acd64eef3c0
MD5 c63f4a8d63f0106aef69d0bbeab4c9e4
BLAKE2b-256 b413558af443b4f08b5d7378a79ddfdf88fd1122e9bba81108d16b3f601b8dbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6662135e0c09e0c6ffc2136fdb839440f9038083f92ae40cf5fdd2c7f0672beb
MD5 de615c8562aeeb5bcbc6297a81f7dec0
BLAKE2b-256 fed114d760dc38f39f2edbba5cb8396e66af9c90ee0ab38a38c018ddc9ee40a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2339915fbd6ab7c2c54349c126b912a054861b0fc482fdf4afc475a7fd1b832a
MD5 20ccce2eee501437bea7903e9c4437be
BLAKE2b-256 6829063a70de97bf656e97336601dd127f178ce5d1d4cfe6ed3a610d10da2977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 beb5eb7c673eb1a25cd460ddb3e4277ed64a95b9f256686f7b0210a2904d08f9
MD5 e47c6a9fd58db72be224d7668c788cb8
BLAKE2b-256 bfa44841f76b32cba54fd0769859421c29c15ddfdd07154506e33d371522a4fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 861fcc587b840eb48da78a7074aaf7fccf528a060f545be34aa4c1cfea1ca09a
MD5 8046d48365dbaadce546778df151dd78
BLAKE2b-256 77574f012c4a43d351660789006a3ac3425500ce1209e74a52b3bc04bb393d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 16b0bc072a89135fd8837b810a8c86e230c38fb1c4eec55f97923bd2af8baf18
MD5 c38d4976677c5b1bd6fc3d15258e0e63
BLAKE2b-256 92136a42181fd0bb0d6ac39e3505988106ad230cba72b96a8ed177e40823ea27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 804a8798ba20251210d8d6d5c7728a703ac2b549824d52b30fb0b8e0dccfb30f
MD5 e91285185bebf7f557ff04a83f1868e4
BLAKE2b-256 504ff1ee89a604542f5b3069ecc53d0bf087465761d83b29700ecb4fb6aea4e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e713f9600b9129e1ec143507bc9cdb2fb7173b3ff9f2c1f3139aecaa404b3f27
MD5 569f0942e4edda63b68b42aadb30c207
BLAKE2b-256 840767ea66b82fb57c4253c8112d6ad88647c408a8703e30686eadbb8c0b35d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7d9ed3f7f360b6d83336d9f2254ef10e6e0cc158595ba04a967cf927e48d136
MD5 7f2c816b28e49f029ae7c6078d4e7378
BLAKE2b-256 1363b4bf25b2a0fda75b302fa50095a6f392291bfc71d6931631f1a0e427b079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1099d726e92aa5ea2b34b220d8972064c17ac2942ed03b9c16ddb8a9fac66a6c
MD5 583609829935f99f56e6149fe0653498
BLAKE2b-256 b5018bd69d4aed87669bf9dd9d22f51e3eb8dc0d15640dfc79f7a70f8918ef43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 990701558a2f780a12758c991317e3247556c7963d633d88179f1e2f7557fdb6
MD5 e0ce0d06cbfcb6f26c0cd9006b0a89a0
BLAKE2b-256 9f5cc03ffbb716b29e837b5687e0216f78b9b3acc63437a49b8c6a5f2f4b0091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8ea6e2d019112baa23296de426b55eeae47c59056fefe0c774c753b7f0c78c64
MD5 4116ea9704fcafa6b7f080255590dd84
BLAKE2b-256 09e6d22901ad01a713525f99227573d5f5ff3aa82c015420a2f796aec9fed884

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c77ba3dbe8e9ec77941629e5b9f85e37b0e4570af09cb1ca66923498f12eb298
MD5 4ab27c905f5d97cf4b729b626dc18ba5
BLAKE2b-256 516d28e3c3d7a1d6441d63fe627ed9737b94a435eaaf52da3b0e78067e3e085d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17ec6ad0210eaa4d43a3dd015779a4b1e4babe754e27f73e9e143a8d5a3c5abb
MD5 98b334b9651840552cc91b6da790020a
BLAKE2b-256 96218951b13aba6c2d6ae5062892571b1307a426d032d03b95d545c4629b67c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d44d43ced6027a3f2fb5a259d5c703dc423603034fb27581ebbc4a9f21c4f15
MD5 19d7f22a7c4cb451d639c5cd253fccbb
BLAKE2b-256 fd4f7bffb0b91f1c73184b0a9ac8cefd2115b0306f766a67978019546e0d207d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 427d6cadb29b31464ade4d43ae7020126c3b2fbe6db93136543bb200e4a53db5
MD5 97779485e05322b227bf710f208b259f
BLAKE2b-256 08572980adb42fec1c405834df406c733a8ea7f10f710ec29c095c3c264a5e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 968499c9d6a08f3da836d88c5d936daf842374ae79043e789c86729ca61c23fe
MD5 a1a346f61bd7b3f5e23f252e9c637cdc
BLAKE2b-256 c8027092c7ff979a7d3ea03c61155dfd0ad8586ee5da54aca1d1cf9545d5ef04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb11a9e7a91b6f6f592a28d41007197fd28de3d5a2d39ed704c684bef9ae61cb
MD5 0f4bfb756296b4f7267564a35e2eb1a6
BLAKE2b-256 bea1c9ff90d73212e76764e9fc7d91dac0905e0182af9b4d8007eeeca1ceeca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 51ceedd4abcec8f8aad1bc1c5c1d2653692c2f65009176d2e048aded185b199b
MD5 8a1c9eb4b95bbe71431c1e39322505ad
BLAKE2b-256 0a19ded8894200d3febbda7e37e1c340288d1b5bca62e6c037ba53905d90673c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2efe620c0dfd5a5c330678de8e36390a7457c5f453830acb7fd044b2700acb69
MD5 9ce768d9f7f340fa280a99805ca1f5a6
BLAKE2b-256 c17652997dcf20b3404687fcf5d929d2ce7220bc6c2aaeca98c11bd2a6e557ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b84653a94dcd2c9dedaa095661f9a0a16c1d608c05ab1b9a7eeb5cec1514c25
MD5 d4403fe3e853bf1eeb0ff1af9387b1c2
BLAKE2b-256 66cd7db1c8748649e90999b68ff35dc4f01204161b31a76e02789701e774d8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ea8487ab867d596d26e7bb099dd7465c3585ee1b745516f8e68060fd819a3cb
MD5 caebaae2c3f2a31969a0f38f977472fd
BLAKE2b-256 16509cf555ceb87605581d11cd39ab96e79e8a6a587e19ed5e60b955896a2609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5fc48175c5c33bf984e65e9dc3ea877a75f38270cce0d3e2484d66333dc19fe0
MD5 6a48c89485d15b44f14ee7344c5a7ce6
BLAKE2b-256 2d29a72bcfb26498f74a3dfe1bb2369f718ca8aa65ff96534605713045c9bf54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 901bf211ee7196cd71b77b01b376d9f2e3b53feaadd2e05051ad579af5b123c1
MD5 48d55796abbabf2e1176cbb39643daf0
BLAKE2b-256 3f59b3a43abb26b319a22ca92610bbec7567bdd35d93af7b78b7d1d74f9ec89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 63e656df1d994153f5d50d0ef700660043eb1cc6532475f13a158a0cac1ff7ae
MD5 6305b1ece443d03adb1f0d7bc99e28cf
BLAKE2b-256 11b1bea895325cf8331cdd434e371e1fa6c8d4c404544fb8df31fdf70f47bc19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 88630d046bb5fa47f4474f5cf4b1a11fed88cc6907b8b0535f31edb69f8141b0
MD5 b60183e301491dc54569b30d176db5f3
BLAKE2b-256 cee52dc387ae860b54d18e8e38560e865812d121a598012d3fd2f4a095531251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fff6d468d8f0321fcfae75e7a93e5158f2ec7669089191ed6d660c92bac8618d
MD5 6edd2a3f7c5926c8ba83e67be0154c03
BLAKE2b-256 7c83a723a4ae6cd856d234643768ecb937ccc0ac8e6188293760e945cf2dc8da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e627795d1b482d1d849a73d4d0d53016ad8201c85a517194d4170edac69dc779
MD5 6e96613c21dc351056d97f040436700c
BLAKE2b-256 c65e39a108099670d0a438d6be51c3e53a1df0d9dfe5f5dbcac3f38827d23fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2fa46f0452820e1cf33c5766cc967451b71c8fd9781fa976d1e9b0d7bf598013
MD5 465a60eef7feb2a75465a489eab3f9df
BLAKE2b-256 2b11323c98c58e5eebc4bac3d82d8634fa79274da0ee57f69d4524900bb4ce3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aefa6ec2581f1530022283b7dc398ff7fc0f421fc4bd14f794c2a97567e8de19
MD5 430128110cf3e006d05ef7746ad11205
BLAKE2b-256 09a421c1df0e97916fb8ba342f8e175cad4571c26909edd637a10efa60112a9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf9423497fd2f8e3c13f2ccb18874f3e9af2e37dbe1d3dcfe684f406b52d7ac9
MD5 4c6bf6cb81ec0ce56c8b548e2fc63657
BLAKE2b-256 3e07908f19c37cbdad2bbc6c29aca9a4a0be5b1557158473bac0d8b7cdf485df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 03b613840df8205806716dfbedaa7dd0c496ec583295c805579aaf5712bcd123
MD5 d27c9ceba2594f866454bdb897f9fde5
BLAKE2b-256 646c108ad2ea182fe15069c48796bab8a031e64ff69028807549fc940df8c559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 45c939b474c8dcf90ec1417efb358995dfbed5dccddad2a024f8f6b5ce22bcd8
MD5 c4c0965d8f8e55f154c623072f66b07b
BLAKE2b-256 979bcd2dff9be2f6f1528574dcbdf69b10337a235cbad7e37a9d4df2ccf04f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1d9894c64d79adf68f5feb330ee28dacf07816a98b21985bc8aa4a2b748705b2
MD5 204c6b319e130a7112334d4e5023b567
BLAKE2b-256 1771f1959cdec29bf583203e99a0c7dec583564424b65c4142f3beac4707fa71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c7a4947023aff3169ba689c0051da37a43994150748ce7bed02420be2e017472
MD5 3f4315220a8ddc5dca7a6ebabcd1c28d
BLAKE2b-256 4f73c58d2ac6b67b42b98327f12caa6fccf367379d9d859d375b35389709c0fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3999acb7100ebdef72ef1c49327e95fa211426728cae234b4cc0e9b2bd8cd839
MD5 87586f28df37694287019a49ea5b1459
BLAKE2b-256 bdda22515609b822ccf856ef6933a76b13486dd0878375da985fc6acd8c0ae6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 124483e02cd39c1b5cf0c5fd18170af0fe76dcf00fc6fc85868c7ee00535f411
MD5 741d6aa7c1b6b8ebe3fb21b62a9e897d
BLAKE2b-256 8fb734e119eba7d17cbdb6716ea646ef1fbab44a5ddadc78af050ef5a1c0f6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de19705a0f99002d2781ceb11ed46ca3a9f3e68a26eef8a166ba4e924c7e9b37
MD5 8bbfdd8b126fb1e71a6abfb0234ad4a8
BLAKE2b-256 9425b71b521bbd9cf696a67b0a3bb8c95c9168be4ed529428962fcac626d9d5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be42f9d3745077fd69ca240cc4c250f734353e14d4daebd86e46382c54fbd8fc
MD5 59ee695b27be82bd50440ba51ccd8a1a
BLAKE2b-256 20d852777f60619c2067ddbc8a9274908cd12364aea2d79782d9642c0fd9605d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b8629f962b58aeb2242cb9ee0ca1553e3760ddb81f77985a41f85716431a5b6
MD5 7e7434748b6e77fc79fbd65008e7b271
BLAKE2b-256 bb1512c9c91b6053bf8d01ad08fe745deedac80ce5aa6f9f69504137ba5ce3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ffe799fd07c40e5ab7320007309796f00fe1be4e77d0e8256844e6b3fad5345
MD5 b26e986fda4e6a46058fd0b3494b6cd3
BLAKE2b-256 933f25ad193310ea816d1c1ca98e4a148f3bc0f37d12226d2b440c5ff70de7a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6878bb88ececba0ddb5aa50c842ef8b8a74f9eaa5dcc281a8af4209b15ff5208
MD5 5cbb2a262d28514d2f668fb63cb50c5b
BLAKE2b-256 89853089a0d11ef8bf4f9b018d7a1c6ea65816dc98b547e68e420c5bb900290a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2579811858c30a100f6864b703045558c97c39a24a366bd391ff48ff16f67535
MD5 6da2b654ea59fe916d62f3fae28d0452
BLAKE2b-256 ffd13780c6f6f0383c10c1266f7b027dec8d8816de9c3f4fd2173f0e9d8af4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d61f0ad4d97a74fdf5f47a569d087d161276fe6a25c3ceaf8847848121769eca
MD5 36c7d7eb0a57ceda4e5a9b94f4413e96
BLAKE2b-256 7c24ccdaa22d034785fcf6d39bd507290f9995493538dc48aef29b05891dc3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b4782cc3dc18ccba3183ec2f6dc3db446b6d1bcae0985fff73140efb880c2fc
MD5 4401816b45ebbf5b159377323c56d744
BLAKE2b-256 ee5c4238cf437e45dbc65c19965e350327c73204b73528f6d304ced82cd72804

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55ca25526e26d286e17a19a52ba8077a09754f9425ac1e6036889f1ecec7baac
MD5 4342a02401a39ffd8dfb0828a92d8ce2
BLAKE2b-256 a4f5a87bcfe08b2206c8714129d750ac9c360faacb0022504b9c5d8dc9c9e49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ead2c90af0f21fccdff5994f40eaf97246246650f5334d65e6739717f65dc3cd
MD5 86ac6b560b3368a4affe38f8c42015a6
BLAKE2b-256 c704d0650c058a5f2f6da9cf6ad4d5fddd37f90e67732295268827dfe24f138f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e044d110cccf0340883e9e8699665299d9ce495e7a88ae47610211f401d252d
MD5 a3e657b85cc5bd206b3bb56317991f7a
BLAKE2b-256 bdabf24fdb6ff1b94440f6408763d7a22d969768b3b12602d3249aef220e642a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 501bcca79d5b566be91e18f51377705cd7d981f617bb91bbf8aee8b9d2334cbd
MD5 7b4dcffe6e045e35dbc115da93451d24
BLAKE2b-256 50bb6d60dba285161b929a49fb6f5349d7fc3bd24e3076aad5ee2ffcd5b9689c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f2106ad8483735e29bd80a82ce8a4176e58189aae55217a63489b57332f080
MD5 0f52a1076f95bd74ddd3c81aea4813bb
BLAKE2b-256 5d67bf671980100dea7ec76940c2525c110e13150eb66a746a5567a566139c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 93eb56c0449266c378866bee8c09333f59eccb1936431f7bbd80b1be0df37143
MD5 ae0599a11eebfeb277014d3389e6329f
BLAKE2b-256 e36e87e5cbf8095144137063a46b5099847da5b2a83b90193f8240637c164e82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ddb8696d2c6f3f097c932b5dcaacc97b6809fd25497f0cc24ea107372b0502a
MD5 1c67707e3e9360075f4a707271af77fc
BLAKE2b-256 a700640fa948029f5b10427bb49028e55f2de5aea2a530b45388868ca57f253f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 57e1da1b16eb432ed4b9d90cbbbf10cb42a4acf3a038e5d5c5459453817893cd
MD5 cbf7062dcfb64287970d8721748cdf1e
BLAKE2b-256 b1ffb04429984ec51b2c931f63616120a857ccb9c0956acc6905c718ecae4455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a7086c3af3131575f1a6b67eba30d7a33dba26e231fa4247adc5df1f3ce7731
MD5 f286e64b5b091f59a1a4bf331fab84e2
BLAKE2b-256 05c91b4f6b9588f9ed2da819847a868ac17183742ce044affaed9bd40d496001

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 adfb4f7abae02e4850eb572ca67d47d24c61882ac036f62cf8d4568ade7d8d08
MD5 955324239bc0c1fcb6023f3e93172faf
BLAKE2b-256 0d238e1b91f8015ab9f3b062ec8b653325a4487389a528d1930d7c37ca624472

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 694f23f33ae71cfcba1b0ae4e33e298e1c51bd53057b90715fae51a0e34b0865
MD5 92effba8e61baa9f7130a72ec43ab629
BLAKE2b-256 229b42c6923d2fd412e9fa6732726ab8a271b36e535c8ed749b28cfef5bb83c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 330ec27eb4f6082ef0dc8ddaad5511d6fde69dd893ec34b130c1b45cbd2d0da6
MD5 412972c79fcae9a8e29af9e794c95fd1
BLAKE2b-256 b4de31f837338eabf7f782005e3a541a1e8f97ed204f81941f6b5bc0d0063331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a796828b981edcf0b4de86c72694377c5ae73b3b30f5c16d915ad09cd4aa01e4
MD5 1ee1ea85dfb1cc4444db96db0abac811
BLAKE2b-256 3b841574c4759dd30f69917aaf0e63c16b24606f917116bf2b8974404cb585ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46d6b3779cf2ab82fad1c16ca48a52aadbfb0553cd11f95b7b7d26f48ef3b626
MD5 aacb381eacbe9c559a6816676ec6466b
BLAKE2b-256 99da0c845d70efe569a2a91453ba788033171e76135f986e7f247ea46cca9250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 397870c7d0e5819fa5faf7f305ded7a9594123829fbb27ad5461d8ac66b56dcd
MD5 cd555b53d02cb83c5e6d4ed79e410b86
BLAKE2b-256 b8f50fa748ea003442004674978a43878f9640a0c3dd8dd6d57832b7d752ac7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 137b475e18ad364adc371406c90c2ace45925bcb0e681a10db0b574eb36d24e9
MD5 1435183f37efafb5963d79c620028ecd
BLAKE2b-256 70a01245aefa7d163ef14111720a67ec2e1ed63552909d1150886c7323539a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 99cf75e45ccec3531c6b38ab43254f2e0123a55ce025a04815051a9718073360
MD5 8c51ed6aa3950215c4a6fcb6b9d3d44c
BLAKE2b-256 7ca283be6ddcafb7228822f74448b71e3c844e11885673eb3cf9a4633e819d8a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e652fdfb1ed34282133fe2d83dd0d3433a7e35fd31df577a4239e46cbdadc55c
MD5 fb05f2ee8de1afeb5a676343ce371f1c
BLAKE2b-256 db9429409795613f9f94276441d7ffce2fd2f7249eb943226cddb712bbf71f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8743ce226db325ee0b395b05477f6d6e6874a780d9e5f8b9a27de44484a2b9c8
MD5 b633aa39322ad0b97b74bfb3f58ff125
BLAKE2b-256 0981f1d1fb3dfb367b487056e0f039ab2fac7d273c79d797d98fd0a7cfb6bf8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 17c216290eae7e39257a767cbf67755c5c9c2bf8c8325c52cdf0b8069b9044fb
MD5 4b7e3cd76c80535c1c57d970b7a56724
BLAKE2b-256 c560457887fe912cc1750e9a49c9fae3b7a613ca793a8d29cc543fbad8c90942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2f230cb10fc4c4a77ca8ce66d167bbd1b3697f7c37941a0147d84eeb734f197
MD5 6f449ff0c58efb9f0c9b478487ef0427
BLAKE2b-256 c0e34351112a1e189f990ab03b4d89f561aa4b58e7b7890d15805abfbeb5910f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c88ef9732c7f6fbd2cbfa286b178e32889878f23276d4d09de01a506be831b72
MD5 a064e6c49d79851469c17cbe3a2d0267
BLAKE2b-256 48318652b632b3ea568dec15fd18f6e04486939fab319979610ec6567d58d0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70404cf7937f24b43bc4cb1953e910acd256ea11936df259bd03d8c5eaf0e4bb
MD5 387341743015058ec3642acb3c2f3490
BLAKE2b-256 935969ca43126f22858e7daf1e2439992b83bd2b0877b16370a77228a96490fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7116e7f29b4f45429d41d2d42d3545e4c26df3a68bbe38c76a1401ecb3f0b5d4
MD5 badbc16729941e1d11f7b893b4c5ad2d
BLAKE2b-256 c3c0a521d3e00b7d5da6c4d1058b3b61e8ae601a2968226bee1fa09d3f949b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 deb0f14f4b70e177dec175b6a1b774b828143ddfdb57ecf643c52cb2d1f322b0
MD5 cae05b4058ba63a8794eb795d51a557b
BLAKE2b-256 46593dfe3064a94a033024d0bd13e1654c8bab6364036a79c98a5dfb15f91371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 251007c40672c29145510cbfa002e52524be0f987b29a45cee143cfc4394998f
MD5 8edd3652a5505db78b1ea46e453d862a
BLAKE2b-256 13f596ec2ca83afb75ae21b9afcae7251a6ab1f00ad185b176f94d76eaed6322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c719708b49b0f93817524b094641c0d449387ce83ec5bc3e139fa2d644f91df4
MD5 3913eccfa7072b72cbc93231c405fc4a
BLAKE2b-256 78d103a786000b4610dd8316c96443d765b7342e5457064c2f62f62a20ffc9f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 468b3d7c764c876e4c2f54b9cf3b5d8974449a926206ace9aa108e61196eeb02
MD5 68aa2f95315c784ff76f652dff224190
BLAKE2b-256 f353ed4f2b845128a4ca79399f4fccce3097937981278658b2d54c620357acdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0a16f2de6713e47ada7fdb0fe06bcb312e1d9f98ec04aa9efdf79543cc91823
MD5 c1d9bcb26ebca588730bc7a2752824cc
BLAKE2b-256 96290d6431044526474ae2465d4dea1c0cefa23bdef584c7e288963246f65dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dbb6e7bd66358eb441d88a475f120afe65d61d0946325bb9a43c942dd314d0ee
MD5 e133aaef104cd85d34b4859b2608f45d
BLAKE2b-256 d77967fbf1bfd20dd2be927bde0c4319ad3464c151eb6385244fbc1e9b6715bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4e55134593c71c1cc22d117060245f56ad3d1e83dfde18c0b51813dcd96722a2
MD5 6a538f1d2a910b783ace282cbff1b6d2
BLAKE2b-256 557fd688595aef3c8f15b3429a5272622d8d7a5e854ed96eae90f93794de92f1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 baf618557468d31b3d0813dfac8bca016e8dd15f7020a1dd3ea1fbdbef46e502
MD5 6805356e2fd40bbf69ee74fc669d7b55
BLAKE2b-256 9576bd852c56d4d41c879bbdf029073541908c88a78c35a74d69d3b0a6570863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 073fcc33e825e85252875f995cfe3fb5bfe062d59b595ce15ca34409d31d6a3f
MD5 599b5a3d03f97e4794fae8c7b1e99c3f
BLAKE2b-256 bd2f13d41b704a0a23e867e80f4f1de50274abc4e57a6ea3360bc482f3f94be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69d41e678208f12130aae2ae770513af1e4d5a00035fc2032b295f1c303b5d48
MD5 19d878b983d55737ebc509389de810ae
BLAKE2b-256 0bc295d261799d591d7a1794bf9d8317a7e9977bc6dd9be6d22f105fb6e2f512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ca5db6e11a9e6099af58b71fccbc125e08f4ab54f2c9a0998293ad36ea9f27c
MD5 ff82eddcc1422e63d0836d7003193ce5
BLAKE2b-256 b774e64f31c072cd25d4779c9e5b4900ea50f68decec9b8a9f8b285d9bad4656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 546d1144ae9945f4bda0c0916038448a926ce03357ae68d9853f68ff0bebf701
MD5 705a97582c23849054d7e01be97fcdd5
BLAKE2b-256 27be03ef6600e69f83adcfdf1718771a7ed48b7121665d3c37a44b6d999a7977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e8495e84f3c486da5bc33d7feb490550bacf227e0d65f8ee4a3dab9a7fdb72d
MD5 a3fec42a678e9e941165d11f437b27c5
BLAKE2b-256 6a59693ed7fd288ec5666763c70028d518b298176db0641707f018dd769f72a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e42410d2dfe7efba3a2e342d88acbd12ad02f868d918f35ff6f85d45fa8eaa6
MD5 551c6b6eabcc5fed77daa7afe387c762
BLAKE2b-256 68dd226e5176075385dec04866b0d600957ea5112c4e195d06fea0b3f18d4a0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cf472d8dd2510266b8325ca8686f1dec718c61a54c50f4bdbb5e96bc15d24bb
MD5 a296c55e16008c9ddaf5f92b7fbcad49
BLAKE2b-256 680ffc22062bb38e1b6498bd5f44904ccd428979a3c4b1fdf6b0d6fcd0ac73c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af80c82f00dbde18cebbe7f8fb5805d1dbb7a3d6e4cd0536d4e8432819823669
MD5 761a85f282e832209640e9d47c0f7dfb
BLAKE2b-256 047f9abd35ef918b7c8b2d50e57395367242c83a3fe78a3d20d61db6de9eda21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e822737920213e981e4ff4f6a59a2842e0ca8bb1985eda6b7bd8f11fab5a25a2
MD5 b95db393643355499bf531ebce7400e2
BLAKE2b-256 87fbb048b63f681826ee11e5e2069c9345c8f0fde5c5bb7cfe9220e5b2aa0a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 71283584f1922a4dbcb792892c5d94106617871ed405e39a06e04563c3114ae6
MD5 9a296eef4302727df6e59fd031c5337a
BLAKE2b-256 3fb3b686a1609750d4039ae44e905fbd1235db0217873739d3d8ff110245c2b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8a078784671107e825b305dfcda23a530f0c0a2929530b7aa7d6faaf05a9e7f
MD5 df2821f9e340ad22a88c366bb9f04a8f
BLAKE2b-256 3660cbe4b2b99ffad566fde95aafad229e41be0a4f265b4701ce001ecdced308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df82684c8d1f7280f33adb9236cd3b9c98580bcbdb313578a2e2041bec2cea86
MD5 a1b26ec8dba3da67a89b24c0c4658f86
BLAKE2b-256 f874f6511e2e46d82817ac6cd858fe3c7966079e03cabaf33cdb971d1dbff03a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a94bdd2d2cb03b9db7b79d64c9282c4640d2ef7b3db3bcd9d743aba0db631eac
MD5 880c49926375d06750836b6337b89d93
BLAKE2b-256 9fb600eac8e01d07f79b3fe480fca980378cb7d11d726347041b342dfed68da9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 db5de9c97377107c446314d2947fe1b497dcb65cef3a53fc80903e1d9e8ce82d
MD5 d6411c6b37d4e39dfc822890e7bb777e
BLAKE2b-256 4da8f21e270fb98708a963076cfbb990a2fb47987b0a73c2776881bf7ce31f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e96b1e49e9333d628fdf631496c2028b976c5f16855d4ed618f5261beb2e768
MD5 33bec968dd86c239f6c97e090285f776
BLAKE2b-256 3bda267217c2667864200ff7a2d750a27f602e168bc963da21d1a33b20cd9090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8628fd2e15b930a5c268f21e5c5772b5e35da94637133a9620288fade30be0b4
MD5 ba4befc882a4549a60723279558618f5
BLAKE2b-256 0609437d96351c39ca4b19c56b478a068f98030afce3549379690b105a3569be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cd032a64f34c9b9b821eba401d2b22d5f3ac3dba047ae3d45e836a89a4fe55e
MD5 177e6e6a31438747ec70c59c815572f6
BLAKE2b-256 eaf7248f63c4409b3157382350c0b8ad58b95104da11d71c91e03d713194ab84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c4d079e5e560a59c8b92892c95333aebb8c07cfeee3c4497c26ab3af72e5aafd
MD5 740e7c9319d1b8099116aa2b817ff1a2
BLAKE2b-256 5ada0a31c8486c228c381fac3527c249960661a4ed3c792b9235147dbe17b0f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec733cff7b509808930bb74d382806067773f6a7c6c6811e71b9cf2f1208ea9c
MD5 be9c7f22db0fb18edaa43522ba697c6a
BLAKE2b-256 dde4d8c06f8da3908dbcbb40cdd44792472b90374e375fff4631e581c433c57b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fe4fbe48876eb5ac0a1c260b2c4e0abe5e85f25087bf7623ae5d7c5cbfa4a9ce
MD5 780bb41052c7542cae3e5083de1ab999
BLAKE2b-256 6cbfb0cd8141b5244c0b9833b5f23b086cd144e837f297f6c59acebe5e1856bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4c176bb3ed9becf87c628a55a7eeaacb13fd2617ab760a257c98d684287ad6b
MD5 8f7e2b5340ed1676184f5fad50c74837
BLAKE2b-256 1e51374c0c6ffe07b9208e2da5e20af60665aee25abf5cab9d8f3e504537e068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b96a38c8365800ad22549e8d8dc827324e148f71dbf0f93e7a2817ab5a32a38
MD5 e69a888009da794bd6307c4851036cb7
BLAKE2b-256 e36678aab53753c487e2e2278ccfe40172247cc6dc43e289bd5e7850cf2be43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1f6381ceee573ff9caf8e09b06d97d4a41781b785007c55b34075171a3594db
MD5 0ec3b90efe29546356cc924718eef595
BLAKE2b-256 a4f8f263093f3472c180899dd10229daa201bec5af99b47f3d5e2466233d9718

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9db6e7f379964fc24001845cf63ceb33d16600b83c42ffa58269ad633e121301
MD5 770ba0be801d941a96230fb940699a3a
BLAKE2b-256 4276ccb45007c69315e61796b7c87e4d4ecefc5c176f2a2720ddb555b64fdf52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d68127e7216fd3124423df7823f0e1a8bb8e6e13af687bd3303d296804a4f204
MD5 8be62bee5d8af9efceaff43f06e931ba
BLAKE2b-256 09ce82d7156375104cf949fa5b7997c8ea72e2fa021cd4be3b8f56218d179efe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 7b56b5c3700e85cea04b52f1abc7633d5aecbd8f86d67bf9b5fad560386e06f1
MD5 c9b77a39aef7eb7a639984e8bfdd087f
BLAKE2b-256 e59e0de7b7159853f069f2124eb91d4a3d1364c8300f241c20f09e36798c2091

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.2.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 66841e6c2bce0e79086bf67143c3c6085314e584d2f783adfc665bbc1fa6485f
MD5 24d104bf7b08e79d70852c1ed72f983a
BLAKE2b-256 c53116ad6327ed39db8c6a22bd843e8cf4f838a5750bc11b1e3fd635475ce682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 894423606fecfd31b66100a0be45bda0a8923546714f71c673eae97dd2119d21
MD5 fb4090eea53ffa56116cc4e6f3476b67
BLAKE2b-256 803ee2cce97fc96f8fc000d7f61aaedfa4ac7bc8bd1e640a4d34765945c4dee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7213340dcfb362cc0e631d448d01dd96629bd96ab1701b31c7a1c9e11c74873f
MD5 498fa10cd2352e3cb0b36e4cbf781033
BLAKE2b-256 0198ab6d374a2d6c8ebaf389bcc531550df7aae8b79af2af5f6510d9e7798cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7e1398bd91cfd7f3a466bcd6465282dbf976de09915e3eb3750b67e1b137520f
MD5 7d73e177983cc8a4c01fe54ad4078fa3
BLAKE2b-256 b357db836c919f57a11008f4f68a28db110282e5046b622023f45cd4e9a16993

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c0f788dd8b68d3d9b07f7398e168beb530702b86a66198447e1af1e3750e97f1
MD5 9c1f4a5be507201c92fb74d93207f7a6
BLAKE2b-256 228066ecb9b1a54b223c36d85a8d6f2237c05ec9ab35ff3541f405596c07a2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f23a65b8eb020650e592dba73c88afa5505f295aabf03aba4c0fc0fa3457051b
MD5 3f8c646bf70b9e02d0be3a5c0a798203
BLAKE2b-256 6a57fb75856533fb9bf90b90bba9a4af0a3f2202e62e47da24ee18d3f7512690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 479dc332ae1c36e086c09f38cc7efa7d7997a6fd6df401087c6447890c5bbdc5
MD5 f15c10ddb5ae1e62b80fb1e567d28fd5
BLAKE2b-256 0c626d2a14a6446520c25eb3d6439edfd50665f2652adca47b3fcb952fcbdffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 259f870fe4c69acc99e89f48582c8c45169cd7b044a689a4909f19b330c6b9ba
MD5 0e7ea5962e8ad4e8e548b6edd47c834a
BLAKE2b-256 4b52c6d5243d0ff977c5ef11908eae361003beb57ef5ee0ba7001a3fe6c2360b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a68b6a4957d6b707c7ef90487aafad55e8a98d08b23c1cd7cc8c451a34f7ecf
MD5 2e0dc392636700ae756ce996b17cbeb6
BLAKE2b-256 5c8441b57db06e8a051b83b7a77dc45eb2e539a3670ff233e19e17aa15ffca34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62adfc20293af2affe38284c52b6be9eb0ae35b2f325365beaae5fc78b87f42d
MD5 85f0077ca771f0bd309759bde93b3469
BLAKE2b-256 6747b62658efa56bb3528dbf05da4e1f6f665402df9249564bc8a3a164047fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 014af3d0d62e71133425b78441e10c90d446d401b7f857f334ea1925ab0c7e30
MD5 4a255532a64135824a0c5980cf57222b
BLAKE2b-256 1f0ff98df3617acd02b67bd0b38793e5a31882d371ec4171ebf7adf0401f23ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.2.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e97e2acf8ca951bf55af85239e88ebe2f0a55bbc04331c661d2c2ec0792f8409
MD5 22adcc9a2fb4c718a7bea6873edf67d2
BLAKE2b-256 5777e6b98d101d423c2b1f28f689c67cd0ff1234ccec8bcc6098d54dafc63a83

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