Skip to main content

Velithon is a lightweight, high-performance, asynchronous web framework for Python, built on top of the RSGI protocol

Project description

Velithon

Velithon is a lightweight, high-performance, asynchronous web framework for Python, built on top of the RSGI protocol and powered by Granian. It provides a simple yet powerful way to build web applications with features like Dependency Injection (DI), input handling, middleware, and lifecycle management (startup/shutdown). Velithon is designed for ultra-high performance.

Installation

Prerequisites

  • Python 3.10 or higher
  • pip for installing dependencies

Install Velithon

pip3 install velithon

Command Line Interface (CLI)

Velithon provides a powerful CLI for running applications with customizable options. The CLI is implemented using click and supports a wide range of configurations for Granian, logging, and SSL.

Run the Application with CLI

Use the velithon run command to start your application. Below is an example using the sample app in examples/:

velithon run --app examples.main:app --host 0.0.0.0 --port 8080 --workers 4 --log-level DEBUG --log-to-file --log-file app.log

CLI Options

  • --app: Application module and instance (format: module:app_instance). Default: simple_app:app.
  • --host: Host to bind. Default: 127.0.0.1.
  • --port: Port to bind. Default: 8000.
  • --workers: Number of worker processes. Default: 1.
  • --log-file: Log file path. Default: velithon.log.
  • --log-level: Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL). Default: INFO.
  • --log-format: Log format (text, json). Default: text.
  • --log-to-file: Enable logging to file.
  • --max-bytes: Max bytes for log file rotation. Default: 10MB.
  • --backup-count: Number of backup log files (days). Default: 7.
  • --blocking-threads: Number of blocking threads. Default: None.
  • --blocking-threads-idle-timeout: Idle timeout for blocking threads. Default: 30.
  • --runtime-threads: Number of runtime threads. Default: 1.
  • --runtime-blocking-threads: Number of blocking threads for runtime. Default: None.
  • --runtime-mode: Runtime mode (st for single-threaded, mt for multi-threaded). Default: st.
  • --loop: Event loop (auto, asyncio, uvloop, rloop). Default: auto.
  • --task-impl: Task implementation (asyncio, rust). Note: rust only supported in Python <= 3.12. Default: asyncio.
  • --http: HTTP mode (auto, 1, 2). Default: auto.
  • --http1-buffer-size: Max buffer size for HTTP/1 connections. Default: Granian default.
  • --http1-header-read-timeout: Timeout (ms) to read headers. Default: Granian default.
  • --http1-keep-alive/--no-http1-keep-alive: Enable/disable HTTP/1 keep-alive. Default: Granian default.
  • --http1-pipeline-flush/--no-http1-pipeline-flush: Aggregate HTTP/1 flushes (experimental). Default: Granian default.
  • --http2-adaptive-window/--no-http2-adaptive-window: Use adaptive flow control for HTTP2. Default: Granian default.
  • --http2-initial-connection-window-size: Max connection-level flow control for HTTP2. Default: Granian default.
  • --http2-initial-stream-window-size: Stream-level flow control for HTTP2. Default: Granian default.
  • --http2-keep-alive-interval: Interval (ms) for HTTP2 Ping frames. Default: Granian default.
  • --http2-keep-alive-timeout: Timeout (s) for HTTP2 keep-alive ping. Default: Granian default.
  • --http2-max-concurrent-streams: Max concurrent streams for HTTP2. Default: Granian default.
  • --http2-max-frame-size: Max frame size for HTTP2. Default: Granian default.
  • --http2-max-headers-size: Max size of received header frames. Default: Granian default.
  • --http2-max-send-buffer-size: Max write buffer size for HTTP/2 streams. Default: Granian default.
  • --ssl-certificate: Path to SSL certificate file.
  • --ssl-keyfile: Path to SSL key file.
  • --ssl-keyfile-password: SSL key password.
  • --backpressure: Max concurrent requests per worker. Default: None.
  • --reload: Enable auto-reload for development.

Example CLI Commands

  • Run with SSL and JSON logging:

    velithon run --app examples.main:app --ssl-certificate cert.pem --ssl-keyfile key.pem --log-format json --log-to-file
    
  • Run with auto-reload for development:

    velithon run --app examples.main:app --reload --log-level DEBUG
    
  • Run with 4 workers and HTTP/2:

    velithon run --app examples.main:app --workers 4 --http 2
    

API Documentation Export

