Skip to main content
logly logo

PyPI PyPI - Downloads Documentation Supported Python GitHub stars GitHub issues GitHub pull requests GitHub last commit GitHub release codecov License Testing PyPI Publish Docs Deploy Supported Platforms Latest Release GitHub Sponsors

A Rust-powered, high-performance logging library for Python.

Documentation | API Reference | Quick Start | Contributing

A Rust-powered, high-performance logging library for Python with structured sinks, custom levels, rotation, compression, and telemetry integrations.

[!NOTE] This project is under active development. If you encounter any issues, bugs, or have feature requests, please open an issue on GitHub. Contributions are welcome!

If you love logly, make sure to give it a star!


Table of Contents (click to expand)

Features of Logly (click to expand)
Feature Description Documentation
Rust-native engine High-performance logging via PyO3 with zero unsafe Rust Docs
10 built-in levels TRACE, DEBUG, INFO, NOTICE, SUCCESS, WARNING, ERROR, FAIL, CRITICAL, FATAL Docs
Custom levels Define your own levels with custom priorities and colors Docs
Multiple sinks Console, file, callable, and network outputs simultaneously Docs
File rotation Size-based, time-based, clock-based, and weekday rotation Docs
Compression gzip, zip, bz2, xz, zstd with tar-compatible aliases Docs
JSON logging Structured JSON output for storage and analysis Docs
Context binding Attach persistent key-value pairs to logs Docs
Exception catching catch() decorator and context manager Docs
Background workers Non-blocking writes with enqueue=True Docs
40+ integrations FastAPI, Django, Flask, Rich, Redis, Kafka, and more Docs
Thread-safe Safe concurrent logging from multiple threads Docs
Source location Optional clickable file:line output Docs
Network logging HTTP, TCP, UDP, Syslog sinks Docs
Color themes Custom ANSI color themes per level Docs
Independent loggers Separate sink sets per logger instance Docs

Prerequisites

Requirement Version Notes
Python 3.10+ Download from python.org
Rust Latest stable Only needed for building from source
Operating System Linux, macOS, Windows Cross-platform support

Installation

Quick Install

pip install logly
# or
uv add logly

[!TIP] Install with optional extras for integrations: pip install "logly[rich,fastapi]"

All Optional Extras (42 integrations)
# Core
pip install logly                            # core only (no optional deps)

# Frameworks & Libraries
pip install "logly[rich]"                    # Rich console output
pip install "logly[fastapi]"                 # FastAPI middleware
pip install "logly[starlette]"               # Starlette middleware
pip install "logly[django]"                  # Django handler + middleware
pip install "logly[flask]"                   # Flask handler
pip install "logly[gunicorn]"                # Gunicorn worker hooks
pip install "logly[uvicorn]"                 # Uvicorn log config
pip install "logly[sqlalchemy]"              # SQLAlchemy query logging
pip install "logly[structlog]"               # Structlog processor
pip install "logly[celery]"                  # Celery task logging
pip install "logly[click]"                   # Click CLI output
pip install "logly[typer]"                   # Typer CLI output
pip install "logly[apscheduler]"             # APScheduler job logging
pip install "logly[rq]"                      # RQ worker logging
pip install "logly[pydantic]"                # Pydantic log handler
pip install "logly[tqdm]"                    # tqdm progress bar sink

# Monitoring & Observability
pip install "logly[opentelemetry]"           # OpenTelemetry export
pip install "logly[prometheus]"              # Prometheus metrics
pip install "logly[elasticsearch]"           # Elasticsearch indexing
pip install "logly[sentry]"                  # Sentry error tracking
pip install "logly[datadog]"                 # Datadog Logs API (stdlib)
pip install "logly[newrelic]"                # New Relic agent
pip install "logly[seq]"                     # Seq structured logs (stdlib)
pip install "logly[telemetry]"               # Generic telemetry (stdlib)

# Cloud Providers
pip install "logly[aws]"                     # AWS CloudWatch Logs
pip install "logly[gcloud]"                  # Google Cloud Logging
pip install "logly[azure]"                   # Azure Monitor

# Data Stores
pip install "logly[redis]"                   # Redis lists/streams
pip install "logly[kafka]"                   # Kafka topics (requires librdkafka)
pip install "logly[mongodb]"                 # MongoDB collections
pip install "logly[postgresql]"              # PostgreSQL tables
pip install "logly[rabbitmq]"                # RabbitMQ queues

