Skip to main content

An extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.

Project description

complexipy

complexipy

Blazingly fast cognitive complexity analysis for Python, written in Rust.

PyPI Downloads License

InstallationQuick StartIntegrationsDocumentationComplexipy Teams

What is Cognitive Complexity?

Cognitive complexity measures how hard code is to understand by humans, not machines.

Unlike traditional metrics like cyclomatic complexity, cognitive complexity accounts for nesting depth and control flow patterns that affect human comprehension. Inspired by G. Ann Campbell's research at SonarSource, complexipy provides a fast, accurate implementation for Python.

Key benefits:

  • Human-focused - Penalizes nesting, flow breaks, and human-unfriendly logic
  • Actionable insights - Identifies genuinely hard-to-maintain code
  • Different from cyclomatic - Measures readability while cyclomatic measures structural, testing, and branch density

Common Questions

How is complexity calculated? Learn about the scoring algorithm, what each control structure contributes, and how nesting affects the final score.

How does this compare to Ruff's PLR0912? Understand the key differences between cyclomatic complexity (Ruff) and cognitive complexity (complexipy), and why you might want to use both.

Is this a SonarSource/Sonar product? No. complexipy is an independent project inspired by G. Ann Campbell's research, but it's not affiliated with or endorsed by SonarSource.

Installation

pip install complexipy
# or
uv add complexipy

Quick Start

Command Line

# Analyze current directory
complexipy .

# Analyze specific file/directory
complexipy path/to/code.py

# Analyze with custom threshold
complexipy . --max-complexity-allowed 10

# Save results to JSON/CSV
complexipy . --output-format json --output-format csv

# Show the top 5 most complex functions
complexipy . --top 5

# Emit plain text for scripting/AI agents
complexipy . --plain

# Include module-level script complexity as <module>
complexipy . --check-script

# Write a GitLab report to a deterministic path
complexipy . --output-format gitlab --output complexipy-code-quality.json

# Compare complexity against a git reference
complexipy . --diff HEAD~1

# Fail only on threshold-breaking regressions in a diff
complexipy . --diff main --ratchet
# Analyze current directory while excluding specific files
complexipy . --exclude path/to/exclude.py --exclude path/to/other/exclude.py

Python API

from complexipy import file_complexity, code_complexity

# Analyze a file
result = file_complexity("app.py", check_script=True)
print(f"File complexity: {result.complexity}")

for func in result.functions:
    print(f"{func.name}: {func.complexity}")

# Analyze code string
snippet = """
def complex_function(data):
    if data:
        for item in data:
            if item.is_valid():
                process(item)
"""

result = code_complexity(snippet, check_script=True)
print(f"Complexity: {result.complexity}")

Integrations

🔧 GitHub Actions
- uses: rohaquinlop/complexipy-action@v2
  with:
      paths: .
      max_complexity_allowed: 10
      output_format: json
🔍 GitHub Code Scanning (SARIF)

Upload complexity violations as inline PR annotations using SARIF:

- name: Run complexipy
  run: complexipy . --output-format sarif --output complexipy-results.sarif --ignore-complexity

- name: Upload SARIF results
  uses: github/codeql-action/upload-sarif@v3
  with:
      sarif_file: complexipy-results.sarif
🦊 GitLab Code Quality

Publish complexity violations as a GitLab Code Quality artifact:

complexity:
    image: python:3.11
    script:
        - pip install complexipy
        - complexipy . --output-format gitlab --output complexipy-code-quality.json --ignore-complexity
    artifacts:
        when: always
        reports:
            codequality: complexipy-code-quality.json
🪝 Pre-commit Hook
repos:
    - repo: https://github.com/rohaquinlop/complexipy-pre-commit
      rev: v4.2.0
      hooks:
          - id: complexipy
🔌 VS Code Extension

Install from the marketplace for real-time complexity analysis with visual indicators.

Configuration

TOML Configuration Files

complexipy supports configuration via TOML files. Configuration files are loaded in this order of precedence:

  1. complexipy.toml (project-specific config)
  2. .complexipy.toml (hidden config file)
  3. pyproject.toml (under [tool.complexipy] section)

Example Configuration

# complexipy.toml or .complexipy.toml
paths = ["src", "tests"]
max-complexity-allowed = 10
snapshot-create = false
snapshot-ignore = false
quiet = false
ignore-complexity = false
failed = false
color = "auto"
sort = "asc"
exclude = []
check-script = false
output-format = ["json", "sarif"]
output = "reports/"
# pyproject.toml
[tool.complexipy]
paths = ["src", "tests"]
max-complexity-allowed = 10
snapshot-create = false
snapshot-ignore = false
quiet = false
ignore-complexity = false
failed = false
color = "auto"
sort = "asc"
exclude = []
check-script = false
output-format = ["json"]
output = "complexipy-results.json"

Legacy TOML keys such as output-json = true and CLI flags such as --output-json still work for now, but they are deprecated in favor of output-format and --output-format.

