A stupidly simple, yet blazingly fast and powerful logging utility for Python โ powered by Rust.
Project description
๐ Table of Contents
Overview
Logly is a high-performance logging library for Python, powered by Rust. It combines the familiar Loguru-like API with the performance and safety guarantees of Rust.
Built with a modular Rust backend using PyO3/Maturin, Logly provides fast logging while maintaining memory safety and thread safety through Rust's ownership system.
If you like Logly, please give it a star โญ on GitHub! It really helps!
โ ๏ธ Active Development: Logly is a newer project and actively developed. Performance continues to improve with each release. also if you find a bug or a missing feature, please report it on GitHub. and Logly is not Production Ready yet :)
๐ NOTE: The Main Branch Contains the latest features and improvements for upcoming releases. For stable production use, consider using the latest tagged release. because you may find an non existing feature or a bug in older releases.
๐ฏ Why Logly?
Logly offers a comprehensive set of logging features designed for modern Python applications:
๐ Core Features
- Rust-Powered Backend: High-performance logging engine built with Rust, providing exceptional speed and memory efficiency
- Memory Safety: Zero-cost abstractions with Rust's ownership system prevent data races and memory corruption
- Thread Safety: Lock-free operations with optimized synchronization for concurrent applications
- Zero-Configuration Setup: Start logging immediately with sensible defaults - no configuration required
๐ Logging Capabilities
- Multiple Log Levels: Support for TRACE, DEBUG, INFO, SUCCESS, WARNING, ERROR, FAIL, and CRITICAL levels
- Structured Logging: Native JSON output with custom fields and metadata
- Context Binding: Attach persistent context to loggers for request tracking and correlation
- Exception Handling: Automatic exception logging with stack traces and context
๐ฏ Output Management
- Multi-Sink Support: Route logs to multiple destinations (console, files, custom handlers) simultaneously
- Per-Sink Filtering: Independent filtering and formatting for each output destination
- Auto-Sink Levels: Automatic file creation and management for different log levels
- Console Control: Fine-grained control over console output, colors, and timestamps per log level
๐ง File Management
- Smart Rotation: Time-based (daily/hourly/minutely) and size-based log rotation
- Compression: Built-in gzip and zstd compression for rotated log files
- Retention Policies: Configurable retention periods and file count limits
- Async Writing: Background thread writing for non-blocking file operations
๐ Advanced Filtering
- Level-Based Filtering: Filter logs by minimum severity level (threshold-based)
- Module Filtering: Include/exclude logs from specific Python modules
- Function Filtering: Target logs from specific functions or methods
- Custom Filters: Implement custom filtering logic with callback functions
๐ Callbacks & Extensions
- Async Callbacks: Real-time log processing with background execution
- Custom Formatting: Flexible template-based formatting with custom fields
- Color Styling: Rich color support for console output and callback processing
- Extensibility: Plugin architecture for custom sinks and processors and more...
๐ Recent Changes
NEW in v0.1.6:
- โ Python 3.14 Support (#83) - Full compatibility with Python 3.14's latest features
- โ
Time Format Specifications (#79) - Custom time formatting with Loguru-style patterns (
{time:YYYY-MM-DD HH:mm:ss}) - โ
Internal Debugging Mode - New
internal_debug=Trueparameter for troubleshooting and bug reports - โ Enhanced Documentation - Comprehensive Python 3.14 guide, template string examples, and improved API reference
Recent Fixes:
- โ Jupyter/Colab Support (#76) - Logs now display correctly in notebook environments
- โ File Retention (#77) - Retention now properly limits total log files with size_limit
๐ฏ Python 3.14 Users: Check out the Python 3.14 Support Guide to learn how to use new features like deferred annotations, UUID7, improved pathlib, and InterpreterPoolExecutor with Logly!
Installation
From PyPI (Recommended)
pip install logly
From Source (Development)
Requires: Python 3.10+, Rust 1.70+, Maturin
git clone https://github.com/muhammad-fiaz/logly.git
cd logly
pip install maturin
maturin develop # Development build
For detailed installation instructions, see the Installation Guide.
Platform Support
Logly supports Python 3.10+ and is available for multiple platforms. The minimum required version is 0.1.4+.
| Python Version | Windows | macOS | Linux |
|---|---|---|---|
| 3.10 | โ | โ | โ |
| 3.11 | โ | โ | โ |
| 3.12 | โ | โ | โ |
| 3.13 | โ | โ | โ |
| 3.14 | โ | โ | โ |
Notes:
- Python 3.14 support added in v0.1.6+ with full compatibility for new features
- Pre-built wheels available for all platforms (view on PyPI)
- All major Linux distributions are supported
- Both Intel and Apple Silicon macOS are supported
- Windows 10 and later versions are supported
๐ก Python 3.14 Features: Logly v0.1.6+ supports Python 3.14's deferred annotations, UUID7, improved pathlib, and InterpreterPoolExecutor. See the Python 3.14 Support Guide for examples.
Quick Start
NEW in v0.1.5+: Start logging immediately - no configuration needed!
from logly import logger
# That's it! Start logging immediately
logger.info("Hello, Logly!") # โ
Works right away
logger.warning("Super simple!") # โ ๏ธ No configure() needed
logger.error("Just import and log!") # โ Auto-configured on import
# Logs appear automatically because:
# - Auto-configure runs when you import logger
# - Console sink is created automatically (auto_sink=True)
# - Logging is enabled globally (console=True)
Advanced Usage
from logly import logger
# Optional: Customize configuration
logger.configure(
level="DEBUG", # Set minimum log level
color=True, # Enable colored output
console=True, # Enable console output (default: True)
auto_sink=True # Auto-create console sink (default: True)
)
# Add file output with rotation
logger.add(
"logs/app.log",
rotation="daily", # Rotate daily
retention=7, # Keep 7 days
date_enabled=True, # Add date to filename
async_write=True # Async writing for performance
)
# **NEW in v0.1.5:** Auto-Sink Levels - Automatic file management
logger.configure(
level="DEBUG",
color=True,
auto_sink=True, # Console output
auto_sink_levels={
"DEBUG": "logs/debug.log", # All logs (DEBUG and above)
"INFO": "logs/info.log", # INFO and above
"ERROR": "logs/error.log", # ERROR and above
}
)
# โ
Three files created automatically with level filtering!
# Configure global settings
logger.configure(
level="INFO",
color=True,
show_time=True,
json=False
)
# Basic logging
logger.info("Application started", version="1.0.0")
logger.success("Deployment successful ๐", region="us-west")
logger.warning("High memory usage", usage_percent=85)
logger.error("Database connection failed", retry_count=3)
# Structured logging with context
request_logger = logger.bind(request_id="r-123", user="alice")
request_logger.info("Processing request")
# Context manager for temporary context
with logger.contextualize(step=1):
logger.debug("Processing step 1")
# Exception logging
@logger.catch(reraise=False)
def may_fail():
return 1 / 0
# Async callbacks for real-time processing
def alert_on_error(record):
if record["level"] == "ERROR":
send_alert(record["message"])
callback_id = logger.add_callback(alert_on_error)
# Ensure all logs are written before exit
logger.complete()
Advanced Features
1. File Rotation & Retention
# Time-based rotation
logger.add("logs/app.log", rotation="daily", retention=30) # Keep 30 days
logger.add("logs/app.log", rotation="hourly", retention=24) # Keep 24 hours
# Size-based rotation (supports B/b, KB/kb, MB/mb, GB/gb, TB/tb - case-insensitive)
logger.add("logs/app.log", size_limit="10MB", retention=5) # Keep 5 files
logger.add("logs/app.log", size_limit="100mb", retention=10) # Lowercase works too
logger.add("logs/tiny.log", size_limit="500b") # Bytes with lowercase 'b'
logger.add("logs/small.log", size_limit="5K") # Short form (5 kilobytes)
# Combined rotation
logger.add("logs/app.log", rotation="daily", size_limit="50MB", retention=7)
2. Per-Sink Filtering
# Level-based filtering
logger.add("logs/debug.log", filter_min_level="DEBUG")
logger.add("logs/errors.log", filter_min_level="ERROR")
# Module-based filtering
logger.add("logs/database.log", filter_module="myapp.database")
logger.add("logs/api.log", filter_module="myapp.api")
# Function-based filtering
logger.add("logs/auth.log", filter_function="authenticate")
3. Structured JSON Logging
# Enable JSON output
logger.configure(json=True)
# Pretty JSON for development
logger.configure(json=True, pretty_json=True)
# Log structured data
logger.info("User login", user_id=123, ip="192.168.1.1", success=True)
# Output: {"timestamp":"2025-10-02T12:00:00Z","level":"INFO","message":"User login","fields":{"user_id":123,"ip":"192.168.1.1","success":true}}
4. Async Callbacks
# Register callback for real-time processing
def send_to_monitoring(record):
if record["level"] in ["ERROR", "CRITICAL"]:
monitoring_service.send_alert(record)
callback_id = logger.add_callback(send_to_monitoring)
# Callbacks execute in background threads (zero blocking)
logger.error("Critical system failure", service="database")
# Remove callback when done
logger.remove_callback(callback_id)
5. Per-Level Control
# Control console output per level
logger.configure(
console_levels={"DEBUG": False, "INFO": True, "ERROR": True}
)
# Control timestamps per level
logger.configure(
show_time=False,
time_levels={"ERROR": True} # Only show time for errors
)
# Control colors per level
logger.configure(
color_levels={"INFO": False, "ERROR": True}
)
# Control file storage per level
logger.configure(
storage_levels={"DEBUG": False} # Don't write DEBUG to files
)
6. Custom Formatting
# Simple format
logger.add("console", format="{time} [{level}] {message}")
# Detailed format
logger.add(
"logs/detailed.log",
format="{time} | {level:8} | {module}:{function} | {message} | {extra}"
)
# JSON-like format
logger.add(
"logs/json-like.log",
format='{{"timestamp": "{time}", "level": "{level}", "msg": "{message}"}}'
)
# **NEW in v0.1.6:** Time Format Specifications
# Customize time format using Loguru-style patterns
logger.add("console", format="{time:YYYY-MM-DD HH:mm:ss} | {level} | {message}")
# Output: 2025-10-11 13:46:27 | INFO | Application started
# Date-only format
logger.add("logs/daily.log", format="{time:YYYY-MM-DD} [{level}] {message}")
# Output: 2025-10-11 [INFO] User logged in
# Milliseconds precision
logger.add("logs/precise.log", format="{time:HH:mm:ss.SSS} {message}")
# Output: 13:46:27.324 Database query completed
# ISO 8601 format
logger.add("logs/api.log", format="{time:YYYY-MM-DDTHH:mm:ss} {level} {message}")
# Output: 2025-10-11T13:46:27 INFO Request processed
# Month names
logger.add("logs/verbose.log", format="{time:MMMM DD, YYYY} - {message}")
# Output: October 11, 2025 - System initialized
Supported Time Format Patterns (v0.1.6+):
- Year:
YYYY(2025),YY(25) - Month:
MM(10),MMM(Oct),MMMM(October) - Day:
DD(11),ddd(Mon),dddd(Monday) - Hour:
HH(13, 24-hour),hh(01, 12-hour) - Minute:
mm(46) - Second:
ss(27) - Millisecond:
SSS(324),SS(32),SSSSSS(324000 microseconds) - AM/PM:
A(PM),a(pm) - Timezone:
ZZ(+0000),Z(+00:00),zz(UTC) - Unix Timestamp:
X(1728647187)
For complete format pattern reference, see Template Strings Documentation.
For complete feature documentation, see the API Reference.
Testing & Quality
Logly maintains 96%+ code coverage with comprehensive testing:
# Run tests
pytest
# With coverage
pytest --cov=logly --cov-report=term-missing
# Code quality (10.00/10 score)
pylint logly/
For development guidelines, see the Development Guide.
Documentation
Complete documentation is available at muhammad-fiaz.github.io/logly:
- ๐ Getting Started Guide
- ๐ API Reference
- ๐ง Configuration Guide
- ๐ Production Deployment
- ๐ก Examples
Contributing
Contributions are welcome! Please see our Contributing Guidelines and Code of Conduct.
Want to contribute?
- Fork the repository
- Create a feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
A big thank you to all contributors! ๐
Changelog
See the GitHub Releases page for detailed release notes.
Acknowledgements
Special thanks to:
- Loguru: For inspiring the API design
- tracing: The Rust logging framework powering the backend
- PyO3: For seamless Python-Rust integration
- Maturin: For simplifying the build process
- All contributors: For valuable feedback and contributions
๐ Note on Loguru: Logly is not the same as Loguru. Logly is only inspired by Loguru's design, but all features and functionality are completely different. Logly is built with Rust for performance and safety, while Loguru is a pure Python library.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file logly-0.1.6.tar.gz.
File metadata
- Download URL: logly-0.1.6.tar.gz
- Upload date:
- Size: 546.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
82dbc85b0aa1d82f32d32fffe12f727637bdf67d5d53cf3fa989a51b093d4367
|
|
| MD5 |
7e0a362fd2bf3e303190ce484191d257
|
|
| BLAKE2b-256 |
90f8b114104ae622b9b973502e743161a2802335fb3af12d14e38d8045f6d230
|
Provenance
The following attestation bundles were made for logly-0.1.6.tar.gz:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6.tar.gz -
Subject digest:
82dbc85b0aa1d82f32d32fffe12f727637bdf67d5d53cf3fa989a51b093d4367 - Sigstore transparency entry: 600991408
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: logly-0.1.6-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
39a2571e834ec6a7e181ff976a697683a962c991cc8705e5787270089faa3eb2
|
|
| MD5 |
06b772b44e2ebc06c0f2beaf55ea2cbd
|
|
| BLAKE2b-256 |
5c6fd6d4a77e2e48d25cbb0aa4ee6fd3f937b60f90afa3077906acc5360c46b9
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp314-cp314-win_amd64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp314-cp314-win_amd64.whl -
Subject digest:
39a2571e834ec6a7e181ff976a697683a962c991cc8705e5787270089faa3eb2 - Sigstore transparency entry: 600991417
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp314-cp314-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: logly-0.1.6-cp314-cp314-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
70cb0e50f51c5955c6679303794346c30ee497455a111c15ab077a9519eeb313
|
|
| MD5 |
58c40b6b65caecd971769e5598d99ac0
|
|
| BLAKE2b-256 |
2091cb80b3ca0f0ff83c9c13b5eabab78a073cb1e192e54d082edb51363e6b5e
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp314-cp314-manylinux_2_34_x86_64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp314-cp314-manylinux_2_34_x86_64.whl -
Subject digest:
70cb0e50f51c5955c6679303794346c30ee497455a111c15ab077a9519eeb313 - Sigstore transparency entry: 600991429
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: logly-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9b396331b121e0edadcee96800e4ea062f325a1a8c12608acedfec361847491f
|
|
| MD5 |
bdcd3392e2ac062a4bcbdc7c9e90ca45
|
|
| BLAKE2b-256 |
da9cbf44903b138afc9f3a44122638b229f04f2ccdb5e9d75a79cc71a31367a1
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
9b396331b121e0edadcee96800e4ea062f325a1a8c12608acedfec361847491f - Sigstore transparency entry: 600991413
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: logly-0.1.6-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
109b1080d21ac45fadca5060bbcf60f810345318c95222918ec4ddc4823d2941
|
|
| MD5 |
ae84607ca51bc24bbbb0905fcdcf5520
|
|
| BLAKE2b-256 |
3aae5497dddf142291d31a4291c9c4a36f6e415c9ea6e22eddced0aa7440064f
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp313-cp313-win_amd64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp313-cp313-win_amd64.whl -
Subject digest:
109b1080d21ac45fadca5060bbcf60f810345318c95222918ec4ddc4823d2941 - Sigstore transparency entry: 600991410
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp313-cp313-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: logly-0.1.6-cp313-cp313-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4112a176bff55ae056989274b7a9c42278607b6c750cb38a87bb03a2afef5571
|
|
| MD5 |
086b18af2e29491b4b4051c58fbd3f4b
|
|
| BLAKE2b-256 |
6e46c3453bd0d3346c6ecb3f9b549b8afbd7b88eed5d81cc58e254cc07676947
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp313-cp313-manylinux_2_34_x86_64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp313-cp313-manylinux_2_34_x86_64.whl -
Subject digest:
4112a176bff55ae056989274b7a9c42278607b6c750cb38a87bb03a2afef5571 - Sigstore transparency entry: 600991414
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: logly-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3c15612a73b73df538f89e101e76815182c01b9b3e2804b5941c6c161664e447
|
|
| MD5 |
a33727138ebd09c63ccba592b29e6f97
|
|
| BLAKE2b-256 |
f1e34ce60ebee3a34a00deeff00cbb3d3999e7b6f47d0acc4d7ca7d6b18ecf88
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
3c15612a73b73df538f89e101e76815182c01b9b3e2804b5941c6c161664e447 - Sigstore transparency entry: 600991425
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: logly-0.1.6-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c92ddb3b90933d7eadfc0f8e3e573d131801cf0a112b3ae8130e44c8739504f
|
|
| MD5 |
7614749478a0eb72890510a8b474a0d8
|
|
| BLAKE2b-256 |
840b2be985049fbf7800340d200aadd11c1fc7a22b64fe4cc4251f182afad64a
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp312-cp312-win_amd64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp312-cp312-win_amd64.whl -
Subject digest:
2c92ddb3b90933d7eadfc0f8e3e573d131801cf0a112b3ae8130e44c8739504f - Sigstore transparency entry: 600991416
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp312-cp312-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: logly-0.1.6-cp312-cp312-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0dfb118b3c028800b3eb40329ee5bcc9294317fbd4209304cd5a7186e6595839
|
|
| MD5 |
cc58bae2b7715eb84327e482bbd43e44
|
|
| BLAKE2b-256 |
967552f98bd9dcdc89506d94c75f3918e3d1374f78164122b54a9fe40ae14a09
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp312-cp312-manylinux_2_34_x86_64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp312-cp312-manylinux_2_34_x86_64.whl -
Subject digest:
0dfb118b3c028800b3eb40329ee5bcc9294317fbd4209304cd5a7186e6595839 - Sigstore transparency entry: 600991422
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: logly-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f07e89b78e03f48e0c445d5565c982967c98e5616650abb4d05fd0698400ce1a
|
|
| MD5 |
b3cf38e5829508316dc29c0102c278ee
|
|
| BLAKE2b-256 |
357b13112dedcb2a3d93c7d753db13b3fcfaeed46104583621b151a3fda77019
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
f07e89b78e03f48e0c445d5565c982967c98e5616650abb4d05fd0698400ce1a - Sigstore transparency entry: 600991423
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: logly-0.1.6-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb02f484c4cf7940aacba5f098ca8fe9db0ea7e8b0e9ab59501a0ebfde9dede5
|
|
| MD5 |
8e40e5ae4874103d2afebb1a8653d36d
|
|
| BLAKE2b-256 |
98c66c4e16f8808f27ae0896b823c2dd1872e3ad7339b10bcae884343c958722
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp311-cp311-win_amd64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp311-cp311-win_amd64.whl -
Subject digest:
eb02f484c4cf7940aacba5f098ca8fe9db0ea7e8b0e9ab59501a0ebfde9dede5 - Sigstore transparency entry: 600991409
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp311-cp311-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: logly-0.1.6-cp311-cp311-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8fbb176018bcae0423e26116dd6c1dfad36e0529ee72962136420a0898da5af3
|
|
| MD5 |
e18bf6ace301523ee283b211833ac22e
|
|
| BLAKE2b-256 |
0bbb64633abb5f8708792f4372d6cc9d4f9afe28a38a8c5238108521f8237ee6
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp311-cp311-manylinux_2_34_x86_64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp311-cp311-manylinux_2_34_x86_64.whl -
Subject digest:
8fbb176018bcae0423e26116dd6c1dfad36e0529ee72962136420a0898da5af3 - Sigstore transparency entry: 600991415
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: logly-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4b1feca957d0d200cc430b9818b420f9b74bfada61549bae1dff34a2191d87b9
|
|
| MD5 |
a378ee42544767ec1b8e5d8fad8e0525
|
|
| BLAKE2b-256 |
40e1b42d47e2de813df711933da4bf460a816256f0f580a532e8140f338baa4f
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
4b1feca957d0d200cc430b9818b420f9b74bfada61549bae1dff34a2191d87b9 - Sigstore transparency entry: 600991424
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: logly-0.1.6-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef81d3c0dc2a1d3f7482d1eb343cd81188bfd11255c4e373e78156d7c7e19003
|
|
| MD5 |
d6332e89a17d0f880647e6e0764b5cad
|
|
| BLAKE2b-256 |
7e9b2e74afb06afa3994043c9a557834a0e20998eb967fad8ecd7d8f559bbf02
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp310-cp310-win_amd64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp310-cp310-win_amd64.whl -
Subject digest:
ef81d3c0dc2a1d3f7482d1eb343cd81188bfd11255c4e373e78156d7c7e19003 - Sigstore transparency entry: 600991420
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp310-cp310-manylinux_2_34_x86_64.whl.
File metadata
- Download URL: logly-0.1.6-cp310-cp310-manylinux_2_34_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.34+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43a17331043fd47d614124f7c3f2914f36d9e0d5be44cca422f39b85ba362e5a
|
|
| MD5 |
ba5d7182ec7a968d75d7bff6ca37ff20
|
|
| BLAKE2b-256 |
8dd761e1e7c32b726ae2e2bede08a1265c6d9ac5edc4a7e72ee6a175a0f295ae
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp310-cp310-manylinux_2_34_x86_64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp310-cp310-manylinux_2_34_x86_64.whl -
Subject digest:
43a17331043fd47d614124f7c3f2914f36d9e0d5be44cca422f39b85ba362e5a - Sigstore transparency entry: 600991411
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type:
File details
Details for the file logly-0.1.6-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: logly-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4228d053dae461cb97645742da204bfba4ff61dd0a759ba88a30fb72d4ca977d
|
|
| MD5 |
ac924c12b887872f86f5162fd9ede9d6
|
|
| BLAKE2b-256 |
d0d552364f93141eb5f79414dded51680a15b50ea9549e2a5767a6ca65974dfd
|
Provenance
The following attestation bundles were made for logly-0.1.6-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
python_publish.yaml on muhammad-fiaz/logly
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
logly-0.1.6-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
4228d053dae461cb97645742da204bfba4ff61dd0a759ba88a30fb72d4ca977d - Sigstore transparency entry: 600991427
- Sigstore integration time:
-
Permalink:
muhammad-fiaz/logly@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Branch / Tag:
refs/tags/0.1.6 - Owner: https://github.com/muhammad-fiaz
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python_publish.yaml@331fbd0c0d194a92682e44b462a81bfe3bb09bef -
Trigger Event:
release
-
Statement type: