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
  ├─ file_name: str
  ├─ complexity: int
  └─ functions: List[FunctionComplexity]

FunctionComplexity:
  ├─ name: str
  ├─ complexity: int
  ├─ line_start: int
  ├─ line_end: int
  └─ line_complexities: List[LineComplexity]

LineComplexity:
  ├─ line: int
  └─ complexity: int

CodeComplexity:
  ├─ complexity: int
  └─ functions: List[FunctionComplexity]

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.1.tar.gz (339.9 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.1-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.1-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

complexipy-5.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

complexipy-5.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

complexipy-5.4.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

complexipy-5.4.1-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.1-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.1-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.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

complexipy-5.4.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-5.4.1-cp310-cp310-win_amd64.whl (33.8 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

complexipy-5.4.1-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.1-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.1-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.1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-5.4.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

complexipy-5.4.1-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.1-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.1-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.1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

complexipy-5.4.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

complexipy-5.4.1-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.1-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.1-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.1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl (2.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

complexipy-5.4.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-5.4.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for complexipy-5.4.1.tar.gz
Algorithm Hash digest
SHA256 2ac56a2a1ba7d02ce72688f489f673cee20317618dddaf37291a30c6b8e3e82a
MD5 2f3a271cc1ab781609ccce99253ca34d
BLAKE2b-256 1ef5fbb2cab486ea3f20644bfb6a17b38abcb44c12e97494c01ae2f23fa8ecfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 caac02e5446f501b3e1670703a3129a014b423b6d5930ce86925db684859c483
MD5 e02aee987d9d8ba1b81ac75407fe7d2f
BLAKE2b-256 a4d57646e4c393a6e1c3accbba4734fee25b16c4ba774285c259b5a35a75a666

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 0d5f957892a32157cbf9ac6bf21bf0f0d688f60888eccfb3381d74d6b1527e65
MD5 2edfa54484050f60c430d008c3f577a9
BLAKE2b-256 eb36ae86a19c3d6dcdf354aac79d56a083fa6548b35ffa10a667d6c1317d317e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 8ad2d7ecfbbda6f8a6ffbb4162086d22a3405a6cba2f58c04ea1ab0994c1ee83
MD5 c7890b9a28f474e00551ffc657d0fb91
BLAKE2b-256 303a8c436a94e82e6efe64673aa8134ca4b9a032386b68605057e3e2245980d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 bbcee534f500428647704c4d69f10f64b112df687988a63bb5efb8f92995015b
MD5 d3b2e09395b04d86e1f5a45f5f817f15
BLAKE2b-256 883c6a98370a705961e47b1e59058fa6853547a44bd163502365cd8e04d3e8d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 d61716e5f374a31089085068421093747a21d9047bc7eedb9e3fb5d6741844ea
MD5 7f7ce006b5fbc5d48b1ec77752cdd89d
BLAKE2b-256 c45ccb039dbd24e180bc5ca5f93aface077a1c681bd47215f08a316404d8588e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 23b364631a6f52f612bd0f97c26cd08a8137a3fb76452e2039071cbfd0db7ba3
MD5 d5261563c2039766966f93d5c4a7cd7e
BLAKE2b-256 f538a3ec7c769657f5f6d5c7d5c7ea981a1ef8626024d6387f63a0b6cf8a9cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 e70df72320031627a7629167f3e7f1fe1bf5998efb1e213049a67d10d104b044
MD5 52dfaaaa942bd8d80b8e5828a3c9a6c0
BLAKE2b-256 a76bf85c1a83ffbb298442426fce3e6c70d61a62fdee7b3b3b3a70006d369239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 0a8ba4e4302f426f94e9a90085c4c56447f8913b8cac6794a1817449fd3936a2
MD5 99763eef0d1d79116f8b4f1272af10da
BLAKE2b-256 3a505766b258a12ef35815cf313bb29266e358f9f06571eef03fe74d7521be0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 4bc61ace99bede3bce851613db16e03a28366adccebbdd0be50f9a4cb4f02458
MD5 3b58b0177ecd26b306f62e2a4a68adb6
BLAKE2b-256 d37eba94e3e751c02d5bef98ecd8af2098cc09ec3808efb87877bc35fcb1b050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5e61d76614a6b69412567c657fc2f23d561d55ee704aaa22182f0c8e097f9788
MD5 5040f739c23745cf94ce9c367f13cf45
BLAKE2b-256 9c6ffec6d40f0522c4bf26e29ee96f9314b177758abee33145568a53d49b5e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 b0b6cc34dd5b64f27e7847f60568f024eddb5d9b985731ed49840a13729e2b28
MD5 e684de464e400e1e7bb652251e484f34
BLAKE2b-256 6c163b5081d37c69422b36520251b22cf143527d43fb9e1ee43774ae0c57de52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 d6e77e3b5726e4ee1655eb0f43c4d5db61853aa35e54ec2f231a6c6ffea7f197
MD5 d517fe1966a6166cfbff30c19e4a6459
BLAKE2b-256 11d2b7913fc9b9489fcb0fff88d84a34af30790e9e208454c2df7c0aea1521a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 0e75bc08826b09879c6ec2a28c2d75a869f22a14aa9e2bbe2328d554102eddc3
MD5 b05d3dbf55c1f37243a53da509476c4f
BLAKE2b-256 334b36fc5cb62b4ddb64442354ab2077642a6ff463524a53dc1a629a4e63f6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 add6afe39ea7a810c5eaca3d07e77ebd3c7d803a7812170714ed70fe8f95b747
MD5 ea93d5e60404b9dac4973df9b3464a5e
BLAKE2b-256 c0f25cc9ea92ca7ef042252d2793cf9a8ac0d6ad2f6af28fbfe8ed2300932a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp38-pypy38_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 bbe126f29309ad265d1359fd7ab8e6cc199a369a70183bfcf94975f0c30d9145
MD5 d76ac0b1d2cad5f35b467c58064d7419
BLAKE2b-256 65e4da2eae8abc9e2f5c0361c312f86257210f3b8fcc48e9bcd0d388aac54ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp38-pypy38_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 5fe8c81e35e6b5b46840e9119e12d464b1203c6443f74270952559a1965a38f7
MD5 0965e17a9d5452c6db8a1861243fba68
BLAKE2b-256 eb8fe34815af3ba9a5bbe1ff5bc13beba278ce394bd0e43ca4f86fd83f77ece0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp38-pypy38_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 d9c4cb0e3eeb54f2c984b980c5995782ed340610d19be24ca9ac255291037898
MD5 500d6bc592b153d5a5e6b8ae585f6d79
BLAKE2b-256 b4f193b53db8a8f7a214077d10799ecc5b760db6bfec79aa6508b039d131bef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 5f276362ce9dac0f9cb1f4ce5ef8a4a60c7cef2073e5df7c1522cad6accd2b1e
MD5 60301b390ae2716950a0eda0bdc50281
BLAKE2b-256 90e0f75d48289b781a7835d8a2a80d2b735d20b3e903c03acfe1568c98b04567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 602361f8b6586d08f9326efff71637d5707df852662479e6b3468c8745a60ad4
MD5 741bb3f621118a266833df9812ee1a6c
BLAKE2b-256 e3243cfa51103ed0b9da3a72ed06b7c4d719d54f896639e3729c0a9e6cfc97cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6984ca407d99bbae77ad8f2761c49a377933876ac10c1b654aca4e37485271a3
MD5 f6c47be10c9d8ca4edd5a9ef12f1fd68
BLAKE2b-256 7759f6b7eb28caf181e54a39e58e438b0161950e7aac4a2e1aba741ce58a497b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 08061a4ad87abea9672bdb185a9cea1e5e5e329e1927291c0d2b9c7a20e56075
MD5 5947b0edd1cde0fb09486e6bab9270cf
BLAKE2b-256 04dc13a3d2fb9b9861ac8254367ebb524dcd4a6422b10d634e511222d17fc4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 e91b84d129240a8692be8b62527ab13985931e99b30bdbdc9ba246b14722be20
MD5 37c3e9a7a599147561f33064c85d27a1
BLAKE2b-256 9fbdf336d2be1212973d149aa2d594d0e8d4dffacbdb579381a79e04e0f30214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 c34035afc2daa839ca4548cc973e7471cbc208496a2f6ece81d707cc2b6d4d75
MD5 6463a945da5a9dbe70ba7852fd544268
BLAKE2b-256 495edf48b6a40579542d59925a20cc678ef325383c571f34fc3028d4b89edf6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 4c7d9d3e13b3746daf8b88187e1476ebdf8b5f02fdec646ff17d3cc31335925b
MD5 2652d2c8d70cfb7c568bdbe17f9fcf09
BLAKE2b-256 3329522fc1ac8af25d523cc89711dfd76f7b84045689679e6871610e0780b6dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 091fda39754f58f921b22cb449446bee066a66ca4a146cb171e0dda2262de45d
MD5 6caca704142e7d2f828e058ac45bff17
BLAKE2b-256 bb5b66d54a374035333888578411ad36702effc855a3f84627a8705b351db264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 67f25ee7c0382a46c5c1ab8d0591dcc166c37c544b89e289deabfa8d6a26a790
MD5 9880244cea04c6cc8c5a6c4e7bb63dfe
BLAKE2b-256 52621411bc308778aa362f8a611a785cdf84d0a31097cc0f2eace576b05f47e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adcefb71c64d31473af9dd4280f79884112527244d77efd0510cde15b0e9fd96
MD5 4086eb09a59210acb42509bb1e97ea28
BLAKE2b-256 1d2feafcbc7df5d70edeaad31fdf581c91c003ab000326702e979e8ba2fee972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f29c7016ed5a14970954b6ec85cb5f69d59c11d03370da3487bbe626d86279fb
MD5 38cbcf682fe02d6e41fef8e4a65d2778
BLAKE2b-256 941d286961261fe1bd7b6e24764886361a0d19412eb942184a1460d0459c1982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 179d4f8528cd26ed75c45faffc909c6705bfa88b525fcd3ee1c4be41234ab56e
MD5 9fad7b1c7d20aff98fcde59b4af11a0e
BLAKE2b-256 c50d5ce91166e95308d78bae11af73c0ea424c59620a6d08f2fde2c4574d5b02

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c3640671c300c7bb0a0e75ba0a2f671e724808e9b98e5844afcb5ed72731c9db
MD5 f5f67582cca3a524e59ebc79486742e9
BLAKE2b-256 428bab12d166d8af5c784bb94f29a6223f006f80f3d1c847492e7ff442995820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6b895df4adef288fd4586544138ac5606beace376d16580e36d83443335a11f9
MD5 780aa7ce485ea8509182090cf988a55e
BLAKE2b-256 8d27fd41edba9236f6d632b941d9ba5f2d2a003c5ee6b0189cfa44dffdbeadf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 8506c45ed5b9370c84f92a718128311d70d00f5db7a767109043b06c04ce4898
MD5 4ec291bc459148d11a93c4936d3e379c
BLAKE2b-256 01e64216f09d6e725ca085b864a570d63cb69041e84b5b08fef61cd16d0ef8e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 c78b90a1533e658c6c898af2c64fe89ddd93d2294aaa7acaf01ced7544d569e7
MD5 653261f4a8aaeb5b0ac3b4df433b3b13
BLAKE2b-256 216a7b1ef97b2b88e7179c0f3055ad2c95dafbb393ea1ca70b10d58237ed95ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 1705b60ea346dc2993e3acb0cb3a00ac5dcf913480fe0e384afc529e56284082
MD5 3b8626214ec2afa3b4b9c572fcacc57b
BLAKE2b-256 52e659057be814cf8ac208f568cd0ccd35437e2376f8f7d06828dac12daaf624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 891142143a0abec1e92f77c28386319db17e566e1abb2b726eafb8d6b460be11
MD5 afca56e2f3dd7cb224f1af57b15bd601
BLAKE2b-256 a3fab53cc70ce98b4fd934b8be9ceb14ba167c31906fa4c956e703965f96ca59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a0d40a42a7213908e6ea14050afd38a81e4e88810fefc304d783ab463893e02d
MD5 c2b2d48159236b5962748b0e1f2abf7e
BLAKE2b-256 b0cfd5b14fc92a6f9052716441fae14c4773adb58cebb6a0ba45bb409877ba61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 925c8f787419732c3aa4e6ddf0e69f0c48afd95b0f617fec2b1c442321722809
MD5 7add7e24fbfe16061fbea3f8d04bb152
BLAKE2b-256 5a455986d05ccdddfbed8ff49c215c8c9122cf131cece2db854b673945dc07d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07c8845d356a2915b564f6d328b77b2d2173851b019a90de64867bfc2757b6a1
MD5 71896ba135997ad6f954e89455c7ad81
BLAKE2b-256 7fe6f285707bb98f3631aef73d1726cbd1919d5fb12a4701523c66de80be2189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c7704bfcd0e8747bd2dceaec13ded6e4e2789c7d8a261f8bc37b6a1b99611565
MD5 eba8125de544aed03e83f7429ac449d4
BLAKE2b-256 879ff0161fa527ad6b6588a85fca33be2e2b4f13713142300d08f88e3f4b6299

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8bc7ad9d3633803c3ecbb5630da0b973501efad7a4aace181a581a1ac5efc121
MD5 a10169ce32c575372a20dccda653d5f0
BLAKE2b-256 735cbaf377a9f8a8c722bbf082740b1bb116709bfdfad5c6060ab90d2b6b4c6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 327906fa5d512640f8a932e33ebffa8abb39c43503744379a9203a2b0ded52c8
MD5 143876308bddb88835713de457abbf16
BLAKE2b-256 3065054d5a40434cb127de9f0dd5a73aeadd03115e0fee75046b71011dba1d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 81f4f1adebab90d8a05fb251f5b09c0c65dfc67691784ac8a33789945f1c6b9b
MD5 7fd2f30b1b9b9e8e862c01641e9a65b1
BLAKE2b-256 df9c48ac36ef9915c14693cd35680b821b9ed54e5db41d9f717805337eec82d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 731fb3b92daa80a8ebaf888c1915f1a4e860246b8a6d4f00b272f440f8243cfc
MD5 564aa51e67c925ac26aa7b09d90a9d1c
BLAKE2b-256 16a4f317ac7b641a3ef10f69dd8cff7ecd54fbfd7fdbcd8532134b2b5bbf05cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 1857c66c45e8d4d6d1f6da271ab3c7fe406426bbe305e6602ccc348d0c91841a
MD5 deb460dee88f8e3ba381c5e50c58ffa7
BLAKE2b-256 18858626a7c302986f0fa26827f0fa3545eee615ad4e62e6eb59024c542403bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 769d8006c154f9f715a194381f589dc7bd9ae9f6d25a5e9cf7040a580208eaa3
MD5 c34ccf54dd1005fee3b790a4949b601a
BLAKE2b-256 06c8cc4e7e63cc34ecff63c576da84d54677e590ccb7c4ff562c1a8ad1220ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a5c7dbe01055c1de03ca26f61160e18cf6da7af2adbbf0feb42c7164b82bad53
MD5 03ce9976c2c35649257739af71566a7a
BLAKE2b-256 327671a64625654f3210c3b005771bb7c856d8dbc02230f5025ced059b8720cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be39b93cce5a172e8899b447b85e9a9eff6abd0022cc607074211ee8330145cc
MD5 a29865950edf0019201e648643057651
BLAKE2b-256 4b78c625ad5747b5e357645090efc5bced45d7eff0ac6fe7004e6c6ce55745bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da33f0ec4a5c4f4eb02bc04f4254be1241c51a36ae3c35cd780c9e49b03495e4
MD5 f55a2867435f57cdf17087109d78b87e
BLAKE2b-256 40282e8c600b0bc9959a3d7bf40b1ebe7630a93ea7376426095e843e104308c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f775b895f9fbb5c3788bdc3f02c4197f433ef83466042ddfaafd8a0c464042bc
MD5 727a2556f3cac71838448821c8e744ea
BLAKE2b-256 cabb3dbad37dfbd6c9c6e409e7436f016b159dd5b737c86539876effb8942c58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 556bb62dd27ee68c1dbfeb3c753c61a6410816e88e8bb13f4e6fe81c225834f7
MD5 84d7aed904583324b42b028b024c8218
BLAKE2b-256 81cf7fecf9ff9629e633cb979611db8feb7b56379f7f3f3aafc8a5ab4d55d877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 82ec20a3d06c7a06954f0801579b95bea4ed5ed6fae54ccfee2de7a5a89adcd0
MD5 ee71036dbe394ba51aa4d1dc781891dc
BLAKE2b-256 6b63b7f762fecae21702dabd3d197f76abeb2833d41c8460aed6273261873997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 ee6434af7f299fb7abbf7a3f1f2395e3ed2a4f9f4ac13dd56024d0a6dbbb0459
MD5 32411c1711cebf716a6db56fd702f969
BLAKE2b-256 e7a0fdccbd23a95c656f7da5b3b0baa22507fe98396d1c6ca91a935076df5af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 36db21b120ea41878b62315f8eb381ec706bbe070922e98cdae45b266645a5a1
MD5 3f87ba2b60a0d6f3ae8273d70545d8df
BLAKE2b-256 a8c55f2452b6c6478a65ef0c5167df484ae3c5453f3a850727ab297a74b7a444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 8961a09f1738bf99d68c38b3fe97b42d22cba141910fa0fd7175225098b200b5
MD5 c7dd878a1147c2f60938d150c907c0f2
BLAKE2b-256 dbdee0feebc28ebee1dda7a7e3e8f9c465de4b2a954b64f98ae8d7b13efa4946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 adbc1accb261d3519fda8ee83c9125a5121170803c165cb936497b1d2100a114
MD5 6135a44c7f9b3e7f15deb7605e10b93f
BLAKE2b-256 616c2f815969d2cebf5e4e171e6849a6118ad1808bc195e1a8eaa69c5b81c1ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 1bbf0f331dc3adf7c7afe154bb6d634e39cbad2a3c8e231d27b74bf0b347fa78
MD5 399e6715a5ff236a1a736730c09fb7c9
BLAKE2b-256 7d2bc195a4eaa33ddd2000d61ac42270a75e8921327807f74abecfa4cfd4faaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8251ec09811b3963464039e3d1e6f75daf760152ed25a95d61bfd1b4969378a9
MD5 cdff3b2d12aa710289c156a32415d01c
BLAKE2b-256 149019b078b87a315f116c93be2cb316ba2a20d5b3ea8e3c524c1d1af2903206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba7eaa1406a85e9849578b480d348900744ec64ae74f03fb9dd0c18c7e7d3fef
MD5 cc299b5452ea87b814454b33b95a45bd
BLAKE2b-256 eec3b03fa2cf6c10079e089e38a9f09d3a0e7dd595465ca0f01bff96ceaf2b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de850239d9b28ad703fbe7d5d8966af5ab66edeaad8febf53833766946b57da0
MD5 296573eda1f6aab425475e9aac0c3a9f
BLAKE2b-256 632d6e7146f8760c02d30334a42cd6ef378ba1d83c58bebeb8f7d5187376163a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3970c92bfdc6801dd386f0fb3534ad767577bb479c3bced15f301e0c22650185
MD5 856398d11ba85433b2c1542a0885c457
BLAKE2b-256 e3cc11d96f93fb7050c2e2840fb730ebcc296d873f6548d14173f4172f846489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 11f7093a893bd2b72648774382f1f7130501395df161cc6890c61dec8622a1a0
MD5 7a34a07cc2fea00e993b2d9ba6876069
BLAKE2b-256 6c7f81541403d6cd1b8e647a14cd25321973a5ad7d22e81fe0b9b2c79b361834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 a4551477e661e151eb36e5447d6c65356a531507f2f93d92cd4012385f4f5ee7
MD5 7a9b66c9d7ff47452dce83c135e3f2ba
BLAKE2b-256 e38a5a3b81c655b3824e00d319a3c1139449e5e215eb579937aa90acad39e463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 87f2b3cd5c2c118280cdeb87f06dc61efb9a5d3dc56a8e76a0bbb40bb4067eab
MD5 319eb563dc65dea43a04373c3dc5fa2e
BLAKE2b-256 cae01e052d39711534d0b562dd80174e783ceadc52b4173b09715fd41c12246d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 f96ddc20487f73b7dea749624412e613015cab2c89a6ba3210a9c43f784cd661
MD5 49ae95f2be4b19a2b312134c4d95a3a9
BLAKE2b-256 6eef847e4136cab678c4e4981145ff9860a60d6064e770b46895c91e9a5e00ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 3ae8506596b3c53846c77a7fd76f7cdaa76779beaeae7b179f46bbcf69f922fb
MD5 f0abc349b382aebaa8ab5c86f82add59
BLAKE2b-256 ee8b5e3a497deeffb35535f0bd2a5361f6621914ec82a73a9c46a7dce409b60f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b5085e3e28dc26d200975a80ecbd442b9190f98e626ebb8a60173119b9dd0a1d
MD5 4a535715df0ca466159cb02562daafee
BLAKE2b-256 8259297c5d3a5ed71cc9c4ba6429fb7d9652baf196658c3e780c02bb4a8b4411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c4a5b8f8acde7dc6bfe35b0a0e9e980288c6aafd448d188c348a9d3f7af3a2e7
MD5 e605739543311897f9e4abacdac3ab63
BLAKE2b-256 3f9cdbc9b5992481b358f96f8807aef78f733961284cfeab3c55e95c718a6b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 34f82c3dc2519154f6b70624935b2208992bb00e94969da59755ebf28653cc4c
MD5 6c00caca8f80deaf37a492cf9342cb80
BLAKE2b-256 40cff295436c3e66ea116f311603d545c635bb6448ddee376a2ce4393e25ca5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 015a16b210d2337793b72d46731fca95cd801cb77bbe5e17b56dad633c0a821d
MD5 6174e3251c886f440b9ad4cba1c9a7e1
BLAKE2b-256 b16d7842160eed5350437c85bdb271b593cab1669f865e5eb816787c3b6e0333

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 93d6d088181ed9f48cea8237b98599ee85e17ea6165634d6a9564ac30eb19c42
MD5 a4836fb415e24d0b5ba06b4752232e85
BLAKE2b-256 740c126449ffef8911c5f293f975d1932ed9ffb61dc395a5ddf5cf6be8d11356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 b3f8507919a4ca8cdb517e9e0d39941a682edaa82ae80508fbb7c99946a218ce
MD5 0f4e3d4c3b8b0022e2fefe6d9300c32f
BLAKE2b-256 07bfeca0871ba02d63f8f4a1699be83c59886676a3092fc5a3432c058f858861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 1bda9d9a49bfbe30b962e39f427c89345698cdab353149cc378ec652f86ac088
MD5 52a6f6cd69caf512001e4b8f950d2703
BLAKE2b-256 4d5a76cc70f6eb1958c0f12e302b58b18cce49570618a1781c0b6b6f7fb7f631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 f6262446b6ae41a5c0df76da1a3d4dad6806e9e8c51c1c34cc4364dd0a0eff68
MD5 9985aee76d4d9cf6dcaedf71886a8755
BLAKE2b-256 335a3efc033dbcddacce2946615702c5fba6765d3e43b80ae47205111e843bb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 577311d0c6c491f5599e5fdfcffb6f005d141208d2fbdf6133d039015d3b4c41
MD5 9acc1cf971ffc65fcec55f8f579b11ba
BLAKE2b-256 509b7c0fbd20de2606bc80e03e594b09b7d3e4d973b463a4e0bb2157c19215b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 0435997d8fdf01fe478e3abcb397d83d330f063aa625bce88092073201ceed3e
MD5 292ca06f98e19ca8e125393be3737029
BLAKE2b-256 c1c3d84da6d9e67befc782291dc193fb2e9949cb651d7245c2a75d67ed381969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f87a80900d91cb2d675a152b0f3decf93965a26eb9519975199c034f3df1cf69
MD5 e2ac11ec30579495601d7cb1b06e57a8
BLAKE2b-256 abf5a6093360d97415882b1939c87499626d04bf6177635ba14d6b040f67823c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcece4bd698bdae9941843af8b05f06e37f2d1f16eaeb5264e8a8af1f9d37939
MD5 7872f938cb24332a87bc4ac77f19496e
BLAKE2b-256 8ac9af432e86fba88effa1a5e272b01a9360cb88d4f81018f27c513e9998e099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4689979c66bc55e564ea9156f8cdc6143de61cfe5a6b54fa33b7c7bd5be0a3c2
MD5 a26292f360353d5a3bc4c22df921a73a
BLAKE2b-256 cbd043c8faf9b5780445fe19695d36705244347b88b52b2e3d948387b7828e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 14811244a52a094c58644c5acfc69ee39d9294d76bdae5953d980bad3829b3ed
MD5 805d6f7c10d71d6a9d049efe083d66e9
BLAKE2b-256 f4ab2ca2ea32f43cb9b03560d1cba61b199946ee0faea35e3a72ee4342ee7eca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.4.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 24d8bad21e51cb8c5e6e5c4c2173b353cc66082ddc49a4153942510ea6aff034
MD5 17b6cad072ef908998edb6a3a5f702c4
BLAKE2b-256 a483489b1f95dfbe598c3856fb4c8724f0366b5911a98705702102cead54d731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2bdb559b47c24fc7f66f5095dc207579857930271c8771c8401b156e40b7d3ea
MD5 26314e9999a780b37f9303beef1ae884
BLAKE2b-256 e6df884642f085ba775acd76db8fb8a162bc65bd2d859492586400e5804ca703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 727bdc49c381ac215b41b0de5b7733005b3bc498fe35081c1b71a066d3411a7a
MD5 d162516172989b3fcc8bf017f85a11a9
BLAKE2b-256 8b1761cce169dfeb3e3b557156e1405c8eb57489927fe9c0e7534c4a2a98c6aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 398205bdac0d9b9f7131d96092b9b05b0eb1cd8051a535782c3e147a60bf426d
MD5 4b14501e16445056d7cd79a41beb8558
BLAKE2b-256 238c5544d12ee1998f5467717d8d891288c3ab0cb84241ed97dde001f8a37d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 387afb506e7842b758d39372056955c3237d39445f6e5156b0609d0078633360
MD5 ec947715257ca196f3ef856bf8caf248
BLAKE2b-256 ca84f6d309346f7bfb26a9fe9f5e9267f1398bf4e91a2ab23a9389b64a79183e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 61d7924aa01b796497f335d1d2e829d22edca1d7e8c3db0408d6eef4f71a0c79
MD5 a463a20763a0d79e2ddc6c10938f15fe
BLAKE2b-256 7da85f65c1b48a49cfa19489e6db31c5a7bf0451337b688142bd82357b9c6e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 bb3b3bd274910a88b1d5357bb34c2116e6b9634c1470f79a9370554a1e8a6449
MD5 1d4f96c68b05bfd8299b7331d969d5c1
BLAKE2b-256 3f2df928535ae6a31658c57a4aa41b3aa86d0f9eccc32c31b4884e93211c1f9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57746f69818ff01ee6f7297c9eed6e38c1cebc74509af336e2498817ea895c4
MD5 f52d22ea560a671d761ce9ed4bd48e83
BLAKE2b-256 4b3ff849c86df5d0f68adfba523824e35e5e231baf3bd5fed86932ae8adfeaf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.4.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3abd89b795902e60a8fc9e5124aa38cbe6e272d80a8f272003f62c1b2d73a57
MD5 0d3eff1ed719d3fd738b1cf8e02a69f7
BLAKE2b-256 43f72abe15b266976eb033b81feb81d59ad079e96a438c869f13c6200a8ed0fd

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