check-script is supported in TOML. --top and --plain are CLI-only flags.

CLI Options

Flag Description Default
--exclude Exclude entries relative to each provided path. Entries resolve to existing directories (prefix match) or files (exact match). Non-existent entries are ignored.
--max-complexity-allowed Complexity threshold 15
--snapshot-create Save the current violations above the threshold into complexipy-snapshot.json false
--snapshot-ignore Skip comparing against the snapshot even if it exists false
--failed Show only functions above the complexity threshold false
--color <auto|yes|no> Use color auto
--sort <asc|desc|file_name> Sort results asc
--quiet Suppress output false
--ignore-complexity Don't exit with error on threshold breach false
--version Show installed complexipy version and exit -
--top <n> Show only the n most complex functions, globally sorted by complexity descending
--plain Emit plain text lines as <path> <function> <complexity>. Cannot be combined with --quiet false
--output-format <format> Select a machine-readable output format. Repeat the flag to request multiple formats (json, csv, gitlab, sarif)
--output <path> Write machine-readable output to a file or directory. Use a directory when emitting multiple formats
--diff <ref> Show a complexity diff against a git reference (e.g. HEAD~1, main)
--ratchet With --diff, fail only when a change pushes a function above --max-complexity-allowed or makes an already-over function worse false
--check-script Report module-level (script) complexity as a synthetic <module> entry false
--output-json Deprecated alias for --output-format json false
--output-csv Deprecated alias for --output-format csv false
--output-gitlab Deprecated alias for --output-format gitlab false
--output-sarif Deprecated alias for --output-format sarif false

Example:

# Exclude only top-level 'tests' directory under the provided root
complexipy . --exclude tests
# This will not exclude './complexipy/utils.py' if you pass '--exclude utils' at repo root,
# because there is no './utils' directory or file at that level.

Snapshot Baselines

Use snapshots to adopt complexipy in large, existing codebases without touching every legacy function at once.

# Record the current state (creates complexipy-snapshot.json in the working directory)
complexipy . --snapshot-create --max-complexity-allowed 15

# Block regressions while allowing previously-recorded functions
complexipy . --max-complexity-allowed 15

# Temporarily skip the snapshot gate
complexipy . --snapshot-ignore

The snapshot file only stores functions whose complexity exceeds the configured threshold. When a snapshot file exists, complexipy will automatically:

  • fail if a new function crosses the threshold,
  • fail if a tracked function becomes more complex, and
  • pass (and update the snapshot) when everything is stable or improved, automatically removing entries that now meet the standard.

Use --snapshot-ignore if you need to temporarily bypass the snapshot gate (for example during a refactor or while regenerating the baseline).

Complexity Diff

Compare complexity against any git reference to see at a glance whether a branch or commit made things better or worse:

# Compare the working tree against the previous commit
complexipy . --diff HEAD~1

# Compare against a named branch
complexipy . --diff main

# Fail only on threshold-breaking regressions
complexipy . --diff main --ratchet

# Combine with other flags
complexipy src/ --max-complexity-allowed 10 --diff HEAD~1

--ratchet requires --diff. It exits with code 1 only when a new or modified function breaches --max-complexity-allowed; regressions that stay within the threshold are allowed.

Sample output:

Complexity diff  (vs HEAD~1)
────────────────────────────────────────────────────────────────────────
  REGRESSED   src/api.py::handle_request                        12 → 19  (+7)
  IMPROVED    src/utils.py::flatten_tree                        22 → 14  (-8)
  NEW         src/auth.py::validate_token                       17        (new)
────────────────────────────────────────────────────────────────────────
Net: 1 regressed, 1 improved, 1 new

The diff is appended after the normal analysis output and does not affect the exit code. Requires git to be available and the analysed paths to be inside a git repository.

Script Complexity

Use --check-script when you also want to score module-level control flow, not just functions:

# Report top-level script logic as <module>
complexipy scripts/bootstrap.py --check-script

The same capability is available in the Python API via check_script=True on both file_complexity() and code_complexity().

Inline Ignores

You can explicitly ignore a known complex function inline, similar to Ruff's C901 ignores:

def legacy_adapter(x, y):  # complexipy: ignore
    if x and y:
        return x + y
    return 0

Place # complexipy: ignore on the function definition line (or the line immediately above). An optional reason can be provided in parentheses or plain text, it’s ignored by the parser.

API Reference

# Core functions
file_complexity(path: str, check_script: bool = False) -> FileComplexity
code_complexity(source: str, check_script: bool = False) -> CodeComplexity

# Return types
FileComplexity:
  ├─ path: str
  ├─ complexity: int
  └─ functions: List[FunctionComplexity]

FunctionComplexity:
  ├─ name: str
  ├─ complexity: int
  ├─ line_start: int
  └─ line_end: int