# Log Aggregation
pip install "logly[logstash]"                # Logstash TCP/UDP (stdlib)
pip install "logly[graylog]"                 # Graylog GELF (stdlib)
pip install "logly[loki]"                    # Grafana Loki

# Notifications
pip install "logly[discord]"                 # Discord webhooks (stdlib)
pip install "logly[slack]"                   # Slack webhooks (stdlib)
pip install "logly[email]"                   # Email via SMTP (stdlib)
pip install "logly[http]"                    # HTTP endpoint (stdlib)

# Utilities
pip install "logly[compression]"             # Zstandard compression

# Everything
pip install "logly[all]"                     # all of the above

Several integrations (datadog, seq, logstash, graylog, discord, slack, email, http, telemetry) use only Python stdlib and require no extra dependencies.

The kafka extra requires librdkafka to be installed on your system. See Kafka integration docs for details.

uv Install Commands
# Core
uv add logly

# Frameworks & Libraries
uv add "logly[rich]"
uv add "logly[fastapi]"
uv add "logly[starlette]"
uv add "logly[django]"
uv add "logly[flask]"
uv add "logly[gunicorn]"
uv add "logly[uvicorn]"
uv add "logly[sqlalchemy]"
uv add "logly[structlog]"
uv add "logly[celery]"
uv add "logly[click]"
uv add "logly[typer]"
uv add "logly[apscheduler]"
uv add "logly[rq]"
uv add "logly[pydantic]"
uv add "logly[tqdm]"

# Monitoring & Observability
uv add "logly[opentelemetry]"
uv add "logly[prometheus]"
uv add "logly[elasticsearch]"
uv add "logly[sentry]"
uv add "logly[datadog]"
uv add "logly[newrelic]"
uv add "logly[seq]"
uv add "logly[telemetry]"

# Cloud Providers
uv add "logly[aws]"
uv add "logly[gcloud]"
uv add "logly[azure]"

# Data Stores
uv add "logly[redis]"
uv add "logly[kafka]"
uv add "logly[mongodb]"
uv add "logly[postgresql]"
uv add "logly[rabbitmq]"

# Log Aggregation
uv add "logly[logstash]"
uv add "logly[graylog]"
uv add "logly[loki]"

# Notifications
uv add "logly[discord]"
uv add "logly[slack]"
uv add "logly[email]"
uv add "logly[http]"

# Utilities
uv add "logly[compression]"

# Everything
uv add "logly[all]"

From Source

git clone https://github.com/muhammad-fiaz/logly.git
cd logly
uv sync
uv run maturin develop

Quick Start

from logly import logger

logger.trace("Detailed trace")
logger.debug("Debug info")
logger.info("Application started")
logger.notice("Notice message")
logger.success("Operation completed!")
logger.warning("Warning message")
logger.error("Error occurred")
logger.fail("Operation failed")
logger.critical("Critical system error!")
logger.fatal("Fatal system failure!")

logger.complete()

Custom Levels

from logly import logger

# Register a custom level with icon and color
logger.level("HTTP", no=21, color="blue", icon=">")
logger.level("DATABASE", no=22, color="magenta", icon="*")
logger.level("SECURITY", no=35, color="red", icon="!")

# Log with custom levels
logger.log("HTTP", "GET /api/users")
logger.log("DATABASE", "Connected to PostgreSQL")
logger.log("SECURITY", "Authentication failed")

# Use icon in format strings
sink_id = logger.add(
    lambda msg: print(msg, end=""),
    format="{level_icon} {level} | {message}",
    level="TRACE",
)
logger.log("HTTP", "GET /api/users")
logger.remove(sink_id)
# Output: > HTTP | GET /api/users

Usage Examples

File Logging

from logly import logger

logger.add(
    "logs/app.log",
    level="INFO",
    rotation="daily",
    retention="30 days",
    compression="gzip",
)

logger.info("Application started")
logger.complete()

Context Binding

from logly import logger

user_logger = logger.bind(user_id="12345", request_id="abc-789")
user_logger.info("User logged in")
# Output includes: user_id=12345 request_id=abc-789

Exception Catching

from logly import logger

with logger.catch():
    risky_operation()

# With options
with logger.catch(exclude=ValueError, onerror=lambda e: print(f"Failed: {e}")):
    dangerous_call()

