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.0.tar.gz (441.3 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.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.8 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-7.0.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-7.0.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

complexipy-7.0.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

complexipy-7.0.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

complexipy-7.0.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-7.0.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-7.0.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

complexipy-7.0.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

complexipy-7.0.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

complexipy-7.0.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

complexipy-7.0.0-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.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-7.0.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-7.0.0-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.0.tar.gz.

File metadata

  • Download URL: complexipy-7.0.0.tar.gz
  • Upload date:
  • Size: 441.3 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.0.tar.gz
Algorithm Hash digest
SHA256 2cd8251532f8d9f560266179ff80353427f79604c3bdf9e3640ed32dca9b4e5c
MD5 30349ca54b6a321b7ec16a9fa1d59a72
BLAKE2b-256 691742a5d52d74e9acb1ffd1496006f4b5c49318f516fbc12aa287fe31ba3791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cecb68f7d0b1e5af304c8d20ee61d6b876ea301a6e25528ae5d06c0106b37b3e
MD5 2061256afd854a03bb8a06459756d334
BLAKE2b-256 5ce1926a7a9560fd9de4b35853e13199789e326566b1153ed92f1fb026f49ea2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb30be587afbb79263fff8577868e1d968c477a33747b2fdf07373a60db2bb41
MD5 90963977145d059d1ef9264828358956
BLAKE2b-256 ef1df1597b8ece7a2d61e54ad40c1feec315c1225a2370f684afc1ef7c87ce33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e261fbb4c362ff21e63d5adc84c78bb20774212adb0ae0865ce91a105aa658b3
MD5 4d4640591c3f5c8a879c83bcb240c24d
BLAKE2b-256 06b67db2d6f2345b19acea79b8729b44ec02b149313f0584efc7adc3bbc72109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1511d38fe612d74ab5bddc7d6ba4a7cf12809f6d5a0128a1274fb220fed00141
MD5 44d958e196e8ca530e5edd77efdec1d0
BLAKE2b-256 d693f05b2d80ce2365c0f0897cecdac96d5d2b8f0bf5a4ef4fa10608436276c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f40238e440babd0580ceff64e81622faff2f711abcf04f32997a04f53c6042d5
MD5 acf4a9c82a730156e0d94921e3c653e6
BLAKE2b-256 15d4394fc7f6e7501066490dd4d2a95f46262856f3c2a96139cc3a5760f57595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26e5160d92ae1db5d93cd546d028f86a72e7cd517025db493ab1a23799cc54b9
MD5 9c0d2eb948f3c294f9f1af9ba38795e9
BLAKE2b-256 e1f565ed5e590f271b5f36274b6bf72246e9b55227883ef5350e14d0c83ff43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3dd393ec68e66f9ad35f4eeb5eca615c317a278d095326c4caebc7ab15f77c9a
MD5 95c85dc526f6f4c1cfd22973bb097a4c
BLAKE2b-256 1afe9350da3985e0ab64709e91c21548ea8eab826406e09ad2a0d08a9b352236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 104d6991ad9666d03a706a2fa2cd57ea06c212ecc46e6d872f11c456da69dc91
MD5 b87754be401a7111415c11595dcad818
BLAKE2b-256 b8850add76ae270ce5a2ce8ee07c80e5021cc424fbb524669f3c2f67077b9f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5b50a9161809f2d47000fcce075436d8167308dbd813e06884dcc8583a65336
MD5 0203728be1ae32e9f41b356c61d101ad
BLAKE2b-256 036d957964a6fa1c9c9e66df756f2b82d59bd4ce87d02c0a321f4016ab2f9f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d6de6cc1dbcf3d33de4f149fa6497b820729116e139945f7dc642b92eda79ea3
MD5 032bf24e9a509433e099a6b1255c4dcc
BLAKE2b-256 f5ff74a1a508b49dada5c93c98c13e6aae7c78df9ade8bd7b6268e8478284b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65fd45380a623543e8d586513771798f21e4dd08cea058ca4196966f3d189876
MD5 0f953a08b17a0396302cacd30b02e260
BLAKE2b-256 0703daef3297c8f1ada255c86d27c03947f9f46ecba1c861b133833a2d13c9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26dea418e38f29fbf6ca1e8673b8546df86ab08053a2894ff477a757f8f6dc13
MD5 8473183c69674daf1130a5a7a2971290
BLAKE2b-256 b968caa9d8275b86d4a46dc5d00a70a92271ab1382b08f0684a9d648d0f69483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 242eb4b9993ef3c88e7cf2e4e94a2a9f92335dc3efa6658b817a733a494ab377
MD5 4bfdb452df74fbd14fd7f3bcf358f599
BLAKE2b-256 71d88bb15e335a8dceddd50c41347741201313ae65d25ee4a87d209a4bb52f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ee8b71bdf46df9a82fe53df37d667aa7f254601ce5b51a94ece01871bfcb2b47
MD5 b5c2d1ca54a9e13c8f5ca2fd7201773f
BLAKE2b-256 4883406cf3c72096e0720b122f173c9f1a3bae39a7e6c2964bf12da62a0677cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5bcd4823f39254911de0d86d33adba76c20962ccdf5ce4e836baf38be6dc90c
MD5 689085c38710eb0205bb92ec693fb0c4
BLAKE2b-256 5e1e5b08a7d3b11eece7ba93006e5ac166e6c4381420c296a8c9852eff17a6bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a738a47e4de2a3c4c3574995df56e57e0aec22077d8d4b0d51801e5e286c1867
MD5 1eed5055dc152200f0d6af29fdb3f021
BLAKE2b-256 7374dc0cd8cd3c8259030d7ca02e231162df50eb1d7a816548ca41011fbfa08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 473cdc9074073647567aeb340c7c283583a35c635ea3d78c020d1369092bcfbd
MD5 a1d753194fbcca1471347499afe193f8
BLAKE2b-256 8dbacfe52a3d9ba2cf61bac15d9a371b5392f8edce8a1c484ccd9cdf50b4e003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0469648687089ec695a3c316ad89792a551034e709dbfac38f144f5fe9ab7b86
MD5 bbd72dbe55c97da2db2aeca04fe93d09
BLAKE2b-256 9f60216b439fd7de9b5b7adaee3b53b90569ea7a7ff5898a4e3ee0e5edc5f430

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8062c12f35a12dfba38d5f269ea8ff71fa999e10dd04c7bc0e3971a8a9f8075e
MD5 4e06edda6adebf26a8530620b7f720ee
BLAKE2b-256 50f8313d557fc9fe802e1a39d5b578a80bf5903a8bf667c474b5d389a8fbe37e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e949ad10cf092e2999bb066ef7776606c7fc5e3ce0e861dad51021f6b4401c4c
MD5 4347da39d32e6911415f7015cc00cbba
BLAKE2b-256 9f523142e38993e020cdab9fa1d5467a877317434ed7ada2bd362843ffe66546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af4217e9ab163d56527d0029868e810d4a0d8221a6cf66c99010e7e780b02c14
MD5 6b376d5fd2ff9a793236867b2228f2b3
BLAKE2b-256 791e50d6a569abe5026666b252d9373c4fd7c1bfdb3bca3c9ae329c6fc6f2f93

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f7db7f159725d195023db7f55926d8143d2e44b56d8e15c948e78b286bc7c712
MD5 78aa48a12e1776629fff953d226f12e4
BLAKE2b-256 32362a272e5fcd6d0e2ba953165dadb9a38b00901acc4de17b83f2e0a91ddaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ac0d9a82d76d3488d84da861a4538f9eef2859bb8ac4c4ad472dc3d04c4892e
MD5 7c0bc7717fb33b1d0f190401d202e915
BLAKE2b-256 b2f857c1148b92bbcaacde70d5196186c598f1b809cf4170775b8c4b9c4c9d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08a0d7a1e6673eb217b9e2c90b6ba0d9756c4dc870f29e956697d823e61e5a6d
MD5 67911ae93e4b54a5e975afe021804928
BLAKE2b-256 0e1a05059778c05d78de9e20355776e549daa2b8be952cdf15f211bf947f7509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 342511db5817c4725c06c81e8c80256b967f6e0ea1b2fc65f10d68cf95cdb358
MD5 75eaa447e1239989ff4039870afd3c9a
BLAKE2b-256 ecf758529f12f6b78000693c6fbd14f69928d214972bf0d709edb58fe835a762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ae9c0d5e49be1fd204398a056a83b301c239d67f3729b0279e0f274773cf6167
MD5 f57e890b73c23150cda4f9715dfcb5e6
BLAKE2b-256 d32bc7e7da119eefb61d75ebcc64c3fd0ff6ab134beeaad17f27da0721b6de84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6011036c1e7addbe2afdd0055aecda9e63859d60358ba57388f0a7b96088e87
MD5 2b4808400fe830f1d3bf07eb5398456e
BLAKE2b-256 38f459686552c6e422309a8f725eabab53828ea1fa24ca7ca8bc91c182691266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b5d53747c0e0db306cab4951804c1ca387a9ede7be4fc232159ee3f36ef7488b
MD5 5c4a64388139889738c3bd446833b015
BLAKE2b-256 cea65383b478020f8ae24acbb6b9c224e78b55be2135d25d692ca6f5f9293c5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a402812a08683cb2788dd781f332a855fb474ffd3ad8e62a7b17c4041c0e6b75
MD5 698feddc82cc7bf3783602aaaf9b7900
BLAKE2b-256 e086f8ce1850f33a1f95a8ed99ff48feafc369bd2ee718de804a697ad56bb572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04b224473e031340286b5723a8649f3c0d0f2bfc5f3028aa183a1027eb1ade6a
MD5 7c6eac52ef19b4f87c7261620ae8772b
BLAKE2b-256 53ac7464fe0b68b7a2fd312a52c8897ff91c0f9f6b46593f6488c135be6a998d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b45e860daa0dc49394a769c409040caea4bed831fcead22b85aabd373ae4c23a
MD5 6cda55e01d3f1895868613b1f0c6e66f
BLAKE2b-256 87b08fc756be7ddc7b47247341fe5d32c9a8ecfe6273ab70e698a9939b4380b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29ebe4cbca7aead35b27a8b67785e0c9cafca0263e64dd0fa886bee37997d18a
MD5 97d1cd1bf28d4ce37e5437e2e4a8682e
BLAKE2b-256 2b7e22bb23227173fe9a021db703f9e0c09411c887ce6433db2391e3c7f847ec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.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/7.0.0 CPython/3.13.14

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9127ade1785064cbd354bdd6442a4d0151ccf476398675c7ec1edd5d5f9cdd60
MD5 9fec7275177df40890e848a23aab99b1
BLAKE2b-256 9e58751561694af01813800cc28a978651c2738890ba09fa9c65da46bb7a5f30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 9281f72e79b0f4b8e7b50b7a58be17f687bfea2a5763520a66a5da42aea77e22
MD5 1480ff5200d8f1dcaab53d7ae1427aa6
BLAKE2b-256 bada0b8d6ba98471e30bae748dcc28115ee22695d52856f154011d2bcc18c74b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a75ddd087a95cf5ce6e57647ddbdd539e4c8d4da72b2e82242e8e6cc523e01e0
MD5 89f583cf8fb170cde082c1dd43d987b8
BLAKE2b-256 3e24b304d306f718330607288cabef58dc46a817d941cebd11bb8bdbb9c6fb9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50f1a74306eb4a84006077fd2054873e24f81291270f7c323ec8bcb2f11278f9
MD5 0b4a4fffb6f4300a246518e0daabd7dc
BLAKE2b-256 18b06c42be696c822ddc7b86abd7db52681cb8af5a5dc90562ef1d3a8a81235d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 020110d25866d275f14c33e2d43045c432c673855f74d8a86847d5aed97c0c71
MD5 5a995f0fc77ed510cfafba977d07bf98
BLAKE2b-256 6ea07b0ba6a8c3d404c476000906e0f728f87c23ba8893ba3a1b5685be8f37ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1793eb686f1d1e93cfe3ed55cdbbb47bf685abe7bc4a0cf98c2829482c666829
MD5 7b4ee0408e0b6ca021b7000c3ab003e4
BLAKE2b-256 f8ecf18846edbb9c48f4a815b84ab100f3ef6f6bcd60fd69908ec73816dcc013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39c44867a9a1775afb5338392fe0c2e3d3db614cf08dfbdc16f389c1a04d716f
MD5 6dd771f854275a99c0154721b1c5d829
BLAKE2b-256 8c358fbba5f5bdec3dcc0875bac79bdac2c600e70db9482c688008f2d1aac81e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 67aaa1b6df8870ef50b20af18e2fef36410959e3e821e79712623d922d9450e6
MD5 764697bfec4ab6e425494fa0a0759c4c
BLAKE2b-256 04a73ca7dac1f82b9661f646646fce1c30c3ba6cbcaea335c7d423fea9adc4b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f85104ecc8cb2b70df534e6a9652bd1e91a2291615befa80163f00e201f2af3
MD5 33af40e89e3d18c21dcb869b65f8fdcb
BLAKE2b-256 77e21d57864a0687d140e9ed4d9e1dc83f5ae7db270e5b36c00e59519f164707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 172057334515ed013e5eb6873af3562a1984eeb10dfccfb9f5b1c745bb48ec3a
MD5 2a2b218ad8cd87c55dfdfb0e96750580
BLAKE2b-256 c930596dadcedad5d371a4ed11c7cec98e1aeb95d8dd462622c5353209d888ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 513c4e15357fcab515943ab4b502e07dce3699a7e083ca39f3b4d10dc6d99bac
MD5 1feb3436e83e6ff6d2e1948a4e74f0db
BLAKE2b-256 faac819e7f46fc974ce15fd6928e1b56605ae3839021cb82871df569ae491c1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 186085b6f911d24174c396e0540d02d1828bda1f544805df1b8f2749e623fe37
MD5 f8797b396b29ec1ca640b8176df49a45
BLAKE2b-256 974be702108f7cea411801e401fe9cee4e32a965cf6fd8bf2afa739fedef7337

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 459c504769b880e9cfe0bd18b3c81b99045423fa170868dcc5475072defae1e3
MD5 f189f1ef91d17818ca58f0de62c0a06b
BLAKE2b-256 ade4236d24c1b21a405b7749e5c7f1c8b5589039a2cfb34c70bbbd50960fae11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 df8b3795f7bbd86badff27359e7fc055e80ccc6e6095bf3b800eb0e5298ee1d3
MD5 be608113c5691792f292a72e779d6e12
BLAKE2b-256 f7e0e32df61e990224286fb34b487312973baf76ccd0e9feb96de16e15bc8279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85e0ce95a7f9afed083dcba81f50b13ab024bc16c1c4595908df251e6d32be49
MD5 c2554a765272765297c81506384de7dc
BLAKE2b-256 b4d247f707af4bdd443e2d2d3275b5b0e3e882065d56e9f514f04de97f60da96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e5b57e1c23b8262bc659b6902ca0daba224c4f23c8e5d21a2a9ebb1aaeb05d
MD5 b0c97faf48542aa75ad28ccb77b5bb6c
BLAKE2b-256 31c878e65675fee73cd5eb52ed2090869e6436c13334d3724615ef528cf46a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c96a70e8f75abfbf4f3fd86de33644068c1378fdb2d17919844d4e134611549
MD5 85511ec9bbf93ad2d90c01395695234e
BLAKE2b-256 8534c51f8c5b7be4cf7fde506315817be3bc8b426c65d37991bfaf13d3bb148d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73eb093258a3842b33f9230fb43ceb05373ca4cb94a5ebefd71d70f34e6a54d2
MD5 e3be692dde15893a7012078d49ea647c
BLAKE2b-256 abc5db2d5f31635b5fdfd5ac4d05d84a64606ab6945b08145bf406b69b7ccae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4fbc1ab3e21b0291ae3a929bc85d688c02094781727ee3a42c8020cd9b7ec7b2
MD5 b7756e55d325f625cbfbdea2b2d4cdf0
BLAKE2b-256 ac5166a1dec58f844f9a208b8d43304d2a5cc0813e246c77432d41b24903db76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e0f448a1f0e8fe060eaa1cd6b92a89f01026c97701f86b7de3f6a11e7c131ff1
MD5 60c38039f1c9a7a1706b3cd8a0325729
BLAKE2b-256 9149aee95aaa534446147108d391de1a0e6837ed9dc56f36be736862ed9fdcf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 81190504987362d37ae8c24322bb5bfa026ae04734b5fedade7f1f2689d456e2
MD5 76c3025cc18e6205161030fc6bb797ee
BLAKE2b-256 39936d94fc163fa0a36ad3456e5eec866c1047d2011286125f5365f4f9270856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d9e7754d6e5ba3866b0775f75e7b3ce69216af9faa2debe75c794ce2581e821e
MD5 b5b6d10b12a70526227df1c40e480ce2
BLAKE2b-256 e16705b3cc5928f50c6622e8350283c621b54e263fe0df722e945232b57a174e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d722f7fe6f7ce06f74353085521edd67db8a1fafa5905c0f91c744a7508b63a2
MD5 8034f18ad4d4bfb8e3e8e49c4d9e4e1f
BLAKE2b-256 96b60755f74366397fa8a6156f045ba94c6251930830654bc74c88529ac7b704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec9d47a4a662b234a0c365fb92e0685ad54eeb1ed6d18b1c1e5922de0bcf0773
MD5 c6a1eba4803364e2cbbbd5bd8db00eab
BLAKE2b-256 dbed53d0ea342fda7768eb98d1584403ce80258cf920cea5758dc0ea57e03990

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7fcd148715387e012806ccc7a5fc2650b9a79b17c86a4f03ee42a3cc737b1508
MD5 5a489e0f13d2399a56a918515741ed43
BLAKE2b-256 050e0e9883833a5b1133ddaf9be46d579fd3d903c3dd94d1da4aacb37105b0ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e7dc7cf30f578d6cea6602112a18c953d45f237a19553bf5a3aa84f890f24bce
MD5 cb59d5be4f83d9500849f5757662107f
BLAKE2b-256 f4d1231d0ee0168660a1195351885008ac189427ae327d0697f671ba91e9f54a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f9c00cb19cd85fcc8ce2362ed3ed6233853ca8c784bacfaba29e947d983f1332
MD5 f653ff4fe8819a923dd7ad956cb8986e
BLAKE2b-256 46656c400aea624270e892d1591743b791eaceaa191fd2514fbe9fd5345deee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c986ebd700a10e277edcf5508785e1b67db37e412755f9588ce440e9b9d2705e
MD5 29e9ff705e7b719a6edd0facf84b8d4a
BLAKE2b-256 a30c4cd2da01beafd47d3ce4ab54917cd87b109526e95c96d89db41f9e61942c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c1f6c204800ca718a5b1085c4af669008fc80486a0d53a3899fe5f129214756
MD5 49e2ad704300d808efe84513fca4dc06
BLAKE2b-256 cff61326869115d2ad863c85c1a6a00e2be15ce47fa90341238d4deea3394e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b480736abe8b0aa724e2dcfdb6320d1f45380db826a8080bcf8adb18e894c42a
MD5 a94758211677a6d7c6953aeb0e512680
BLAKE2b-256 e8625e44f20e55a70175957ee2b5b3584030b15079e250d9b0c8a11ae394548f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 57fc1a4951dba1590133b948e38351c7f279af5745c74f3aa39e414d8febb3ab
MD5 0277c638df46c024bbbaa4f77e2406df
BLAKE2b-256 dc6bbf0b5d52cfb26b88bce0e6a75e9ba7c669506db438124c0b15cc9b282460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 686bd4c5597c5c612069101d99a0c5d4b5f9f843e23e8fbd4dc8276db3c5dfba
MD5 8a51f690d625c2fdbd2699bc021d50be
BLAKE2b-256 0918a91ba71303248a151b71a67dbe4a08347edf90c9229887cbc682b3e0fd56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a72f329f389de8221c29be820c3756d6c03a77fb4ba737d653fe649f8911d402
MD5 8c6f3f6d59b3821c8c426574e2b4fa6f
BLAKE2b-256 e6b4b7751cfcb4d1e77b80b5a1c32e1999be1128ba66321bfddb7c012b0bccc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce2dc87403afb4b67d55bb3ee6522c7a7efae7a2ded6cd1dd1d31f4ff650bbe1
MD5 695ccf6656f0d2b6d244e8f503fd9f4b
BLAKE2b-256 51445428301f33aafb61cb904e910f5cdc7fc97dc32395867634780417d0b5c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8fb4f975558f327bffdd765b3c920b50adb9d9a93c666a823b3f06ca084518cc
MD5 87b5c6371136f66258357764dcd81496
BLAKE2b-256 cc1f33c1c13593c287c80e16b80fec79c67c93e2e6b4d47b7f8e0bc65e6ee26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ab2abe3762ff63f1c357ec5f0df80d50420fba8ab36b63bb9bf08fe880fd8cf
MD5 aae3d5b7584e7f9f080fbe7089a4c146
BLAKE2b-256 3018e174290f59adfef9e6600d79c356000771effa67af7cb4a7538d7c4374de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a3105aed746fe39c9bc645e07914052c4afe40a3877117aec03130ca3f473c46
MD5 ea200ae42a76cc98c43cea5b071d3997
BLAKE2b-256 ac8fae7a536632c7418551e096d0006c5bc57da35dcca47d10ec1bb7d57b25d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8bbf1df6bf8b4e33bdcd05de069b041a886d8494643e8e26584dd5a6afd79e3d
MD5 8bc3448fd25f695f3299bf46b18dd7ad
BLAKE2b-256 cf46b5d62e9d056aa733f8779714e876f8510b999848e6b5b18339f9f37bdea1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb9b0057a8c0003f8db1ff9a0a08cd1d940868354aad7aff95e6e4122f86cdce
MD5 74d34de9caa0593ee2bfa8df12c9c099
BLAKE2b-256 86bca58a09170d6a190b0e50846dcec1c81a50c7bb94f8750d71a1f1ea25b904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a616f3d02c184d8adb6df136866af290154a6657c835fa765efe24a494e8a32
MD5 3657e03ee24e5ceeec7c4177510a8fcd
BLAKE2b-256 dd59643403f62c11078c0cdb2228aea00c1abefd0246c0e9d734ec79be39a13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a670e28e33d8df953780d4ce0722ae2b854bfb1f39917e6d212f65a431d1893
MD5 a9dc58b7653df8b874a89e5bdd4f7a61
BLAKE2b-256 435739611dda48f3c7735b3579ac1ac11d929a70c47e4d7a2cc36dec8b642d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e729337b91359493f432dcab96f829220d5b776c5739c112901fa34bfc41b52
MD5 1718c17ceb5a2ec90b2d108463bd6095
BLAKE2b-256 b391cbaea1c527661a8c6ade37b0ce7c87daa1f0e4d99ff7ad028f969bf95f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9db7c26e0793be1933ad36db3079056c81c67ffd607ff0990fbc31e353c5b020
MD5 d5e50fe641d9ebdbccab286001034afc
BLAKE2b-256 a91b87e5879f7d1cc47b6f3409f0de56d91743b3e4ef0622490967e4a8203304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ff2467af60aefb269c972abb91f7f0e5a4e0926331785d548ca3846f3eb8e490
MD5 647902588e39285ed4a68147bec5a0a1
BLAKE2b-256 de406a9fb29da278e42c56b3769f00a94c8859274b4c5bf649637b69ea6ae1b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e763eace392be1f8f4c91da168d5fb6a7827a1d0fe1c9417560391bbef9ffea7
MD5 0cedc274a8781a5a27321bddce609f0b
BLAKE2b-256 aef0cf6da0f435ac3230ebb2fc4ebdd36cbf504d23e20e328997b9277256305f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9ca5639d14a702121fdd9f50da5e2bf3a7bebf33330737c19fbc0a7ffbe78d65
MD5 a677a87e9bd8ee007a0fb8d2dbe7e82d
BLAKE2b-256 b897f9b5f6bf77c39ec431bda8d2a78eb86bbd7fba480d9d8e3b1a2e1917775d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5c098a7ca8bc51678fec2479b4700326678327890cf487c99592dca36057ad7
MD5 20697379328367ae6dad3aa5e9b6d712
BLAKE2b-256 45aee74c6973b0f31c6ed207d0148e0528d8514323aa0bc1df3eb2a539c15d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4af17f6fcdcb1d66f963e950c9103d78fdf49a39615feff1ea92f5ae80fb6c4e
MD5 f5c1c3aa40a408a2293210e93f22b6f1
BLAKE2b-256 48ad40f781aa77b024e63b1810c9559532cac902fa7eaddd79e005a6be5fcfde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a66f96ef3380619e333b5fa5ebfdb1e3a65b0c548d732326bf043bad710c1675
MD5 08255837083ab52a78d2bdf6140ac9a6
BLAKE2b-256 a0cad093ae6f945fc4d0646b15d8e79d40c99e64c42a2396c169889fdf0ab611

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 705afe510e5fbbe336cb94f49d19ddcab6dccbebe065059cbe3f587a0d226ae1
MD5 6a50d619b2d4147f06207be419d0ffe8
BLAKE2b-256 40f359b9c8f0a399ebebfe1ff958e9cfe71e0e8512257db3c4b2f0ee5691f585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 df17377b96293f987be9cadeabead59c6471166abefef2b86cbc78f0a409b7d4
MD5 f8ad98db72f8476d4e78fddccea2a361
BLAKE2b-256 6cad18ef0dcfc82e48b5fdc1aeb48cddf8a556a4ca68d1b0a528fbc26f7e3d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92430ed5e7d7d28cbf097826834dfb4132974cf07fb6108892b971e56d8492e3
MD5 1e394abcc8c103610dcaac71ed4b50bd
BLAKE2b-256 48a349a540799be2f5a8c8ff25b0f79312089e3db92e9fe677e69e5fb718cbb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2526fa8e71fd3401647b363097fbae359751a4794f832560607ab7d10c313cb
MD5 de03f437b16cedf4a447b901b0ffaed8
BLAKE2b-256 2c013a90c8d91d794e952ac722bd3e038142299d4913ea048c6de751e26105c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 194cdc8556d6e3f7abbb0f596a54d27581e513f479dcdac166bf05dfcf631939
MD5 efc15b542d0e32f37286c67acc44cf42
BLAKE2b-256 de250c841b326f28b51aef7241e98bfcbe1e62919a31caf18a4776d6616c5d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43df044c2ae917270dd6d56282ede8052fb5cf5f50c7877d753bd220b2bbcd9d
MD5 073a0f24b35fc74c8378fb1ef0b0ee0e
BLAKE2b-256 8d0fc0e2e8a470cc88ecf501922da0ef964525af8d5537d5c01ee73024290c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db3343b80eae4d99186b47d282727413038381a52e144635960bb585404eaea7
MD5 ee8eb1e0d9e12a6251c02be68ee5b2f4
BLAKE2b-256 1b082e51947158e37c5f493270adaf1bc354441641a34131dd34c4ebffeaee33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cecc648094ea8df5a879f08196794f6f16f68561b9ef83d6087111724b94719f
MD5 a988a54076a591e8d6d7490503b40dc9
BLAKE2b-256 bc7fb6571d377a5fd3e200c98b52b31dd71779ba8485db3a0d2a601c3d6d51da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5b147d976c86f980e7b3d0eb0f72d9fd3d9bc250fe439f33dde828a887ebbf7
MD5 79622f96f346a9f3b0c6067be7bd636b
BLAKE2b-256 6850d033b06fbe5c14b15985c4a492d11b971d28c8f485cca6b683f25ad642f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddfba6ccd2aa493bb3b96ed6541881073e7d52f64f6bcc9fb0fe0d5a2f023280
MD5 78c19ecd8eeeb05da47e01a5e107008f
BLAKE2b-256 131e0586c5ffae3c91350586ccfb6fda335084c504ef083839da97d288022fc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eabfc7dcd60a917fcbcc19182b979ea395eae930ef39e6e90c3f68c4289326a0
MD5 1aff10b21b7ac47f6f6a950f9320fd93
BLAKE2b-256 936ba79d97c0e99af04f89483d567410e2f8937c2e77398174fc625c708fb9d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5e804cf12f4ccbe0a9923cee0ff15cd44606dc48458db14ef7c5e33f88d3219e
MD5 0f772d0f3dab32d57d2540ff78706d77
BLAKE2b-256 081e8f9e1a47ceabc8c5e53867adf88aadabb0c62ff4f98c523ae298994033ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: complexipy-7.0.0-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.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e626f537d7f09fa769719ca435f81befd9cb6d7361718e13ad6491165935ae03
MD5 16ba5b8a7d1a704201bd1900cd9b140b
BLAKE2b-256 1ae413fe64669cf12457de8c409abab9a2ecf6e66c2c4b6cde17791f74a4fe01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 621feed72e89e6546e8542ea64e34978efad01921b80b4d6a6985eaf9ba99141
MD5 d3394cb9305d05c4ffecf12048933eb3
BLAKE2b-256 d42209def4796438f289293e165f4e8b2c97de5cea996cac97ae860695495c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 946e2b809063deb6ee6c036e1c1c7954078f7080d91f3dc42c75821735b7e613
MD5 39dfe744acde369f1eaeeeee6a0f9abe
BLAKE2b-256 d096ba34ca26d83db9d8175f6dad7b9fef1b045d8b79c4d51297ad1e645aa3a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4968a5a90f805433dc3fcc71d6673be12a101eb9752d3158e8d5b0f2d5ead81
MD5 71848eea62e3f996176ea88515b98876
BLAKE2b-256 6c4b49f45e5ab49474c21f1bf7e4503848ffb53b0f39ae97ec89ba112a6e3994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed05a96b1740343ea07bf98605c2b03d2bbf638206a8eca12ee6508a69629cad
MD5 44a2ae74a580de1dc45ea02ac21ccb23
BLAKE2b-256 7a730faba28df72827893d67ec1e8dbaa9d13d26cfd43d29dd9607bdaee8382b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d9e8c0722b1a81907e2f0e9caa4d450aaf0705cb6d2f21ef08b9d497178ce7a
MD5 c123f48c3635054425ade7781a4a6f39
BLAKE2b-256 e2581c70907bedd95b23e13d02652afa65178a86bd2ad0f8b72a3431b683ae12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b06ace6a05139ae583336759bdb9f313a3b7630efbd3f79289b89794c1da4564
MD5 8ec3e02f28e2b9e0c7aa27b34965d940
BLAKE2b-256 1f6eb4a27d9f7bf9a5ba6f8d1d5c82efce54c895f80c7aaba0512982bd9da86d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9715d890c5c99c5d0065083b99050eb44544fdedd23ef63bf16f8cff11568119
MD5 d9c38a288084541f876c7e2491d86a90
BLAKE2b-256 53d15693c0cd242e094ac945c5772809ff38d9fa2c03d9e31c90d1a0c254f73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for complexipy-7.0.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05cabdba2848e81ab064cd96bf92a8dc81a15ecbe3127e3bb6f8a77296c9cb10
MD5 e6b0ba684384d094dc95a7a036f5540a
BLAKE2b-256 1a9559b3d26554b33d6ffe973565488c2ba94104af7f69806305aaffbd2cc9ea

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