Skip to main content

complexipy

complexipy

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

PyPI Downloads License

InstallationQuick StartIntegrationsDocumentationChangelogComplexipy 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 and CLI flags such as output-json = true and --output-json were removed. Use output-format and --output-format instead. See the migration note for the full list of removed flags and keys with their replacements.

Diff Configuration

The comparison policy can be declared once in the repo, so CI jobs and contributors don't repeat --diff flags:

# complexipy.toml or .complexipy.toml
[diff]
branch = "main"
staged = true
# pyproject.toml
[tool.complexipy.diff]
branch = "main"
staged = true

branch makes a plain complexipy . behave like complexipy . --diff main (enforcement included); staged enables staged comparison by default. CLI flags always take precedence. See the usage guide for details, including the empty-branch opt-out and missing-reference behavior.

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)
--staged Compare staged (git index) changes against the --diff ref (default HEAD). Answers "what complexity am I about to commit?" (see Complexity Diff) 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

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 (abbreviated -- the real output also shows a caret-underlined span, the surrounding source, and a documentation link):

      [1] C007 Merge nested if statements
          --> sample.py:4:9
          Category: • Readability | Applicability: * Safe to apply
          Lines 4-6 -> Estimated reduction: -2 complexity (6 -> 4)

          Suggestion: * Safe to apply
          Merge nested conditions into `if item.active and item.ready:`

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

To compare the staged (git index) content instead of the working tree — "what complexity am I about to commit?" — add --staged:

# Staged changes vs HEAD (the default baseline for --staged)
complexipy . --staged

# Staged changes vs a specific ref
complexipy . --diff main --staged

Like --diff, --staged enforces the threshold against the staged content and fails when a staged change pushes a function above --max-complexity-allowed. Staged deletions produce REMOVED entries and staged additions NEW entries.

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
  ├─ column_start: int
  ├─ current_complexity: int
  ├─ estimated_reduction: int
  ├─ estimated_complexity_after: int
  ├─ rule_id: str
  ├─ category: RuleCategory
  ├─ applicability: Applicability
  ├─ description: str
  ├─ explanation: str
  ├─ references: List[str]
  ├─ suggestion: Optional[CodeSuggestion]
  ├─ help: Optional[str]
  └─ doc_url: str

CodeSuggestion:
  ├─ replacement: str
  ├─ applicability: Applicability
  └─ description: str

RuleCategory: Complexity | Readability
Applicability: MachineApplicable | MaybeIncorrect | Informational

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-7.0.1.tar.gz (442.2 kB view details)

Uploaded Source

Built Distributions

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

complexipy-7.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

complexipy-7.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-7.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

complexipy-7.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

complexipy-7.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

complexipy-7.0.1-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

complexipy-7.0.1-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

complexipy-7.0.1-cp314-cp314-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

complexipy-7.0.1-cp314-cp314-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

complexipy-7.0.1-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

complexipy-7.0.1-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

complexipy-7.0.1-cp313-cp313-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

complexipy-7.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

complexipy-7.0.1-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

complexipy-7.0.1-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

complexipy-7.0.1-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

complexipy-7.0.1-cp312-cp312-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-7.0.1-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-7.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

complexipy-7.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

complexipy-7.0.1-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

complexipy-7.0.1-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

complexipy-7.0.1-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

complexipy-7.0.1-cp311-cp311-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

complexipy-7.0.1-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-7.0.1-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

complexipy-7.0.1-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

complexipy-7.0.1-cp310-cp310-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

complexipy-7.0.1-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

complexipy-7.0.1-cp39-cp39-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.9Windows x86-64

complexipy-7.0.1-cp39-cp39-win32.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86

complexipy-7.0.1-cp39-cp39-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

complexipy-7.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

complexipy-7.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

complexipy-7.0.1-cp39-cp39-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

complexipy-7.0.1-cp38-cp38-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.8Windows x86-64

complexipy-7.0.1-cp38-cp38-win32.whl (2.1 MB view details)

Uploaded CPython 3.8Windows x86

complexipy-7.0.1-cp38-cp38-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

complexipy-7.0.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-7.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

