Skip to main content

HTML parser used by 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 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 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 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.

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.1.1.tar.gz (855.0 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.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

djc_core-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

djc_core-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp314-cp314-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.14Windows x86-64

djc_core-1.1.1-cp314-cp314-win32.whl (1.4 MB view details)

Uploaded CPython 3.14Windows x86

djc_core-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp314-cp314-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

djc_core-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp314-cp314-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

djc_core-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

djc_core-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

djc_core-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp313-cp313-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.13Windows x86-64

djc_core-1.1.1-cp313-cp313-win32.whl (1.4 MB view details)

Uploaded CPython 3.13Windows x86

djc_core-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp313-cp313-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

djc_core-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

djc_core-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

djc_core-1.1.1-cp312-cp312-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

djc_core-1.1.1-cp312-cp312-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

djc_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

djc_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

djc_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

djc_core-1.1.1-cp311-cp311-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

djc_core-1.1.1-cp311-cp311-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

djc_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

djc_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

djc_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

djc_core-1.1.1-cp310-cp310-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

djc_core-1.1.1-cp310-cp310-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

djc_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

djc_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

djc_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

djc_core-1.1.1-cp39-cp39-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

djc_core-1.1.1-cp39-cp39-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

djc_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

djc_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

djc_core-1.1.1-cp38-cp38-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

djc_core-1.1.1-cp38-cp38-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

djc_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

djc_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl (6.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

djc_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (6.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

djc_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

djc_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

djc_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

djc_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

djc_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

djc_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

djc_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

djc_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for djc_core-1.1.1.tar.gz
Algorithm Hash digest
SHA256 197d51c147d0b8d08ed23304910eb74b27d4b0aed831383e04880f6046af118d
MD5 1812c69559a9ff9ef07cbe33d30bffe1
BLAKE2b-256 ca3d6357d5ead836c9d73e7ff886d0d31e84090fce0608be178cb00ba9a4e08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 037a637297f7dad82d05e67e2d8e6a1fee83cc48ad3cc608434512623c83c4be
MD5 07aebf33e6926c6277af24da99c96030
BLAKE2b-256 9f14cf29e1875f5282d6132884c2e82798947b9890d3cdc0d4122e425b7a4f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9aa887990a4394a1ca1c73a833fa55eeed1aec78d13b93c38d0a61179af7c307
MD5 2312fd86e9f1aa43fe7e67e0558adf75
BLAKE2b-256 a6aed9ad347b5a27a6ceaeb97d7531473df11765c15b9788fd117695f1baf535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6bd715b355a81ddf39de5c8332fa021141db665fb194e7332d50fb1f28ad9aa0
MD5 2183bd0ed338d63c73c9562ccfdb13d7
BLAKE2b-256 33d66abfdc046e05e3e36dcf40bf0935a3ce94f5c6eca4c174b42fc2a49d8f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8dc5c728ae2bfdf0f70b21fbdaaa3ad91582136cca54c1cc5c50c11de4f2018
MD5 ec472b197d5d9a0d26e8262b5c1c487f
BLAKE2b-256 b24f112f5fd2156c71c5229fb3429dca4cd22f32937164a3975e76d3375df759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2ee6ad41b5503d5ca6db4b3186a15ef80a0b6cbb3e30f6e51468741eea5bc5c
MD5 733a678f097c97fbab5083d8d6648e51
BLAKE2b-256 46bbef6153e38d2bab2878dbd17963faf7f879e9ce05ef1a9cc5ddf4dadff7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa7b25d9b73534d2f239879802a642f7bf73d691879bce221d6650dead62dac8
MD5 65a4441640abf58980d931591db55f09
BLAKE2b-256 bf2b8cdf9f7cdf8c1dc29d24e69051ad4e98295cc91a2a354c51cddc2a46f47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b42419e977ee3e2408ad668be29164e2fd3fc5ebffe4810ee12a4010d6a37f94
MD5 1c59587a2ce726583d20a4426ae7f1c7
BLAKE2b-256 4fdb90d994314ea744db8660bd0e3068b310702560f2a097a58b75b1ac80b5b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8dc8bc8b6f9e6187ce1641aeb980618487b59faad994fd6c28bd1b0fee19f7de
MD5 a0e3ad9467ca35e1aa96ccf63869a601
BLAKE2b-256 1726e8baa23993c01731782c1f441c72a40ef20474cdd23ee8c69483a2dfaa99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1f527bb8429076e54999d9dcb3f142692edd2456f4c777808323f6786f37bf5a
MD5 a6890b715a4eb107f92161fd10fb56de
BLAKE2b-256 a85457271ac902ce1b2791a1299b05a6d150fbe704980f2caff740ed0ecffb6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 892fee9f9ee603ae9394e1b776df2db333cea40cb68801d6a8b30a97e2cddc32
MD5 3ecf71b1275c5d5a233824ce78c4270e
BLAKE2b-256 ec29890e4d5f256bb6cbdb0970f82489bddad8f4747f0bfc4638848b77f9ad67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58285a332e05dda8b705c371b8ce314893f78342d660d3542d21f65fbea67a21
MD5 32fc51edc18e5579a17d27a15658d9c1
BLAKE2b-256 e17a244960ad6f2a43be853984edf2a8755e178fa59c7737afb1d009de5d98b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76518860a061ef989b4f27ba23f14ee575b622b38269a79d7238f78ccd7b1bad
MD5 8ab7aafb657f2e715ee9af968cecba22
BLAKE2b-256 ed202413fa315ddb8ca90c8e9099efc421ea85d3ebe6ab7ca75976ca88be6ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 488ae8caeb57e45febdb5dcb120c5a3e2af9895e61375b16b8d0bd02d44fdeb7
MD5 86cbc6524065d1bc5311221cdeba75c1
BLAKE2b-256 d1e855821c1e8b628ba935502054c35b5efafa036a1d094546f79369bf4d5f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2696b01959e05f24317287ad48d03f2d547476e09243a6ae05e7b7a0796cae5b
MD5 3360bcf233abea8119a8e54ea0830a86
BLAKE2b-256 80b139906fb5938737b3a69f67095534f326fba22c262f2a4cb125ba0ece7fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 942a1582059ae156f127c7cf91be11253106bc739c6eb185d0e6f0e6a016a8d8
MD5 1f2dc46e259dfbdba30db4a776f61900
BLAKE2b-256 254d2e50c7598da9f46791b21e66fa09454a4f05f163d06985a54c0a41184202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eca0b16d9aba281d5346d679dd352322d047700802e60042edfdc5dbc26660fb
MD5 4fbb8337febd9d1cad6b006989764ba4
BLAKE2b-256 6433d7b420df2e1bbb8220ad13aaffd7df7f3768555d325a046a12e313320e1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11fdb468c724f45edb662765689cb02432f85c561e05add0c1a0c2028b836ae0
MD5 0e5835fbf18f97488291a61afb2d9be4
BLAKE2b-256 0c486cca275ba807da864384e111b7f43edeaae035561acbda040677da9fb81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4abf33eaabe726727998d4d11506982f358e7c7d9e3f0fbb2eb98ae9d0764796
MD5 9a323ad76b1fb17456168e519e6ed680
BLAKE2b-256 30fb5e106c2fdf881721a907b8656b27a5fbadfc2b114ed9651eccc0c7d89262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e3b0ea64e2ba6de2ac84827f4fb0bc114f1464c94c328446e46cc7582329a75a
MD5 87da4bc5d2e5ba0c9c92d6235bcd96ba
BLAKE2b-256 68471f088e9caa7f9aa76f1ca4f9de8cfcfa7ca3613c22f0c475013328261924

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b58ae3216163357c27f9503c4670c7f397817cef1831192d61af6fcffa4b3d49
MD5 126bcecb59a362aa96ce6f1f6919c872
BLAKE2b-256 870442b5d9f596dfacca7477c47f53b274c2c1632a8960156878f22c2ba0d2d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1de6ef7da42ed37e6339a09e7d12cfcde6c643d4a149d8404fedbb2b95892326
MD5 8f2e43576b608f5bdb8445a012c376f4
BLAKE2b-256 cfd856d707bdfd764425d7432eeee4d507ccbf3949b4a2f9ff97ae2be8838ec8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4aec0bff0b1a8358444ac89fe2e81942b8c1fff021548b293a28455063c42a58
MD5 d3b513d0ef9c086c738342e4ffa6b13c
BLAKE2b-256 b357433a221a86991e03d141805a9ff4036fff22c40dcac313439b7fb6282ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d73cd1ebe00fb5ef56591373f7d1e999a689db536d7900a03ef33b127815d74
MD5 fef59f43640f6f7a1da14c2166ddd5bd
BLAKE2b-256 2aefce18750b5c4913aa914a960fb8a9bfe9adc5dee5ff30c734250bc43e6d22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb0a1053e9319b53a862df2e162140d20990729f154d2466caef9982e489a6df
MD5 7328c84f54c70efa666c7194461c68af
BLAKE2b-256 31049c290e60307ef527dbdbc6d9ae6cacb7ceacd1beedb182c6d9febfe037df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b32c636cfd418dac0dc907ae18acb58ad69546a7367f777435a06027a344a4
MD5 9ee89bc1301c4633a1549f73a9f3a8d7
BLAKE2b-256 89a7a74f7bbc70509f250da388b44fa0fc03fbcbe6f472fd4ed1975227e6002a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 16167b32c8e0f76fa3add4f893b184a9f04dfb2bfa7791d1210da7a2384f0a17
MD5 09e53cda7ce2404f98e07ae547ed5b48
BLAKE2b-256 3616f03352f6147d243b3bfe2e01c70b15c6639090db6f0c082a5f9548f38fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 146ff20e66f1c2225cdc765348117c552fb62d01cfa7933fd0f5867c2674d9a8
MD5 9241a53580ffdca7abfe1ab6ea81ae5b
BLAKE2b-256 938a5a3ebe3c208278460543bba23208c6e96df53441df5ea7d1bd015533ada4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d858988e4d8fbcddfc4fd33c26e830c89eb79c1fa3b91cd6c62903c5abd7f76
MD5 b85945b2ad7ffc23c72aceae2f99f7b4
BLAKE2b-256 cbfd686801ca61957165d2d3bbca33ed4e69bc65ad5529ffda21d883880052a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6db422db5d2c351c44b5ab295aa341581aaf903f746dc95f5e25d36cdbc5a8e0
MD5 437cea0ae7dac1777c47b2d8478bdb1c
BLAKE2b-256 d4d7a44d9c33bbb0d8c4538731c569ccbf5ddaaeb9181e29b8ad2b08eafcb0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 915d06c2dfe325629c2a5b0f497679b0db151931c92736f5c03dce565a03edd1
MD5 4cdaa54d6eaf513fc512704940a80c6c
BLAKE2b-256 99f61d6faba61262b7c34941b0733ee02be3b539a9597092fa06ca2452c99545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e66fdc787ff815c8ec80d09b1ef1c7b6e7714aacaeba5c2f18375b18fa864725
MD5 4e64661996d20d27191373137d2d3f1b
BLAKE2b-256 ef14c024fbd57c70531c7b27a09b29ad17711154892a568dec2430d4b4f256c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 606ebce03b3cc459f1f4c610632cc50eb8e78c586fdc6782a50580fb949bd925
MD5 67369eaf4e18658f64486144e57413a4
BLAKE2b-256 ce7faae549678af820f7e14dbfdb8f437511aee86a5d68f77e8c7ef12cb96984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a0b8712f36e821c4c3b7706d444f4aed023a14f5c5b97c9c699f637a23e8ea26
MD5 3d48f9aa01576b7f6a9d3e7305363b93
BLAKE2b-256 1fe1c4d483033e4fb65ad3d031be0d87cf45263b6191ef86b04c53984f371e94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6131f640627c4ae3a8476edd0be40612abc9f8a2388174f7af8e65f144447a80
MD5 28c8f7db39a317516a9af3a39fd58818
BLAKE2b-256 a377bbe65a1cd63f193de746872cdeb8c64f039ac27f624fa6c019344f4c23e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c15b304119feda247aace2b52c326c8b8aa717383a6e76cf49080414127013c8
MD5 dfecc50a0aeb0a0a97f0c5f2b0a43818
BLAKE2b-256 1e2afdea10dee683abbf325130db3b4034e191358edf8c222cfc214153e3e8ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 883181f08843d8db281f77a931dbb2db65d99e2520c724c7bd71768da8130ab7
MD5 10b56b11ebea77378e539908eadff5a5
BLAKE2b-256 d858158c64fe1af10a1859e64717505ac418f1413de8a92d4460f54ac326467f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfa851b352d0372dac6c9bdad1d208e0fffb854896e7a8a8a53ee4909914fece
MD5 c9c84a5d66fc939c67341bb365474501
BLAKE2b-256 bbc6ccdea5dc76b2bbecd77583097aa36b5cf68516cb6455d00a94b0cf8ae7b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49836ca5ba3eacaba480bb0cd2638992535c7bc26ad14706b03e28b41c82efae
MD5 a12c5c535d076e6659109fc66406d59e
BLAKE2b-256 927bff943869a629af5ae7659e4b324a38bba23995f6164c7cafc518b3e2da92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dce0c802e8017d920f80045454b24ae41093f3d9291bbd69454c8a9760bf16b
MD5 5d6988ca3c639c76c0d710da8a866844
BLAKE2b-256 4a7f10f988ed849231157f5afd7fc9b270050d8f0d200f55fb358cd9c9005b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c6aa1057ce0d589180c8315fedd9d45b649f93c8da6852cf145187f9b37737a
MD5 7b9676e7e8def10be91fa9c594437e0f
BLAKE2b-256 0ab40a918d6c35157aeda53bc5a6e4b43ae5889d5736fada335beb4126043522

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b5eff20c9351053623d236a613ad3c34d0bf1c04e665fc9a57c15f7fe83cc807
MD5 9257d0529b03456a4454f3099e30b5e2
BLAKE2b-256 d0908f557eefa78a61bb358d7e378c5266c5983378c4dfbb81992b975777927f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6d3ea26bce214a9e9778103a7e7d2d9e51b602b007bc0871a0cc44e6d872c060
MD5 efd2c0f36dcddc150e3bc1765bfe1525
BLAKE2b-256 29e3e41ed89fbbc9affe8f5c9742ff55768605966a86ec82cb220844d678cc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34a67018a39bc11d0a1421c5592dacbe28209fe830b8d4598ad87e3b7e264a00
MD5 d20d0037af18106c7cbdd605053364e5
BLAKE2b-256 17f177298d672fd59b71a3796ee08cff09c0f4d0b373efe17216e7cd17a4f7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7612b477645f2b603c829f812a2eea9da3d19921996ac2fa47141bfb3a0ec4a6
MD5 34a06db236dcc06b0992fb832d549f35
BLAKE2b-256 5c932e9f2df3e5b0aad511bc1bac9811924cba8c90acdfbea45e9df1748bcebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 580675fe0d3d89a4c48834c1a9a5919bb0b2f805da64e4e299098c30f5fae0fc
MD5 e42390d9ef045b0f28e7aeeb4f17aef7
BLAKE2b-256 75483cb0d7029fe6253336e7dc64923d43d12b83c3a70be357c3712396d6df18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2810ee09000249158f9921ea563abb74de828107a79270cf69822b9bc1051809
MD5 2869800befce1d1abd7e21d3a70c1851
BLAKE2b-256 f816308762eb603fd4b0cb0f5bd89bc8863667c65fb0da27252edbc11316565d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 75f5467b74fdc6c9a40e35ba43c08cc5d0a10dd44cbb672313c2cbb860e7efa3
MD5 99098d2d841fc36ede59c330c2214ff6
BLAKE2b-256 c329891441b83f11e95f40c4434b9df8983fe71a8f455de715de21122779a521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af5f69bd9b45c292e9fd282b9df7871ea369c2ffd56ff79be4d8728860ace86a
MD5 9255f0d77cb1fad8bd5ee73ed72ddaf3
BLAKE2b-256 cbb89bcd137fb46ea04e15cd8838438c41392da0215c4d95ecf07f9976c7e5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58b4376b5b459d3dab64192cb9b8f504cbb10a6077fe673cd45f764c6d17485e
MD5 46a7f4763e160250bfa0c58d80ef14b6
BLAKE2b-256 e248ccf8f10ec4011156a1767594739b15e2f74e17c1672367693095dc9a3d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3497af7db1f8fe3b64e3f150c0078937409aea1d74afef63abfb99213bbef667
MD5 cacc28db5fdc926e096af5d6eb0fd2fa
BLAKE2b-256 2a4ed17d922df0dd34e648eb8f5b33f1a25990a1f55cd309b10f7622d8cc4bd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e36d9af0774a881ec035f56d4bef3e9ebf89394f8e1ba035553d30b869766245
MD5 0e06d06404d53e8cc9b9acbda56305ca
BLAKE2b-256 4c6fdee7712a3def0f8595143f56c2a370e1336ed7ab380a62d04c2f4d4dd089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8ce192c7b9f36d36ffe6d1a2c48e3d7f45bed85f0156f068d935850fe2d9a64
MD5 346dafc698aaa4ed53bd87fb786c56a2
BLAKE2b-256 6e2030700a31a0a85520919e57b02967b9d626d0a3a4a5d36cef427057d74b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3523d5cbcaedb88b8e92265b6363e6a214ba70ed1eebbb6aba136b56dad52624
MD5 f2cd5f27fcce2ccafd41762cca09a6fd
BLAKE2b-256 13471d2cee5c4cd898ed38151c52672a4e259cef2637d5c7b1c67d0a1c176bfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88d0b1fed72a030f29dd65c1b1236e3e1f61eb2300464cc14a78bcab94c7d885
MD5 b71a24de360e8f89c0008f5b66bde9da
BLAKE2b-256 2262911651848638e52c6f0368366a752b8c32ef3381e02ce7e021e5938b4156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d9002c9d52d0384b7f4f4f29f8cc98493266afae7fee71aacdbc8ceb4ddb43c
MD5 13dd57c71d7573512d9e2d2e84397f4e
BLAKE2b-256 bd2484dbad63d81e7ef81ef3bf0d525f546a4ee47ebeb9e3557869fd2e9b1495

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a0ae06141145dca810792266ab7c22ef2a6de68bf94d197b889e033f62977592
MD5 d81907b329a3f9a667e78a4517c2fa86
BLAKE2b-256 0cc1fd61fcdb058ddf0285a0e97668bf2b3c8065dcd57c357a9c23f3b1c568ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9880fb1cbe198bec90c44525d9ab43360e1641271454c6de5b2833d3cbe4928
MD5 3911c9495d266454c76e0587155e0ce8
BLAKE2b-256 a5e9d4700ca07001c7d512f1ff23e3b1718924fb35a46a626aa44f15d7bb1ee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c064e5828cb22daaeb850ddbd609e74b0d043bdf3e6f3744aab215392cbf86dd
MD5 23b351e9faf4da3e3df82b32a6e0b040
BLAKE2b-256 64a813de6446548e0426942984023e35975486548c9a7d1574942fe37f3946f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5a5d1ecd8efec6087a88cc4060a4248f1a941a257c2da353afa9e5a0f78af7c8
MD5 102cdbb820612fb24fba868d3d89d034
BLAKE2b-256 69d63e28b7bfc192553f5dde74ca0a1bc0d4123b8ed6e339c5168f6614d39bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb3b6c4df2f6badf2816f31577aab0da0fd17f64195019e8747b339f3782a61e
MD5 46b00b84e824cc9ba38bf6e7fbd1746a
BLAKE2b-256 c359a18f8cdce1508d9e2df1fcddd2c39e121d079a5dcd12090e36a742c71663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c98cb88f394ca06f25416ec45ec9e0b8f4e153732d771c153a82335a1f7dde43
MD5 7a778dfc3e1c86c7827922f6ed5953cd
BLAKE2b-256 4b1ec399822ec718e320d2d32b88518adab1f819b0d3e3e568d2ea739060c167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cb13acfe79a3c06fbfd7ddd8c756c674e0eb70688005458afc2c75f73f2bf47
MD5 d1f876c73972b8c1bdb9b4ce3dafb137
BLAKE2b-256 813dbb97f4efb16f0aabbdb9d189936f7cc6e54fdeea7ce236ac92a3c7be4cf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8b12695411d9988746d6dda031949283888fe3281b339654e4d83bfb4dee8ab
MD5 724aa19349aad79eb9c062800577462d
BLAKE2b-256 e307d8983955c841765987b82a90a194fd97dfe19bb9addbc4b871c6feb58fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2549b4961016b360dd1109b161653459eb3a83bfdea767105c91365852c66eb9
MD5 fff886660855c0e3c86e5f83f1dfc942
BLAKE2b-256 c688f1f11a48c28be57db12993e6513509e63d674c9464b73c43a23ddcdd3831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63ceb92a25c1d08bef57d8cd684b52d451e1010cc99eb7e8cf4a94a5a8fbdbc5
MD5 aa6c3385c0642b44ffe4fd186d1daf72
BLAKE2b-256 1d82e0c45a7b8fd285f9760b53e0806bdf429e353b641047defa474e1dc29d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7566a7c897fc739f7ffb68d799af52bd6b72f0885a8dc3900e2f21b58be7ac2d
MD5 c8c7df04e832913d28016859a02d4d96
BLAKE2b-256 799a50a631705c1f704975db3db6374de6d3265683de15c58010762ce727c07c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33c4e1176ea57cfed53aa2a6bf1da1401220f8ea10d17fbe8183f60aec503cae
MD5 88096a86dc291e8c4c5c04e828cecd80
BLAKE2b-256 667d318f25ca21aa7d1b8a5c12c0fd8cf754ed2d75226ce6ee6923a8ed5c6bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54176a71377a1d0c0ff4b2a53e26e616333b49d1c245b0a6170ff4209502aedb
MD5 a97478c85e40865751b728da1179b238
BLAKE2b-256 3d506fb81f4e81c7d2a1ee04c6c09a65a2d7746b6d4b3fc684569cca3f8c548c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8a4bd9085987a19b5e3ec88948f094a9c5967bdfe8913c186c3cafb05c5e342
MD5 ec3746b7dab49f3af84361b2ff4ec09c
BLAKE2b-256 160e4ff31359854a49dc209780061a54f2c9867c5269535f30606ad9f0280188

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0155b05244f8b212d40c8969f65a4cf5719ba513e4327e5563051afdc6cd1287
MD5 a8550a85dba218a973311c9e0e422ae9
BLAKE2b-256 cbbc091a97ff55e1701da44a9508ae9763e88efa860a328cebf1ef1989802f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5be562ff9511a12760c0231121a9f94af6275eabc09d884bc1200001b8ff5e9e
MD5 05d2a167f281928be9c5e0da421a4b0b
BLAKE2b-256 e4c6be6c14be2e9418c950488ae0b6cecef099af552ec71a7d1bed85548c10b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 35bf14e77d4be78152086b63e79e72af95333c42faad871dbf4aca410e55bdf9
MD5 3e073d7b26ce1945b2019cabd146d6d3
BLAKE2b-256 94b363ad771fd387cc7cc2d5806cd8351ebe9a5031e379fc1104e64702a510ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a7cecacf428c5f47b5081c9443781b94dc73593dd1774db9a769932f1b67654
MD5 97bd31361756893c8b5ac9fea8f7e27d
BLAKE2b-256 4e29692a173e559b72d1caca881f39203e6a9414313289cd7f057215eda0de91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beeb6a6a9a969daae647c1cec83708f2bcf3ccd4542d9e3e646e1f71fd2eed01
MD5 95a5ec22e981b0fc9e161567a7621fc2
BLAKE2b-256 1f9db2bfe4dd66e0285a5f3bc4b64c8156c17f673a4d24357052528d5f71c8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4338b5791783eb214a70e6b7aecaff9439df96bbc37216eab667086c545b4d89
MD5 83137d4f67783ede2eb910302c13c55e
BLAKE2b-256 57ee192010fd1c300496a22ab7a5b4bab5109a0b6508ee7d07a05dde64d92ce3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42d21572ebd847e483f0d5d007cbfbaef974d6c38f0ecfba71a6710485b45c52
MD5 53525db136f7f57f6a4ad15edcc17748
BLAKE2b-256 c7151e523134c2cbccdcfeb4a4f528d9eff827dfc191a29c1f656218836b6563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4cb3a969bd5224f8ea0d6913cd6f8a59698d796b7b089df9d4983a8ba0a9a550
MD5 b0aed62dab078ac692fc9195cb69ac7e
BLAKE2b-256 c4ac401a11ea6d9dad0049f4a6b13effb1a4c8cb8a7a5a1b6aac6b3a50f7fddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0f0762ec5830df44cfa66a25fd731c2cc1af3587e6a573c7c578c16e28a344a5
MD5 bc9eeca38bdd2f658198652c72d5c7b5
BLAKE2b-256 bfeca783d78f95b77b23466adb61bc67c9eb2d2c1b73cba81134d7d0bb4e548a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01b5178404265cd94955c7fa2bf3051c190d11fd04aea22b64a547cd48b5e0b6
MD5 b957928fcccbda835a36cec3c0305898
BLAKE2b-256 3c5c3121f00e4f75ecec5a68e9cc5f77f6fed34214c6b886ec7979296ce373b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c297095e2b9758d347fdaa9cbad6960a8b430cb2e1691c5e28fcad0a64e06f5
MD5 671943088587f88c620e95643b71f911
BLAKE2b-256 304f7a30777d1529a0119cce5c78fd8e54d00b3eef843db2639224faaf6fc647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0296caf1fff6454953c2a540b7b89eaabe9092018382513b3dc48af0309d2811
MD5 742e8400a141276366192b6467409fab
BLAKE2b-256 05cf1a454d3c9c05ad6a1955afb91e0636cb1a5b56a31afa7c4f44f7b6054758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cc706b4c51192bf32e59eb210e9bf7e2b079ec8abd50c451e7d5b5f329b057a
MD5 5ea4126edfad11e6662804e049dd1a40
BLAKE2b-256 6d4109308fd755c7f23b1fe361162b8995d5c5a71e7e50086287c321230a2494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e26a69d8843b757ae0b300a6b1f654146173fd1141715ada5554bdf5a31f41fd
MD5 21ab885a0eefced9cf4ddf34fbec0832
BLAKE2b-256 1cc9587fe7cad4c5d6f718ff68087f0f2f01292b5a2b3beecdb65ae6468b3fa7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e980c8c7478afbca01a001821e7b381af75941cac47ba348c5a6bf9aa051d9e
MD5 250e0b9fe512dfde71dcfbf7cc75343d
BLAKE2b-256 af25205bf79cb264d102b792351e4116098379f5f103f7a5802162d7ef7e1656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b98db93bf1d6d9128e46995f7bb6585b1b5fb9083fcc832d06372ae389595837
MD5 24dea747686b35e6b8a34db490bd2df1
BLAKE2b-256 802d838b6d3a85c6c4708fa59ad05af587d4a6e9af180ffc5703802e20df25fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 79b6266cfd8157f2a9519b0d04f1e973710cbd60017c30e6427a9372aa5a64a3
MD5 d50ef93a3efbe4d640dc420d5a748aba
BLAKE2b-256 5daacbdf0e4d847202bbe3992028093ff0402fbf0932edf81ab1a19efe52af52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9edf464b82a2b584b0cfff8776f9b926352e091e8854305f10c08c1071856d14
MD5 02c612fe4d6a0fa92e2cd4ddf456382c
BLAKE2b-256 a25143bd779231369eb9b21b99f2c0d92a39a841e23eed285f53d03847fc9fd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afdbf478992a0e1597570f2495f652932dbd81e00bbf54ff6edf3985ae5b69d7
MD5 0306fc36d9f3912a3bf9cbd3c1af70c8
BLAKE2b-256 bc2cbe7cc77889783e4cc16ff0f637fb63772424587e77d6978cdf7f9d911ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb3e38aeb98ece13b717c1831b9cf2fd97fcbb911c1766317ad39746a988ee4b
MD5 62e91ef2a92c80585e7d2781d6757097
BLAKE2b-256 c45f4c32069a4e6821a48219ca1c777071cc193ba8f758b5dde1d1f9d80114ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f002ec82574a189d65814efa2ec69ef4887bba401cc4aa0189cc7fb2d1f629b
MD5 dc2a38d52dd2da09ecda190e933eb3c8
BLAKE2b-256 672ba0a231fea998ced4b3021ded6888b398e59592d2f6df78504c298644f015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a32c2b29318105aae14e131da464e63da951272cfda0356cea5e663ea0b6906
MD5 5f11be051833b7db91b99635fb5b4f7a
BLAKE2b-256 c67183d22ffcd5bdfc9a827a445d3d7728b8d66c533b8012bb487dd27430c34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6502885f5814ba46ef17279819e3cfbc05082be4af6356f43558193386868904
MD5 b2793a566d8437be58814ad2f69f6b7f
BLAKE2b-256 e2b073e9d58af3e9aebaa42d013df89d903ec5cd29b7bc4c38793c17fd23d26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49c55860783b91bee7943e06a029f0b75cbfe94c736e67f9d26694b2018510d0
MD5 f17ba75cad47bf38e446e46dcb62d033
BLAKE2b-256 76491cfb90c56ef47ecb74944b5f8d1e6477859323301abb39290aaa43b48928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d0b1efe0343146efff7d5b8550a67842afd1b5a03166d083339b35a75802bb4
MD5 88a0d2eff108b774d525d763bad6900d
BLAKE2b-256 bcffb0015670cbe95ce541926e64b09466c1d5dafdd264205897014e368bba79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8431ab0e07ac2b933fc1b0268bd45d68398dba73a7d95e7e8b6d105e597371f7
MD5 9bf6ffe0465bb900271431c779f3c6ba
BLAKE2b-256 a73bd6fbaa544911f6787e17b616e4a941861fc7724e459c7580aeb9484ad767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 240cde649bcd4b0263b546cb970e1d3a2ac204499b7db92fde1d4720f2f6dba0
MD5 ba153888bd516a1d91bb232e62e6ebea
BLAKE2b-256 64eb2971ef9daf4d6e299d333235e9cc6e6667eb1ef60ac2907e04b2312ed36e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.1.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fce9c3389550f060b76a836b042ee49fb8fe8922afb0620f92dc6a20fb316d89
MD5 a891e6991d085c18e11a694ad721121e
BLAKE2b-256 7a56c3ba16a1e9661812dd52938b92c8d720c9c108ddad0440b71ae20900afe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4dd2fbec0d0a8203826bec4f2e4adb4a07491208def3e92323ca5f1a8297a514
MD5 87da1e2c92ca5f2c83f3277d061f57d3
BLAKE2b-256 bb9f5f624545e22779952f5b03a25b61f01d533da0973013f135ed41d72b53cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b15fa62c8cda2f2201ad0203ae25d862df09967c723772c2da3cb3f81ca34441
MD5 5798dbc72a4251fa868945cef24df3d5
BLAKE2b-256 68e1719f50da7bca6fb88e0da34d98e475ba7607c084d8ad0d79c10980604c9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03252c0c5adddfc2fefde4fb06474722f40ffdfc908f5798b9bf9c68763293e8
MD5 ec9905cdd342025eeced246f18edc820
BLAKE2b-256 845f1e1b22bf4ffe3c7465b49212fb929a566175147a651ba113e2c30d6a921d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e8b6cd2d488fec283c1b7edac4f6d0dd8abb789024f8c17bf8254b4039d60df7
MD5 5deeea09faf2ac59e976b8d89568b856
BLAKE2b-256 e2e7081896ebf60a0abb79b8e4e5cdc1440c54b5ff0f25aaad74a76ba09bf2ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a1ad2b62199f3eecb7419f2c20ee4a7046e0f552bec83966f4abe6b1a29c48c
MD5 b64de35ee725389afc1d1900a4e495bd
BLAKE2b-256 42262ade2e132ad4b03fe6f52c600604212c747a93e19f08947cf4ebc59efdfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4b72968e80738d9f300c834144370bc37609bfb50b904a0456820e4738b65e1
MD5 210a8f7d136aa957df50b72a46a45b26
BLAKE2b-256 3612bc380720a1a445e59128b8a8e12c8c1652b9eb4ea3d78aef5ae951094767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2c95e3e8e65dc5ceb08ae271b44de7165f1dd7e4b5f0aa7b23abdb156544eba9
MD5 029745b6f157b16e3c314ec2051e821d
BLAKE2b-256 77a0501292abc840cb4dc9cc7863d4e4e43b5e37bbfa8cfb0c5f85677421c3b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 796334512595b82c58c7594efaefe181610d467f6ccb238d7b4e8da4f61ecb05
MD5 f516edbf8b0382d9e1be2b296640d686
BLAKE2b-256 c2f04dd3bd9ae2336d809ef7d334d8fc44856cf5f76b7906033db6ac885005f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 022980859f23ae55f7d4fa7df79f4fdd5f5ef9056a4edea297e62f44d54e9bfc
MD5 0125e12c62d469a17093e8f16277a998
BLAKE2b-256 05f029f9845072917505552da30b7531874febb1754de9fdce3d94db901a3cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac7fbf073a55b903fe3c09e80da8ae29c267cc191570cce9b1016b3a7ca47b98
MD5 78515336537d6b440507f6c96f4ffad9
BLAKE2b-256 84e045f3e282078f29501bd3131a85e286cc13a03f7963a039b2deea23145cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d38f26624eb31d9e0977aff8ec70917851f0bc35b2f7ccdb4c4e78bd9f7482db
MD5 a7d4a93be11fb91b5ae2aebd99e5c41d
BLAKE2b-256 dda5f66cc2ea993aece56743fa99c4c3b2c44814e9a76484a546eccd689d224d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 096c92e8c687cc2cb72dcc5ee35df0ba615c28098c20ec676ab2c9e0e63d0627
MD5 284575e3d1ead2dccc4ef30044b4d791
BLAKE2b-256 f2690d5d65767dfda38364823e33384bb9554198f0a2d91d14b0825f0802de93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.5 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.1.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e48eb4721ee3dce832f19b33df19a0702b93559aab82df519f2be5d2f9f18a75
MD5 8a0165209cbf8b57b3e7a0b406615511
BLAKE2b-256 62ee21b3d506e1e5221630403ca8dd9e21f63747d2b6a50a7685ca160347acf8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: djc_core-1.1.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.4 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.1.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d8f536b200620b4498dcf6d332864d0ecc9c3f6cada8a22f8a2ea7132f745b45
MD5 2de054b8ded51e98913dac22002fb292
BLAKE2b-256 96d59770a22fe363cf64b9327eb7ae6a031e2a839a04b72e24e5d4fe59733cd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 497ca81a905ccf6b58029a7a5c553fe810a8a20ef822dbb3a5e660d7710b4b2e
MD5 2c6b1aba53263341e7368911043e752d
BLAKE2b-256 9ae0a7b17fa19c664349e3f450c6f5a91ed507455dd8d187bd44fcf208257734

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e69b58373dd4431e141a40bd6cd787bb385574d66e71a0eea0fae8a6b5b1236
MD5 550c95b13121550410681f22191248f4
BLAKE2b-256 eb434fc90fa65852fe78b86c08990b84d836e6859d3a56562a0fa0a0ba0c4c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 553fb23fcd399b9b8fe3b0363065fa7990567d762ea2a605bfd6c7c134d9bd9d
MD5 3e4e30bcbdf91b9a9e3bb8c19bf70640
BLAKE2b-256 1e936deb45c1cfc645c6c841b4b4c8bd70799c4e4ce74bb032155cfc5052ce62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3bcdfd51da9deb9a67c865ef333d016fabe8aab28b5e766e6358fe5638360c5
MD5 67d260a4548e264ff307adb5dbc5c27f
BLAKE2b-256 48b34fd288c267afe168aa80f42a0cd5c75bba673358379c208e0a23b36af440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c7a4ed978c94c0bb005df7d50b21436780fc4d5f955622a2e227654782bddea
MD5 11c819e91241270c37aaab0a2d030f28
BLAKE2b-256 458cbdcea8a45d0de24550b28599faf26495635dd4174692723746a4c9266c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e3a9922bc9a358a3be81819bcf95cdf4836e8a4eb2240403a247f5b5c129f6c3
MD5 6f9079b6bdf5c91a54af91aaae490fd6
BLAKE2b-256 91522f2e44102ac9218e3c69421ccd0897073f11f3e40165e01163e5aff2f735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c275aa422ac9deb9804cb8d8e8dbc776aa9f1b6d4d0bb7ef5eb620af7cefa636
MD5 e8f6fba0616ac9614549888b1a5f99bb
BLAKE2b-256 382136d865c539010ede0a964f2abf10ab3136aa81d0d2e9e7af86fde837281b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed01d93fba88799b1993266cc2ab83bc87f36b56e264fcc343eb16cffc3f8f63
MD5 c5480c03a1830c8709154d773312c4a4
BLAKE2b-256 6b3877ff98acaf81e1dda51d06f9ffabb063322eb5392df470c265bdc2748a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88663cbc8d245416a0eb957444005e6406bec0c72a6927e969f629859a3245ed
MD5 1d8aeef91c7dadc1d6469cb89ca6c25b
BLAKE2b-256 8a6268db84f478ac4011407af6f168b2ca9ed0f645b03c65816550693c1585e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ba8ee0e206b70c32a983ca2831fd320752280f99e97fe5a68e61167f80ade9f
MD5 b5333b069b35b51a2f2fcaca4f7cc310
BLAKE2b-256 81736a9a0330b28b7a9744c15fda1146fd394f8865ef20c0941e148b0e87bf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for djc_core-1.1.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fcb2875f777d21fa74ae54ba0d89d45d7a7f8193507dd8c3cf16c48c6e37d082
MD5 6fa3ae53ba28d2fa9025d0dc790d552a
BLAKE2b-256 8e8862df66606b176c77c0a1022853e291ea599345aa4fc54e85bbcdc9668637

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