Multiple Sinks

from logly import logger

logger.add("app.log", level="DEBUG", rotation="daily")
logger.add("errors.log", level="ERROR", retention="90 days")
logger.add("stdout", level="INFO", colorize=True)

logger.info("All three sinks receive this")

Independent Loggers

Use Logger() when a subsystem needs a separate set of sinks that does not write to the global logger.

from logly import Logger

api_logger = Logger()
worker_logger = Logger()

api_logger.add("api.log", level="INFO")
worker_logger.add("worker.log", level="DEBUG")

api_logger.info("request accepted")
worker_logger.debug("job claimed")

Lazy Evaluation

from logly import logger

logger.opt(lazy=True).debug("Result: {}", lambda: expensive_computation())

For more examples, see the documentation.


Log Levels

Level Priority Method Use Case
TRACE 5 logger.trace() Very detailed debugging
DEBUG 10 logger.debug() Debugging information
INFO 20 logger.info() General information
NOTICE 25 logger.notice() Notice messages
SUCCESS 30 logger.success() Successful operations
WARNING 40 logger.warning() Warning messages
ERROR 50 logger.error() Error conditions
FAIL 55 logger.fail() Operation failures
CRITICAL 60 logger.critical() Critical system errors
FATAL 70 logger.fatal() Fatal system errors

Architecture

Logly is built as a modular Rust workspace with a thin PyO3 binding:

Crate Purpose
error Error types and conversions
config Configuration data structures
levels Log level definitions and registry
record Log record builder
color ANSI color engine and themes
format Template, JSON, and custom formatters
filter Level, prefix, extra, and chain filters
rotate File rotation policies and execution
compress Compression codecs (gzip, zip, bz2, xz, zstd)
concurrency Background workers and thread pool
schedule Scheduled tasks and scheduler
context Bound context, scoped context, patchers
sink Sink trait and built-in implementations
core Logger engine dispatch
network HTTP, TCP, UDP, Syslog sinks
source Caller frame inspection

Building from Source

Tool Version Purpose
Rust Latest stable Compile the native engine
Python 3.10+ Runtime and build scripts
uv Latest Package manager (recommended)
Maturin 1.x Build backend for PyO3 wheels
# Install uv (if not already installed)
pip install uv

# Build the extension in development mode
uv run maturin develop

# Run Python tests
uv run pytest

# Run Rust tests
cargo test --workspace

# Lint
uv run ruff check .
cargo clippy --workspace --all-targets -- -D warnings

Documentation

Full documentation is available at: https://muhammad-fiaz.github.io/logly


Contributing

Contributions are welcome! Please feel free to submit a Pull Request.


Acknowledgements

Logly's Python API syntax and ergonomics are inspired by Loguru. The underlying engine is an independent, from-scratch Rust implementation.


License

This project is licensed under the MIT License.


Links

Download files

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

Source Distribution

logly-0.2.0.tar.gz (2.8 MB view details)

Uploaded Source

Built Distributions

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

logly-0.2.0-cp315-cp315-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.15Windows ARM64

logly-0.2.0-cp315-cp315-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.15Windows x86-64

logly-0.2.0-cp315-cp315-win32.whl (1.6 MB view details)

Uploaded CPython 3.15Windows x86

logly-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

logly-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp315-cp315-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

logly-0.2.0-cp314-cp314-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows ARM64

logly-0.2.0-cp314-cp314-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86-64

logly-0.2.0-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

logly-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

logly-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

logly-0.2.0-cp313-cp313-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows ARM64

logly-0.2.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

logly-0.2.0-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

logly-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

logly-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

logly-0.2.0-cp312-cp312-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows ARM64

logly-0.2.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

logly-0.2.0-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

logly-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

logly-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

logly-0.2.0-cp311-cp311-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows ARM64

logly-0.2.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

logly-0.2.0-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

logly-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

logly-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

logly-0.2.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

logly-0.2.0-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

logly-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

logly-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

logly-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

logly-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file logly-0.2.0.tar.gz.

File metadata

  • Download URL: logly-0.2.0.tar.gz
  • Upload date:
  • Size: 2.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0.tar.gz