Inspired by the Cognitive Complexity research by G. Ann Campbell
complexipy is an independent project and is not affiliated with or endorsed by SonarSource

DocumentationPyPIGitHub

Built with ❤️ by @rohaquinlop and contributors

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

complexipy-5.4.0.tar.gz (339.5 kB view details)

Uploaded Source

Built Distributions

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

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

complexipy-5.4.0-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

complexipy-5.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

complexipy-5.4.0-cp314-cp314-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

complexipy-5.4.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

complexipy-5.4.0-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

complexipy-5.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

complexipy-5.4.0-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

complexipy-5.4.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

complexipy-5.4.0-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

complexipy-5.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

complexipy-5.4.0-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

complexipy-5.4.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

complexipy-5.4.0-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

complexipy-5.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

complexipy-5.4.0-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-5.4.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

complexipy-5.4.0-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

complexipy-5.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

complexipy-5.4.0-cp310-cp310-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

complexipy-5.4.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

complexipy-5.4.0-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

complexipy-5.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

complexipy-5.4.0-cp39-cp39-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

complexipy-5.4.0-cp38-cp38-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

complexipy-5.4.0-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

complexipy-5.4.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

complexipy-5.4.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

complexipy-5.4.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

complexipy-5.4.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

complexipy-5.4.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

complexipy-5.4.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

complexipy-5.4.0-cp38-cp38-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-5.4.0-cp38-cp38-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file complexipy-5.4.0.tar.gz.

File metadata

  • Download URL: complexipy-5.4.0.tar.gz
  • Upload date:
  • Size: 339.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0.tar.gz