complexipy-7.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-7.0.1-cp38-cp38-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1.tar.gz
Algorithm Hash digest
SHA256 e9aeafb66d9f6e04e98feb1ce14cd31b114ae567578ed2ceaf0e6bbac7fa29fa
MD5 d5ab0b02471b73ba77f2d3bc9b699a6c
BLAKE2b-256 5aa125719a32617e791fa47d8c2659b3b23dae131795260617ef5c80f85354f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6ea39de65a55101f62a4338ba0c89f9b28e0a1115888c4b1cfeaec978d4f6e1b
MD5 fb4d9e96c3a957646cd3b1c6fe056f6b
BLAKE2b-256 a7216beb3ebdb87186a1d3e756b801f3d98852289ba64710698a77ee4bbbb0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b10da8065728b6108a0e94e78e5871336637d1214a0116dd37c3d090e56e320b
MD5 3d2ccbe0a8983de47e628df74aa1bc78
BLAKE2b-256 17a41a7c45325835e0aea9aae7844c4e261a0e5281f64c574964fb169f563fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb382371c335231e4050117c01031e07978a82717be01ca9b09f97d9efa72487
MD5 cec92474616d8837549ca707375deca1
BLAKE2b-256 04fb42ec5982a77f2754a534ef24820033ebbb9dad1117ab976293feed25608d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e97f36552a8a792e280529c80ce99d8bc4207c6abd4c8fcad75a8bcfdcb10cab
MD5 8fed729e11afb7d4e3cba885537b95f4
BLAKE2b-256 a2a4c017d7e9aa4ad477a050dbd4b6eabadaade0925b76935a379e5619652072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf35b4befaec11f33d8ef7899f6e254aa66da5eb1877c0adfb037ae8907895c0
MD5 aab39a471a12ed4c3c0703fd89c9f682
BLAKE2b-256 d760a49d7a63f56b92147e05fe36ece1c633b2dc45098277d70086b74632ded8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 136d588ba2b17acc995d6a8ced3843b0ddc14447540c3854e7c1dc487f445445
MD5 97676ba92955f470f75c15a737419ec4
BLAKE2b-256 73e341566ad8dfc8512d8fd7cda154989eec14423464c0051ce06d1995e6eac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdbc35063707add113fd5d656b7cb47a6195d63dc72a3d193e24fbc2d5149c5b
MD5 d276c4636269662d7f62fa0179f4d8a1
BLAKE2b-256 222a4e9264f88224e2868c70b8512cbbdcbd6d572b4ba2b09a099fe6f7d2938f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9e492f5febd6295f82e090f4d6ab0d44e5f10e41a20221ccec8dc58b2ccb1c3
MD5 472daf1b38eabae52943d8c28e26bda7
BLAKE2b-256 63c21e118c366d9997840349092b102967b1e3c952aa271c870b8d93e716bfdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c74bc6d1018308a9269ce3daf3079b828b7c375bc6580993d09d98133eaecad3
MD5 91100b00c09165408d4285cfa60b4560
BLAKE2b-256 356d9045128929c116c82ae6e87b7d9f6f13f4e492ce861eb72b572051cc3cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b26c9674cc71642b0b7c6a519b34a5c381c86f72883a96dd746aafcd1ff41d15
MD5 311a0762d1b18615e6c98eaa3b006703
BLAKE2b-256 a8eae6b137f2017893ff6868773e33c0fb5c0cd34ae65a20bad9e061e1718cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cc8f3028cddee9fbd3a8258765e00b4b06990d311e803122f71ba5faa167c59
MD5 21b572de2c77c50c2b976bb420c513a9
BLAKE2b-256 04d1237597ef59d2a6a1249c8e7741dab9dbb5f626aa2175ab1a9cb26b7e7a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9cf6026e149f62a96adeccd120813897599af865c290b5eae3db2b1c6910d7f0
MD5 102f5480ad99f6ade69699bff2e87024
BLAKE2b-256 046cbcb789e44eeb5f3cde2de28da3a39e45d6b7aee3c160a75af10e8e50d17c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1e399b22d7e0c4ec7f6785bd0797339419d98a1ee1b4952055d515138df35bf
MD5 986a60e5a3be3fb053e34ea5555f0a60
BLAKE2b-256 dd696543a6b801fd4298b2baefa0b8668206dfdd369df9b16b9dc0aad933289d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37c42db8e1255f002e7bd66f3c13683bf857c45971fec809c89fbad1cff63d92
MD5 fffbf53f140675505cccd055413536af
BLAKE2b-256 084a5c360db78099c29c29ff6c10164f088ea5fc4b9e29031a1cb0eccac24523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c04019e3b5d4ba4ebc769096bded578f40ae3bfe0674e5a62b19ad8e6f4bb063
MD5 42f9b2e0f34a59e20acc2ae45dde34ca
BLAKE2b-256 dd84450b73146a0c02d3f13cb6aad6f86da66afa205c3109d2f35d8c2ca37257

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0d7b9494b36b65b12dbc0e3be4417c0e1409b908dc252d60c418c20cb254c09
MD5 2400cd8628c9810a901bf8eba275571d
BLAKE2b-256 55d3c55c463eccedbd61179efc552c750abb5961eadfb6024b4be078b4639707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3202989419df622dffb1ecd24fdf9acc6fcf2354981d63cdea4ffe2d8a92610
MD5 f864dca5966766ddedde6bb9c5f15473
BLAKE2b-256 5c82fdddb7366313dbccb1e0da559824cb7098b1c2ee46fc558c181083299fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dbb1e4381d91cf233616652528bd702b5c1d8ee7e7d1eac237d07bed9f0b4df7
MD5 f152780cbc39d9a2e42481b49909fda6
BLAKE2b-256 c3caaf44aa7d6e32ee426d591c29440ceff4d07b335b48000d0b372067c04592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d49be5a9ab8b2e9f20a63570b7ed6a53b3e052897dfd135453ab867cf8c9e4d7
MD5 2f052c3770c9a81a6d43b1e90d7e51cb
BLAKE2b-256 70ce98c826e4e8c25ce075bf1ba4a230b11cf253e57dec9b82d8509aa6292e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e68809dcd7cb752cb3f88b336bfe44c9f82079ae5f5a323fdda20ddb5bf89385
MD5 7781261ad85028b532716972050f6b92
BLAKE2b-256 f23e5a2deeb4a2a177127e6bc00f4ec27abf6ae02f697ca3aca08824b1296f17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f1ccdf3aaf55bf477187bdaa7c4b765a7d91033ed3187f1090e510ab2d468ab9
MD5 82b2c9c9eb45afedfa33892249901bdf
BLAKE2b-256 d02ad6d43a0ac1ac50ed673a35eb28ba077f9168d4c919f17b56dc3284db84e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 337665732690599805178230923cf653c823cf55c231afde60ff8a6a922339be
MD5 2768047c68117cda6d47213dd43a32bc
BLAKE2b-256 67acaedfdb359028f2616e479b7d43050d0a5b8af0ae9d1c904eed6332dd1482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 160fbbe5197f720ff28b2940d59286154c3b93797fe950f11216a7906e9c1e0b
MD5 0d4d40f5ec78af3acce5f90fb49a0ea5
BLAKE2b-256 e3f2c4072e96bf516291ee7c9d8e8602998b9567497c9cda0995790c40d7e14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcc304acccd9ab1685a84c14a708c373dd4679e7132dd71cc2d7129e5826c9ed
MD5 c8e85f3ab49bc0fc27cc19ae074f5f21
BLAKE2b-256 7b54efeb021c17c9cfc02622626500e8fbdde0a1f6c003c3e03880ba9c5aff4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6560ddb896270f5575d01bcef52a4d7e4fe7445a7812bbc70fc6af5ac522142a
MD5 8d11c181918519ec69052ce7b032f4ee
BLAKE2b-256 9ff7f100ac59a722c076043789b6c30c15cecbec66253dd99c720052115b4daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e16d46d5ea559421c24c552d78f8b29e2858278fd940e707bb5fdf137c4e300d
MD5 4fee202dcaed4d62ad9d2ccd3e9df755
BLAKE2b-256 567b579098e787eed0d02443175dfd74b1a292c5c8ada02792a0095efd805263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78933708b59719c4829a338209d24c8816576c882aaf9de1a0bbd0e538bc5bff
MD5 16a1f04332f3bb8f4c6782d495ef3dbe
BLAKE2b-256 fb17f50c0c4d3ef908363c95311a9e0a52ac80e5ceaa74f4b93b7d865da7ef17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2da01466b2c302bf9b3bd3e73bb8bbc1616e07cebb4834e4f61b1edfde6578ab
MD5 ee0bf8814b5f453ca9c84dfa242f405f
BLAKE2b-256 04bbb98c40de9d581c5ec6e9dcf26b6acbff63a52194b67f57ee77f62945ac86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a597ffbbdd4eaed3aa59ec258e0f8097cb75d899d017e7d3f52e0181c2fe650
MD5 729ebc0cdae2f453c2c38054ca801853
BLAKE2b-256 e2a7dc16525a990706c3a71bf183001b1a4f3fc7d04898891825520e758212c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a41144de681a8fbaa8ee4fa0035cee6331c9dced8539b1664349481da911b1f2
MD5 9036c118d5ea33c1e88118326e2657fa
BLAKE2b-256 fb19c89a5d8b1c7552d6b4546d9f1e4fbd5c0f00d8f7ef3ac6676da084548231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3923526fd3005848376ec64e2be15cdb7d8391093301c9ec3693d7510fdbf3c9
MD5 952f71cea91d063f160c08425bd3c43c
BLAKE2b-256 9af44d073477cbbe036a4d4e6cf2f5b7dd88496c4a19ca643658251fe4d52881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbacaa05423a78765f2c71cca3c22a7bb60aed478e1aff40c21708a124422e5d
MD5 f74a48bab751c4b4ede2bdf3498bb25c
BLAKE2b-256 f5407e71997c42350239346544fa96c1bdaf24487f341d5b54286007e017ee87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54650d957684333852005e8cc26b61eb3979f83428a1051e872545733387ad9b
MD5 41e26f0fdf1dfbff39e12f7190e640dd
BLAKE2b-256 299ee8d107a796b91690b2b763e8d2d49152cda02c583376942f97bba1569e7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d0472c69790d1acfb54acbe0f4074e810fa5aea0aafc97cd91433187ff504e29
MD5 281e3d4bc5ba74745e62f23bc62fd850
BLAKE2b-256 399b3433d83595f4a8608404944c3d13e7891894d075a11b125e2169e78ac4b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 560f38758ca4118cdb3d3997557a615a22c98fe86208e69429e04b92ba920fff
MD5 13065c4ab4f032402406054fb04f76f6
BLAKE2b-256 6f72a319d0683904efff91fe288910fa7d4f2f954c160a575c09912b997f1f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1ebcb1c90e162c18c51b4551adcf5a3dd8076d629899b6e97e7851bc080a87e1
MD5 c1fee118d763b0759d8299ff619b4dc9
BLAKE2b-256 7fb210a2ab0adad9b65d11a17ca185c4675a2b53eb6ba88b6585e10010cd5fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc12b194a36299bfd9f72a2aafda718c6038b9ee747f316d9564fa58ec0f9827
MD5 2567c96b38f0802040ce5fdbbffb9b89
BLAKE2b-256 db85bd15c109459a9b34050a5965c5b3fa5da40f010572c556796441eef99112

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6e1038060c990c0c5f8afdb7d0827afdc61a8b8c07b36c507e5d93b42f13a24
MD5 52acff8f2fd38a9e8942c5037033b6dc
BLAKE2b-256 4cd6231bcaa34829ef86d313c5066271169b21ddefcfdeeb1f29860453e24a05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf52b78fe4c15ecbe0c39ca4b8c741f3db757d561976a9dd14ab6d221dad4ebf
MD5 436c117bc844104c95f499d88f260369
BLAKE2b-256 8bdb439dd0325ff262a848e64be8ed6f17a88860ddea48923fe1271d68f6ecbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 95341957ee010e44cd9a231df0aa66cfeb40bd822e7a15c3483b7aafd35fb0c1
MD5 dd8ebf14a19630cd37a58f9ddc13dd33
BLAKE2b-256 d526fbd52521467ac4315046961f84c509fe05be6d57e8702d4570ee560cc15b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c37fe24325f98ee02716a23765ed6d64e5652283b8873cf128e13f71562e5185
MD5 0e0e35417312c994ac6e27fee2267488
BLAKE2b-256 3ee6033fd088c4561f81a8eab367be76197ff67dda73bae227d9423b901e3e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84012b74389b0bf0d482a52a9e98f5e3086907c0d962eba9935df709759439f3
MD5 0cf9962a2a97b1574de903bc67cd7248
BLAKE2b-256 e5e3c86048d3fba3b3d6c888de45080fda26261f2c0599b9e323ea3255e79ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4582c730c592bbd0a4c248523d8573305af9cc02d7677757088d5e5ff9695eba
MD5 e8d39fd3623c22db73c41949ea90d070
BLAKE2b-256 64d8e1e3f0b088d6efedee48246cf016a073ccde8535f7b5b8d732f6244a02d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b960ababd486b62f18e548c252f5b5b37931c1a236923f04b626f283f1df590b
MD5 c8d6cd9bcc9344ca999fabd383fe4bdc
BLAKE2b-256 109c49ccd33634d155bfb4c98a6c8be392d2beb9aa6e10e0ce16ba66864ce993

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 3f753f842599664b5ab6b1ebd27ff306833997b5aeac28b1551fe7e2fc78be28
MD5 6a8444ae99cee0ad6754db5dde35c7a4
BLAKE2b-256 eff7a1f01cdb35762e2af0c08f1802aba625f0f8b225f6ca3354606f7b439ea7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7df938e6c1d76353f7c1e38140fab549a88e951c6e46222d3e85e607d58ff5c0
MD5 4f9427d43fae90598c46d574adb0ccab
BLAKE2b-256 72a06d3e1a98439f8aa4eaaf0bbbffcc571519b51c3fc5ef3e53ebe400f417d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee2a8b611d5df3c706f7ab386b31a211cb9d911a2e36292cef5dcd042bfbfbb4
MD5 25ac46da4c78a07ef9665d659021c2a2
BLAKE2b-256 e68af77927559fd9516ec946371ad1dea44a4c95211e53d8376b54fcb0ff28a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04cfcaddaf05e987917e105f8852d7a9dd4365d6c33b12d47a7d9f23d9368da8
MD5 55bfa28cc11d9e70bfd8c8f07b656e78
BLAKE2b-256 287b31290e7adab2af9703dc4c6ef27c9778c125a621084fd473695ce3e61c99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4040fac7a28e168d42f7c40315b7418e134ab8aada7e3f8da061bc1e9fd46a14
MD5 6c960ac7995c374a721cf658c5227296
BLAKE2b-256 244535c6e4568d1ec5c3964a85f101e6c3a2714a2dcdb2743af75b326c015786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 067bfd58b17dd90efcf50851cab6fc7560cb6411c0a38f5a91cbbed9ae412707
MD5 62b0edfeb1279b61633844ffc804b46a
BLAKE2b-256 95ea5114915a34c34ddd3af9767587bc2ae87c34222da887688ff4796369a43f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebb8faf364e140f19c9231d60ddd2219b18758b7a7911d5b8e977d99837ae08d
MD5 ac5ad7258b551a9d45b1877c57ed6407
BLAKE2b-256 1b2e5099b51cd771ea34fe0606385848071adae2af0a25c0e8ba5a0b349d1535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3ab52c536c86a9eaac274fc3874ea0c58ccee64ef9379d3458c05e73b59db946
MD5 0a99c7e0139f155856f9603fc60ba174
BLAKE2b-256 4720ae1eb020427f0c7d67d5a738a87c8a392a9a2325dcce400bdc866d6d8d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b9d17418030f5f14a560a5cfd547373efb10bfd9ed6f4bee02ea55dc3cf5537
MD5 1a3c2cf86514803b70f293bbb833aab1
BLAKE2b-256 2e1f1ec0104c6b98105022f7b754b15996bf0cd73e6a5204c86477d7bc837de3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d4843184024bcccc58b43e4c32d0df712c5fcfc594e76400747ff755aa023d2
MD5 3d006460f8ea8179812a95fa7eebe890
BLAKE2b-256 f3bef21e27810da7c14a5870ce5c89bdee846738f09f6a49066ae21d47754e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97147e5686c96096e2c819da682bdc97e994b2557357600db8e58d590cb03d5d
MD5 7cff39908577190df0f59d085f066add
BLAKE2b-256 fb961789e7a98cc735d5ad0c162a12f5c7eaf281f413bb03a5843d81ab09d17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 692ee07f34c746d5a1d078f1d9c2024dcb7a810457e0ba9da1528ede6081c56c
MD5 d564e7864d09bed1ccfdeb2ac24cec8e
BLAKE2b-256 09623413d5d3b919895ff9d5b3a877fda9249597139d89148ff0f7f722bb0fdf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a489edf882fb5cf0018b702e9cc90d0ed4765b9993607171ca04130a6a597ed4
MD5 24a716574bf9a01b73cedd25d68bc364
BLAKE2b-256 3fbaf8823ed254f687dcc13c3a302656b4ea7bc38d7aee3d505bc49cc819b97d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 84db48d06e451e8779efb0f0f3bfd334fd95bc85e5ae31f2875da0257f2b3c42
MD5 290774b59474ec18cf8404edac0bc5b3
BLAKE2b-256 bd84f220e9cebb831fb2ac9d84658a7fe6f96bb4aebee212ef80f30570c259f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97d7256d1b93793a25bb1bdcee59ae07b2e10b1686c9cda21818ad4853b1c726
MD5 60dffd324552f22df5010e46806acc5e
BLAKE2b-256 5821a691d78bac7f09070a91d5fdc15c534d26aa423b3ed4025d8f5e3333a5b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05f4dcaec2a181ac524b4d73cc18387cb1fa8e2ed331e10e641f0381ff5ba9c3
MD5 63c2bea6aae5bc073ae4db4338b93e86
BLAKE2b-256 fe8a49285d0a6d0e7119b8248e1a16ff731588749fa40d009294d5642e1f49a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94c12c0706c4999d7d1a8be8db608ce2f82c1e30720cf7c2e0288262725755c8
MD5 1e9e20611abc1aaff78d97a0614d9257
BLAKE2b-256 d585dfe4a1bce6bcd2bf7329645e6de84d04bae568d458c4d3186409507dc03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1de3c76ad57f5d1b3eccbca9a44c1f884471295e59f725340017525e862f2b9e
MD5 69fc4f759cedf8fabfc43da72274d6db
BLAKE2b-256 20b3840286deb6387a8917bc1541a9aa3b875de566c50dafe2e5e01186bd9d95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88ba71c50939857a405100e4d484e0e790bcaa5480e28ebbb8426a724f20acc2
MD5 433fa9e145e352de81d736037426a5e7
BLAKE2b-256 510924d017a34832c440bae60d21ef28e9eac6bb5a11dce922e36bb6255d9d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98a58f71322a24c75557c962a85aec9eb280d5f485f589178f92fd92d3b1e8b5
MD5 ab6c4387d794d1f8f9db83c525fc126e
BLAKE2b-256 b3ecba7006dfb2676ead9f243f54d2e0ea9f4d5d4e9137211dcccb59535ae395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb9a5baa068193d43658b79c837041fcf5b7c0ac689f6f60ccc2419a45514783
MD5 dc3328ad41e32f472ef69e54d0dc60b3
BLAKE2b-256 eefb8b3d6412052205dd68002c3e944dbbbe06552d709794f16e32867e88c026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a4f4da060b6c100796a60bbbbe317ec1559a05094942e91f01dc5ef4c839a3c
MD5 2d113bcd26976af75d106c4ac068ffcd
BLAKE2b-256 7c7b1f04d57f70e98de203547a24819ffd787e27bc66c9c1b851d82d32889de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c11593ef563fc23756b482d0b074102adcb813d96fa0f4e6828bc2efae95ef7
MD5 13d777e0d5bffcd603d96a67f9d63d58
BLAKE2b-256 447107279b6662a4148a0cd3e34d5e88284d8aed8c547226cecbbc8ede986278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1632e2f0c6732595dd5d0458c805b9e672a31f533558145ba6a948f38dcc4c51
MD5 dd0f2221b3185905302fc82f9de9d9b6
BLAKE2b-256 922440a34d489a9da47950458edbae44b3c6a362a8eacfe9ffcee8c862493bf2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 65743ffa05c2331072b1809c4c58e7af80c291fbf2c531da4c24570ed838b0c1
MD5 b077ab8ca43fe8e217e1ef8fc421747e
BLAKE2b-256 5b20ff9ef11778985039a6181720eb4ea3b64d332109cd0e6f7958a587ae1d7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b2c4c235e1ca90d82bc0d5156cfd31b2ebd0841faa734ed1b3125cebce78d8d0
MD5 c52330c69647b8e17cbe0e182030b793
BLAKE2b-256 897e35a9e21bc3b191107ca5fbd4e52f8e2e958fbccc95f6facab4585af1f750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 93869ccffaca22c716791459f59d8e21b341cfe7fcda82c273409d856a20712f
MD5 49c235f109155bf4bd4787c48367035b
BLAKE2b-256 3c36a924ca9246d22e5a3704350c915ec9a30aa12aa304ef541d8c13aea4c6d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc5b0612ea826a9c8ed85b723caadf11265df242b82743ae1fc71eac29e7e6db
MD5 4c721072524a7dec2472c770420ab1f0
BLAKE2b-256 8a0fc7375ff15fedb3d3938205690980413810736b0e43df54bc4ddb7577833a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52411307909401b4243847c1fbe00726aeb9261e9f6a10fa9e186d640c2d711a
MD5 1e7b96a21bb0479b1dc6eda6229d59b5
BLAKE2b-256 c6ad6262e42bd8c30da0ed342c6019ef81f6e0268aad13c60c619fec4260233f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12f615a3a1951cc6ef081730355396ee6acdac5a2942bb1903bf00db8b6ec4e7
MD5 cff109c81780afd12dff311f4bf3a6ce
BLAKE2b-256 2ae9f6240d1806f268219103ba01d06ae928141a180c1c23dc2d195d59afcf48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d5fea769b4a2a2c247411d952204f5448d7cd535cae83a0a41cd533bab1fcea7
MD5 4364e4314ec864894fe59c844f2a7f39
BLAKE2b-256 cfc5ca9edc04e1d6672bf3140b7ba38801db9047f44a4b73d68284b2320d9b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d141025ee37969333d4adb2a6a24f0e144e5ed629577d6cb2494945d916ebd6
MD5 58650f7a59e4205c36c045d39309a41e
BLAKE2b-256 a56b264ba10c55040423032fde6fb81a88dbe86bb50e2cd0c6a330a558585344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 899a26d06b5e0a45197183589f229f5025f6577fdc87e94c054ce1d46157d413
MD5 544fdfafbdf896c54b28ce559d34dc62
BLAKE2b-256 5bbc706ad113676eea1d415a80c3ca29495a296f5370d2f1507d40d9f53b6cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c844b7f73db795a3da31bbea9535b5762c3fb93253e4e2c35eeada908244f54f
MD5 92e62efd227e89d31016ce346415f5a1
BLAKE2b-256 0df460dfafd0d6aa15a202f6d55202b92a9b59bd442726e6c76e3073eeaac889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e30795a748c0abd9775eb99a60417417989c94633e1a4b3d291333c2cfe18690
MD5 602a7d1360e3295192f8c9819e038639
BLAKE2b-256 8b6df76b674434255916055b20fdbd5fd46671eb5994cf06d9e998e0836e60dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c1c792ba41090fe632ea00753c16fd18bed8aab570ad45c47119e08d83dbf0e
MD5 1637f96dc929ffde3258bfb7c1b1a4a2
BLAKE2b-256 9410a4b03a623fc496f42bc0b077a0486073f8d4ac86d773fce1955fa85c1db4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 39ac96161243a9b525984a4d7eeb7eeadf0391ef4bc22db786e2131dccf80af3
MD5 b83eaa50dce272324845fc5d98c34bfd
BLAKE2b-256 3dc4a667725c26783e34ab1de5daf71f0bc94a37489f98d723f001e73acf8b7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8f2e237b739befab61256173e1465f5fa6104b9db061d4b895b8d10cc034c386
MD5 c4beddbb883c08121ed34b7e60e82b46
BLAKE2b-256 48ba6495fbf610a3c7412ae823a13402b51b8b8a60d5223d345f8bc03d8cb5d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4d1d88e8470e236f7a34f8f22b7258cb8d5036e7c4d5025c997848b160ae02e
MD5 f8a7df7f314af289d9f71f4cf1e8636d
BLAKE2b-256 7d3fc123470c704a31573a48f24ff99173ed17d02eb84a56c8bd261678b3578a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e94efc56675fe343fc27d69e0993baaee1331124b8f8044deb0b2eca2575a300
MD5 26867ecedbb1213f0558ce481cba6dd5
BLAKE2b-256 c9b14417b69bb9d175b07ace56f6c2f6542e49a3faabd511ef118055e7c57312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 11ba861575fb87cbd0c53aa9a1aa09f5d0210ddfad87925c7426b4c0039ce6c3
MD5 7e05d39eb51a9fc7d1ff6e1e500afab5
BLAKE2b-256 f9bdf638228b83c44c38970ad6d70e17978a3af654c7f663a1b8e786b565a802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2d217d640aa6e4dada03679e891439d4416a82940a45fa178c07bb124dc40c0b
MD5 22a56c9fc572281b39bbdd2d1f191e94
BLAKE2b-256 705720bedcfd497ea9a80b61a5728e4486a4e6d3a270c655e15b016c6f1212f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a19d3c63575d5b80c351acf76ac6dfd84478ffafccfba40bb8ec18f026176503
MD5 1c739d08959b473bc05dd24bf8a76d47
BLAKE2b-256 dc0b5e71e6c67fbd6c4ea6db68254b48ded398b109e2a26a46424652d9b7c5e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c3a6b2e19aff1b6f181c4ce91201d513fa82253e9d1021cf677d82399a2dfe79
MD5 dd339e46c49268eb9190cce63589ffb7
BLAKE2b-256 6743dd366cf28152fc446c42ed27d1014d728dfa0eef2f9dc7a16e3ce5e50cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19e91186e0c714f264ac1d29483f0e52039a30937df9160ea18bab6fd6668b3e
MD5 675fe4077776646275b8415b8409c6b8
BLAKE2b-256 190c2dd8c32996160c7a5f854f792237a23d82ecfee72e7d411fc98fcecff91c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ffba13d103bc61ea5b493d37ccd3ea170656b7e3b174cebb6097921a4b31ad2
MD5 001c5349a81ab174b9cce375026af7b2
BLAKE2b-256 18e8ff54498f2eb6077fcbaea3f840be6c0503fdaba34f5e5ea372f87a3e85ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69a0035d83767ee47e3c33b4b8542f02f3b60c5d3c2226fdb685357dd8fbb2b6
MD5 f1b1dc049b9001b11c58c001c4b133d8
BLAKE2b-256 b00cfd378673186c818285e82e4df83689cd3448096699d2fb6a767a038dd93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ffe2344f41cf60a1870b8f99c0f938359ed5176e69a977f84f6dccfefd72d99e
MD5 0b1ec7dbbe565f2ba02cde999fefadaf
BLAKE2b-256 26a11d66a6b29fa5723b68cdd1c78e8ac87a7468a4d38c96e4d8db81c7f942b1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18bd19259976909fd73667989ff033267fd45e6cfbc3dded20a9175899196295
MD5 18c0d67f7b2f55454a2f97389d0673b5
BLAKE2b-256 ea5e8211881d366c9fc459dc8d3901a6b92afcba1c0f3cdb450012d0dc0566e7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1c171faff5458e5cff209cdb11a7ca479d1bc9dfb6cc15306639fc1423755a27
MD5 3c60c597399a32d3b4451c6fc87f9a69
BLAKE2b-256 9d7f8ae8246a1a74e48e3b53b30d4a1bb0b32a11ddf15b625c94d992f372a2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd2d98155d3ac471eb488230f2cc0017fc1d53afde69459f2f8a64581ab4dc95
MD5 e12a21b90441951ce452030c8a0be875
BLAKE2b-256 183e8aee521c274c4f547dc6f31d3ac94e9f7cd247bcb33130756bf279f76af3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be87964b4ee1c471ccc62bf2e189baf1e3241452c0f72183698f1a01cfbcfb43
MD5 23b9928e8dab12831e5ab4115238b577
BLAKE2b-256 ccbc2754f71f9bce2bc8fe13b12ce9902e67abe3c6126a69fdfe83dce9acfdf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7134f9a5e0ff75c0a94f59cce2d63c978e77724d36c734e4df9938416e40abbe
MD5 166e1dc88ffc7380eb8cc28e93fec895
BLAKE2b-256 4e34a0ccac3894975cb4c24bf1dbb4a5ffc905e91eed176f840fae6208770c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d825beeec9fa8ae8c16c3d51f4251bfbb2575824658d0196baccb56a925a5b19
MD5 3f684a730195df8a2c1933f3aab31ef6
BLAKE2b-256 c0baea91a40f2bdbbbea258a74a1dc1593d9dc8d87804c32229a455cb8f983e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cab3a9b891d778876b3cb380ebaf4ba6bde8867b215385d5fe126141b0af75dc
MD5 510f4e57a0a26e241b524eddae811605
BLAKE2b-256 b7a9cd9e3b7427b84e4e8a4c3c1682c0e3f4c98317eb276533b90d1d0ef67eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14986fa5417483085d2473fe4ed7b909eab9b218daaaaa5277a153f7499288c3
MD5 11855ba42b2184c8d29f43052965932a
BLAKE2b-256 2012cf3d38bc0b6dd389dab38c12099b2550c45671cfd29aada720a079d93787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a322240e768b5779862a81bebd53d35d76c3591ae7ccbc71b8a68eb85aa5b150
MD5 6fdbc04e5e14484adf92694b369adc4d
BLAKE2b-256 c293f17049f0d085a8e93690a9765fc27155c51a98a068f01a7d71ecafa829fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b74e6041c94247a4f92cc14f09da566f26124e183d88c029ca8d5b9eb23cd651
MD5 99764f593c341d2dfeef6124a5949fa4
BLAKE2b-256 5729a774854b4cc652f78baf46284e514c6cb8e0cc521b18e899e8778665c209

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