Algorithm Hash digest
SHA256 50db6383e74c07271f9b3790ecf26eb3ef8f62ef494febf587d89928bd3568b3
MD5 a2ecd7565804d14bfbd63052aafafbce
BLAKE2b-256 8c2e83587dba5a8ba2914501ac03ec5d498c2e761265957a9cc77061b69939c9

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 46ba50562552d443368723faef833799b1dd5f8c8b9f4308fbd9d0dc98687586
MD5 53030024a13aaf86764f6f94de96cd8c
BLAKE2b-256 60af278b768c83b338b8ec69d555a20a2b131f538d644817451f55e11487075b

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d32ce4f2161c1f6641c633a2a9ac5d500440a0c10e5bfe4eb5a99aa7597e049f
MD5 cb546d6ecf4cf46c1675eccfe855a668
BLAKE2b-256 605d059f57bb2f97666e25d0ca19d7e9aaf3316382a51667440e3ccb6756cb84

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 c0f52f7edc4d95e6f8504674ec6c98039e5e3bb31fe369f4b4bcf10b4232e97c
MD5 e5e327a6a58bc3be5e4581f5fb0b3043
BLAKE2b-256 aa777a4ee9093300546c78cf97911686195886037bcda13a13c9f0df13a08656

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ce88885f8f5c44eb989b657eeac5764638d7bd360acd713f44ab95a9b9efb44
MD5 ce215df735ad021a0bde674b455ec7c5
BLAKE2b-256 c56eb98d01beba1b03814b5b07d446eff00d84493a5980c9a15c8b9050452862

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2b311790eddd6e594d07f6cc8a3d5751c0fbe6d15db27a3538e77a76e80c2c07
MD5 10a13a9c69194cb95f92211bbaa6ef7a
BLAKE2b-256 f1f07cbedaaa9ab0bd272964af8bb8885ecd775e020c71b55eee05c3b9b3bda1

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d8d07882efe0be7ad217fa2aafc7808aac4074240fdb632704db527381a36db
MD5 03cf46fba6cad2e8a7da874261b0713b
BLAKE2b-256 ba2a3e98f8733ab059bcb10033706075e1a01e8a39fafbcb8758bf550d050353

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c79f5b9724062607a311b1fb88231c71185f44f15ea51b42ff7959937290469
MD5 dff48449f1665b003e4b592048cda1bd
BLAKE2b-256 5e499d6244a0bad3eae96c225042930c0024dbfca6cc276b4e71969cc304a311

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 29cdf6b20722e36068eb35732fd278a690db2925d228543b9f8738281862cb2d
MD5 b29e23a86b8796f02d3591f5d0185a86
BLAKE2b-256 783fd5ec2a23af9ecc853972fc5d3bba835215d51c8996d069cc06bd571326fe

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e7585a15e48bfcd69178ddea7728b3919e510187d630ccf72af71d8a4a78dc23
MD5 03d4ef05d724faa77563c8ef8619b9b0
BLAKE2b-256 7737bf5247d8f3c6344f64ca95e6108493a53458f717eef0af0a9a7e0b94b79c

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 026b76c67d6017d9a8dbd2eb6106e95cbfb18aa7976a838b21f0f6ce4ad75639
MD5 7d8e562a3c4336be9ba9aa3815a83432
BLAKE2b-256 8e840449b28e1513be40e30b2aa3278875424bea08221e2d9d2a1b4d06a12922

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 688118e83ffb77e431e73894ab917d8677dcbf5e3c5cb264982ad67cd0e073bb
MD5 15b956e48a0f421161fc5d88883f6473
BLAKE2b-256 a2211d234e181354e52c6514e6e8d7dd03da95132e113833f26c6bdb6e449932

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 97b64e7913564704a13c4428f4c582e39e65d327e350eea7bd5c1e7a92b134f8
MD5 0119cafb73b078acdea6eecba06bb4c5
BLAKE2b-256 1bbc92315276bf3e67fd08dfe2ffb2b256abc2890aac9dc65e7dac4a047d12b4

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 870fce6baf6f3b810c52db63141486707d83235d9dcbe0ad481db5396ebcdaf4
MD5 f2891da861d5b91cc40d1526a7049419
BLAKE2b-256 478d47ecee41986fa8efa72ed95abe853a2f5c9592b20feba9cf42079ebc5bcd

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71deb9d2d967d77254faed401ba1edbe6dab630e6b606f2115217e876ab3b53a
MD5 ba9c9acb03f9d186d1ab7467c3eef32b
BLAKE2b-256 812cd89dbd9b5c0b70d19bb6173e85f20dcf468896f2f5ef7f12b1b9fcf3f472

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 39af586303adcfff13411a693011f1753b1898560b1b6fc0ea9f0d273cdb33e0
MD5 2570012a1a47c1b040418e19979023f4
BLAKE2b-256 d26658a986531f9c70bbec6bc57865a04028230024ee5c2b53e4cf4f93c6eab4

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1cecac2f1a2486d266bf929b5913fbe275a8e77a572184a5baf14ebb633feb1
MD5 7a608fa844cc0cff2488edf223195b92
BLAKE2b-256 8fd5a5d3bc426647d0fada28393168dbe594c29f76808ffbff2019e56dbcccbc

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 049d70c2363229df2f167f08d2dc74bb7ef515a12580a7217b44dfc69555a53d
MD5 84eca77247ef16458c54966839504a23
BLAKE2b-256 ae40d34a641b81e8e00e69b6f5bb542f9cd62f5ec2230ff7077146a2c2c4351b

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 802c7d83be8e569b149df3c13392e651f3c7867c3fce78fb96569b9be9251a90
MD5 1fe21dbf8eeaab0f7001f0f62b7a4dfb
BLAKE2b-256 218d0024942e17314ba1894c57c4672bf1aad0dfb9487ca651b3d07f2b4d6fba

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 12935c9bb50de086370f4939ba1a62b250479273ecb966ab5db8a2e191fbd795
MD5 329968deae11d8426232d5577a7a2ba0
BLAKE2b-256 b1dcb78312e7ff2793a86b0d351f0ee457c888f577f6d7f89669d81542d40d65

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb12d583903740ac2461f5c8e1360faf0f4965b6e56f71365635c68046cb963b
MD5 6734313a32d6392dd9190fddfbe5418f
BLAKE2b-256 4f76310a4b1f9a439a0beb903548dc1013bf52afbdeebf2b470fb5db049f2adf

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41e94fb51c61b91fe28ca03b5fbc864c7433da376dd30650ba88f825d150d41c
MD5 02d1c8e87074e8bab7ed6dcde398af50
BLAKE2b-256 6fdd0ef40dc2fd4ad5568d3161db77e4be590abe6898a7f728a699c2cc9269d6

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 32a9acb47b9ed9755a69c4cd55ee5fedbbccbb0c18a7ceee34eaf9323217ab2a
MD5 705f115cff41f0377946acef4c7c8bcc
BLAKE2b-256 430bce4928fb4c926256f75e95a9c76d9eb8afd003367b92b37c86b1175b21e1

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4c2cc615817d98e14e525d15a9c7ea460149d49dc01c6a3a6a57b1e2f0a16a0c
MD5 5be62ca18d92511d113240335ec7af8f
BLAKE2b-256 013bab3422e87807c50fd09a5e83f3867cc2b619f31476f2ace6f845ad854eef

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3b0c097e6b0ea3a377ff8950f8f66bc6a66c3677c183d818dbeea8c79053b0e5
MD5 ba072d2f4c53868ea500b679a94b3dcd
BLAKE2b-256 f2cd3598ecb30493fb8e36d31ee55777387306cb00009296429b60556d0c66ab

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2b1886b03f61f576b829e42a08a13e8a3e5bf4b54ed68e253f2fa64402e4348
MD5 b2b42009ad42bfbb1ba143b996fe9c3e
BLAKE2b-256 3f371af2ebb1879a17e5a9d9a5a73fa1f8c8fb1c88fadf1be1690325cd9ad98c

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a111fc612240265404ba2fcd178adf442869280dcad4355534f2fc27de251343
MD5 52836577f2a504288068442e79a0d717
BLAKE2b-256 9e7ab982fbfb8bd4648664b986b8d7db427ce65907d0c0ca4718efcbfa816743

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42365934bcd47c5c3c3b0898b19e5d1cde2e8293b8cbaa774236acd6dabfa740
MD5 b4b26361a286d9b27f53e58390f18c59
BLAKE2b-256 96d2e4a9ff92c7880e9795194e33158789a93ecb1aefbf70a2cb1b8cd5f68c23

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 810725cc357cb9909c8aafdfa1ad956926f6656ea339dfe65c0057245ffa98b7
MD5 dd9feb15f7b7a15d0954a7ff3f7be043
BLAKE2b-256 7be880b49f6e867a592e9a5de79c6a448d076d6727bade35604abda04194f6cd

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 b12d826c640dc9b8aff3587d4af810952ee58311716290f79419dae5d4e614e8
MD5 d11a46b9a414a91ec9f6febcd4e5726e
BLAKE2b-256 9b52ccc63114791da5744a7c250266ebbe16b69036bda8175ecac2929df59465

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4f8c02e2d715ff48cedcbd29ec5377fd6a7881db2d531351cc18f6394aef11a
MD5 be685643939d4f5e94f2bea7bb5f0887
BLAKE2b-256 a36b726124ca72a25eca59c838615726d81fe8c1244918e1c9e6abe28a5c84b6

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 523a664c0ef847d888267ef156d65e243b37a68ddf278763d36589077a193f3a
MD5 238879819ef717d76a2797b6a820b7e5
BLAKE2b-256 aff709da1213e86fbeb851d6e7109a638ae69489a87269f793db27637c32349d

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4030eba5df751b78e289116b33b74c4bbea4cc7cb6bcd193ac8732dc98268699
MD5 4da7044894660140998c72aed6fe3996
BLAKE2b-256 bce69db70b7c65107c19be794cfeb169fbd239bdead8296764e0390cbb6a68b9

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 365dc0890958f2cb23c998658cfa128e26425cbcfebd708fb6c9dd7e3e46ae7a
MD5 37b97844b34afbbdc2e4ed6f2184e33e
BLAKE2b-256 495bcc86db7dc00a471ed223fa8127a1f1d2a907af1f1e5a5acd181d1b7e21db

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a7d167cfee0e86f5f50e5e47db42f8c7150a59cb293d51d78416fe6b6213ef2
MD5 487604ae0b780f5591a26add4693decd
BLAKE2b-256 1c0c5132dfb17f43f3c35cbc3d4426b3c79100e257f24f5c508c685986f1d18a

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d4c362c40aed3fc03cc403fbe8bf367ccbfcf1770e71a2479c2b16f5bbb4bb67
MD5 7f20e24fe68cf66153235b0c0438f4da
BLAKE2b-256 754671136cf00e537369bb640b2126256b6bd1c1d38dd885fd9969feb65a1cad

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2c46f2cc0f01fe55a403bdfe61f2a735aa07b73a521c08eb5b7064b86e1d6d64
MD5 0e7d6758bab238add3bae9a3031105d2
BLAKE2b-256 5a7a93ba1af43c916bdfd923954c68edd0799061459002a003a8305b17828fdb

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 aa76c403fb42d0ab740aa81bdc87185f5606d9bb27025e665c4a43060a87269d
MD5 ad4d9c7acdc98730ce5df22808e5a858
BLAKE2b-256 0f63b354ee8b0ae8c8bde4255926c20e8102e9b658701fedc5c6fbae09c60757

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56ae8de19e754c89380be4219203b9599b7d1f4a234a30df5124c6686be08631
MD5 4784fc615fa4699607787acbe11c4e3d
BLAKE2b-256 a5a1be08e43fa8a52624141127cbcb26c8f4de90e316dad012085d3ddccf7429

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b09a54a20dafbce9fde6b4cb42704a6ef94dca1a0761e72469f600cfa7ef148a
MD5 09d85a3401deb4445421157241bdd859
BLAKE2b-256 17bb9eb87947700697837b4b3b0d4d057d70b8ae5f3b07afcbdb173cccaadf12

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a396ddf2f3c6de3e35e221a72414af7f534cacffdfa0fae141721d522255ff83
MD5 0a886daa728ece9fa4aa4d0082e3101c
BLAKE2b-256 8f1ad368539f3d90efe3566481156a5dbf87ee09c8e55fe7176feb3c62872806

See more details on using hashes here.

File details

Details for the file logly-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: logly-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.26 {"installer":{"name":"uv","version":"0.11.26","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for logly-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff3237b75b45dbef23d515ac8a6429f0b807dd7ab929d0d40602bc09e3d7cbd4
MD5 4ee856b8ba0e16c22b21dd43be317a4f
BLAKE2b-256 524f550c7ebad042c7440f87ef3836f4d5158d698bae420ce0146604736191af

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