Velithon provides a comprehensive API documentation export feature that generates user-friendly, OpenAPI-style documentation from your application. The documentation includes detailed information about routes, parameters, types, Pydantic models, and constraints.

Additional Dependencies

For PDF export functionality, install additional dependencies:

# For Markdown export only (included with Velithon)
pip install markdown jinja2

# For PDF export (optional)
pip install weasyprint

Export Documentation with CLI

Use the velithon export-docs command to generate documentation for your application:

velithon export-docs --app examples.main:app --output api-docs.md --format markdown --title "My API Documentation"

Documentation Export Options

  • --app: Application module and instance (format: module:app_instance). Required.
  • --output: Output file path for the generated documentation (without extension). Default: api_docs.
  • --format: Documentation format (markdown, pdf, or both). Default: markdown.
  • --title: Title for the documentation. Default: API Documentation.
  • --description: Description for the documentation. Default: Generated API documentation.
  • --version: API version. Default: 1.0.0.
  • --contact-name: Contact name for the API documentation.
  • --contact-email: Contact email for the API documentation.
  • --contact-url: Contact URL for the API documentation.
  • --license-name: License name for the API.
  • --license-url: License URL for the API.
  • --exclude-routes: Comma-separated list of route paths to exclude from documentation.
  • --include-only-routes: Comma-separated list of route paths to include (excludes all others).
  • --group-by-tags/--no-group-by-tags: Group routes by tags. Default: True.
  • --include-examples/--no-include-examples: Include example values for parameters. Default: True.
  • --include-schemas/--no-include-schemas: Include detailed schema documentation. Default: True.

Documentation Features

The generated documentation includes:

  • Complete Route Coverage: All HTTP endpoints with methods, paths, and summaries
  • Parameter Details: Path, query, header, cookie, form, and file parameters with types and constraints
  • Pydantic Model Documentation: Detailed field information including types, constraints, descriptions, and default values
  • Type Information: API-friendly type representations (e.g., string, integer, file, object (ModelName))
  • Parameter Locations: Clear indication of where each parameter should be provided (Path, Query, Header, etc.)
  • Validation Rules: Min/max values, string patterns, required fields, and other constraints
  • Request/Response Models: Complete model schemas with field descriptions

Example Documentation Export Commands

  • Generate Markdown documentation with custom title and contact information:

    velithon export-docs --app myapp:app --output docs/api --title "My REST API" --description "Complete API reference" --contact-name "API Team" --contact-email "api@mycompany.com"
    
  • Generate PDF documentation:

    velithon export-docs --app myapp:app --output docs/api --format pdf --version "2.1.0"
    
  • Generate both Markdown and PDF with comprehensive options:

    velithon export-docs --app myapp:app --output docs/api --format both --include-examples --include-schemas --group-by-tags
    
  • Export with route filtering:

    velithon export-docs --app myapp:app --exclude-routes "/admin,/internal" --output filtered-docs
    

Programmatic Documentation Generation

You can also generate documentation programmatically:

from velithon.documentation import DocumentationGenerator, DocumentationConfig

# Create configuration
config = DocumentationConfig(
    title="My API Documentation",
    description="Generated API documentation",
    version="1.0.0",
    contact_name="API Team",
    contact_email="api@example.com",
    include_examples=True,
    include_schemas=True,
    group_by_tags=True
)

# Generate documentation
generator = DocumentationGenerator(app, config)

# Export to files
generator.export_markdown("api_docs.md")
generator.export_pdf("api_docs.pdf")

# Or get content directly
docs_content = generator.generate_markdown()

Contributing

Contributions are welcome! Please follow these steps:

  1. Fork the repository.
  2. Create a feature branch (git checkout -b feature/YourFeature).
  3. Commit your changes (git commit -m "Add YourFeature").
  4. Push to the branch (git push origin feature/YourFeature).
  5. Open a Pull Request.

License

Velithon is licensed under the MIT License. See LICENSE for details.

Contact

For questions or feedback, please open an issue on the GitHub repository.

Download files

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

Source Distribution

velithon-0.6.10.tar.gz (611.6 kB view details)

Uploaded Source

Built Distributions

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

velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

velithon-0.6.10-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

velithon-0.6.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

velithon-0.6.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

velithon-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

velithon-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

velithon-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

velithon-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

velithon-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

velithon-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

velithon-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

velithon-0.6.10-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

velithon-0.6.10-cp313-cp313-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

velithon-0.6.10-cp313-cp313-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