Algorithm Hash digest
SHA256 eecfdf77821839c79c3853d0567235a7773e8037ed896a897487350251f68404
MD5 9cd29b8b9cc22cf931cec6f153433d3b
BLAKE2b-256 7f42830820022dad5b7444a485ddd900f1a076f35658ff384428b7be8f20ff9f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c7fcc410e60c273a1dca4846a79d33e60ff537884263fa1909d157ce05d77bad
MD5 6438b9ae5da750a4a6fc6fee0a744fda
BLAKE2b-256 9968c7d725a1b46af4022bc088a5c8ccc55dfa3a033c165f1b3ebd5daecf6a6c

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 c7f2d6812adca07336febe69acb4eac2a642fd7387bab4aba064e0545bc68ac3
MD5 be0e354a26d44a80358bedd289f7c02a
BLAKE2b-256 0862a38253433e61349f9cba8dcbf849e658c61f9ebf9d3b13833c87b5dac2ef

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 5ce1df8f659263ab23610af5d3e9ac9c18b665c5c852f2344645823f6d671ea1
MD5 247b4670d467cac40c0aeeb79efe3316
BLAKE2b-256 30ab4fca50804bdb0872a515d8f1840f05f57a705c53b34668deeb9af449f540

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a76a94be193ad427f60ac985678b9bea8c34a34b023b0f8cbad37eec05975e22
MD5 2ac789894479b6105c6c8471708612c7
BLAKE2b-256 0bc7bbb508dabc334802c3106bc1538075939bffbd9e385e33102da5fd250ea1

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 9a94600c379712c72602180cc4694e2c8e5791e8538080d6bfffea45dc68d922
MD5 d875eb97be900eb77a2e20998135ed3f
BLAKE2b-256 b480136aef2720fe389102512975064d62efa1cf32864e955b697bd965ab0adb

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f0052d64c42d56e64173f4c808c361e754a61ec09de6435d5e469bb0eaf191d4
MD5 e5c3a61fb2fab80d986f8a76e6564d95
BLAKE2b-256 9a95b1414675ff32c7ab8f4d450ed20f3eb923bd436837b447bf32ba9e11b078

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 5d0abc858e6761e5cf452432e029700516b8ce6e0521b7f60d30cdbad446489f
MD5 d4a55fda64384a0211f2f7642a44f440
BLAKE2b-256 4dffac9c69942a876c056f98475b0493bdd1a7dd54f5ef928b815d8b0005602f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 84224a066b73c782bd1fb030a6f04978a16c4eb62cca96092d07f3da4bef7699
MD5 2f1477150cb4af7bfd64d61e1261cb8c
BLAKE2b-256 47e0388951a4b5599d645dd0674ba40a7e74d0245c013b7a916c5dac68b261b1

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 8a0679ecfa5bc30e18e297b33ecf77719e0dd3f3594d986402f849997f24a2c8
MD5 f690aadbf5171a4ef98bfee052db05bc
BLAKE2b-256 02e9fe06c50947a8cf045bb83d8578fd1e7ad9be6dca22e6f085b496db561126

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 476f7d56eac53c056811d581e6583a69bd448f9ae6575f8c74c3f5cc2cc31fae
MD5 1c5d8d4139e4477ae79527ae2846c01a
BLAKE2b-256 54402d7806f2f695327fc490c10d1cb48ba93ee44e8c118f7fdfee784a557706

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 adc93ff8c6e655b01c16465a59717a0e4130aa04446e584b4e6f216dcb754824
MD5 31c02a771302b6933d60ac72ff4b0ec1
BLAKE2b-256 5ca7b50bfda09b73a793ebd5abd3e975d067e505aaa3d2141022337e340e5b7f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 a745aeb6fe10210a596228ea833e2a8699e3c8fa783876f435ed0e82de1c6b01
MD5 c2ea24d1fbaea03c27357fdee2dafb83
BLAKE2b-256 d718da3fb12874f358e3ba24d1dff41260c7510911a4d0dcdc6a800bcf39cceb

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 b718eec8847f2f67980fcf2e5c0678cae8ddd93a34f87d48fa1815446c8a0c97
MD5 5c427a8b45451e98d6e19748ffcbb677
BLAKE2b-256 d1e12e1971009bf2a631910cf77b99adf9455d3f2bcfdd0fe9ff779b3d11b048

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9149f5d5df62729f1b6afc49704a853c056ad9454478bd7535917cb616598188
MD5 bfbc06e84a89ebb9f0ffd95e8f54b852
BLAKE2b-256 edf6c8f8c0e5a6a7709d2dc238e81266e9cd9428860c03882caa14263ed920d8

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 370c449cc37368565358e26b36a5dff65d841f9a0378aca8d28f43451ee3f18b
MD5 7ed6e86cd4b02c01704625ec81e326d5
BLAKE2b-256 574ccf61c0c9bc331910eb22edfd2316d3f6471aefb45bf0c2bdcdfbc5e07f5f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 d7cba702265ca50f23c9852ed1e9aa70107f8fe5c6237530d6e29e7b1b7e4304
MD5 13940a9f703c077a6042c9f9ca965c3d
BLAKE2b-256 19aabcbff0155942cbb8370c9fc4ec176977866f08c1b08198dd54beb4572bc0

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 42acff7817ee427588db6da95b247af7cf5d1441140beb3ffb8cdffb3e682509
MD5 4af35eea009f96a968637de6df43a2f3
BLAKE2b-256 2d443a4357160fe08cccfcfa290e8b4a75e0dc2ca9a0d9b1a4b29e9cdee1380e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 2eb148e4825346d66ef1a619fb0fa2ca4e39e6aea50df7026c59067f99382841
MD5 ac80fb7e66881e122823ef710ba76260
BLAKE2b-256 d70c4498b7f00e8ecdf3a726f6f01652b2272cb0f854b3b8ac66914f71b6b964

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d2ef116c563e98b16c7494f6c8f1b2ddf47fcfc8f6665f7db98fc2b8b24087d2
MD5 12ef4011ecdcdad040225c8aecef0eab
BLAKE2b-256 5efddd2504fcbbd04e1e7c4866e0a831ad8ca9f2513883049e91d8a4014b6b3e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 60cbcdd503e869fdf314db4594cd0220a0b5d6f0432c4fc4ed49f92e635917ff
MD5 4c5f75fee157dca2f0948caefeb7162a
BLAKE2b-256 e5a0ea630fe40f278b3f83230d58cff18e89f3f7ac3c526755067c4848990998

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5dc5d1db0c7d2befbf02e45a5ed2a64276c1ba4b710c1e86d031244eb33dea1c
MD5 d01a55e0c250053e81dbaaabbc01e2c8
BLAKE2b-256 b3770e645595d374f444f4838a44e3b125a58b0691fdd46d6702a805665f9e05

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 bbaed28e0bbfe527df43534bf0ba67b1459c52b55a46c01b802f227427043760
MD5 877264f1442fcfc4c31e58bb9302329f
BLAKE2b-256 2cb990f155eefa3aa10a6e70a94a8c7e0b06f19e37799c0c842b22b01e6a2824

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 101938466d910088d81f5494637ed8da992c93f417a69defc1e07b09771c4c1d
MD5 2e4e8bdcf3100e11a3fba8482a48632a
BLAKE2b-256 ef6975103dd6a5bfe7e9fea8612f9641bb9ac1d23d748e6a353c6135b3b9924f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 1d8fb02e164264234e0d664d6d71d85a93706a77fdc54e603bc609a7fc9037d6
MD5 87851321aab17b16a1d344358a837bfd
BLAKE2b-256 ac97c233e04ffdde42daa919b4c1470c47dd07450bd263dc66b63be1d68a2c88

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 43dca0070306007915b3c022239031df652a2c64ae0d3ffa10ba034d40b96226
MD5 24d77c94251d6458bc9e9ec6cf773718
BLAKE2b-256 9fbf3464fe2401594f5e435c282dbce3599a3eee2de38e413f763e7639e35b14

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 488097d185265556e64fec3a31d334f684ec55304bbb2533bd5708b4add420dd
MD5 42735a044fe1c5f5fa1477f77c9c9f13
BLAKE2b-256 f8da2aa7cb0a598ec162831f9c16ea6c0b09be27960defcbb574ddf203364442

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ef21d5fa4bfcd9851a300ff08f3eea85ddd21afda656ab74198d01c74913d33
MD5 a51718dcd35a459559b1df6bac5c07d8
BLAKE2b-256 5e9bb39ebd45c1d097a43b2630ce5e634cb54327ec3d133cb590cb61f5e31839

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d11519de249f0dae9e14eb12bfb32a41ce18720ca6506fdf23f8bbce3a300030
MD5 eb8ed011e05004981a609fb975835e10
BLAKE2b-256 3391cf15faaa19e1dddbc2e940a07ade3137f8dc6fb428b75de2cf53d2b54b4f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8a97b47ff486a3607c1331540e8ea2b401babef1f95ec3dac079e17cc5e65505
MD5 2272774aab25de5ff68131fc9dd2d3fb
BLAKE2b-256 7e06e8cec169a787555920c19a58282676ef564d4fb40cf03fe1766f1ecb8a49

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 48b0ae7706a6c54da8ebfe0453d3a4b962e1300cca5db28c1aa3575fd1a61df2
MD5 3f5cd1d9e802aeb6f1b19d9f10f93d77
BLAKE2b-256 a0a3fa6a852c62f69807115d0055178df461deaa5fd889e0a20dc013619e1737

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 037d9b14f9297e37f8a5752b3f0c26bb5ed70dd62b7b033f92ffe63e9dde423b
MD5 af7cb040e3d9c7b21b2b3f5811d50405
BLAKE2b-256 aac9ea4364c82e4f97d267c873a1aaa06c5c187a83e98f55ebd92fb3c5c174e6

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 96f92fea96b97726cbbcb2b7f5979ab4c8d3fcb351a4c08f9ec0d58e1aba0ef9
MD5 7e83fd03cadbf3e4233c2290d04c200d
BLAKE2b-256 8b7736b2cd71d1ea29cef14c91755095a14a77d308a8d63684e286a9372efb66

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 bb7586443257586cc1ab1c524bb71d8553e7acee433d78b4c1b2f61825237272
MD5 de08809ac8659a83899d743c0fa98d1a
BLAKE2b-256 8eb23e7856b38c61d0ba694a19f29dc6e871ef6f7924eb54059bec010cccd38e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 6ba5e652741801096f0b5b5a365d05f4268db1b6f26cdc91ad54844d03de980a
MD5 bfd7d2e71c0484869e6a9b60bd4bf494
BLAKE2b-256 7920fc04c1c48bd1dc30fdccbcd0984adce0555e33b5e19aacc9fe4c7df0cfb1

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 2776e41408dd6103edfe2427f80e01b3c5b5f23b37b203d1d6571242f275af7d
MD5 98758c5faa3097a2f73d0d5324730743
BLAKE2b-256 489a0da7a8ebcf3de5029e6b2be6c308f04167b887d5e8e58b33bf7ee5e7f959

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 70c7da3dc24155059239837f13c2d22ec1cd7bb29a482b8db458e298e5c92e38
MD5 28d2e563fe2c0d561c5b8e6c3f7177c8
BLAKE2b-256 6514735bb1c7c675ee9335d73812af3c79b2eee316d4fa8907a9fc65281988db

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6506a346f76680e02707d7f8b15736262c80f75efc0f58b0b97475f130d389f
MD5 693054392544ebccc06cc97039053a39
BLAKE2b-256 a30d20afb84148749774255eedf956374e3cff08c1037e5626d8eaf5e0ccccbb

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d4e57e38d7f81b0859bbfea7b0811bb0278fac76ecbe5349db519ddcab1bcd2
MD5 06474d77a749cec0cd9f80932699ff06
BLAKE2b-256 0ef5d865e45926fbeeac82790d140cf0466b994b4f09efd2340ea6107c7535c8

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3fb6757cef095d400dd374645d6c97c4041c0148a7c9042dd3d4ad50c0021d62
MD5 ebcf759636ed8348e174c5be933bcae0
BLAKE2b-256 a9f4382a824d750b84f26bc55edc9713c6c7c631bd5292dc4631d40ffe8ce250

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f8c9a1256534b180d4e7627fc534ff8a20a6e75989ea041f878b61bb1318f083
MD5 c5079b798955f262b5bd187c637139bb
BLAKE2b-256 ca327a3a3c7b58e166f815ab65f4a03aba8cf25e387593d303d830c64f292f06

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 48402ae78a0d328c29262bd5337833ae633be5e1679e3019ee508bab621bfc9f
MD5 10649d681bdd58eb77c94602d833c84c
BLAKE2b-256 3e5025ac85c94f8968db0bbe0e105e407e3885e1aea93b90eef03bfca77131a9

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 00395ca31d033695d603e89f3707087badfa44b0b2316a58a3fca94fdedf3617
MD5 dafbf8e8b23fe80d59008c75426f9800
BLAKE2b-256 292fa0c967b8856a8fed630f4fd48d4f872c16e73dabfe28057c1e4138ad071e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 224f166699fd4d2044fb06ba0ac2de0c9961f76e5889ef4dc7b42863a302a3e6
MD5 1aad089280b1479cf7f33535cb34e45a
BLAKE2b-256 f1aff48bb0dd1c24ef72874bf3e217cb770eab3919138b599efda92e1c0706e2

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 b9cbe2477fbe259ad9bcf3ab4b1e4489afd10145aaf43c2ad1fd31ba9d5dc667
MD5 99679d46047f21faf5d49e2ac70f527f
BLAKE2b-256 c8eb5d514a7d559fbc078fb9f027a46da47986d4f6d7e89c3ea57c3e207b4122

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 72f3fb62cde1feea36b7cf01bbbc7f83ac0de27e682152bdab2d7fa89a8cdb01
MD5 16f173ac327fdcf9a04e3c5c71fc5e9f
BLAKE2b-256 d0024f0ff203d12d6da8c5fac9d9410bf24b198b46a7f83b3b5cf67d8610e58a

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 ee36d113becdbe44ee45183c0f8042aea6c81d1f9e78f843012afe2c962a2bf6
MD5 08a6ccbdabf799907bc5b422606ef1bd
BLAKE2b-256 b69d1e2cd605b3549b3f80f99f2d42015769f040f6d1dd1fcf7d68e47cddb5fc

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bb23bd23bdebfc7193821dcfb53952eb46c07404c0d94d04944d69abb416c81
MD5 e79f08ca1abe1e1c94212fc3b682bef1
BLAKE2b-256 dd642e47784f986a7bdd929bc3416a43982396156b9d59ef43d3a2a40bd22e89

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e5ff5f785cf903dbf59121cd489c413901d79f19ccd43e4ca590501b14accdab
MD5 78ac4dfb90d463eba4161343336ef0ab
BLAKE2b-256 8bf3be547f8328f0b9ca722db22763df7ac7dfe0489c40cc9b26c552e4d47918

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a22e6e20823ae0208451e6ed60e9230a0161c331db4d09c6c94ce4eb0a0b76fc
MD5 608b9186e6c37e847118085b8b27c05a
BLAKE2b-256 cd51bf583b44d9c595b863bd240e482de29281ab7bb1ef361694fd591af9756a

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a476d0d00e5012c2713915d854474fc564bd142f97a464d235a6cff71b5b3501
MD5 7df292d33be1aaee32502aa2f508abda
BLAKE2b-256 ed1ec86f75b0bc1280f48fef54b95099636b494e970112780179d44558b62829

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4aeef65a8ce9cadc7343adeb3991026b2ac14fafef3f9c73ee25078a2b2607a1
MD5 f626645b6f7eb445f00b5a7efea4edfa
BLAKE2b-256 7aeb90d3cfd961392d9f37cdd737adb2712beab37561fcda009aea23bfa1e61e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 bf9fff738f10b02fcbc5dea463e7f614384b8c1a8bb09775fb05a29e3f643ed5
MD5 784cdb0b176042a9d3a1ecdc2693a18a
BLAKE2b-256 e2a8cd9d984034c5b2dd4583eaf88e51482aeaf4ef5b347b87b4c3234ae70ef3

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 07c71369e3eed0a675fede71ab0da91f1d3441a8070e51de28a9c2125070b872
MD5 c1b8d0f3a732670b76f87a5c9a1c0665
BLAKE2b-256 13405d774d72ad398d59db440c99f9d9262a6a0b33be3cbf975625265a1729df

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 860ed17eba40cda83b3685c8121844cb06e3cbbbcd90fe59f3d0200ada6ca636
MD5 ebdb0c3acbacd73dbe37a8dc1babd948
BLAKE2b-256 dd43d9c4a2621a1088f6e07c6c4d9d3e512b96aa86a0aa42fadec44250beda7e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 0ab5c9e6cd1c5562cda89137ddc6d4960c5eac93310918658d35a592ff1fe3a9
MD5 e56b729c9f9dc2399527049e2037296f
BLAKE2b-256 01b531a8fc7b2c7028b8c6e59741dd1e8db6ad0c585ac4690de8f5a306dea132

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9f7598dffe65271daa8f0ef82433ebd4224104650962dedbf5ed27ac1f1ea76f
MD5 854170156be7dcd9e82d997d1cc384b8
BLAKE2b-256 72f252f80207e5c94c4224328f4e51e55fa943221698a418e10a6c7bae1ed08f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ca4f5c5d0c89e40bb4c19f0190a9ab4a1d5fe20b2c6fb10659795ccb19f967f
MD5 ecb8c353213cb756c6e4ae07191aab72
BLAKE2b-256 d98dd0fcb0ca7564eaf61b825a97cd3b798d3995f66066778c143b66438cbc77

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fba640f0920fc130dcca0414e269624c15d676c2bb4a4e53352befcf01d5f43
MD5 fd8304ef1d9aae3fdd00e52ae3af147c
BLAKE2b-256 dfcdeabb9d2e4b625c28feb962f07fe6192c16daa089a29abec8661086129ad0

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4cdfdb00bd8e887fe2948a351b46d6a55a22645c1d3b5462089596a6427ae537
MD5 d533150fae5953ee0e81aaeb0b2e9975
BLAKE2b-256 5e19e9149b1f956499234bb23078b6d5317d9cbcd233d94e0abaa86bd9563cbb

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a091ee0e37ecf263101cf4c0cd3ff77e80a73da01eff314d8f14ac1ed0f2365a
MD5 28791b44062a41c791f1921119f6a799
BLAKE2b-256 49b37e7877fca35607251ebd574a5bbf3d1913b849d45ff8fd75680df9163b0c

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7684fdb587b42e72e14fbe97c91b0e415ace0a3ee16a0451edd87ad524de5621
MD5 d5eaa46442fc22c444b7998c6d975225
BLAKE2b-256 76c6138856219acae12a84815a6ce0e00e4f11ae3167d86f3d3bacf2fb386ff3

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 e9c1850f475c6cd55ef17223dc26682ed37a9d4f5f7566d21598f0ce00b36ca1
MD5 9bb4c0ae53c58da0b6b0b1f04ead392b
BLAKE2b-256 5ebb905ade853d92b2cacbdc7ce7b1dad82ab9844024db025bf582b8b1ef2a9e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 cb485cd8b708bd4df837189282926c46c280f2ddd8470e9bbd0c8ffd7055a47a
MD5 9f1a6b43f9f58d91372cad2858a0a660
BLAKE2b-256 6cb8c6fd07596b5a413590827bf81001a526c765f2abe379f62646623606990d

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 a4d34148bb62f2ef9cf196c405bda2046ad2c84ec52808879547f1eab2211452
MD5 14f2e9153893da20af654f85a7d5fc97
BLAKE2b-256 c8a213437e2521eeacd8a95ab72a9521c3ffef824ff93abc6f464b0de9b2c791

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 88b53ce470315438bced6338960ca28e6b1c0e7d1bc37f9efc9370c6dc4c0ff4
MD5 f268ccd1bcc5457ade007bde7610c3e9
BLAKE2b-256 3e16456cef4a8e24889ca6f408b0f729f847f9399a430ec1b810e0e59f21b79d

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f0253fae6f08a56e2d35564b0070d164fa5dde18c6e8927fb2fcda87e9448293
MD5 70d38f6a88e2513d05016e5eb8c49b0e
BLAKE2b-256 0adb120e8e64395e4cca59e8505f73a5d4599ec750ef8d732e6bc00c93c3124d

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc6fcd0dd983398f611bde1d108a998ce77238db2b977669d5d90557957bb582
MD5 f358438b5fc042386e1dad77e3bbb0b2
BLAKE2b-256 1cc8a8c2adb3eea4023e9751c69b393034bac0dc773936ddd1adc3ac84d9f7e7

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e6e886ef933cc3ec2cef0f893282e31c33504792b4aee2441897e4a8b9c37f3
MD5 8cfc04fad55f97885edb9e344bb23658
BLAKE2b-256 0c8a68a52ac3e90e143542888cc31b93bceb29af335bbe9e77c3c4f63c45ebfc

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d8bfe9e34600c0d19184c273bfd89ce4adc405ace6f60d113e978d705749cfe4
MD5 aca659c69a55bb857cbbad13b5b7051c
BLAKE2b-256 bb56af0450cba48575aaed7c0200390e5d248d5f8acf5bcb3ed38f14a1aec3ea

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cbec33b155c2e8b2b205b4cf89059e87a1f3b5f995e2b087ccd088442b8bf5c7
MD5 1c17810f6b8222a43bf460eab80ff5f8
BLAKE2b-256 d0bd3142b38c56a4c09fc65f97b87724315835082b0871332e1a0f5b5ee7e885

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 92eaeb6e0a9b3602217eb773319bbfffda2eba07cd3344b7ff7d07e904d876af
MD5 b287625ab4b9bf73c4ca1c4d6afe9137
BLAKE2b-256 0314bf73a4801769432fb490b38270a433d0e243648c224d54fa5df4bed6cc80

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 c952ec52b6c71e582c834b7de3a44d7279a8992fd5740466350448e128b210d5
MD5 3c61644a36343ae4c7aa04eebf7ff0c5
BLAKE2b-256 625535249f393c4a1cdb6a368a91d98ea664f2476197e0f0f97655c777b3a43e

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 d3fb8449ebf64d67a6ebfc452b263b053050c1b3a12fb07b068d4fc60cfd3f02
MD5 de99b50c5aeac20b0fa52c6a60fb20d3
BLAKE2b-256 4c2e02194082093f82a6ac73ec4fc506b25d904559a5b98434a4a94cf480cab2

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 0e26c79536b7181198d885f5f05bd741f08bd11e8afd694c4271a74b99b838bb
MD5 b4356ee85f5f2cf71c635b793c41669a
BLAKE2b-256 b7d7c455aaa49e5e438fcc33731f9edffdf48a38e7e3f6ad8a259194ac651f62

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 ae9913385f6bf59de63738fe3dee2c21508f7f1c7f4fba0c5911f3dc9bb8caa3
MD5 aa54fbd0cbd7df5188f955e3ccec0481
BLAKE2b-256 ba797c3c004a55945c238554f7d72941aacd0dd1819f48341a05ccdf48795b89

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6547f1646d4a66c4faa25ab9445a4cc7afbc7bf5d2ba0ec3e9faf37c33affbfb
MD5 5d3e3b51b82887801a1d0763cd34410a
BLAKE2b-256 9e3c58c6be3db762d7f8faa1e8d568136dadbb23880c2bf13f7b5564a91ce217

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3c5f8c5d784af3806a65f120f29acdff3888e6223125d75e47a9a7bd35e46d1
MD5 5f0c9f70db245c567d38122165fb52fb
BLAKE2b-256 9925df806b20a2cdcf735638c378ae3d0e072be051f45d658b0007f1e776e3d8

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 57520d419b5ca616c22ee20bdaf8ff27f3fca358e122d2811f6da89517e567c7
MD5 93452519b0190daf19463c147e1c499b
BLAKE2b-256 4ab9f7b49c53bda3f49c242a404159709f2400a236ef323a36e5c6e4d202dbe0

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71e0b589788ea2f72a2dc7acbb949d089de4614ce1b6ebc5473ea94a0681f146
MD5 52dbd1239d73e96b94b74687ee438514
BLAKE2b-256 cd461171f7beab83c5245163be2df315382596cb84b4bb1e6097999278f08cf4

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: complexipy-5.4.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c5100015a66f051af9a1c78ab19026b2fbbb843866504b2e3f3e033b64985f1b
MD5 2908f49593ec5233ab3950a064ad4265
BLAKE2b-256 393c3c34b335c72f57f7e599408982715802985f1f43a2832aef63cce5d47e49

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 0cd515000632969bf489c7d931dcb5ca5ff70e42bea6c0405460e168789e4564
MD5 0ac4b284cba3361c24945f7fd0d56735
BLAKE2b-256 55ac37f068933c39cc694d0db93c3901fd5c938da4a063770baf92b231aec6c6

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 86129fdd22fb18cc2d2cf0e348b649703bb7a17f97288a4e876ceb319d773455
MD5 3fa7f24bb7979e9b28127fbdfe538c1a
BLAKE2b-256 2997c4901dc83177183c17338955a48b67a33e6d8adb36069d866127e50101c9

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 72a161b98d6427d02299c02ff64f8c210e099692ad15baefc22478953c66fef3
MD5 400bf418bfa1c20fb2155c3c9d29c992
BLAKE2b-256 7e681e9b70387f42226e00de377403ee441ab93ad01860c6c5ce24fa0c4bb49c

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 7e55d83945369b8c13aa334e06061f15fa828a47bf54f5b2b0ea83d7c409d329
MD5 e37ff65655194686ac5d5a07f546eba0
BLAKE2b-256 653caf808fa1e9cd5101bcfc92c3b8912c7a121bf35a348fc1c5a1d29ed7eb6c

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 408ae0070d72d5505f12816080898e6a8359f4cacc43b12cdbe6b333bc14021c
MD5 af0a4370d19a62914e5096ce661fed5b
BLAKE2b-256 274678a5ada141762c3cfe70881ab9395c2a93188602dc302bb320ebbea376c2

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 0b37a6bb0926381478a684564aee9952286c6c0b803bae7b1aafbf7c8ae4d77b
MD5 0d86397620a78f3d96977b6594ab9bc1
BLAKE2b-256 bf1adf6f540c44743fd98371c9429cc5791dcb4b702dd34a3dec4bec51613b7f

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f7c06ddd4898a9e4d5b53bd188b55c73992ba478f5e655b7751cd5abe7937e3
MD5 59f1f138fff56fd0c934ace6d014380d
BLAKE2b-256 2cd3c22e9e4c36376413749f934b73b73f82b5a9ba35db29d4d14011016d5d64

See more details on using hashes here.

File details

Details for the file complexipy-5.4.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f384993042472948f7ba4b316cdfaf38fed607982d4afe772a228d10c4253b05
MD5 b704583aa0a22c91814dc509be7cc1bf
BLAKE2b-256 bd97e3c28498b2ea3b978a1f25897aec1bf7ac85c994b7aab9812e7629c331c8

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