Skip to main content

rusty logger logo

Lints-Tests codecov

Rusty Logger

Simple, opinionated and blazingly fast python logging. Rusty-Logger is a thin python wrapper for Rust's tracing library that provides a mostly drop-in replacement for pythons default logging.

Table of contents

Supported Configuration

Arg Description Default
stdout Log to stdout True
stderr Log to stderr False
level Level to log INFO
app_env Application environment (APP_ENV env var) development
lock_guard Whether to lock logger to current context False
thread_id Whether to display the thread id False
color Whether to enable ansi coloring of logs for standard logger False
time_format Custom time format for logger [year]-[month]-[day]T[hour repr:24]:[minute]:[second]::[subsecond digits:4]
json_config JsonConig None
json_config.flatten Whether to flatten any passed fields True
file_config LogFileConfig None
file_config.filename Filename for log log/logs.log
file_config.rotate File rotation specification. daily, hourly, minutely or never never

Constraints

Time is currently limited to UTC; however, you can customize time format to your liking using the time_format arg. Please refer to (time docs)[https://time-rs.github.io/book/api/format-description.html] for formatting guidelines. In addition, because Rusty-Logger calls Rust directly, it's not currently possible to pull the specific line number where logging takes place unless python is directly used (if you're even interested in this feature :smile:). If you'd like to see this feature implemented, and you want to contribute, please refer to the contributing guide.

In addition, Rusty-Logger is a mostly drop-in replacement, meaning that you may need to make some minor changes to your existing code. For example, Rusty-Logger does not support current python lazy formatting (e.g. logger.info("Number: %s", 10)). Instead, Rusty-Logger uses Rust's default bracket ({}) formatting.

# This is not supported
logger.info("Number: %s", 10)

# This is supported
logger.info("Number: {}", 10)

Show Me The Code!

Basic Usage

from rusty_logger import Logger

logger = Logger.get_logger(__file__)
logger.info("Loggy McLogface")

output

2023-10-18T00:11:43::3194  INFO Loggy McLogface app_env="development" name="your_file.py"

JSON

from rusty_logger import Logger, LogConfig, JsonConfig

logger = Logger.get_logger(__file__, LogConfig(json_config=JsonConfig()))
logger.info("Loggy McLogface logs")

output

{"timestamp":"2023-10-18T00:10:59::9732","level":"INFO","message":"Loggy McLogface logs","app_env":"development","name":"your_file.py"}

Log to file

from rusty_logger import Logger, LogConfig, JsonConfig, LogLevel, LogFileConfig

logger = Logger.get_logger(
    name=__file__,
    config=LogConfig(
        stdout=False,
        level=LogLevel.WARN,
        json_config=JsonConfig(),
        file_config=LogFileConfig(filename="logs/test.log"),
    ),
)
logger.warning("Loggy McLogface logs logs")

output from log/test.log

{"timestamp":"2023-10-18T00:10:10::9364","level":"WARN","message":"Loggy McLogface logs logs","app_env":"development","name":"your_file.py"}

Record multiple places at once

from rusty_logger import Logger, LogConfig, JsonConfig, LogMetadata, LogLevel, LogFileConfig

logger = Logger.get_logger(
    __file__,
    LogConfig(
        stdout=True,
        level=LogLevel.ERROR,
        json_config=JsonConfig(),
        file_config=LogFileConfig(filename="logs/test.log")
    ),
)
logger.error("Loggy McLogface logs logs that are logs")

output

{"timestamp":"2023-10-18T00:09:32::4053","level":"ERROR","message":"Loggy McLogface logs logs that are logs","app_env":"development","name":"your_file.py"}

Additional examples

For additional examples, please see the examples directory which contains timed example of vanilla logger vs Rusty-Logger, python-json-logger vs Rusty-Logger as well as a multi-worker API example.

Performance

Why would we do this when python logging is fine? Because we wanted something faster :smile:. From our own benchmarks, Rusty-Logger tends to be ~4x faster than vanilla python logging and ~8x faster than vanilla JSON logging. And while speed may not be mission critical for a few thousands logs, it can be for millions, which many companies deal with on a daily basis. Time is money and compute, and we want to save you both :moneybag: :computer:.

Contributing

While Rusty-Logger is production ready out of the box, it is still in it's infancy and is ripe for additional contributions. If you'd like to contribute, please see the contributing guide.

Thank You!!! :heart: :heart: :heart:

Release files for rusty-logger 0.3.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for rusty-logger 0.3.0
File
rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.10 PyPy 3.10 7.3 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.9 PyPy 3.9 7.3 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl PyPy 3.8 PyPy 3.8 7.3 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl PyPy 3.8 PyPy 3.8 7.3 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-cp312-none-win_amd64.whl CPython 3.12 none Windows x86-64 Details
rusty_logger-0.3.0-cp312-none-win32.whl CPython 3.12 none Windows x86-32 Details
rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-cp311-none-win_amd64.whl CPython 3.11 none Windows x86-64 Details
rusty_logger-0.3.0-cp311-none-win32.whl CPython 3.11 none Windows x86-32 Details
rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-cp310-none-win_amd64.whl CPython 3.10 none Windows x86-64 Details
rusty_logger-0.3.0-cp310-none-win32.whl CPython 3.10 none Windows x86-32 Details
rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-cp39-none-win_amd64.whl CPython 3.9 none Windows x86-64 Details
rusty_logger-0.3.0-cp39-none-win32.whl CPython 3.9 none Windows x86-32 Details
rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
rusty_logger-0.3.0-cp38-none-win_amd64.whl CPython 3.8 none Windows x86-64 Details
rusty_logger-0.3.0-cp38-none-win32.whl CPython 3.8 none Windows x86-32 Details
rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARMv7l Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.5+ x86-32 Details
rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.12+ x86-64 Details

Total release size: 91.8 MB

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
196e5389c1cf31862f0c52a9d0b4929dacebda23bcdc563cfa5dae42340e57f9
BLAKE2b-256 checksum
How to use checksums
d2c496afdfc48f8854a0ae0d172994191daba70b6c530acfe05c1aa63cdcba2a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
f5ce30dc3ce1b1bcf4dedfd72362cfc270b469b754c2d100f70be65a739b557f
BLAKE2b-256 checksum
How to use checksums
9d16af058e6f9efedf7fcd441a46b09626a68588dd5e5e041f2a65e550e916d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 993.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
35a217755becc13f03744766f7bed6c65374b26c869eca6619b70a9411bce022
BLAKE2b-256 checksum
How to use checksums
a015402a752837d608a9aa8b712dc6679842d4aab5c2d7fa6802c61643d4d60b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
1620937e0216fb9b3c991d4d872bee21bcc79fb8dbf3f13b2dcc5a4d85a561ed
BLAKE2b-256 checksum
How to use checksums
d693bd46e3d41bc99bb0b9d401f4a788612bd82792021dc7b5ac303c8a048574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
2b0c5a33acc174044508e9375961724baf9f806aeb71f1f8ee7036d833addfb9
BLAKE2b-256 checksum
How to use checksums
43d2990c8b814050d9d2bf07c831b02871947e66445ba017f9d5f546b2bc08ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 906.9 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
c628b3e01da367c18584700aa32d893d15ee88cf911386067aa3d9e050cb6773
BLAKE2b-256 checksum
How to use checksums
19c511ea7194aad11ce5251cbc03cbdcdca5ad0dc4c007085cda84e8aff2bf81
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 925.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
61e00bda9b1e7dd65015cee148d7ab126b488a9b090b73279d61b071a6dd0e2b
BLAKE2b-256 checksum
How to use checksums
c43bbaa4f8fe3c3bd06a6e0c0d3d16ae6f7cc71fba208dca1561b0c8f47d8661
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.6 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.10 PyPy 3.10 7.3
SHA-256 checksum
How to use checksums
0e326ca7eb542655546c281ef0a52d2722544ab4248e17bdaa3d956afbd0c83b
BLAKE2b-256 checksum
How to use checksums
ae4840b4708bfe83e049ef09a3ebc23829f97d13184603e7f30130cd2fa5f360
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Size 873.4 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0b2e9b86c3b64adc51115801100c61d47d789c6781068fb8a413b392d7fa92d1
BLAKE2b-256 checksum
How to use checksums
5f049174f7d3502e1f8137437aae5404cabcfaeff7f3ee51872a66394d41a7c5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Size 926.7 kB
Tags PyPy 3.10 PyPy 3.10 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
bfc483e401935b81abc7e8d8ae534792e6aebbe09bbfa0ee68e5219d0dec5482
BLAKE2b-256 checksum
How to use checksums
70c7b61d87e29829590bdf12d91e0183165fe662dcfd8b88ac25675aa21387c7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
7a5fcac840ec0f788fab8d4c37e483d18dc3aef99d127f4fca7828021b6506ed
BLAKE2b-256 checksum
How to use checksums
7beec6e69f43f45f61098b7c463f96f602b9ac30e6703d79908bcaac9c71312a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
8c2d5a83ccc9f6d4fb15bb3b35cc2146b5449329deff7d29ce2dd04622563076
BLAKE2b-256 checksum
How to use checksums
3ab55cd9ac88c6b7b4a88a3a72d77d9ad8a74cb3f3e8fc816ebbb511068ab4e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 993.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
ded27716ca764e16b13b12414ed149bcd1c24e71df5805d3bf1a9e23f184b0af
BLAKE2b-256 checksum
How to use checksums
5cc2f7ebf72ed0c0fa148452d8a8b4f8d16c1685d535b4107b350b1b0bb34373
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
61e501c840235b4f6f766342347bb72464012e5de54fd81a212f4f3f801b6371
BLAKE2b-256 checksum
How to use checksums
06c1392ab2b1c63046885e238e7d69b134f4eda81de0c60fea2ece7bf371ebe4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
9fbfc0304966c661c000a0c5133f3126090c6a1c537ea3675691a62895e2309f
BLAKE2b-256 checksum
How to use checksums
dc6ecd62117cdccddcd80eec3525aed5eca8e65f41230395d1d32b37152ac90e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 907.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
c30bc1e75bb0e8924b079148d85fd5ec1e4994e2af728575488d9a4d896226ae
BLAKE2b-256 checksum
How to use checksums
0a389611b55d46d11407451d30dc3bd0095ba074dea7854fe49ef23fef20f3a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 925.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
a249e9513b8884f49698d6d232e63b767d5fb7a0ea7819f2c873e1b1f1972b05
BLAKE2b-256 checksum
How to use checksums
afb752cbf3bde85291ccacccc13868c256cb0daa7d0b1dfd3c4b52497d76d790
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.6 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.9 PyPy 3.9 7.3
SHA-256 checksum
How to use checksums
870ade7637c8cce54f5be735c1c455d80323f3510e996d6eb89358611eb26698
BLAKE2b-256 checksum
How to use checksums
51bc663b7e3a7102a4c8cb40791920808867c2b90c5a849d6db6adeb5ffd65f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Size 873.4 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f407eca7ecaeb7eea42c9a7b459e4e24649bac67fb809b1d4b2d4f8e4a2fdaeb
BLAKE2b-256 checksum
How to use checksums
142c86023523e6577f3b814004f3fac4f1cf9866039a8a3b63f6ce8031aa6eb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Size 926.7 kB
Tags PyPy 3.9 PyPy 3.9 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
d2374de8e0aa5a3f8daa0ac8bca295aeb5b9a850b8754b3075941eca2b6d9630
BLAKE2b-256 checksum
How to use checksums
62327e80ab05a303f6d67a97b9f90167372febf304aa4ab16bf46b991bed0013
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags Linux musl 1.1+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
58fe375b58e7a5c18b08baacb348e8d3d95fbe11be91f0f408c75b891f2eac72
BLAKE2b-256 checksum
How to use checksums
0a71824b1168ad9dcc9745a2c35c6636db51667680f65fcd139a5b4e8baa510b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags Linux musl 1.1+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
05b55eb1262bfb08ab43c975ebec1401c7bac29d66d3dbcbd4985516bc2ac047
BLAKE2b-256 checksum
How to use checksums
104dbe60dcd43aea4c7c8dd4d433be78752144a03d5d132cba30b7198cf236aa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 993.1 kB
Tags Linux glibc 2.17+ x86-64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
d10a140c27c329f31c1dbf48fee9ae730f6638744268370b766519911811300d
BLAKE2b-256 checksum
How to use checksums
272b961feee765ed2d1d28f4fe445e6fbb3c277c1111224a8fb0997400bf464f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags Linux glibc 2.17+ IBM System/390x PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
0515b3d74135281fd0ee2a64b21a9413c5ab068fbf9b268f58b001ea938a77b7
BLAKE2b-256 checksum
How to use checksums
83cf280470ec3a27ef299be6f1a334340b95e3bb451790f02b25f9c3ba79286e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags Linux glibc 2.17+ PowerPC 64-le PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
62586709f8bdb0263c8cd84274787b665ccf3abefa594941312891c070aaea9d
BLAKE2b-256 checksum
How to use checksums
8eacfe86c2dbdf89bacc65fb1d4d73cf0f0878c69795f0582beeaee2896beb0f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 907.0 kB
Tags Linux glibc 2.17+ ARMv7l PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
5fb80a86204f6fdd92efd990c365e3789ba88c430de68671251707425ffe257a
BLAKE2b-256 checksum
How to use checksums
884fd2db438fd08063c224644cd4db3db5017be04ada4466272d48a673538d07
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 925.4 kB
Tags Linux glibc 2.17+ ARM64 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
e2ac1cfaf59715be50c020e2fde2ea835f6f890f2fdff8afd7cbcf3395b51b06
BLAKE2b-256 checksum
How to use checksums
3272a660712e15a86d76f7991702a81d5a4949de6a56836c5b80ee10d43ef228
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.7 kB
Tags Linux glibc 2.5+ x86-32 PyPy 3.8 PyPy 3.8 7.3
SHA-256 checksum
How to use checksums
254dc9797d455dc605390bcfe2f342eb6f5ca6c0dcf064208c254aebd2dd2c06
BLAKE2b-256 checksum
How to use checksums
95cab5f024d217f8c2dcce6e48abf37020f8c5994fd03e7678cb4de8f413731e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Size 873.1 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
84ee884a991d01eea2e75da2defd2d65b5ef8137fd385891848637ddf7dbdc63
BLAKE2b-256 checksum
How to use checksums
55f46d051092b7dab42089cd0153c4f522ea9da15cba1c20582fdc7284cc4149
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Size 927.0 kB
Tags PyPy 3.8 PyPy 3.8 7.3 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
069092a9a69c2859a83c29c88428ee4bf52e89f929be0e960a78f6e58f459dd6
BLAKE2b-256 checksum
How to use checksums
260e460d7dc0b0817dd41ce03d597dd0c2d33f45728274a0ff3724c1425ce57f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-none-win_amd64.whl

Download URL rusty_logger-0.3.0-cp312-none-win_amd64.whl
Size 934.1 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
9ee59fb631c0e605f2616abb10bf808ea50ca41c76694909d6a632195e107d6a
BLAKE2b-256 checksum
How to use checksums
52b1f09e56dce6603a9faef744baa1cc232390cbfc9165cc80f49efd8f3563a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-none-win32.whl

Download URL rusty_logger-0.3.0-cp312-none-win32.whl
Size 853.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
c4d6dd892fa8b0cab8cffb622806c1c808d93531920226326207269c45422a7e
BLAKE2b-256 checksum
How to use checksums
f92325cff6b170c5dcf9fead06717c41013b8da14d190bd644756515af8f6b79
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.12 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
49b072397ab039fadfe471c2b32005f5eda65bdc904459ff881a5e774c7686ca
BLAKE2b-256 checksum
How to use checksums
c7320b03db35d3baa14d8921e1e7a30c7896eb2654b6b6d329de933a20ed9883
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.12 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
2c76146c50d775ee9b5efa0777625bea50a7adf8ef7b74175a58de348b58a39d
BLAKE2b-256 checksum
How to use checksums
06431d05fb55458a72511dea67fd3132aabe42480f9710cdb4b51ce244501057
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 988.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7b34ade87868069931dac2eb88c2c41361ae5ff1afebedd9253eed3a924939af
BLAKE2b-256 checksum
How to use checksums
12c1dfc585e681da0149fbaf2f28214110c9a4855fe461702a5d3457a360945c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
3473c5a6949d210e2dafb5ddd67927c05e858f3a2a9b3fffb3b30769cb86e0ee
BLAKE2b-256 checksum
How to use checksums
031f1533a18f31c97774c3b4d5e1392ab6a0350ceab02f7638e4324a7fd8a09d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ecb011c5911a5bc50ca206967c03191a34a8e6bfead0badc738c74a51733acaa
BLAKE2b-256 checksum
How to use checksums
8503757a9ce5daaf4c98697928047d442f502909d885524be64223d2f9749612
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 902.7 kB
Tags CPython 3.12 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
2ed3609b49aa0c8834ef47bde530ca72352de7dd8dccbbb4b2055fec6678e891
BLAKE2b-256 checksum
How to use checksums
34684238f803980a80319ea2111ff57e626bc4f5aa0bc42917f3f62534d842cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 920.8 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
4ac8e7e3687325e91da5846a81baed5750b2fe3fb129ed575ddeeafbe027d744
BLAKE2b-256 checksum
How to use checksums
1abf534203a7c9ee70dfeea4a8a5e7feccad374f0d92d1843d0341b9b75cb31d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Size 993.0 kB
Tags CPython 3.12 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c5d016b2590c2d3e9ac6e1e533b5d3c2f58355b9a33c0bb1c127ab68928d6b11
BLAKE2b-256 checksum
How to use checksums
61969062088410265c5bd32e08c5e51a347fc06c29ed6377f7ba1ab30d6bc47e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Size 871.9 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
a938520225e7304560c1c585bdea096664a587d8d2f92584a38b1ce5b19f3c35
BLAKE2b-256 checksum
How to use checksums
640f402bbb5c27381876acd83da8661ecd5b070ce6aaa293de36750b3e2e1400
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Size 925.0 kB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
b5f3810a752227885079088de1a7738afca93f051aded1bdbdf9d49ff2d5fe77
BLAKE2b-256 checksum
How to use checksums
93f945d39b58ad73f28573ddcf99a62160d0b04d6a7c14c5eb64bf9367cf701c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-none-win_amd64.whl

Download URL rusty_logger-0.3.0-cp311-none-win_amd64.whl
Size 938.1 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
2ef4161ce41b6e49e8661470418a7f2f2ef6bb755723e1adb4b46bd16e52494f
BLAKE2b-256 checksum
How to use checksums
cad8824d3bdf6b66762631fe8759f7fc0ef4aa521628793614a3a6b769bc3306
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-none-win32.whl

Download URL rusty_logger-0.3.0-cp311-none-win32.whl
Size 860.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
10c6cf9c3ec82a21e79a51024abaf41c975ab5092734670b3d261381a463b446
BLAKE2b-256 checksum
How to use checksums
25828ebde41a5365e0ada931354cf9115b6cebed9bd6656b6cb24f949be6e1a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
47204a5a62789a8b1ce43c8be166b48bf339e5b62df55d7ed07dd71ee7c8c7c6
BLAKE2b-256 checksum
How to use checksums
7adeda2cb20ea47505b0e63da5662e146c34717c70fdc79c09b9ac6f2d71f0fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
276614b048f60a7a01848315879aaa45e0fd8b692658f9e5ebd208d9c07f5178
BLAKE2b-256 checksum
How to use checksums
f6e41919150a2e63d2a659249d5b1b75127da8d47d72198be7a3d52ebec5785a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 992.5 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
5b12679a75c51769ab8c5d5adac37391b218bfd13752ffe9fb955a49530f86ac
BLAKE2b-256 checksum
How to use checksums
ef19a736252c4a767d228922e557663a2426c54eaeb95341362091bf5fba3c95
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
84f6739026386614c84cfe7f9d51b7d06d20fdfb68be2e537f80012386c58b78
BLAKE2b-256 checksum
How to use checksums
0b6bcd3d019a10561881e4e38bc19fd45acb03c0c2cd2a5091d8f780ec3c9d7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8ec7eb3a51688394b508d5b7c10de663117c92b195349e6c2da1952c30301ba0
BLAKE2b-256 checksum
How to use checksums
6d9f76ad8612f63a833fe907d23e1e705363ff8d3fd15d7921a7afccd9eb2fea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 906.6 kB
Tags CPython 3.11 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
711a611bae82946d9054db473e6aff3ae5f5d06f512ea2e8b41edc81c82f023b
BLAKE2b-256 checksum
How to use checksums
475d1b08ded78f23c3d1d53899ab30f104fb1942fcb5753dbc8d8acf28ed2077
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 924.4 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2823ae4f66d03f56a2d77aebc795c628fd0ed6e4469ab8e384ff436815d7bcc1
BLAKE2b-256 checksum
How to use checksums
aad5d3ad5fb935980550fa82ee3cdb0b73c747371dde7b7202f85b865c935c8b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.3 kB
Tags CPython 3.11 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
80e3ac275688ff5cb9d026dc08e5b79cd5935600659337e253ba2dc29faf3a92
BLAKE2b-256 checksum
How to use checksums
ca4e1b11694336e70a59cfb89bd32fb367d455b246ec75f659073e23fd662f7b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Size 872.4 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c57e1081adcec425d3875447a0e48a50e248267caffb0ad31b0f154c160b3305
BLAKE2b-256 checksum
How to use checksums
b095d327e73130da44d8b68ff2fcd8d2e8b4ec6fcca72df76542fdf952549699
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Size 926.3 kB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
f03448872a882da91f8df237e0726357567ca99225a305f6af57042b5bd843da
BLAKE2b-256 checksum
How to use checksums
4e170d13573fd95a9cfcf87a043c499636abb2a7fbf30991a10aef1dfd5248b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-none-win_amd64.whl

Download URL rusty_logger-0.3.0-cp310-none-win_amd64.whl
Size 938.1 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
98da3ea41545023d3309957676e3c2af7e60360213c23756c8561a1637d7b487
BLAKE2b-256 checksum
How to use checksums
09efb4356fb2e21ca600d884e72e3f7d8036276c96d8efdcb417fb6970d93f04
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-none-win32.whl

Download URL rusty_logger-0.3.0-cp310-none-win32.whl
Size 860.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
9c0138caa9729cd5d1043981f21bf0f34cbe0b96b5b3a8a04a5aa69b356395e2
BLAKE2b-256 checksum
How to use checksums
d0133736ba66c77d531ab5e223b822bb4d9164b604fe56532b02dbe59595938b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
c9cab7b5718083777051a214ad557cd8d7569633ece3c64ebadd4eb9f6847aac
BLAKE2b-256 checksum
How to use checksums
907f2e2b65606429c726226c11bb1a7b2ee8ea43e0dc13fdf3d67c88d5b14621
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
9326a5553c7098b3b4a4adebc590b9ddd3e141014779ed0c5490aa6a0c023456
BLAKE2b-256 checksum
How to use checksums
0aa92473ef9c8f9ddd7544af1454a03873f3812be3bd5a34224beabaa5de249f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 992.5 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
6f06ab30d92a049f2c08802e0b3f15004ac9155b4ed8c182f909df0c6225f020
BLAKE2b-256 checksum
How to use checksums
5487d1e1e7906ef5a696bd1be60ab35a55145beebbfb4ac1916ccc68a5666dad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
123269f9e199819628f0a50d2f923f404459c2ed2889a991151c4b6feb8c7b42
BLAKE2b-256 checksum
How to use checksums
0eabdaa2cb856327b88494872de944aacb265bbff711e748229b3ab9fee67d4b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
451960cabd8c237a9cc2956a766cfa68852b1f38b1170a8574dd2406dd74f50c
BLAKE2b-256 checksum
How to use checksums
2c2d84a2da87787000bdbe854a49b0ea6336184cc0c23ff5bfd87bc5cf7e9915
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 906.6 kB
Tags CPython 3.10 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
9c6c8c8d6b230cc781662b0009bb2f5f4ba552932f3b48b09621e2e82fb6f662
BLAKE2b-256 checksum
How to use checksums
2cf3c36131e96fc69b6f33e6baddfc5d511b9e5a07830caa6cca31047be617e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 924.4 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
162533aff2fa7a53e92286eafd1d6e50c17b9eb5c5925a3e95eeeb6e450e54ea
BLAKE2b-256 checksum
How to use checksums
a604f771553a00aaa304a46f27517bd2e954e0582e5d213bf9ca126ba7ca1dce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.3 kB
Tags CPython 3.10 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
b1adf46c1a950e5237177292eb7e3978421475e44a2657468b6a9625a829cbec
BLAKE2b-256 checksum
How to use checksums
9db42178c351c15902e1792af266276e5e855da7b9fb04e7a4c6a45bb399317d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Size 872.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c440838ae9e40d7b1cce953ba791980136bde82366ccb7d22f1b8ad2fa9fbd6b
BLAKE2b-256 checksum
How to use checksums
b9a1d66dc9af54fd2870f25d6c2e323e0e54f16d5321accf679fd9e7e690589e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Size 926.3 kB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
2b8f5cfe4a452a421cd7ca16181c7614105e6ca0eda85f8f231e931acfc8ceb2
BLAKE2b-256 checksum
How to use checksums
a72a8f1e0db4d168fe844cb5cfa682a4310b3e7d436bc4dbdb18eab20427c6bb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-none-win_amd64.whl

Download URL rusty_logger-0.3.0-cp39-none-win_amd64.whl
Size 938.1 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
72724fac76e18491e4f9fabda86ab7a824cd771906a396d11b534a58a7f3ae7d
BLAKE2b-256 checksum
How to use checksums
032ea2e53a591802aa6c88cce6fab7eb65cf59c4266ee266eaa915a1df4ababf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-none-win32.whl

Download URL rusty_logger-0.3.0-cp39-none-win32.whl
Size 861.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
fb5998b3d1337dba4570a17a2ce0ad47df330b0372ba26363537986a524b3941
BLAKE2b-256 checksum
How to use checksums
3c6b0df9e05130174dd0ba461706548da823c7edf30574417b9a0eda89b2e25a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
64bba2f262ea9524cac144f176e587829488ed13aa85439e8f2c525c7a8df7b3
BLAKE2b-256 checksum
How to use checksums
dbe46232df998e9848533c6b23f30d16b4088443bfb381519eb324656efc430e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
e696b56a22adec7866fbc7bbc7d12e7bd425d2f1a8b48ea0123471915ce13bd2
BLAKE2b-256 checksum
How to use checksums
bf4bb339ab7e37f111d425fa170fdcdfb22d95b6e0239ff6cacd2452e566d704
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 992.9 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
bab3edef827f4e1c253d9268c38cba357c84ee9212a80e5b536cfab9e3e279d7
BLAKE2b-256 checksum
How to use checksums
0c4252caf751d88497feb3f38daf79db9fd9f891277c5197485ed398fea76d7c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
8b541ff265b061a7e7294a474637ca4802946ac65efc813941c3109518d8b720
BLAKE2b-256 checksum
How to use checksums
f662bb72d03f42d825044e39cc1610aa5ab99f12b3ae349c5e6d3a364f2556a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
448501700bb5ac3a49d1dd264320ef9f2695fadbea13a783380ed54c91147373
BLAKE2b-256 checksum
How to use checksums
26eed82902d0191d5f123b574dfa15b0400b109143c7c34d5041c41a840391b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 906.8 kB
Tags CPython 3.9 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
d6c870d9776b9e002cf985f87b0d2ced22e6edfc4b371a73643635a409353e2a
BLAKE2b-256 checksum
How to use checksums
098cfca3d11aa8860b5bb1e0e781ae4b5d8daf9c1f6849ed1fb7cce9b8ec40eb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 924.4 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
a55938fc0db344072790908d54a6e30c00a3be869427d38716df08ed1043710b
BLAKE2b-256 checksum
How to use checksums
3bb284fea38d65508d7886b7736fbad418f4d0c1a747025082abd9c28b23a3d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.5 kB
Tags CPython 3.9 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ae7784888b61858bbe53d6aa56da1104b556eb32e63196337e0b45efa00576b2
BLAKE2b-256 checksum
How to use checksums
6eceaf7126276ff09e65920126e8fd480d76527ff81946dc0fe48d5ec0e54884
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Size 872.6 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
77b8da347f8d1dfa0ddd68ec839b712f199b69702f82405bdd7dd79930e8762d
BLAKE2b-256 checksum
How to use checksums
eea21724f34f3b05b3fec2076a1035226568a8960337a6a643c51c6efd7d958c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Size 926.4 kB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9aa2a1040fff400e1aacf953712527d9563fb6876fc4b2fb18298dda0d40e065
BLAKE2b-256 checksum
How to use checksums
8b2788f6fb10041a1da507fdd0fd49a47200f8b2a1934420de1ea8cd2ed2332a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-none-win_amd64.whl

Download URL rusty_logger-0.3.0-cp38-none-win_amd64.whl
Size 938.0 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
8abd724f492ba0c5a725c6fdb5b0c6a031001a0dd978f94544d6a1f3a2e827dc
BLAKE2b-256 checksum
How to use checksums
c0a1e0b0ce7c4f6a3a3c3b556d9e4b6c0db0a6ba0f6886c345d285895bf6547c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-none-win32.whl

Download URL rusty_logger-0.3.0-cp38-none-win32.whl
Size 861.2 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
b2af078acc109c927348453a8edbcd4cca33069b4fd34c35ffe129f2b207a3a7
BLAKE2b-256 checksum
How to use checksums
65e43cdc3bf3cca63dba55541c84c7d7194a6bde756ca017e3061ff657842f3a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Size 1.2 MB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
15063d0762e6a5a3962804d8151a164550f7d60090e8557d051bf776307a296b
BLAKE2b-256 checksum
How to use checksums
c08a7cc7bfab5aa65a108c8744b022584eb8d710144202719889228d2b5b4bd3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Size 1.1 MB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
6cf020f4acc0ac78ea41180ac213345b6514440abf98631e7c9e4781cf9f7f02
BLAKE2b-256 checksum
How to use checksums
5b3904a01accbbf39fbd80bb5804c9b3cab23230f15bbfd8afbf7ab68175505e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 992.7 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b5e22b365494865b8a90cf915ea8badaa0d932b6a8c143b33a27977bf9f40c45
BLAKE2b-256 checksum
How to use checksums
af9c2bce35d0c5a43b6731d570162dedb81025409bf3a88f2bcc4cfce84e69f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 1.5 MB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
2368ed12357958646c57a1c02873dd6e9bee92d5f90639e18581e73a5656b270
BLAKE2b-256 checksum
How to use checksums
ef0e4b63306593f051d243d65134de6ecaaba7a0f1b137bdf0662d1ebde1f645
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 1.0 MB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
08c53d1e8a8f5b6fbd2fdb3540c3ee1efd8e1c988be4bf5391142ca7cb05966e
BLAKE2b-256 checksum
How to use checksums
09779aebcf644906ec22ce182f2628f521d3b066071c404979b3a7b6dc1fafcd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Size 906.8 kB
Tags CPython 3.8 Linux glibc 2.17+ ARMv7l
SHA-256 checksum
How to use checksums
eed176525ec3e0a759eb66cecf3bf4c5554d6b9241810d482687521ed2b34643
BLAKE2b-256 checksum
How to use checksums
a28773ccbdeac98c00920073529949e127c73bcebdc664db9a51390e8e1163e0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 924.4 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
2ce0ae994102706572172cba22e8d4244816fe6de9b9356bdf09b724f04f19f3
BLAKE2b-256 checksum
How to use checksums
e0a8316a892c4d6c789a60873a47011b861012c81969007cc4a6a5df45da9fe0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl

Download URL rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Size 996.5 kB
Tags CPython 3.8 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3438a2d223110b11175e0f19e96b8a943e17e4e3b0dfd25cfa514fbab112d864
BLAKE2b-256 checksum
How to use checksums
531a29cc68485aa7df0a8b81b842c50ed69cacdbd12743e4d159d13bbe2cd6a2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Size 872.4 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
51e98bd763e82174411b586b665c2435b0825a64a1d9bbd37b3e86f0f99dcfc6
BLAKE2b-256 checksum
How to use checksums
6322679cbbf3c93170a84fe2f99246c45fc724eda5459bc0f1116c8b34c8d7ca
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release files / rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl

Download URL rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Size 926.5 kB
Tags CPython 3.8 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
daba876339fe3e58e9a4e81e35d55f867f2a8606ee29fef0b889b1cb228dc475
BLAKE2b-256 checksum
How to use checksums
23cb74cf6ed07e2339682cfbd9cd18eac661d7265457a561722f914f432f6adb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/5.0.0 CPython/3.10.13

Release history Release notifications | RSS feed

This release

0.3.0 This release

90 release files

0.2.0

78 release files

0.1.4

78 release files

0.1.3

78 release files

0.1.2

78 release files

0.1.1

78 release files

0.1.0

78 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page