velithon-0.6.10-cp313-cp313-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

velithon-0.6.10-cp313-cp313-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

velithon-0.6.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

velithon-0.6.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

velithon-0.6.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

velithon-0.6.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

velithon-0.6.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

velithon-0.6.10-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

velithon-0.6.10-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

velithon-0.6.10-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

velithon-0.6.10-cp312-cp312-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

velithon-0.6.10-cp312-cp312-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

velithon-0.6.10-cp312-cp312-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

velithon-0.6.10-cp312-cp312-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

velithon-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

velithon-0.6.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

velithon-0.6.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

velithon-0.6.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

velithon-0.6.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

velithon-0.6.10-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

velithon-0.6.10-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

velithon-0.6.10-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

velithon-0.6.10-cp311-cp311-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

velithon-0.6.10-cp311-cp311-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

velithon-0.6.10-cp311-cp311-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

velithon-0.6.10-cp311-cp311-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

velithon-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

velithon-0.6.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

velithon-0.6.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

velithon-0.6.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

velithon-0.6.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

velithon-0.6.10-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

velithon-0.6.10-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

velithon-0.6.10-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

velithon-0.6.10-cp310-cp310-musllinux_1_2_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

velithon-0.6.10-cp310-cp310-musllinux_1_2_i686.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

velithon-0.6.10-cp310-cp310-musllinux_1_2_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

velithon-0.6.10-cp310-cp310-musllinux_1_2_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

velithon-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

velithon-0.6.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

velithon-0.6.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

velithon-0.6.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

velithon-0.6.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

velithon-0.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

File details

Details for the file velithon-0.6.10.tar.gz.

File metadata

  • Download URL: velithon-0.6.10.tar.gz
  • Upload date:
  • Size: 611.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for velithon-0.6.10.tar.gz
