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

Installation โ€ข Quick Start โ€ข Integrations โ€ข Documentation

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

Documentation โ€ข PyPI โ€ข GitHub

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.3.0.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.3.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.3.0-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

complexipy-5.3.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.3.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.3.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.3.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

complexipy-5.3.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.3.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.3.0-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

complexipy-5.3.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.3.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.3.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.3.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.3.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.3.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.3.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

complexipy-5.3.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.3.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.3.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.3.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

complexipy-5.3.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.3.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.3.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

complexipy-5.3.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.3.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.3.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.3.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.3.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.3.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.3.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-5.3.0-cp310-cp310-win_amd64.whl (49.5 kB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

complexipy-5.3.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.3.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.3.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.3.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.3.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.3.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.3.0-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

complexipy-5.3.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.3.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.3.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.3.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.3.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.3.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.3.0-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

complexipy-5.3.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.3.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.3.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.3.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.3.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.3.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.3.0-cp38-cp38-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-5.3.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.3.0.tar.gz.

File metadata

  • Download URL: complexipy-5.3.0.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.3.0.tar.gz
Algorithm Hash digest
SHA256 b60b60c24b5f4e4eca1dd18f145f41f428c607c40477305b4f8302726b3e1eb6
MD5 ad69cd67a3442f04480637ad595ba40e
BLAKE2b-256 11526bd2b8ed58f8e7d7b37a9ed06da59332035ddb1846fb1f8f2f7a83cf4c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7e24f151789ee320fff80cca1ccbde9ff3905ef4a88a3dbcbc83d29545c4c232
MD5 8b26b67f001de5df07269635d9c120ed
BLAKE2b-256 d1906c3a47b627170885cca0c3edef418eb8680ba8fa6efb9435a16c4b416d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 46622e5bd80e0aaa1ca9bd333f7cc71d03007d71fb7016ea2a68b404b9c8e3d7
MD5 2abd068d7a6a6547f24a5ba5b2d47262
BLAKE2b-256 916614bf24cfb71f870ad5b27504960377fd0209f56fe8571a6dc7416317ccbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 6ee0dc76a30a282ee1869723abdefbca9c8c1c94b3088ed50ab2b109d7019b4e
MD5 379c1fc14449e6e7b30061e4b0a244ea
BLAKE2b-256 f48f43cc653c6cc7bd5a58a3dfc86c64b3117b448c2ca5d8446537836626c547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 15b7c1f60c4ec73f4fa180a5e1ebd2b2db1aa16b2de2612cf2313b97396552c9
MD5 d337c4af659aec911a31425b79970c79
BLAKE2b-256 d3bb83f64867544eec1cb3679d1400e5aea44dc34db6463f1a90055e8cc59de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 91e9bedd18d693cc4e5482e76a52a53298e831020eb6fdb4084b89d5547df78f
MD5 e43c62e65437144afe9030434d190174
BLAKE2b-256 352fc8389df2b7862ac516722f81ee95c5d4f1dc63e4f4ef7d87a917b87bf3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d03454a9bd650ed56dc694a8cb985b020ff792ca5be6208f5bc7c9861bfe3521
MD5 6670cfc9da499e4b51920419a358197c
BLAKE2b-256 c085e59dd22b3b8cb5d98196c85bd571adaa587c5752c6987023cc68791dcb31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp310-pypy310_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 ba77e7ef31ee2c44dac896e1ce4180d046839f2bc22da653c556e82726564537
MD5 67b8d5f26049523fdb15bb020622beb4
BLAKE2b-256 e3791c02993e7530b53b4b7dad4e0fd8b8a20d10d5656fef5a062f878b02b3dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp310-pypy310_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 3456c3c86b677d3c460e11b9bd23526454eefc2c53b0c3650aa2fc7ba0dd2262
MD5 162ede323b19545b63b67787eb886c97
BLAKE2b-256 9cd450aad93204fa702811554ae86ae5e820518c31e49142f96801f496a81af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp310-pypy310_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 4d318b2ae1ae0ab69356ee42c3c5010d6e143aa7602e8e5719d41ebce8fac09e
MD5 11c49147a23f5a681b2011df867abf3b
BLAKE2b-256 8884fc51171c5cdb48296dfa3ef5e64801146c6ec09988683672347565c268ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp310-pypy310_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 08d4c8f45173bbbeff81d36ed9f637bb8084bc9df2eff58e81f7a6d99bd8ffe8
MD5 230d5dcebe0d252f302b9a214e891744
BLAKE2b-256 d08f7ff499305d090285471597c61256cf2f2b11854f435042f807b2d4124695

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp39-pypy39_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 dbd66d11cc04398ff09e6c9694d820c0824221c0ddee70897ba1bc2aa1f924f5
MD5 ca12fa18d61f7e0594069ebaf4fed3a2
BLAKE2b-256 34089fb4de3f9c8e7b2f1667f845e60ab30c266db43fea0725c31e5b5a85294d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp39-pypy39_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 1e104096a676d753f17fe0b0b588158386afb609f2ce25f4d96627791334d8c2
MD5 3e4179946bfe9590b5e4490344200595
BLAKE2b-256 da7cdc7c61c22b0f326df9b260898d18c0f2a301349b41b75f0f13dc9f5fd542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp39-pypy39_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 41b663586702b04e3c1fdb23717b94c3dcf41f1ee48457ae1e886978a0850a6d
MD5 00484e3bcd51d5a6cf7d49c65245bdd9
BLAKE2b-256 836e187bc98149d9c67da0ac6e76e8cfb38ef3105d421eca3fe4ea348e4c298b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp39-pypy39_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 11c9e44a7a9603e7d83345220f363fc298a5bfddf3e479279a352494ba360dbc
MD5 505a77fb5e83961a7995b31f6070e328
BLAKE2b-256 b68014859ec1e0146d4339b9bf272ebbeebff4ff61bff6fb2a86449b9dfa5b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp38-pypy38_pp73-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 58e6d3b8990b460316d522075209f4cab5afbc0ba7d2338f7b62a588b6b8a186
MD5 26e7f554bf572eb0714f3c73fb2491a3
BLAKE2b-256 aaf952f9a576e949aaf93b3d3c3a8f89589eb79022e1e692ca59649e205d0f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp38-pypy38_pp73-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 8174c2854d5a8e77ac97f656b503ffbd9a04c3f388a1136dbafd5f7582ac064a
MD5 7a20299ec0bba0073b1f1dc59ebd3774
BLAKE2b-256 7b869725e2b42e3978a2d4dd2505728ff9e4944538b4abc72166b3bc73478b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp38-pypy38_pp73-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 4db8097654674811ca57bc647cfb1e1161b6877db75eab8a336747fb826249ad
MD5 e1aa24fc138363592d8d46a42904bfcb
BLAKE2b-256 690ca27591762e6b440589b2bcddd139a9e4ebb9ed78f37dec707acaa7a7069f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-pp38-pypy38_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 54746ed1a45c973ceb409da7c08010d9df9bdb31dd5b8e271d26508a8fc50070
MD5 58f7726cd968d27bdaf68302352d2088
BLAKE2b-256 9b57ec861d0c286144e2a17dca6829176e0c0f0ad8621085fecbf13831913bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5daedb399a678ac176e31cc0b7a2b399a5382c3fe4924ff89d3c052af6a25a2
MD5 e58ac68dce514dfe4837cdb920e83ad9
BLAKE2b-256 7a1764927bd2d28c16b736b540189fe10de46d8afba9ed6d8b32636776901d45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f1596e5e535c278ea3308f98e033ec99110f80b44db3251f4992d6e5f9f5c402
MD5 a68cd38e99769f7231be2f934d75dbd0
BLAKE2b-256 4bafb4109e1f44224995107de4187a9dcc203417673b0d0af2e4e45dfed19466

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e651e094e09c0b3b66bb320a4091177febd59cb7326c06a442c161e2d90c0f9c
MD5 a96dc672f6a36d58d287c865f893ca97
BLAKE2b-256 4a9bec85f23523f5f33f40f5bb1895780a6f81bcd27231cec70ff026cd375331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 a6d30def78c5ccf64edb006e1185afd07e9504ed04aee850941acd86a73bc7fe
MD5 1c8b2662d477e4b9da44d985f37223ef
BLAKE2b-256 3b29f2d61cc70901d0b8b307e1245977682a4d82b7eaad832b33b4f867942ce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 07654b531e49ae6788e276c5b7f26c5cbd8e785b788b4ec2af00c48f38ba46b5
MD5 89243388e459d9fa6c96d4a4f41836af
BLAKE2b-256 15fa2feb0beb5c96d9df5caa28597d9825f07a975760cfb78b7d6a55bb5ccbc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 508d4eabf52061b3877e0ec67937db34f7414b20ddb67dcf1a43aba3d090f5cc
MD5 111381b3021d3ec8e2c450e692400492
BLAKE2b-256 1cd53ef542f345c1f4e72e5f47eb2bafe286351393a009a13deae33889a1cd33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 3b5076647fdd18f26a832e831e85946f65cb665832c0498ea4a0be1b9b0659ac
MD5 2b359d33556bc80a5ec696f42134b85d
BLAKE2b-256 282578f2bb05ef2dec40ad76c07c81c66b50486e44a7634be034ccd905d00ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 833bf17a31eddd5c694b84a571f04a9c07c226474cbeefd23e832d34e93877dd
MD5 6bd269a1338596ad46b3295ed320b613
BLAKE2b-256 f4469f80dc4dd153436adb2715c7692699c9f48e5e5f96c2e70e15ec16954740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bcdbe80efaa6d9ef5d25358bf78862fc905e1e9b1bcab2763b208c1e1b135c9
MD5 c4f8f70adc916bfee8f8fd0f47155cce
BLAKE2b-256 aefb162030a9f8991341c847a1993677089509c19d71cb159e332703bda1aba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76c57b535e09546898aa560347f489e596b721c26bd748fe12a882f22c8c5804
MD5 d824b579a29bc40b24e470304a4bc41c
BLAKE2b-256 3f09fae9f39d7aa6790991c9b037ca09640e8d6954031f86834db093c1c70131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34789f2c9b64ccc2c03efb61ad6c96f3b3a53cbb472caf8c389bbca3067db4c3
MD5 5f5878bc8a468f11831235813a4dffa1
BLAKE2b-256 92ae40fe96054305aada53bd2093d041d7298b01a33b2903d905bf39568e78fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 347f1570feaff948085dcb6eb2af4b97ff6c724cc2ee70e7a91a340ae2941c0f
MD5 a9f97149dfb1ca238c207c3d39f48986
BLAKE2b-256 b67fdce9872871703c08a75d708179f16be3b66021cc3056f3878161a90e0ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c5a1966bd608515064e6e5ef63713bafe222561858549c0cb286518b99ded510
MD5 bac1d5c38ca772e71d081637de651466
BLAKE2b-256 b949e5db595955545a111597d268ba249391c298c5e3c9751e4d96c6ce6b4983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 297fa947410db3dde3e5770d06148509b560992b251a1bbce7035505dcafe8b8
MD5 fe7ab4a8887af75147b7fda837923d73
BLAKE2b-256 2b4ed61e5d42606b01c31c3718975170e28dac39a0c7d340758f9fa87ace70ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 13c7cb4ce9946504539d77c718772331056b5ab11e9b1a3e791e79f43dee9208
MD5 e4ca7abeb5dd955f32de0add05d046cf
BLAKE2b-256 253971e94224129f713d8379e100ac35970effd1cc3c5d8beb48e56359c97c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 5a679dd88e03c36a003190e912d0cf953c767cf01dc6669b05f4941aad5fdab6
MD5 4be157e8c3b050925e33c1b46fd30f38
BLAKE2b-256 cf9d2dd3f2d017e4dd5738da39ef81df2b9b4330d64bf0a711bf5d818a0ba065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 b2a4c31158f1f31d3c059384878adfd2edcebe2037de36125e14101a3316d110
MD5 96cb18c43572d83dde835245013ba08d
BLAKE2b-256 e4b9548d920242b68a32fc25622cea7118765c0edb8d87dd46a3dc0353b8b9d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 dc3099aebe6f885cfbc73229c3f137f5491abe355c74a300616cb6537c2a14dc
MD5 fa17abbc4ed6c928ae6406bc24d1b328
BLAKE2b-256 a1f2bbdc38bbce6ec6723c2222a554a9d8a79e64ab4c9d512ae1d4bb1fa2c865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb55e0e5a15d63869af7bbbe51cc92e2432233d571b1d1089bb15e3b50f0bb62
MD5 0cfaeddae1faeff205480108fdbe12e9
BLAKE2b-256 90cf2028c19f62b69bbd4805e1cf5b219afa965bb4fb1eeda5f8e169f76e03ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ea9b82c62b872079ad61f643b1ef2459e4008285d95b1671b2e36167f5c255f7
MD5 6de3929120dda475bfe1609d26dfc8f3
BLAKE2b-256 2f197c702da29f9261f51c8c5a3e50591cf57cc0700be8cea75cd09eddb5e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6415b99c675115f4ef24136c9b5baed06c61e0b6416620d012baa7cad33419f0
MD5 95432103148f653de3fab6a19f09e429
BLAKE2b-256 beed83a87dd3e8129d60eb2fc9e6c87fe920cd2cbec410a442998c3fd66e746c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8b1a0f88cfc0214e4c7dbd328c92d79046e4be64f8f58eaecfd3fc59d567de12
MD5 28bc920786e48fa8d04d062b15286b22
BLAKE2b-256 f4e93008af7872cf29fbebc842c41d6e7e428dca154e49e9e99a38a78a420159

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 80cc9cefca8c8cecc75096f2a9b207f050d009f2dee5c32d909c1db7a60db747
MD5 0a170352cfa4f1928d5874ee6acc7ede
BLAKE2b-256 37a0e04d46e5b4a4d46f112db3296137cc3593fd1819a98540122ce2b6bfbd19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 c0834678ed93729d72bfd9be72e19abf38cce5094ef18fb66a7ed64c6eb05be2
MD5 3067462a9e3778fe1b8a0e4777af783e
BLAKE2b-256 9fd43cdfbbb951d6c5e17cd62b6402fa1698572f155b40a205b70c9573ab54c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 a93322f7350f8ac514384986794309e2f13d4593b6ac579c31d3ef257190e3f0
MD5 5a14bdeca68e53f85a7a034cb70b83bb
BLAKE2b-256 e007e9bf57fbdf37bdf4a526d1938ef461e088233dcc7e43088032e47cd2ab24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 474270be61ed0666e26b8b6f2c40b3b131ef3baf647a290641e894c9f24062aa
MD5 b66146e4da6076bb08bee96147360d18
BLAKE2b-256 c49b7745ce6f0df30bb9baa4fe25f8f3cedd2222355d6f4269c247fbffff7210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 a5bdd1ded9c83e0cc0f2d47c21e3066aa7443cce2d9b556d0915cb407ac26af3
MD5 d046591d2b4000c2f761961e7b13eb38
BLAKE2b-256 1ddc3421c3e6ba82bb8eeab5d3ba29c881be5c74e0ea6e31d0a30e5c870c6079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 52f6fad6e998a3d6a03c737ed0a915565ce8f90c51921597e7156a717b65110d
MD5 67fafc65fad57878c3da8c2fcffd2dfb
BLAKE2b-256 be8b533b8b566ceef7ab1d8958cb653207454319e4de2fd4ebae5cb38d861b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86680349d5f1f72b1e512bc045d3f7999941c8e7f5dfe235c308a0556265888c
MD5 f1ac1db80235206e408dfd18019eba23
BLAKE2b-256 cf0232f7417d5b0b4ddfdf5ab03424c1f193e7633ba1cc4262f768574e628fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04d6137eff0a17e6fd352a6cdc7c7fb6fdf4200a9e6db3f627c60fe79b82cfe3
MD5 3de5515c7028a25fc092eb790d5c9b16
BLAKE2b-256 df04d155ac86edb86f35fcde93231e3c4bcc9676800e67d10a087f3e80200de5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a7b2f0cdeb5fc3a395c7215d1d82f28e498bb154d8d95dbae05895fbf0d6fbde
MD5 7f7ec9e990f5fbefdb34e4384e49f735
BLAKE2b-256 1dce059b802ea28c4738f547667a08b6265ac0d5bab4bc571142f30ec18d850b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42931056b1f92364f859e2798c93e49c66976899af144fce74b2aebb8fa84079
MD5 db869710ad22c55ae07371f5d0c85727
BLAKE2b-256 5813d17c1416fd530767d80fcee27f78265d2777d710ac8ba1fa50eb572a4053

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 033cc22618d958c123d62c377c953aef466a3e8774b595c6c8604678c6c3c114
MD5 7ba5b14e5deec8a6106396458571f4ba
BLAKE2b-256 d8a846ee1f5bad3ce838da7d5495693582d8cf29d85ae188f7e2716daaa52967

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 403902d32189102cfda5462884a302d847234b3267d14ab5ccc2f77160c37710
MD5 0fbc49fd00775f76604c5edcbec99945
BLAKE2b-256 03055a4f010132259c85c2ddca3ad27da8ebb7acd6a291fdd696d1883c12b43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 5f800807a050cbc37a12071bc8d86356a2c06a88285bf52e4be9f5116f4ab444
MD5 85192017b1fc566e713eaf157c37406f
BLAKE2b-256 576be09df53b28fd82b85cef6ad98e03e150b2148338ddf5ecebefbddafe8b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 5ae64b84f0e9b83844c10a6fe5a0610348176560ed5a89e2b33ef0858f48b720
MD5 4d01b3d697cd578f74f91e6a3ca83283
BLAKE2b-256 fca66ce3cd103e8ef1084504897904b48e6edee8daa64b8c8836174ce490741f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 7521d85dcfef17ca797b89508ba4db43d4f017d2389fa57bc144e5882e1b2c8a
MD5 8e5d6c9ae65f8208e2043d06b5b6e5cf
BLAKE2b-256 9463d0fb47745cb8e243aa536e43d4beb4d49ea0d3c5a3b7f577c3568bce2431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 7dffd3c512ddba2259109a7ca8c79843dadd986755c8498b35a3e242eeeac0e8
MD5 09583d941f92e500a6052de64f2b92fe
BLAKE2b-256 6019c92daa4a11f3d19cbbb8d68ff12197a4996f1125be05ff77141f2e19b361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6bde4a3060818d267f1b12bff41fc8dd0f28175730e8899669373831a016353
MD5 7a7f894c57f32dfe89fa6c6ee2f3e1e5
BLAKE2b-256 a1956e1dec9fda54dbb97cd3aa29c2287add4e502d2f7843fcadc7f2e5971e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5684388a2ac21997e669fd6664cb48d39dcf3699b79a59209c3b0283473f39f
MD5 c3fd4e583b284c2971ba067112a796da
BLAKE2b-256 b015f7dae8fff8150bd0288e19204cb2a251c0a2b5ab3f63c4f6466e110964f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 98d3f3fffb472ca39ecdfbe06bb853f30ab1f800ed82d6047eeb18f2167c2fdc
MD5 f633a18e45b9b1aa50e6433e82f3095f
BLAKE2b-256 89f86b37a3cecf2a0a0c4aec2bb67fd7a1453584edacf66aa995e56da61ac756

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e413bba9bf05ffd5f21d8cf0853e068d780f4bc45cb0fc3199d8a84782587d5d
MD5 e4f9b3cd254a8ca3fc8f68b8f8beee12
BLAKE2b-256 b897437aba4f416d25538945c38ff629471d4a6f7e6d1142575c9a2ae621729c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 64331e481432b6cbea3856346d787453eae98586bc62efccfc30677e77b392a2
MD5 a3114bf2946cfab0d3d728bfee93d381
BLAKE2b-256 61201017a06663b16ea775d230d6ecbf9221cf0cb15926968e9ce0d3eae9f078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 6d300e92712cf43c69bf7f361f35ce749803f0025bc9d7d0801547debf8022cc
MD5 176e2d60714fcd8a2b0e6e27c54900c3
BLAKE2b-256 b9b534f1b0dd013d3fe57a892b1849c13ca2b81f1aba7a1e514209a6f0163b48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 21e653cbe981b764d5a39a15def56f554b869974a0e6a3e9d7150b66d84a3514
MD5 03bce421fd80595b531982ecbc0ee9fb
BLAKE2b-256 1f1b267ee3908f04e0ef38b53a6eaa20f20088730f5bf0571e9d8bca30474df3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 ed84d9f8ebee3edd08a8d169594d19e36ff1e859eed4105d84d683010c463b0f
MD5 3479276f51b83ad1fc4eda7575f4a556
BLAKE2b-256 ca2a1c01a21cf27d475c16a0fc444e66d53379da81fa3d73e2d7e8c1c8b0d6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 c71058f43b6b48b50f1b835a97904bd15b0f82d4d3b1cc046a88fb166392eaa2
MD5 a3c8fb92c07e9609bd9af55efc20654e
BLAKE2b-256 308ddd5b4f5339fb8f4a92e76effca2e65ba7b72ffe2309781b5bfa5d971351a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 6fe1ce8804675b2b196091cf0779e0d1ca51058d71c1f15b4fb3a67cbcdf5bf6
MD5 29da28186931efd7e0bd766ea3e68fd6
BLAKE2b-256 6d140cefa2aaf0c2dd6fdbf7961206dbf5e130d60b23bd62481a62a0f0aa6642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2cb0d86be1fc5e7cb8a3b64721c3270b1eff59228dc5adae4734f351a976854d
MD5 90f8b868ea37ee894c9521d236bcdb53
BLAKE2b-256 3d3409c579607daceb8f0d9de5f94f336d5d0f640d48ec29b587d6a258be02ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 986e3833b622047caaff3d48e5726251f80c46fdfb50d8f3fec9fc5afa6daba5
MD5 5d12dd8a9dabb87f7c4b41bc15b8d37a
BLAKE2b-256 afb36def1cd68f238134da319cb4e04dc19f9ec588b240b1d73ba4d46e772a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2224fcdb5f5763831fde2af360c92965506d41518fa9f34c90b397ede51a11d6
MD5 6a7e8baa727bf160b93ef5b2cd26dc87
BLAKE2b-256 19c8958ce0dba15d4d6cc2c774b44dee0d578cdfea2f0ad53a2d83fc5046597a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 866190715b4b60c079951d4aa3d9d549bd3f71b458d0054947650624e16d14fe
MD5 5fc134c2e1c1f08e1b31ff75dffe8fa1
BLAKE2b-256 dca4ccd5f8fc77c941b6ab825f50c89f7be7e86416b4172f2b1fbb34197ec2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 5a555d349940dbca7f4c5b73b135e95a0ee3fbff20fdca8425967806330aa53c
MD5 5e37d4e687a0038931894864adbb15bf
BLAKE2b-256 04641bc0e5c93fbb110e49bca7743d630361d5ed824c6c513b9099fd8c1a1c55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 2f711c40c775712541d3d32aaa7f679cb282970669835b6aa35727113deb77e0
MD5 98c88b33df9af9c0627125d66eb852fe
BLAKE2b-256 9a66efb79c6aec57ff777778ac430fd8721b7fceda13848ba641a1b67e47bceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 f93a8facd860583fa7cf7e559e9037da92de68c7aefb589e9f8d10a97e49cb2c
MD5 c639d47ee48e6b48842d70aebbfce35a
BLAKE2b-256 d358c853b3f502006cfa52e5208a48d1ea23582f141cd125c8ec6cd5617b2ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 682d28e04fbb0b89d06972b2752c16e4722dbe1fa22fb832b8af2d3d0acad54e
MD5 9d9d906dc1183c2cba5b532338a58062
BLAKE2b-256 eaea1977a7681a38db61a59554a1bddce48b80574075b1b305bacd600905ec04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 1c04a72464c0496f7bc6a770276336ab2bb3f2a05dd0b0a7915ea198626e87d2
MD5 1eb2a157b3ef04d961489c3a0377acaa
BLAKE2b-256 a1b260273841951c1a13350f717cce3a07be2fbaf4b8a7f2a5592309b1c1d190

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 b80b83ce06dbe80ac9004cd3c946d2393224e158d23919287b2e4845d135f3fe
MD5 b69aa12b6870aaff814790bdb4f1de3c
BLAKE2b-256 95a54e12669bb628c2276b0649e2a2325cfd8f66858a0b53f4d0876e88f93be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abd0d4ad0d79367d617e34bd450215ba9dd2427b275dbbdf65f1535251be8aa7
MD5 9bf465521f77bf208d387ba8128dead8
BLAKE2b-256 815f8d8d818395858b151b865105103f23947d29cd6f3aa2c4d5b78fed88edcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1863284380f236282eff90fa598751580b1b8fd98b859628e571f8dd63bceca5
MD5 0431aee213add351cead2f1bad81c282
BLAKE2b-256 3a7866cf9113d77de9d85d24b843d4e23e50d933a0e3b247add8d410798fea80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 29d6c2da75719907add67f7136afbbc292e800ef828f9982dbdc9b3db2ca80fd
MD5 7b1e1379d5bef4608e68030630717dd6
BLAKE2b-256 55e86c9ffe5b03cef81fd5b79b6afa27d29a2b37749296e06146df1ea89dcfb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-5.3.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.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 a19fa14a2d1c859608bd5aab738c13fe750c1432b9a9f196f64dc4f1877fa0d6
MD5 6030352aa3570e2e23b59be4cef8416b
BLAKE2b-256 16245232cebb4dd77788413fbd154139ad29c2d5d0436be65393a8481f4c3e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 c4d6c5d469f91aa729049e51ebdd06813c084b364ac2d225bc07dc278cf10090
MD5 bd7ff6b551d6d3ef0e84acedd8240d86
BLAKE2b-256 63ef0eecefc312510a8ca586240d3d5b2abfcc1af33e3cd3559c1a10183651ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 0d83980281854b19388104e7999b1888f7e6f94e8af5aea6c56c65882cc12967
MD5 9d24dd6c4cf8ef6a0124384a4489fb58
BLAKE2b-256 a450a23daca0ccc1fed42f939655754a003d92b5a533f4637245b42a25edec4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 1814b5210004b46a94148e89b0e4d8e7ae07adf7f94986b0b0c459ca6034d70d
MD5 3675bfe2add1077674a8729b013b3ff1
BLAKE2b-256 04f8558fe92fbbce8de9f8bbdd49aa07d2f2df60ed1fdaca57eb1acfe8ce1968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 4d1498e078f586fa0ed4b9225669bf298ed639514439e27f4a343a43986250d7
MD5 81d36c4186e1af17c48526690e9ead6c
BLAKE2b-256 7a9c73f3e72eaee42feaa0c3ff5bce140c3869d3329cee47273eb53a02ebbad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 7f1687b87df9d7a828b190fdc98053e171a28775812799d675d8e947984a334f
MD5 c5fa23916c1e49ab11305afe15bcabc5
BLAKE2b-256 9c25c825cc23ab5ff1647bf721f70870ca470c4c66b442aafccdec7e2ec97c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 00652681e8eff1ce5742680834d2f995f84594cb0a3d8baf1b7113d492a6d58b
MD5 42d795e5265699438d2322e31d9a2c81
BLAKE2b-256 b11d30f711641a3c75bf8efc6c2c5c95dce6016bec427925e1d61504a57ef185

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfbead9b18109a51f7cf65da4e78845d6e01e52efc4ee7bee21dc73c7ca18a90
MD5 86b2e852cb8bc019bec554cc5f4c8f48
BLAKE2b-256 43d5686f0ae8c12a5cd12b5958f63df63934678100dc1e46d8d941546a82fac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-5.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14a968ededbde743807456e893dfde913de56e0dbe0d712f91a0a0ae6f0d1afc
MD5 d71bba1341ade19fac90e81839d80654
BLAKE2b-256 efd1914f685206daa3bfc596756dcbe231d10e18dc612e186fd359361c1614a0

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