Skip to main content

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

# Show deterministic refactor suggestions for failing functions
complexipy . --failed --suggest-refactors

# 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
# Analyze current directory while excluding files or directories with glob patterns
complexipy . --exclude "tests/**" --exclude "path/to/exclude.py"

# Disregard all inline ignore comments
complexipy . --no-ignore

# Report all ignored functions
complexipy . --report-ignored

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: v5.1.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
no-ignore = false
report-ignored = 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
no-ignore = false
report-ignored = 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 glob patterns relative to each provided path. Use patterns like tests/** for directories or src/legacy/file.py for specific files.
--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
--suggest-refactors Show deterministic Rust AST-based refactor plans in rich CLI output. Ignored by --plain 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 and enforce the threshold. Fails on regressions above --max-complexity-allowed (see Complexity Diff)
--diff-only <ref> Show a complexity diff visually without affecting the exit code (see Complexity Diff)
--ratchet, -R Deprecated. Use --diff instead, which now enforces by default false
--check-script Report module-level (script) complexity as a synthetic <module> entry false
--no-ignore Analyze every function, disregarding inline ignore comments (# complexipy: ignore, # noqa: complexipy) false
--report-ignored List every file:line where an ignore comment suppresses a function. Prints even under --quiet 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 a directory recursively under the provided root
complexipy . --exclude "tests/**"
# Exclude a specific file
complexipy . --exclude "src/legacy/old_code.py"

Refactor Suggestions

Use --suggest-refactors to print a small, ranked set of deterministic refactor plans next to rich CLI results:

complexipy . --failed --suggest-refactors

Sample output:

Refactor plans:
  • Flatten nested condition block with guard clauses (lines 3-8, estimated: 7 -> 5 (-2))
    - invert the outer condition and return early

Plans are based on the Rust AST analysis only; no AI is used and no code is rewritten automatically. Estimated reductions are approximate, ranked, and limited, so treat them as guidance rather than exact future scores. --plain --suggest-refactors keeps plain output unchanged.

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 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

By default --diff enforces the complexity threshold: the run exits with code 1 only when a change breaches the contract relative to --max-complexity-allowed:

  • A new function is introduced above the threshold, or
  • an existing function's complexity increases and ends above the threshold (already-over functions getting worse also fail).

Functions that regress but stay at or below the threshold (e.g. 3 → 4 with -mx 15) are not flagged — the threshold is still the main contract, and --diff only catches regressions that actually break it.

To see the diff visually without affecting the exit code, use --diff-only instead:

complexipy . --diff-only HEAD~1

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.

Disabling Inline Ignores

Use --no-ignore to disregard all inline ignore comments and analyze every function:

# Treat every function equally, regardless of suppression
complexipy . --no-ignore

Functions previously suppressed by # complexipy: ignore or # noqa: complexipy will be analyzed normally and may fail the threshold.

Reporting Ignored Functions

Use --report-ignored to list every location where an ignore comment suppresses a function:

# List ignored functions
complexipy . --report-ignored

# Combine with --no-ignore to report while analyzing everything
complexipy . --report-ignored --no-ignore

When --output-format json is also active, ignored locations are exported to complexipy-ignored.json. The report prints even under --quiet.

Both flags are also available in the Python API via no_ignore=True on file_complexity() and code_complexity(). To programmatically collect ignored locations, use collect_all_ignored_locations() from the complexipy package.

API Reference

# Core functions
file_complexity(path: str, check_script: bool = False, no_ignore: bool = False) -> FileComplexity
code_complexity(source: str, check_script: bool = False, no_ignore: bool = False) -> CodeComplexity
collect_all_ignored_locations(paths: List[str], exclude: List[str] = [], invocation_path: str = "") -> Tuple[List[IgnoredLocation], List[str]]

# 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]
  └─ refactor_plans: List[RefactorPlan]

RefactorPlan:
  ├─ kind: str
  ├─ title: str
  ├─ line_start: int
  ├─ line_end: int
  ├─ current_complexity: int
  ├─ estimated_reduction: int
  ├─ estimated_complexity_after: int
  └─ steps: List[str]

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

IgnoredLocation:
  ├─ path: str
  ├─ line: int
  └─ comment: str

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

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

complexipy-6.2.0.tar.gz (355.6 kB view details)

Uploaded Source

Built Distributions

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

complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

complexipy-6.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

complexipy-6.2.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

complexipy-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

complexipy-6.2.0-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

complexipy-6.2.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

complexipy-6.2.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

complexipy-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

complexipy-6.2.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

complexipy-6.2.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

complexipy-6.2.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

complexipy-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

complexipy-6.2.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

complexipy-6.2.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

complexipy-6.2.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

complexipy-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

complexipy-6.2.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-6.2.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

complexipy-6.2.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

complexipy-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

complexipy-6.2.0-cp310-cp310-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

complexipy-6.2.0-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

complexipy-6.2.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

complexipy-6.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

complexipy-6.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

complexipy-6.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

complexipy-6.2.0-cp39-cp39-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

complexipy-6.2.0-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

complexipy-6.2.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86

complexipy-6.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

complexipy-6.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-6.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

complexipy-6.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

complexipy-6.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

complexipy-6.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

complexipy-6.2.0-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-6.2.0-cp38-cp38-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: complexipy-6.2.0.tar.gz
  • Upload date:
  • Size: 355.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0.tar.gz
Algorithm Hash digest
SHA256 c90db418f1a3e885ebe75537e5930e2ad98543e3302b55f59684db343d30de2b
MD5 62d8ab96fb80e5481fe9a87faaa68960
BLAKE2b-256 f2826a5c35b7c31ef56ed3d5fc94cd84d066ac1affb2484fc94afa0dbb15c127

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99fbe293f4444f257ae92e33aa76cc7ae2b702f6d8112a16a1c3ecbdf89400a0
MD5 ebc559ea109c7c8eef3fa96e454b4b3a
BLAKE2b-256 0b1f747d42eebb4a9445b0d4ef76fcac2d6bc27e57e7897c0a978966b0ce1443

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e653a053a1749c79dc6506f4de96d2b303932a7b015b1a7d50792f31947693e9
MD5 a3ccd131de743b99767bbe2d1ab23e18
BLAKE2b-256 a0f3efc42a598fb973e58ab9283882aefe1bc55e89f01957a873b9556d8ec0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e1819f8ab7c210278933869623dceee10ab38d4f32d7e32cf9edba266064060
MD5 4abe9d502e2d4f1e89bc1d77c8332adf
BLAKE2b-256 1fc3b9482c61e5eda34624e712f5c566381fa3acfc5fa865d1a699a790fc2587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e14c83ca7127b846422085bbbabd4b65c03e8321bb45523ad8bca1adab3d37f9
MD5 1c71d7080218120586e60fb4626ed287
BLAKE2b-256 64781ddb57fe056e2cf3e201b5d819ba002069055a11f5aea9a5dcfecf2cbb98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17a191fbfa3fb4164396f19f888f5c6d9a822d16b97b095f418444d42b51b4a7
MD5 9b4d26814ec173ff562842f8a04814b0
BLAKE2b-256 1ee4e6697490c1d92039f20b072346dbba59b2feaec0bc969d8e10717ff46254

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae02c687f04670fd2df91451a229ac5e61f677837f32a835f787d9ee81da0f93
MD5 158570c8cab16797e73adeb55fd34ee2
BLAKE2b-256 eadafd4702ff111263fb40f60d1808af5c334e80f232a5414a1abceca0c8ab17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77a7944246194bcd53314fe04903faf3b8e174f9701de68e113efa237e7cc2e5
MD5 86d3d7fc2421cc3af4cce69dbefc6b24
BLAKE2b-256 c48761201db9b90cfa7b1690a317060eb8dc829f914ca73ff8c5d402cfd53939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98492cf0361adef4450a9a7d7647099531e98a8a1c1ae026a0a6f160a405abef
MD5 080adb1724db5577e846c0f655152330
BLAKE2b-256 5cd2a3f5c44c06ee4ae5b0bb9652571975edbc7c69cfedc3ba16ad06a193b782

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 037fe51f18b3aad5b09ac74880735d3dc21dd54b62fcb02a8d5f1acbd76da8f5
MD5 24562ad1921551b27f8106a40a13818a
BLAKE2b-256 a5dfaf4eebce70ed8f91a94f84cf65c7aac2720c808eacc9772b8f53df0cb23a

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 04f4c4e08d2d4650828b33b88ebe7521e71fcc2d1a7883808e92404c414676e1
MD5 a5b51298e285ad8a256b81ebf55cc4e0
BLAKE2b-256 4a5ffd5a17602585ff8625072ab356b36ee6de42cf82a865cd919dbf68a87241

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42442a233ecaec535e6543869867184ac0cd6dead64f57ce581e650d4d5dfbfb
MD5 e72a6cd406421053645866bf5b11701a
BLAKE2b-256 5e392d4be85a221c167a36960175ea006ad310680c35cbe005cd5ba4c5322a92

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 aa80249ef9b552da259f2cc2b16482f547f05f76a4f377dcff3f568ea7fcaed0
MD5 6828ef4533fa7ffda62669aeeaac8fa3
BLAKE2b-256 c03d1dc7456c01d46ffb5a18e4cdbcba9c3e81ba209f5587ea2280e1e5b49d26

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cbbefd1fc3e72da8016647176de792a579a276b1308f0822b5b1585f16eaf5a2
MD5 076852c4417558d14b58e0136ae0aa01
BLAKE2b-256 812eeb2a778b9ce6bfae57f41eb8f042df3167174d2627bf1eec37b6bf64eb44

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63eed569ba56d2e90a167a38f241fa06de99ee9f96ec950c55a2aa22694e4ce0
MD5 c9f031fcefc014ac3653c17a88095482
BLAKE2b-256 980aed66cc8d14d8cd0d76154f30e36b05a9bb058b462541056666f5f1bd7880

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28914d763c03d3a662ac2d666bc4151852788e6e767f52dd07c94e8332a4b265
MD5 3dc6f0aeaa70e038bd18ab2e0e52c309
BLAKE2b-256 510ec7f061240d82abed2d34a6e5fd4165fd97f6c7d0c90dadeff1fc4a93366b

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f50e3496d9dcc547d9c5d515bf297c87c9c57afe33cbb6df341e614fa57b1738
MD5 f98d8ee1a9401dd52bdca8cda40f401e
BLAKE2b-256 dc5a3b50eb8c2d6b6016379825cf330fd7ba45a5859500000bb50586e1e008e0

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de886742128d50e8100a8cee3b4596be2ec4b55cdedfce4ac8f9f45fbe8fbd85
MD5 d40be86dd951f8007a96b706a09f6609
BLAKE2b-256 5856fb835163c4af2119539875b3d9c7ce09fd1c02cb952968fd9b71b54e2916

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1348392bf58532653bf3583f18fb655b058e680432c23264a6ffc8f27451cc01
MD5 41c70a1f9e56ebd7df2f8c802f3d8038
BLAKE2b-256 7ac05ed9f7815c5abb4c91b2d0d78df7996c182ab61ac233f40fc92a907e23de

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50555b34bc069c8e06832b42755a93939215e21734891bad910ef0b6eb1e18fa
MD5 2726b961e6b675d0ead4b1f47a7e645d
BLAKE2b-256 5f6c680f1dc9a671f4c3aa50c4922f0cfa5605a34bbbb5861725101580d8b45a

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51a318d2bb83a766c5b7a1adc9d123df9fd822cee8df648c925b698506469e58
MD5 b789d4bd804500f1a03838b21a65177e
BLAKE2b-256 20221d27d7d75d32c49d0bcabe2e118ef7f1491b9bdfe02c7043b62a574f9409

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 89fabd582ed95cb0bae44f065b40a6afbc045d8717acbaf693ba3eafa50baaa8
MD5 8443163b229348e53e9a3f21244718b0
BLAKE2b-256 edf016db165c81e6b2246e9a765bbb4ce4a1929a9ca151aee0637cf78092f8b9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3a22f5f2a6843a8d9652076368b457102a0c9e95b63769b5a50ef3686427fd96
MD5 890e59c4b0d012cf7afebbc56111dd45
BLAKE2b-256 9ad180f4cc44d489db0c256f05fa1bb468c80d5db0e7309bba6260218f59e167

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 579450cf61ff04e59149e1901cb27de3d80cd4815a227ad24c2e92ebdf4b449c
MD5 e1a49771ca20cf8028ca000c0067cbb6
BLAKE2b-256 cb7b1ec6e25c7b0a5706c20c6a06d92fdbe768d103c80ccd37a8755b85c41525

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d78cbea32ad23dcc6ab2d5589712e9a9493f1295d13ae3bb96268f8427cea6ed
MD5 9ecd26ec101ce44dd1ebddca59c76a9b
BLAKE2b-256 e7b80a2b482ba94f744a54a09e54a77563c1bc22847664d7af5349d4f4940199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12064f3e210243c532a3734fc87c149dbb4806ac171ce42843ee816d25387def
MD5 dff98f4b4e3b82fe458d85817455e18d
BLAKE2b-256 986abed199004647f134deafeff21afefde4e180694a58d11dd14e7287b28985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 708c80d46ac70dbfa17bf82742d89852aeb679b0d7c05379314930327841ce3f
MD5 4950d6ec7b014654ed4d795c4b971220
BLAKE2b-256 6d41d3f1eef665f9833adaee9aff1232bcba43451244fbf1ab4a180365236aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7285614c6be583ea702d22a19c09ec235b81bd11d9e754c9a940493e008a7e10
MD5 48b4b55e4fb636d6fd04baecf79be72d
BLAKE2b-256 2cebdb02f3f6cd1c3d047aac8b10b1ff95c98af4f538e07c1d32c9ff9cf757dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e9c615f1910c7436e9dfc7680e79399a89bded1c554b9c0a37b94db1e6def55
MD5 42d774cf7db4bc5bc21ff34c191ab5b6
BLAKE2b-256 b5f1c70bc68ad4bd57af77991dd3d85f27bfaf27e5263e3afea7862d0d63e561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0341b7d7ebc67a5e7b500007df2195f4f92d4e24e21a85fd954ff77f4dc6af18
MD5 9da511774d521fff4643e354ab36232e
BLAKE2b-256 b25324cf69643ab14d7070ce243f504c63624dec13c916bb8bae99ccaf2a3fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f954e8d62891b85c0f279c335dda7df24638fa83efe3c1d5f4752100c61b4494
MD5 28fb89128facdef2737412d213cb052a
BLAKE2b-256 96ca1843e382dc4b4f612ada7b8a3ebf2bd4e4584f3acf99fce243ed735dc883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8077354d21cd7256347af67e33d0d0c2965a2512a9e174dfa01d6935a6a2c8ef
MD5 f78c384b4b6481350c20cd90eead16a3
BLAKE2b-256 af604f0b620afb20ed0a78356325d7dc5835b8c3610847d7adda3237e80cffb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 498018df8448124247880fb7d824130401a8ac18a8b17aca7ebd54b91c5502bf
MD5 a7682cf807d88c6d741262812ee1e5e0
BLAKE2b-256 f7fb9d0f90e32d1a2462ed4f4012ea922a759e708cd8816506486e4347249957

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 624762987e37db3da602996f9190a33cf995f1768a6652d6d21f6170767750ad
MD5 b7f99355c998444ac83aed2ef7788326
BLAKE2b-256 1c7d31122b321a5647512af1d748e689556112d3b381da78ed7f1d982a5884ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 338359fb31b928f1a49063106b2cecd8e6f827897cf348efadc6fbd12719b961
MD5 d2848169b8ca8ccd4bc1da39c5687f06
BLAKE2b-256 fd80749ec64ef80b3863efb6b8cef03071a0054c1041e1082059c7d0d4f23d54

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54c00af2b42d14ba0e94c812b33c018c386013128de584f8cbc3124567d28c7e
MD5 f1b35c02d96cc3b72259def516d2457f
BLAKE2b-256 a04f9805118d69a7ab3dc5bce00ab6d1c1207f4619777b50981a0179979ecf39

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d426720668664fb79f04c271da5fa2c0293ffb1e19ed4db0a8de134ad16d550
MD5 3983638fcf07fdff61cc2caffe52b367
BLAKE2b-256 3ceda6304b3519bbdefc3fe3b68926be11e14708f4724be6668e9c81f5e56058

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b3077f387b7c225d1a5416e42dd005a9bd61031494608b768fe9fe62f67e662
MD5 675e74f3e9f4359ecd284df3c59945ea
BLAKE2b-256 7269964a50dd8de47eedea4a05405fe2a2d7037fcc59702a5488c36234d39fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1dfc7145be69fad1a828b4d92391a4e70299d8cdc0d74541a9b0d02daf05c67b
MD5 afbb5787f3254eeb674e30b3425fdbb7
BLAKE2b-256 87cf1d939868ae311c004ebeaf19403e03375f38edcf1037822216592bcc17e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5bd3ccc2fda92ebfd82ffa53498df1783d809a0c6ad56941eed42fcf312d0acc
MD5 4881c5a7b53bc145cfad6a5e4ac975dd
BLAKE2b-256 1a3ce0d65a1e20da7c7fdb6da365119bc7de32e3cad946d97aea96e87291ac69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cec2b4dc54e6b8ecc993a6e66652816ba93c3bc99729b28ed5d3410e39e713b8
MD5 68ccba4d1b21935ce5bf29295232953e
BLAKE2b-256 aee400921335f5f43fe5160b4b31763df55b53daa7dcd00fe11787975f9c941e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9d6a561815bff1cad0c43649ec1b6d501b8c0a0ebc4c84ab34fabcd5b35b78ad
MD5 cdf0476e647bc7abe996eb6f56a5d3ba
BLAKE2b-256 f50d178f6a0e2dca3c2acdb0a4108c5942fd9ee6c5e76379a5aa9ddfc4564cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eaa51743c27f6a7ff00f6cf19be871903bd101318b0eb1aa9ba958e6c1922898
MD5 d34735ed1adf1d8d045f1077cb14a88b
BLAKE2b-256 c5a4b97e3cd5f338bcc77f0fcd8914bd2fa1deb14aeb62027e2f14d92109f9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18ec1d43b40fa5c32288b137c7516814afb73843dce7019ba6280d5f6666240f
MD5 88742fda4042040bc1b931cf8d1af5b3
BLAKE2b-256 7780ad38a2afa6a7f1878935493b725b7f33db94b748458224948b21a807f9d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f926157cdeada0bb3e8729429bea928ca210b2cf6249ac70a2fb09548a606f50
MD5 07ad2d4d2a0a3ad150c0c7ada73d241f
BLAKE2b-256 af7527c11d3921bbd575b9e398fcec895444b7dcacc28500c54e642a56198a28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc10f24ee67ff51c46868cc7672179b23114e3c8a98c321c7b7711ed9bb45433
MD5 cf91792cd691229fc4ce6b4f59b85803
BLAKE2b-256 0a471da2632de465d9f347e0fd22b1224e8941acc6a681ff8fbfaea34e90c5d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d95852e9ec89519d911cabd692966ce46d43ba367a981d20ed23e5affbb9fc4d
MD5 2d1eba1588c3dfa41eedfab0b40047b9
BLAKE2b-256 7a0b2efbca058d0daeb7634debfb6176a9fd81f959c52cc07c7d1e851188fbde

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 12d169d90d3b6341c363bd92a6c53b575b8de56b8adcf68070326f9a0bdeb3fe
MD5 406bf13151b2443418c6790acdbcde39
BLAKE2b-256 495d159d49784c7a495aff708f03fb07792b56f9c3172354ef71ae5c77d2cbc3

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7180fffb12f644c8672751764698cc09561643911b77d4940e7d8ca54778575
MD5 29a25b1e2961b56e8bf14d39da780edc
BLAKE2b-256 5dd30e49f8945e8b6c0b313a8b0be610ee8af196bf17e9b5c86b1faec2dc87c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 001651eff2f8c223d5763714a1ff79949de743d98c14c69894a90ebed1453b70
MD5 8cafb168ddcd0bc0d17cfca8ffae0ee6
BLAKE2b-256 0462d349bca4df2e1d0b80b77141cc1639a8f89c39775b782658952b053d2007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b57cd3804071d3faa00a2ea7e70f5c9c4c7d051666b9a2b5a2199e630ae006d
MD5 f800db9759823a352b3c888092806acc
BLAKE2b-256 569f202f6fc146a942064d797744dd24f62a7655b902548e457f1ccc0d28a3c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8487d25288f2e4c13e0fde79d7e896adea7cd23cbe2a8084c796c3b877e23650
MD5 90b70c0da924415a8955b222ef1cfe3a
BLAKE2b-256 aee37973f54b785991f072fb097bfcd711da1d93858ba3e2cf864737bebdda58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dec6d86f4781e02339364828af9e0fc9063ba4e48f618470992947b385b89677
MD5 042213f35308823e4e8a9149958f14ef
BLAKE2b-256 387c0ae87725ae80e0abd17aaeb180017e59d68d83b4917c1cbb7ddfeff4f5d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fcdbe5d947da0f8fb6d6b20c5d314671ecca6be5801cfdb4319f784a940bbe6
MD5 43ae14f844503737348995eaf2b332ff
BLAKE2b-256 700cea72103f64823d3320cca0ae19c8332cf4f3a7717fdd4210da5440c96e75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bfc712f41774a4f753a1860c5538d1235aa29b1a166c429722cf2ea367b5bad
MD5 3249254704e3f937ecf0abe1f330d6f7
BLAKE2b-256 ca9adbb27707e468c8328fe081232d1e5faa79d6ff423b71ec5cbfee65c191c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6ec8a85df7247c9b64c9a9a3b01fd0912b5f8ab882aebd2864e98a127b82442
MD5 7ee5d237e4cb539374cc96077013e263
BLAKE2b-256 a93402d286db0ed86a62cac0d922b7711b82d2f829e443eee63db91e4e2f02a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fba9cd689ac9e5b64ea293ff0c116c5b9604135e9254beff6a94e38cd4143d1a
MD5 eb59257fa38e26771a6f573178365fe0
BLAKE2b-256 d58159d3cfe82ae5e604e141d9818aefec38d8aaf2135b487fb8d617273eae08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 889e707e628da190f3d8ee315d9055ee2a84c76918873c31543d826adf252211
MD5 9900565513aca4b6da06c1be60bb385b
BLAKE2b-256 8141f674327ee8fa9703dfbc713b0c2d5ed23fa8b6c78d8d324c6a4554ddb485

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 93d3ef2f42ac7ec0fc6c43bfc20e29691d50f8565b93f13f62b1e0f26cb0e684
MD5 8b6c4e463745fa7478a52f935f7eae49
BLAKE2b-256 8ffc7ff938f619f26a60c526358c61a6202410f16f4d29c93370ff85c070aecc

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a556efdc8e0b62061688d5e2d9b8058e116aa531c267ef2c23886ba7d61cda9a
MD5 e915e919a8b4fec01c709d23cfd4e19c
BLAKE2b-256 0341064fee97a457a83c09c1af29b704f90bd6909485ff448a92c179ed9f36c3

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0cbe9e718bd62433f37afc10c1e19cd102194580a1206aaa71a635c113fa1d7
MD5 99ed76a9cd64f4f37f43729288989668
BLAKE2b-256 d266d51db56c6dd7947ffed8e621500eb8b70ea81b174944733423175806618f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e0292c24aef2df864c74c991883c09b19c602218e410cfa6fc1957fb9c4cc8d
MD5 63bd14352f403066b9d55e36bed6c25a
BLAKE2b-256 a9946ab0b866d252bc5d98b4783983884389f52ab848770ae89b3c198a80a480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60c9d7336fe4123488df079aedb56e6a567e4db2c67a29cfc7944baa931f2dd4
MD5 3ffd194b94000dcb783d6c8262e30f3b
BLAKE2b-256 d45108917662842146b030eb0cb59986c471b713452dcd912f13348fda2609f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3566313ec86887e818e125348f2ffc3185c1c4cdea2970331e78efa54b1fc053
MD5 b42e6c44cbb36829cad9c3ca2cb6ea55
BLAKE2b-256 5109af4df504c5f8a14c2ba1fa04203979c3b5d9e71da93ae6a95b686511d8b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c9939737194bd933a65b9441e650414077fa5c212658802f5ad4dcd5a88754db
MD5 de06cba4c4e60801ed1b817f5a18bb68
BLAKE2b-256 32a9abfdb41e0b1b5412541c47f16d130b916cc994084111307221df2efc1e3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51d0a0c84a82d36559d4b1b2e67ce5167a920ce2dde511c1aff4e79c22d1d27d
MD5 07b7260fbc765c7e7b331cfe992380b8
BLAKE2b-256 c88dfdde254c7f408886ff7d6b96e0401cdc9156376e561bf32951d0c1f99101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a828353b9c647260be875540705a4c43530ad499330171bb32f67b029de19ba9
MD5 4e27ff63c473fc8fe0d8a9847e1827a5
BLAKE2b-256 7d0c2d370a714c6f77708f6664d8a67b4c254e962db1cc40a6f4df05b2204460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0780a6e84510213c1880b567d21322d0824599a5432c35333713bab50541a653
MD5 8f4fc4e2f788c30b4455fc8f9d1bb673
BLAKE2b-256 91e6ecdb3e13c3c1a649eb899ab977f415447468406f707870ca39a40937b6ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 878a9579faa09237ffd429ccb2bb774f998316cf79ed6307f2c49611d3aa8182
MD5 fe0387b2b8d995b7d41c9708916f518c
BLAKE2b-256 02adcd955d6cd9888e6476a08059b8ec3a4fee7f4bcc73af91161c2a3f757c16

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ca89e75eb195a960b90a53fd1e114f458e9053f388e57730978b8826b972aa82
MD5 f62bcc9e0f9775863dad0345ed7c60ea
BLAKE2b-256 f09fe62f98c951c56ac9779d0374008146dcd663a2a24ab256040530acd90e3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b99c8256d673710358447390d0ab655df3048d225bfbc1eae32546c34755102b
MD5 7cc0e5b067284c8088e0ae3312f149a5
BLAKE2b-256 48fb8ac3aa2369422f29e95b067737a2910e8ad1ac2be40c72447a7491b45648

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ff926bc0d0b6f9649283e387287f10be24b714212b9746c0ba7bfe60270427b7
MD5 59d601645062401890a904d12cddf478
BLAKE2b-256 ad7cc48a9d302ad1246e40e4f755e8e4cbe18a86bd74a366352e2c0015b1cc88

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af9c83c27906c771d69e4a8738c9630e7b143e19f72ba426b4642addadba8f59
MD5 d1e3d12a1df069868ce983c5fd72eb72
BLAKE2b-256 25cb8f048de5f637f80c6e0b9acbd0dc167602227d19dfe9c43fedb157eb0fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a407340ea69e3a9351a326236a9bad66b96b53661557d744832baf0906603d19
MD5 fdfe3094c728f3eb8630bcf59edb0da5
BLAKE2b-256 c0d52138134cdbc8bea31840e3961767464ab4f293c5ddf6c929159a5456d908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6f42fc178f4b71e800565369c52006bebe970b98b8dc8136b7850a981cfcdb50
MD5 89a2bfdd4b5f8d6c40137419ef5f3b7e
BLAKE2b-256 00ba4604adebc6d9df61d143bd0a6cda3fbfa5e0886a31364d2c1cf3a6fc59c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc0c484ebca6c1afe8b94df5292eb1452f6f7e2add82b59edb24f4152f13a1d4
MD5 d087c754480b30e4df557db92da24a74
BLAKE2b-256 56d4452ee52571940aa9a6226dae319ce995f257f1b55fb5d134829b68ea5c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 48a26f4764a37587a13e0980f4684453d60189b362bf212d5845170ef5e2105b
MD5 bdb96e5f7d39bf9e68955bc0dff09ef8
BLAKE2b-256 9fd12c3352429b7ceea8bf88714590ea4f763e641c3a5f715559023177b30490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60874aa61f27af062f23ac29e05925bc794192a3f7f5a7982697e8364b13d06d
MD5 a20bde62ee5b5c53d36e923a754084a5
BLAKE2b-256 2e03e58da0c907e72795df65c17495fd6a9f5db69b0981519faf30683f46dc98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0673d88fe9092b90ea1fcb8baa8f75da4237f1418761060454937918fd96b942
MD5 a7e1ac52a29cdf0540840ba106a03518
BLAKE2b-256 9ceb80aadae479f567dfe0897a2c306a2298685996aad2be044ec467dd0e7e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6d2654825702b5082cdeac5d49e6210afae7c1b0cc5506545fc0672a640ecfd
MD5 7231226b0611324982036b58af7ec7e1
BLAKE2b-256 d491a47078ce4d34504d19905904ca6a6b8b3f6cb3e156f774f4dc729f524ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f06fa3dc8f7f50c3b246a36509b161a7517412578a51b9698bc418ab5dae53f
MD5 e7a4b5149fbc1b80e61c09d202c16641
BLAKE2b-256 68303fab42302590a9661c25dd90de6eba759f66618a6d494fe11dcc3d64b509

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5d24e027e065ff4ef5aa4cf87d58384f63f3fe0811de3ff8a658e10bbdaa162a
MD5 4b35d308af67ed88db21eb5627d38d8f
BLAKE2b-256 33735162df8889a446927cdde4aa12916dc6daed250411f45b3658ed90545c31

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8eb24d4f83c57afe007918f3fd805b4ab1ffc1f09e58d29c59ed1c9ea034d7c3
MD5 b8d40eadcb081d73ca82f5ff13982e9f
BLAKE2b-256 6b5a910d84de46d0782dab316e601e433ee929653c88360861021a9823556a6c

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a70fe79ef055ed4f90fc1dfd62d93c45c650e7952cdb8a8bb2e391472eb95382
MD5 09b5dc3cdedf002d04f58e9cbd5d7b33
BLAKE2b-256 3f50d8da73747a99404768283393a4a62c0d55deaa4b2be1c0fb35cf770b06ac

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 579808f97b6f76efc41b0be71cc87474f787eecb071bd57554f6787c183eb634
MD5 e4d2d83a3715c1728ec727d52cc54658
BLAKE2b-256 30914a3be8d5f611c9ae08eb2ef8323907e8a3b5aaad6681462d770c83d288f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8bd53ab3da2d86a1d95790b64d862fcdfa4ae2717ee95fb0977e998c0d858616
MD5 5a251c61a66ae1e1780a145f63abee9e
BLAKE2b-256 ba93530b28160290c68bcaba1b968afd1e6328c6bb50dd9c5ede689b1b7999db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fae93277abe3ecb6448c821c94b1aa243c8d8ff0d509fa0f22f94ebb5796c18
MD5 7a8851c5233215d7d65ae66127417d39
BLAKE2b-256 fbd444cbd2a7bc0095d397a7d3afdd2eaeeb23cc7bc30bc9e8eb33eb82fcfb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf7173d0fbf0fe0084031045979f02a5fcce8732297c0492007dee176b42ae43
MD5 7ba2b053de445d9650c4effe3a166998
BLAKE2b-256 d8b10da4da2a3f9b6371d9a87a2ab9fae6455ca3e55e373ee26b840073bf6eea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fe9b5a673b03797439d74213f82a3109840a8dbad537e40c7aba5d01ab48999f
MD5 35c9c1bb24d9ce1235498cf64b4752c6
BLAKE2b-256 045f6f2f7b8effe77586c11f3be8ef4d3ae8d4c68171c07ce962c6c17e4d5ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3de47aee9ce9925b8cf600291d53c83a629b8d9b0d477748afbed9e197f48328
MD5 8cc9c2a9900591cb4bfccd654305ff3c
BLAKE2b-256 f4f6730655a7f9b88b8504864486b7b48e37e754de96fb7b179c7b62d807e3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7b2fb240fdc866c391eeb310609f0fefd4e74d863162e9e6facea334fe95b04
MD5 dc528b242651b86eda9b4c5e67b4d6c6
BLAKE2b-256 ff0fa4c86afe34e596a311c6ff128d6d4e761aa7f4f8f51cb85bc1e6c9980cf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bfa335aca6e0c141b2e50c0e007b639b9f441f89c7228dbbcc7062f5481f2e3
MD5 1038de4b48549ec8b937cd25de0d04e1
BLAKE2b-256 e90d34787c2ba6e8ac3b27caf06277538a1d68adbdea302dd9b1d8ed5aec04d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78e065d814dcb04ff39e2e85aedbe7cecbc4f44757f255f200b82ff949e45087
MD5 49b3d479cb0c3f2efe2c4fd28510106f
BLAKE2b-256 812f95141eef47101150c75b30c7ffb907848cfbc2179407a978962ee5c49a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 20e931738df9d5129456c4f3713c01fd8f7d4cfec66c233da55aec47ab7161e5
MD5 d36b629f11dced427ccffb5eb788dc1c
BLAKE2b-256 39a5097603c8153154b933f78da0d07e4c7b8d310df543d8d61dd2dc55530bfe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-6.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 c94891b98d5c9d67bd81be73f2e775b5a9e396afbc1d2a04cdb03bd6a8d64314
MD5 0394eb0bef31e3262fdf7e3ac7e52cd0
BLAKE2b-256 a0d45f36afb1fb700f522f57ef7d940fc73305d781a3e847e70f65498b05e764

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9dd52fb432eba0b3af42c8c854c73975d268f322511e6efba5708591b356364
MD5 f4271f210479a2419f66d0b675e89adf
BLAKE2b-256 4f2e306a4a1dfac238d053be4e8382aa097cdb740f62904b5b0e9e06a7960c71

See more details on using hashes here.

File details

Details for the file complexipy-6.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7841aa94f0278bbcbf079d61761757de0dcabc43ca709e2e487a190585c19938
MD5 5adce20620c0a891c265bfee6e95385e
BLAKE2b-256 c8e6fe384f965750a812624feb9045cf5f263f0d9139ba6f8fb0d9d8cc300d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d13350f4f3077dd4046a649620914cb74d3dbe52d9576347215a09ad111aca52
MD5 9c31b0f0a91f218ad139d1cebfc44986
BLAKE2b-256 7b590729e918f875fd6a8b328d6363932c74b068033df96383c301dee6db3a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c974147ec9a9d346aedc0330bf4eeaaa0c477c08d7faf9acbbf45d1cfe703be
MD5 24bf0d6c88ca142ba3fa637a34fc3258
BLAKE2b-256 b87678b96dd73afbc7bb83ca9ee46a4870552ebfab0a10719b0ecc0ac561542a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2fbc664f963feb39850230d6f7beb77bf863ad0e4f8740fe8f245cd864ce5ae6
MD5 1b17aba4d7886f2cf0c5be6cefa82046
BLAKE2b-256 70fc9008cca32825e11bf188dd2b89abe61a4b1fa95feb7274406e953c0ad4eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 073bf78dac57063103022ce3f478a5afd0c3024c555a83015ea9b49609e424cc
MD5 ae638224e94ee4c20960e6a230f86712
BLAKE2b-256 8c2f1e814d7ff488e26b838665f7c026f3d837851fcc798733d16d9ab224071a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6abf0fcbc1df205c87a7582515f8e1cbf72fcacf20b8649f6e4bf87e0bc7b60
MD5 9c1c6cdd3bcf9c0b8325a8d349646c88
BLAKE2b-256 35e5d50ff524237736ec065b6ab439e2026cb79c902b7376fd82054810d279ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-6.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 214314641b754bcad604ccaadb7be3ba405297524f10674625f41003916bfc71
MD5 1051b4108a9036d0dc6cc0f2df090538
BLAKE2b-256 ce92c3efecdcd0d69ed595ebb17f7a25371a04dc6f6b0925975e345c62a3a0b3

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 Sentry Error logging StatusPage Status page