Algorithm Hash digest
SHA256 a9802fe6fd248eb99c8e3967a4df8142593ae1288c6c770640b39a3e17cc5a86
MD5 6daa27f339006aeaad894b6322c5d184
BLAKE2b-256 c153e6062eb0616674b02b8488954defdafabcfb6ea3b6a3016aeaebf1d88ea5

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 005cf8d0170ce1303e70c407ae39af6f331fa5c403f484b945630eb746e0f038
MD5 fa5d92f4878f02898dcc31a54c7afcf4
BLAKE2b-256 c0bdeb2aa1f237a76e2a7632248fbc3fe2b4f33a1f0523c418f255932b15b1db

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 05765a4cccfbc974268d04196b6b54273797b26e2f27d9307c76bc5b75ac73f0
MD5 59ddc623bda736f5947315cf5d39bca3
BLAKE2b-256 77447e4a25ff1f4157ad6f66e37c02198c975753efe96cf589a9df1be6f6d39f

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 21f25bd7b3d6c98e98c94791d9ef15f744c4c7f274eed1087696fb38431b95fc
MD5 af3bffbf0a18edeb63c96cb084655110
BLAKE2b-256 ce5604ec0405bef0baa0aeb14c50ca2921afbbba8e8b0cfddeea8de495ec74d2

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08d5fcf14d36e8cc02384574342b89a3207975b3e1910c67c2b306a1be6739cb
MD5 1af89de76c2e4b9e3eb2e2fed94d2d04
BLAKE2b-256 26ce0909c2d0287312b198d0fa73071af58ee3bf32e9e68f0ed20fe5dc7423e6

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69c160ae3aff8451ef4d6af58c1461025722bf025438a3915ba747fdf433b888
MD5 528b597c6e7047590e7ef9afdb368b2e
BLAKE2b-256 91a8c671a67de8de3cd907e299540a15ba7da969f7a2cfc29e992e667249f50b

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02044bdb7b14dfc885e7ec238b55b697f9b97abf9d4127f4840261a9f38758d0
MD5 8d9dc81ba42d97a790dba510f29d0096
BLAKE2b-256 daf2255e5b23c0c03912e6a9d9bc40cfc435a3b0eb925641c846c27fa3c9b464

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 971faf37872f1e132e25f8c8802428da3d3e9f5670794848eb89240bd84bd091
MD5 86e56b2bb9ecd1502e2b914e1f6f7052
BLAKE2b-256 dd4ac216048373197db66e29f2a2e96210f1708351d903d6f644ebb8a49758f5

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23fad865bc931ca3c1522db99f1e53362d6bc909d1e7f3e006cfaaecdc271b3f
MD5 7f4403b852abf67ff831fb8b7be08f36
BLAKE2b-256 139f9ba062879dd6f4fd74a8b271de23655b962423d292844374c03bd0dac19a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ace01d26f9e6c7d273589685f1fe227490d3241ef8eb0774eef6ad713b37e04
MD5 26ce17ae7bf232c5905906e7181f75f6
BLAKE2b-256 85c1d2282d2b8ce1210dccb7208724dd9145d19cfd58c8c4c3d56476c11d1e0f

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f24bb111ca2ee91336f00831710fbbf5726f7c949d75c4e263b64aa6c091b58a
MD5 bb1701daaeed283b505d044d6bac7283
BLAKE2b-256 b8210737433f5f9aefa3b32d0a579b4163475d8ba9aeb879f53c1425de4dd517

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 14c65233091d608a67ba35683ff2a0f575794dcf1415c5890558c8d1abb7f810
MD5 aca0bbda67e1813f9926a86f2797544f
BLAKE2b-256 f2eab92700e3b607bd3495efcc76d605351ddda96c6b4814c7d024f1e5688da0

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4ab136af043ee5ed665da0f9a90fa6d281fc75af728e7e9eda3534353ee1bb8f
MD5 7e13ae7b128679ddeb83b9b3d2823c09
BLAKE2b-256 1c2ce75da622b1a3cc2c8e0ea460bc273f3c22309151c32fc8244f9665e1b40c

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c82613fb0a9115f29439157e2099201b9db5ccf325cd3a71acdb149f9530537b
MD5 c344a009220399d8b37cf9c41d4b3e67
BLAKE2b-256 924b2534278b73b6df998fe1e4fa38127747cbd0507c2b25d0e9a52f34e9fe9e

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2b875494913b88093d2e1b6b8376ce541f960b6c3817ea30c02e34e27ed291a9
MD5 0d6f956ede120c8ee01a4f131dfba8cf
BLAKE2b-256 dc69cb79f75c7ea257cf6b9827b942c3dadea4e2278b191c80228a96915e563a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3599bc91496e4805e65f55e10f56734ab533578ccabdd857d38dd691a5c166a5
MD5 05843ec8544b45068c5a5c1b6be68543
BLAKE2b-256 70249fa97d5e9e14c6a6b9b188df027e3d77356f6e04d57876861004941232c6

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acd09c28b253875278a29a8c5093c1fa322b4918cff4f2536fb038f0a6c88ef1
MD5 d4b8f0906f1939cd33aa3632aa4fec18
BLAKE2b-256 47e452be6c79da9d282a2888b1303c40683a1150061a357df3f1b320f7da2ed8

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f231a9f3592455d2f70fae1b760320181fb31c3fcaf3d1a0d52cf22461f33025
MD5 4b60c004276c575137d734afced384f5
BLAKE2b-256 5b25110f42b7dd0ce148f8efed32c9ed382c2b6c7bd7416a0a7ab9d7aa1b7b7e

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8948c41dfdd083cf9cdd62d1183e90ef651360a6d33189000bdd1afa56bc0fd5
MD5 d9cdd224169b38c7558986ccfe3777e7
BLAKE2b-256 fbfee075b93b9694d513742243ac36d410aeee2f57efad5093a7c02297d56287

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp314-cp314-win32.whl.

File metadata

  • Download URL: velithon-0.6.10-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for velithon-0.6.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6c3f0bc8ac3e9e9fb8723d2659f257f0ca185e2306698610ba4a10dd54b69fb3
MD5 0c6f3b67769e63e56edc7f8565058d74
BLAKE2b-256 e4bf246f1b43737f59680bd272adeca76481b3cc59ae304475c0dcda00391f9e

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fa3665fdda5993fec003142b00f7a7bf1bb2cd58c21af0901f696dc00ad2bca
MD5 a5f38684d0b3403f26ee189a0605f1fd
BLAKE2b-256 5b4d6c828ff9fb8e02c00a02956f57089a93e5a03425e3056bd518b6f825d394

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2d25d97efaedd758b5cccceb378d2de59dcc31ee1271dddeb44fd6715a84ca2
MD5 0e9b1820425b31b44fae9773efd4fa51
BLAKE2b-256 91d6ee211095e02648466b6ae586c2807b444e816590bca132fe1c2fdba16d01

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7102a2f9a2720ff42612b5429ad4c4f2f03b89e7722e7c5384172da9e804b27e
MD5 ec50b9e12f9fa1aecfe4dacb060e3bdc
BLAKE2b-256 4915a99c3d0ca9db2334612dbe3d001542cc1fb9368de79d8038bd66a865da82

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1fda45b398d58c64ca68e823bfecebc9a1f8f5015cc94d1863b48050cd6c264
MD5 207e59ec938dd4bd737eadc060ca7f38
BLAKE2b-256 e2a6bb262cba5f54c2ab9bcfb72190dc6f3f566175a272d14cfd5aedb19ac41d

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 090800786882c1407e59eea46408a145ea19c49968269557b11f1d3b60075a90
MD5 0f2d9dc06f73cd0d682a6f32557edd4c
BLAKE2b-256 2d6ed660fb4b1d3ccdacad1a97c0d9b2217caf584b6e88e8cc73c460f85d45ae

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4225e925af0d10643b7a37ff15c5da1da0f768264ab205feb24cfb01ca89ed80
MD5 1953cb9323d044ad60aad4e0e6b8e129
BLAKE2b-256 d8c8c166a776804440e917657e35c40cd14f77cd2d71fd8e66475eeaa03c74a5

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afb15e853ca9324d8e734d7b5994d43d8c7bc632ea6962cf4035c8476cd7c1c8
MD5 b3169b43ce985989705b9a3cb52feca7
BLAKE2b-256 861392e9ae78ca2816b00bd8f368c11616f229ba903c913f06d9b2d0bf8a5044

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ae038441d4f43d4b3e11c4198da3b52c6964a4cda4b58710ec3612699522fcd
MD5 e3826e2f52713c1f289c984b5436915f
BLAKE2b-256 d498f893cf776fc106a5a025660d5e6ab1c7c89f2ea34cfee8100b33fe3bce42

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acd9335675d11fdbf5249f618b06171ad8a80f3d900a65b87f45c92fa5c65f21
MD5 63bc9794dda964639826725ece2b115f
BLAKE2b-256 444a04b3a49ad95f9ac31fffc74616015f74f7b14c4b0313fa26b46268d98010

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 212509cba959d8a3a27fbcc60030daaad273fea78fbcc005606edf1dce24e000
MD5 397041649c566e683a7855c76e249619
BLAKE2b-256 06787c09709cd59e5958cf9c9e07cffb6312a39a41f80a8d5171949e88b0de57

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9f35193d84cd9c4ffa7de3fd316310376ee90ca50254e58126e16047372c24d8
MD5 f8efb3811dddde0029136e97034d01d7
BLAKE2b-256 c847a3531db4d629ab542e2179642328d51a2799c4f894b880fab989389eefce

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad5eaaf31edbf4415f52c40c64f342c14d7c9dc92d78b05588160c632c9c745b
MD5 c0b8b9c8739ec322f874164413513baf
BLAKE2b-256 9dbc8e7dd3dc9dc2148580eb8bf2ed5b9bbe01eb58c139877deaff4f02046fa0

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 11faf33fb347d489069a7c682e9161bda0ff5f1e98af18a2e6e0a219bacf3d37
MD5 4b22014823b12ef8c7b6d233a8069d7c
BLAKE2b-256 5dabea9748d312955f26d5053c7f546af5944ffadd529c1458b91c2338d17539

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 206fef372dcf36945ad387eb33c94b092f79e3f96d42be6f124b4764be0d841c
MD5 cfdaed9ae54b3b95f9a5d3c3ed051302
BLAKE2b-256 7494791e51bb0611e58f9a2f8041d6a8d3dcef9c2d1853bad992a7dd25690a22

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 63a7a4d215addae4cceaf61a032603a389ba85a493983af716d318159500215c
MD5 ac94a5e8d287971fdbcced11e5edb2e6
BLAKE2b-256 18666e6b9fe8be63324519bb147f683ceeec580e81654956207b0a0885369f4d

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df0d0bf3d99974a4575089fcd1ce1b3801c76439f591e16f0d33e0f0b709712c
MD5 483a332becb4ba346d90851d43f3a80c
BLAKE2b-256 f605ecdc9f0bdeb715d715310161d47cd2ac3cf177724fde06e720fba598e4a4

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1da111eb54629d1f8fb98cdb01cf3e109e0c22fce58a80021ea5c0e5eb915909
MD5 a4fc08886e9def1e230c10ff35878181
BLAKE2b-256 ec4a40a1d00a2f52fa746eea294286e751f322440a1a86ed1d39ccb1c17ee1d9

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d022f07e6d813a3f2137b5c2cdd8ca4bc0f393bdce3c69e32a402c1a93c2b08
MD5 a0f8c68f7911523f3ae2576d5bdeff0d
BLAKE2b-256 d5d3a3baeec6086ec9c1db7f6cee32c75b30f94e73c6a9f24c39610af833afc2

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 76e84dab65a988992c8b2db53bb94509a9a000da5cd51b1bcca0517d20d7cf5e
MD5 f3606699b7a3f5923927ee1e01798adf
BLAKE2b-256 b841175ce54b71caa79c8b0fe8b0b13f5cb103208bde0acc15dc5b386bb184d2

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e681867642990b6b3bd5985387815772960819498f3d4d9407d54cfc044dafec
MD5 50ebe58399e19244fa10c84f0d48956d
BLAKE2b-256 75fea6339f5d3cad782ca68ab23d4561fdfc5d989c97650d198cbecc8a7ca81a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53605b2022e4182c187aac84390ec85904a8a840252e3fa49a1f8fe6e06f85bf
MD5 70463e2d6acd8e1d342cc05f6301433a
BLAKE2b-256 dab88fa6b2a6d9d7a6c75727abd8031d0be4b18e69efa01547e7183c79c6931c

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6894c40f9a8c6b3367d655b9c68970fae87ff66e8aab4ff164447ea41b10ad9a
MD5 63a4ba197d9b0277dee5fec7dc06575a
BLAKE2b-256 b4a319ff11a2a5adf9a65e4cf07479dea4f705fd7008a8b4e5bd615265ab62b4

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cb9ad15a5f906e071c487284366c70181b0ee368683102205489c937653d7421
MD5 8600d911e680ab872f7ab5f52e9e5825
BLAKE2b-256 958e6c6d45c99d4af02ccea71f8b73563a1b06020a5c9411eb5049d3c68894e7

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 12823418071eadc3a8397586b85b4e845c24799269941294609d386f404e4284
MD5 fdd5a88070baf191edb5df2e441a74be
BLAKE2b-256 cb59de3225d529eab4957c59d00fdd7450c1b59828a2884e4bb3ed372c6a3028

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb75ab8692ac19b4bd11fa77951b775ecedb479a61b82123322c9d892f264907
MD5 808116ec69dddb6248fd9e868b9be809
BLAKE2b-256 c6f25dfaf08f254296ee4fa0bfd99ff11d43b5c637bc79d0ef0c0e15a3dbb164

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d549594dba8c575a90d2b7bbdfdfbf21b1fb8ec39859a57483c7fe553ca20481
MD5 20cf5e7d1acf351b65d354dbf1650a81
BLAKE2b-256 85e74b3801e177e33a85992f4b314a630edbcab360aae9a992122771dd56506a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3691af306dfd95057231dafccf8b32f062a20099cd0dfad9276a19eebbc706c
MD5 435c124a6e9985ad86a13aebac0e119a
BLAKE2b-256 75bed00bbf228ad2378ae64a75700867dc3c387332ebdc509495a37c77d7a2fd

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54f72fef008fce2234185ea350fa1103c501f3635da06f9d4dccb8c53a7101c1
MD5 fc295c3ebbd2d2cb0adaf130c9c7c389
BLAKE2b-256 7a44b4694df3683bce8516d56d87aa00c1f8c2f8bc2ec1e28e27c1fede40990f

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e7257665a0839c939eb3a5866bd9cf8af14aecff40b644f79b861e6d63fca8d
MD5 f7fa9542dca268f89b6715eafb5d0b64
BLAKE2b-256 27a91eaf7031fb27c713e1c86d46986bad664ff1c4f08f220fcd80bfcbf79f34

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d83acc2613493b113f82bdce5e36029808052099a007b2fd15d6cb69f56155f7
MD5 64294f4dda8c9c600975ec186a252da7
BLAKE2b-256 32a157b823cdb1585f2619efd347ea4b4a6067568c7168c632976363bce6341a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cd787a2063eadcb61ce6b8f62e73941fa038d60eb2d53556a0b916cb54a75798
MD5 e808141cb4668bb00d52249357ffb234
BLAKE2b-256 b60c2ad62eb1e4f7706ed3a4a155af246f2ed9d1d48016dfe575b31cdd3ca235

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23982bd35545c1dce1491b41b458f56c1c624c59c18c8d16a14a423bd33c0daa
MD5 096535447b62815cb0535bfd62aef2a3
BLAKE2b-256 8fd03167732e111a131c60632bd5084f4ca750c70bf42688734914894063a003

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc0a393e4122601ce8e86f2b8c1f10d4bba1703016a272c4cd36635068a730ef
MD5 67a520a7316b9c61b203a4071958b726
BLAKE2b-256 6899fcae0eaa72bf774fef2b1d01a50ba99405ce6eb0b989010887a202d34aca

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 709c24fe58bac7eee5cfc60cc482d880be037bb11e92a2c34b8478ae7b99f318
MD5 700245de75feeaf1bf72f2e1f5c25947
BLAKE2b-256 8f81b0d6052fa4bff6d50261768174cd4852bd44cdc2e1b246403c9a9d35466d

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a17e454fecddb98def56304d0b6d07992c15afca7c913378fd6da6791fcbbbb
MD5 c32d9c1846f33ff2deb210ea269127da
BLAKE2b-256 4337393ef3a428b77636700ce60736f61ec6ed698ddd549f8beafbcfc7663fbc

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24517e6a62459771fe2be375ab150fb9de1161db15f2022f31d02e86778a4ad2
MD5 8b494d773f023f26ef786c396d5e4100
BLAKE2b-256 bfe6b880a16f486c26a3f0aaa13f6701450124520e30aa7aeb045d948e8ce5c3

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3c268acd0a31d072ed8ad14880a7ab764c20eabca599089dec4e7373fb761aa8
MD5 db70efb4d5df2d0309d9756a62690ad9
BLAKE2b-256 37e4302278503c853b953145cbe9afb91cef45061a32c3386dc8871c42a6d1bd

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d41fdd910858c87907def13091d765c841a5736f29ae3bbd10649adbb88a1054
MD5 8e1648ea3b2de56dc54acac9d02a7208
BLAKE2b-256 e524031ff13026b7555b9bac70f9a68e6394e5190cdd7fcb6ca89462edbb5794

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 52caba22aaa853b1ed40892ac2311e7487b43d006e7c8b0570bfac50b981b70f
MD5 b674264026209def025498f23b5bd1e2
BLAKE2b-256 f8812ebdebf9ad064ed2ceb3c3663f31dc67166fa0d99668c4a5737330a77a56

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c5e2e2fdb74d853fa1329a9d7e51bec97499cb7bc8fa735f24b39080520636e9
MD5 4746ae8c86c233de6411d53e6663d956
BLAKE2b-256 13b4f0e85eca3dfbc1a4511c0b903b9449b00a2ed7796745be2ada99aeac3ed1

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1716deb6623a3bedad16cc5d1e8726e6957f9ef5c1304dff66a0c50168415573
MD5 b247480118242cb836802038d59caf33
BLAKE2b-256 2a33f031fef43e96ce10a85418d1f057a38e7ecc6774b504ace32344e4a626ed

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 163a131026fbfa5e6fc1cb3d40405ea0806cb6a4e24f698e8f455cd8e3c9b6a8
MD5 1afd6e2146cbd2aaa4e5e84ed30beaab
BLAKE2b-256 7573814258815c0377cbdf215305d2904d0a8a3166d31529e40f37c51320315b

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0aaa2531e7f0db1f3ab4f30832aa0ded26b1086ab3e55132d6390ece407019e7
MD5 8da79c4d62f494bc502cfa4ead18fd9f
BLAKE2b-256 d1e0c709f8e96b9971b99e6cf6fea7c63f5396af207821d39302cdaae09a84cf

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 118e2d6cc2be92061c9259abdb3109e27922430bea53cf11883b6899346b4dc7
MD5 d485e797129e1c52db4f71ef599a4fbb
BLAKE2b-256 2eb9254cfba40b8426731cc541f22cfeea8f75f8d5007bd913af57082715c1ad

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a50ced051fd49036bf3cf0c860f6fa2327e2904233d56df0a14340cccb9b84f
MD5 4db92df85cace09c122798d819812489
BLAKE2b-256 4ab539f7d974bced3e8583b6c5b6654bfd79c4f90a6e8e04a9e5ac4296bc8c0c

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e048e88f6655151057dcbd75d4c99b52b80f112f7d7aa42f59d5ac5425b749d0
MD5 e0feff975e87b78f8f4d7d1a6ec3da93
BLAKE2b-256 fe401dac60b71777939e7a816891799cc9986abbe05aa3c294005a7b4c55c01e

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10e955ed7dafe50d6cf77bc409636e8e0b64eff58eb46005948b81d2cc607a0a
MD5 fe1106af9187e2f6de8ab3c2e6b015ad
BLAKE2b-256 0acedcc44bfaff73f444446785abf02d45fefd4abe2663475d311067347774c6

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c86c3cc76b1148fc56dda613526647b9a33541f395ac31bccdb7e6f780688eef
MD5 16fcb1e507a160a87e5177189d61a038
BLAKE2b-256 b3216b42746f85f0e1729c123d8755cc94e8213d3ce5ab21c29ccc795c105fad

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 39edaeab6be06daed670bfe8ce8ac93d6263597165c55b5af6da638cb26ee99c
MD5 25f59b5b6e4ef12420fbe7597af8ed20
BLAKE2b-256 4a9a5296f9f084456f7446f973a75fd6220453a33e1194e0af224d5b2c8d243b

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d49f452319ba071a687e26cd7ef28f27283a05b94188cc2c4c77e7d9d009d53
MD5 ea7eec0e48988db086b96d60c36bffc2
BLAKE2b-256 414e57053ddc76031d64e9d895893830b74d0847e15fcfdfb7d4dda723428df6

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f28e3162172762ea7c5f0f727faf4d0aadc01138d633500f3c177b8bfc669d7
MD5 6182efe4df7bbfc1ad3b808e3befe542
BLAKE2b-256 2c4b3b7675d15518854275bc5f2a6355aa069540e10ed5c2835daef744d3c216

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c95f0fe23100dbe059ce5dceda66eb7323f592f941d0e09ccbcdad6a2f84423
MD5 a6a7b1b0bbb743460edb5dee61471770
BLAKE2b-256 ab770628589ca72186821a2cac86a87cb72c126afe5761cb279802522905050a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 609a0510dec3fd3e1994e115f1ed7f8ec94fe69f784f18f1e7ef22193c951e58
MD5 c74d28b70b34e973daba015dc82951dc
BLAKE2b-256 992b8cdd4de932a069041d9d43f1edaa9ce11a2dd1871a49da3caeb3b55d254a

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 535fdfb7db2c35e2021afcbc38e81e7c0369424a36139412f96e37f25413c83a
MD5 db02a31e630c98c3e979947302f6d3e0
BLAKE2b-256 cba8783c1e96bdb810d3d40dfa64f6810e671269f28ee1377a06c34a3a2d6f29

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e03bf5faf6148b91b9f5907190b7dcdd54c9bbf0a0148d94fd4fcfe65cec4006
MD5 f3d50ed8aa623a1949a75d872895c18b
BLAKE2b-256 d932da035c0d30a6c22bad14575db99d683092a767f692446bf47b9378900d66

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0097dd352dda118f55185736d035a106dad09e69a3decb8de8d10b7e881aecb4
MD5 b6f5651a95ef189932b2915e105bf26b
BLAKE2b-256 0e079c20189b8437d3b80107b0da790dfc6f90105a76f84ed62108affe3f0f46

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b6d01d78f5f3e63a6dcaef7c3f95a30943995aec7f27de6b5e5a4defb777109
MD5 592d7d2cd401c2cd1f6d515baa1f0515
BLAKE2b-256 6ae19eac4929d7fa51c7ad34dad31e0cc68baef8d8f7bc6f54cf365e689982cd

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3e38a12134e071950ce2ccb7e06277ecf9b313b60d60c7bdb2297438090b0e93
MD5 f448a02b12fe36304aed8c6687b6c130
BLAKE2b-256 c118cddf96adac0791ccd6cf4911f9fc61f4bc918a9528716995e026c9195f2c

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c81f2393b3ea2f7175360877a027dabde59e670637afc3e6cb6ad50bbb274fd2
MD5 eeb3f9a2ea5644791d6a739c868bdf97
BLAKE2b-256 0de7ad4d1c9ec4d9e9466d54b670c324faf3ea39d3c11f0a31036892b9fbd09f

See more details on using hashes here.

File details

Details for the file velithon-0.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for velithon-0.6.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87061d1bc4ef0713ef98c731ab6336c3212f77173d97a06397adac876ff773d9
MD5 2e56efa59667e0e78c50d79dc1b4db4b
BLAKE2b-256 448225c17ff55471e0077d237608dc749be512bdb91bc6ab2fa32dcb82b05d45

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page