Skip to main content

Super fast logging for python

Project description

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:

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (993.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (906.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (925.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (996.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (873.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (926.7 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (993.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (907.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (925.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (996.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (873.4 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (926.7 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (993.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (907.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (925.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (996.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (873.1 kB view details)

Uploaded PyPy macOS 11.0+ ARM64

rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl (927.0 kB view details)

Uploaded PyPy macOS 10.12+ x86-64

rusty_logger-0.3.0-cp312-none-win_amd64.whl (934.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

rusty_logger-0.3.0-cp312-none-win32.whl (853.7 kB view details)

Uploaded CPython 3.12 Windows x86

rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (988.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (902.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (920.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (993.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (871.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (925.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

rusty_logger-0.3.0-cp311-none-win_amd64.whl (938.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

rusty_logger-0.3.0-cp311-none-win32.whl (860.8 kB view details)

Uploaded CPython 3.11 Windows x86

rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (992.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (906.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (924.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (996.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (872.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (926.3 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

rusty_logger-0.3.0-cp310-none-win_amd64.whl (938.1 kB view details)

Uploaded CPython 3.10 Windows x86-64

rusty_logger-0.3.0-cp310-none-win32.whl (860.8 kB view details)

Uploaded CPython 3.10 Windows x86

rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (992.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (906.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (924.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (996.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl (872.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl (926.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

rusty_logger-0.3.0-cp39-none-win_amd64.whl (938.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

rusty_logger-0.3.0-cp39-none-win32.whl (861.0 kB view details)

Uploaded CPython 3.9 Windows x86

rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (992.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (906.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (924.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (996.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl (872.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl (926.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

rusty_logger-0.3.0-cp38-none-win_amd64.whl (938.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

rusty_logger-0.3.0-cp38-none-win32.whl (861.2 kB view details)

Uploaded CPython 3.8 Windows x86

rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (992.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (906.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (924.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (996.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl (872.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl (926.5 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 196e5389c1cf31862f0c52a9d0b4929dacebda23bcdc563cfa5dae42340e57f9
MD5 42d4bec29b94a93f676f435e7363c126
BLAKE2b-256 d2c496afdfc48f8854a0ae0d172994191daba70b6c530acfe05c1aa63cdcba2a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5ce30dc3ce1b1bcf4dedfd72362cfc270b469b754c2d100f70be65a739b557f
MD5 de8bf4412ec1392d9687aca24cbdf076
BLAKE2b-256 9d16af058e6f9efedf7fcd441a46b09626a68588dd5e5e041f2a65e550e916d8

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35a217755becc13f03744766f7bed6c65374b26c869eca6619b70a9411bce022
MD5 6cff8439124db5bba3a89afac0724d5f
BLAKE2b-256 a015402a752837d608a9aa8b712dc6679842d4aab5c2d7fa6802c61643d4d60b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1620937e0216fb9b3c991d4d872bee21bcc79fb8dbf3f13b2dcc5a4d85a561ed
MD5 90645ea4bf0aae66237a8baf0476e3fc
BLAKE2b-256 d693bd46e3d41bc99bb0b9d401f4a788612bd82792021dc7b5ac303c8a048574

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b0c5a33acc174044508e9375961724baf9f806aeb71f1f8ee7036d833addfb9
MD5 6fdd6ff6e8746a5fb93e56d6866cbdc5
BLAKE2b-256 43d2990c8b814050d9d2bf07c831b02871947e66445ba017f9d5f546b2bc08ad

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c628b3e01da367c18584700aa32d893d15ee88cf911386067aa3d9e050cb6773
MD5 799e3b6241a0053a1970dfe9e0622b55
BLAKE2b-256 19c511ea7194aad11ce5251cbc03cbdcdca5ad0dc4c007085cda84e8aff2bf81

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61e00bda9b1e7dd65015cee148d7ab126b488a9b090b73279d61b071a6dd0e2b
MD5 f2aaee07677f875e2cea36618fd6960a
BLAKE2b-256 c43bbaa4f8fe3c3bd06a6e0c0d3d16ae6f7cc71fba208dca1561b0c8f47d8661

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e326ca7eb542655546c281ef0a52d2722544ab4248e17bdaa3d956afbd0c83b
MD5 7b794ce18446c52301f6bba9b1f307b6
BLAKE2b-256 ae4840b4708bfe83e049ef09a3ebc23829f97d13184603e7f30130cd2fa5f360

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b2e9b86c3b64adc51115801100c61d47d789c6781068fb8a413b392d7fa92d1
MD5 7562007e238277d5d871bc1351020ff3
BLAKE2b-256 5f049174f7d3502e1f8137437aae5404cabcfaeff7f3ee51872a66394d41a7c5

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfc483e401935b81abc7e8d8ae534792e6aebbe09bbfa0ee68e5219d0dec5482
MD5 3520872f71707e7212b9fc919fed151a
BLAKE2b-256 70c7b61d87e29829590bdf12d91e0183165fe662dcfd8b88ac25675aa21387c7

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a5fcac840ec0f788fab8d4c37e483d18dc3aef99d127f4fca7828021b6506ed
MD5 8d6061470f614db142c42c9315b0473b
BLAKE2b-256 7beec6e69f43f45f61098b7c463f96f602b9ac30e6703d79908bcaac9c71312a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c2d5a83ccc9f6d4fb15bb3b35cc2146b5449329deff7d29ce2dd04622563076
MD5 26947ee4708e2341d41bec1e337ebb98
BLAKE2b-256 3ab55cd9ac88c6b7b4a88a3a72d77d9ad8a74cb3f3e8fc816ebbb511068ab4e6

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ded27716ca764e16b13b12414ed149bcd1c24e71df5805d3bf1a9e23f184b0af
MD5 0884a7a0f8438aa6edbec5af10111cb8
BLAKE2b-256 5cc2f7ebf72ed0c0fa148452d8a8b4f8d16c1685d535b4107b350b1b0bb34373

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61e501c840235b4f6f766342347bb72464012e5de54fd81a212f4f3f801b6371
MD5 ba66850d7ec970ae85295547ad197e3e
BLAKE2b-256 06c1392ab2b1c63046885e238e7d69b134f4eda81de0c60fea2ece7bf371ebe4

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fbfc0304966c661c000a0c5133f3126090c6a1c537ea3675691a62895e2309f
MD5 86208d2b597456065edea8551d39ce63
BLAKE2b-256 dc6ecd62117cdccddcd80eec3525aed5eca8e65f41230395d1d32b37152ac90e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c30bc1e75bb0e8924b079148d85fd5ec1e4994e2af728575488d9a4d896226ae
MD5 e6e5a91aa0585a998d9a582efe668b6b
BLAKE2b-256 0a389611b55d46d11407451d30dc3bd0095ba074dea7854fe49ef23fef20f3a2

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a249e9513b8884f49698d6d232e63b767d5fb7a0ea7819f2c873e1b1f1972b05
MD5 7bcd47e1cb4f3ecb32e61ebe33d70a7f
BLAKE2b-256 afb752cbf3bde85291ccacccc13868c256cb0daa7d0b1dfd3c4b52497d76d790

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 870ade7637c8cce54f5be735c1c455d80323f3510e996d6eb89358611eb26698
MD5 b4e9402902344c9653daad0f0d77442a
BLAKE2b-256 51bc663b7e3a7102a4c8cb40791920808867c2b90c5a849d6db6adeb5ffd65f4

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f407eca7ecaeb7eea42c9a7b459e4e24649bac67fb809b1d4b2d4f8e4a2fdaeb
MD5 a58ac41ce8409f2ebc5adcdf89d2846e
BLAKE2b-256 142c86023523e6577f3b814004f3fac4f1cf9866039a8a3b63f6ce8031aa6eb7

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2374de8e0aa5a3f8daa0ac8bca295aeb5b9a850b8754b3075941eca2b6d9630
MD5 18cd0f509998eb07a4c2e85c4fe0dfb8
BLAKE2b-256 62327e80ab05a303f6d67a97b9f90167372febf304aa4ab16bf46b991bed0013

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58fe375b58e7a5c18b08baacb348e8d3d95fbe11be91f0f408c75b891f2eac72
MD5 620e0aa2565a31d94abdfd3738f8d85e
BLAKE2b-256 0a71824b1168ad9dcc9745a2c35c6636db51667680f65fcd139a5b4e8baa510b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 05b55eb1262bfb08ab43c975ebec1401c7bac29d66d3dbcbd4985516bc2ac047
MD5 7088ab2ce6f8110cd8ab48108f70d292
BLAKE2b-256 104dbe60dcd43aea4c7c8dd4d433be78752144a03d5d132cba30b7198cf236aa

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d10a140c27c329f31c1dbf48fee9ae730f6638744268370b766519911811300d
MD5 29338cacd3527489eae4d70b696bc543
BLAKE2b-256 272b961feee765ed2d1d28f4fe445e6fbb3c277c1111224a8fb0997400bf464f

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0515b3d74135281fd0ee2a64b21a9413c5ab068fbf9b268f58b001ea938a77b7
MD5 efa040dd6f6598df0758f3e3831e6a60
BLAKE2b-256 83cf280470ec3a27ef299be6f1a334340b95e3bb451790f02b25f9c3ba79286e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 62586709f8bdb0263c8cd84274787b665ccf3abefa594941312891c070aaea9d
MD5 ad75da605d866e01776ecab95a5f42eb
BLAKE2b-256 8eacfe86c2dbdf89bacc65fb1d4d73cf0f0878c69795f0582beeaee2896beb0f

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5fb80a86204f6fdd92efd990c365e3789ba88c430de68671251707425ffe257a
MD5 cee5610f57c8a1fb6870711f71ea3a95
BLAKE2b-256 884fd2db438fd08063c224644cd4db3db5017be04ada4466272d48a673538d07

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2ac1cfaf59715be50c020e2fde2ea835f6f890f2fdff8afd7cbcf3395b51b06
MD5 5408e9754d847ecb5b882feef7d7c63b
BLAKE2b-256 3272a660712e15a86d76f7991702a81d5a4949de6a56836c5b80ee10d43ef228

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 254dc9797d455dc605390bcfe2f342eb6f5ca6c0dcf064208c254aebd2dd2c06
MD5 9e9eb98768a8f97a765cb9f8996087af
BLAKE2b-256 95cab5f024d217f8c2dcce6e48abf37020f8c5994fd03e7678cb4de8f413731e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84ee884a991d01eea2e75da2defd2d65b5ef8137fd385891848637ddf7dbdc63
MD5 b5e4c955555c21fe553b3223380e2b24
BLAKE2b-256 55f46d051092b7dab42089cd0153c4f522ea9da15cba1c20582fdc7284cc4149

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-pp38-pypy38_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 069092a9a69c2859a83c29c88428ee4bf52e89f929be0e960a78f6e58f459dd6
MD5 d9d9e604042ac71863450f447598f8b6
BLAKE2b-256 260e460d7dc0b0817dd41ce03d597dd0c2d33f45728274a0ff3724c1425ce57f

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ee59fb631c0e605f2616abb10bf808ea50ca41c76694909d6a632195e107d6a
MD5 12dcd1a9a388bdaa58e76366c3144745
BLAKE2b-256 52b1f09e56dce6603a9faef744baa1cc232390cbfc9165cc80f49efd8f3563a2

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-none-win32.whl.

File metadata

  • Download URL: rusty_logger-0.3.0-cp312-none-win32.whl
  • Upload date:
  • Size: 853.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for rusty_logger-0.3.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c4d6dd892fa8b0cab8cffb622806c1c808d93531920226326207269c45422a7e
MD5 537bab61f9cb0e02727d6d22ccbe3c49
BLAKE2b-256 f92325cff6b170c5dcf9fead06717c41013b8da14d190bd644756515af8f6b79

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49b072397ab039fadfe471c2b32005f5eda65bdc904459ff881a5e774c7686ca
MD5 3bf0baccb2c2eeffb980fd603374a50b
BLAKE2b-256 c7320b03db35d3baa14d8921e1e7a30c7896eb2654b6b6d329de933a20ed9883

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c76146c50d775ee9b5efa0777625bea50a7adf8ef7b74175a58de348b58a39d
MD5 e1ecf2b339e4a07b4c92fc6abe474a0d
BLAKE2b-256 06431d05fb55458a72511dea67fd3132aabe42480f9710cdb4b51ce244501057

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b34ade87868069931dac2eb88c2c41361ae5ff1afebedd9253eed3a924939af
MD5 bf4376ff5269e094bd6a5fd92fafe3cc
BLAKE2b-256 12c1dfc585e681da0149fbaf2f28214110c9a4855fe461702a5d3457a360945c

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3473c5a6949d210e2dafb5ddd67927c05e858f3a2a9b3fffb3b30769cb86e0ee
MD5 eacd429efdebb272c0111c966ba41710
BLAKE2b-256 031f1533a18f31c97774c3b4d5e1392ab6a0350ceab02f7638e4324a7fd8a09d

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ecb011c5911a5bc50ca206967c03191a34a8e6bfead0badc738c74a51733acaa
MD5 b9912cc36ca4e30cd9f65f1f5a801541
BLAKE2b-256 8503757a9ce5daaf4c98697928047d442f502909d885524be64223d2f9749612

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ed3609b49aa0c8834ef47bde530ca72352de7dd8dccbbb4b2055fec6678e891
MD5 1e3daa00b33bdd4b95f79843726f543a
BLAKE2b-256 34684238f803980a80319ea2111ff57e626bc4f5aa0bc42917f3f62534d842cf

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ac8e7e3687325e91da5846a81baed5750b2fe3fb129ed575ddeeafbe027d744
MD5 f0090948a9653aca91269284f0227ca1
BLAKE2b-256 1abf534203a7c9ee70dfeea4a8a5e7feccad374f0d92d1843d0341b9b75cb31d

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5d016b2590c2d3e9ac6e1e533b5d3c2f58355b9a33c0bb1c127ab68928d6b11
MD5 433eaeaf9511709b044d4a9dd0e7802c
BLAKE2b-256 61969062088410265c5bd32e08c5e51a347fc06c29ed6377f7ba1ab30d6bc47e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a938520225e7304560c1c585bdea096664a587d8d2f92584a38b1ce5b19f3c35
MD5 ebdd91a84902252bed8dff46671c00d1
BLAKE2b-256 640f402bbb5c27381876acd83da8661ecd5b070ce6aaa293de36750b3e2e1400

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b5f3810a752227885079088de1a7738afca93f051aded1bdbdf9d49ff2d5fe77
MD5 17dda4a1277a27ad56b9d9cdede9984e
BLAKE2b-256 93f945d39b58ad73f28573ddcf99a62160d0b04d6a7c14c5eb64bf9367cf701c

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2ef4161ce41b6e49e8661470418a7f2f2ef6bb755723e1adb4b46bd16e52494f
MD5 c40d0f31d6b93c4e87b025baa1d403e2
BLAKE2b-256 cad8824d3bdf6b66762631fe8759f7fc0ef4aa521628793614a3a6b769bc3306

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-none-win32.whl.

File metadata

  • Download URL: rusty_logger-0.3.0-cp311-none-win32.whl
  • Upload date:
  • Size: 860.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for rusty_logger-0.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 10c6cf9c3ec82a21e79a51024abaf41c975ab5092734670b3d261381a463b446
MD5 f3a033475ae8b97c95095b9ce857ac69
BLAKE2b-256 25828ebde41a5365e0ada931354cf9115b6cebed9bd6656b6cb24f949be6e1a6

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 47204a5a62789a8b1ce43c8be166b48bf339e5b62df55d7ed07dd71ee7c8c7c6
MD5 6d02ff5c2bb276c7668e7b2c29dd5900
BLAKE2b-256 7adeda2cb20ea47505b0e63da5662e146c34717c70fdc79c09b9ac6f2d71f0fa

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 276614b048f60a7a01848315879aaa45e0fd8b692658f9e5ebd208d9c07f5178
MD5 41ce737f45e50d50c71d66b854a8d03c
BLAKE2b-256 f6e41919150a2e63d2a659249d5b1b75127da8d47d72198be7a3d52ebec5785a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b12679a75c51769ab8c5d5adac37391b218bfd13752ffe9fb955a49530f86ac
MD5 a854836bc879230240d4839c400d7f6a
BLAKE2b-256 ef19a736252c4a767d228922e557663a2426c54eaeb95341362091bf5fba3c95

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84f6739026386614c84cfe7f9d51b7d06d20fdfb68be2e537f80012386c58b78
MD5 5b5f580c8538fa672b51670f9d48b2fc
BLAKE2b-256 0b6bcd3d019a10561881e4e38bc19fd45acb03c0c2cd2a5091d8f780ec3c9d7d

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ec7eb3a51688394b508d5b7c10de663117c92b195349e6c2da1952c30301ba0
MD5 e0a4260b828778530147a88abc40fc81
BLAKE2b-256 6d9f76ad8612f63a833fe907d23e1e705363ff8d3fd15d7921a7afccd9eb2fea

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 711a611bae82946d9054db473e6aff3ae5f5d06f512ea2e8b41edc81c82f023b
MD5 1e47e709d8fcc125c10ae52b79956177
BLAKE2b-256 475d1b08ded78f23c3d1d53899ab30f104fb1942fcb5753dbc8d8acf28ed2077

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2823ae4f66d03f56a2d77aebc795c628fd0ed6e4469ab8e384ff436815d7bcc1
MD5 2168ab3071f9973f6df626005e262b7b
BLAKE2b-256 aad5d3ad5fb935980550fa82ee3cdb0b73c747371dde7b7202f85b865c935c8b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80e3ac275688ff5cb9d026dc08e5b79cd5935600659337e253ba2dc29faf3a92
MD5 1044e8bb2e396d23909e994128a0c603
BLAKE2b-256 ca4e1b11694336e70a59cfb89bd32fb367d455b246ec75f659073e23fd662f7b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c57e1081adcec425d3875447a0e48a50e248267caffb0ad31b0f154c160b3305
MD5 882975daaba7fe9762e928c2c2295746
BLAKE2b-256 b095d327e73130da44d8b68ff2fcd8d2e8b4ec6fcca72df76542fdf952549699

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f03448872a882da91f8df237e0726357567ca99225a305f6af57042b5bd843da
MD5 7f294445e4c48975b3a2c40337fa8b84
BLAKE2b-256 4e170d13573fd95a9cfcf87a043c499636abb2a7fbf30991a10aef1dfd5248b4

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 98da3ea41545023d3309957676e3c2af7e60360213c23756c8561a1637d7b487
MD5 4a3047495abe748d1dda280c41c91892
BLAKE2b-256 09efb4356fb2e21ca600d884e72e3f7d8036276c96d8efdcb417fb6970d93f04

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-none-win32.whl.

File metadata

  • Download URL: rusty_logger-0.3.0-cp310-none-win32.whl
  • Upload date:
  • Size: 860.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for rusty_logger-0.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9c0138caa9729cd5d1043981f21bf0f34cbe0b96b5b3a8a04a5aa69b356395e2
MD5 bd924f4df8279e8b57d12b06e6073512
BLAKE2b-256 d0133736ba66c77d531ab5e223b822bb4d9164b604fe56532b02dbe59595938b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c9cab7b5718083777051a214ad557cd8d7569633ece3c64ebadd4eb9f6847aac
MD5 c946d366943436427e23d7d1ec8d3f91
BLAKE2b-256 907f2e2b65606429c726226c11bb1a7b2ee8ea43e0dc13fdf3d67c88d5b14621

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9326a5553c7098b3b4a4adebc590b9ddd3e141014779ed0c5490aa6a0c023456
MD5 68c91d972178fb0da53e501e8fb1a38b
BLAKE2b-256 0aa92473ef9c8f9ddd7544af1454a03873f3812be3bd5a34224beabaa5de249f

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f06ab30d92a049f2c08802e0b3f15004ac9155b4ed8c182f909df0c6225f020
MD5 a552e5d8551920ba7a9e3f0e4d0e89b2
BLAKE2b-256 5487d1e1e7906ef5a696bd1be60ab35a55145beebbfb4ac1916ccc68a5666dad

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 123269f9e199819628f0a50d2f923f404459c2ed2889a991151c4b6feb8c7b42
MD5 be98b2ae80fe16790779ad3323df9168
BLAKE2b-256 0eabdaa2cb856327b88494872de944aacb265bbff711e748229b3ab9fee67d4b

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 451960cabd8c237a9cc2956a766cfa68852b1f38b1170a8574dd2406dd74f50c
MD5 c27b075a456c32742d3ccc79a167b7a4
BLAKE2b-256 2c2d84a2da87787000bdbe854a49b0ea6336184cc0c23ff5bfd87bc5cf7e9915

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c6c8c8d6b230cc781662b0009bb2f5f4ba552932f3b48b09621e2e82fb6f662
MD5 1ef291f0a09fbff89728f9cf699963cd
BLAKE2b-256 2cf3c36131e96fc69b6f33e6baddfc5d511b9e5a07830caa6cca31047be617e9

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 162533aff2fa7a53e92286eafd1d6e50c17b9eb5c5925a3e95eeeb6e450e54ea
MD5 1298ca5089b11d72c1f1d36239d15fb7
BLAKE2b-256 a604f771553a00aaa304a46f27517bd2e954e0582e5d213bf9ca126ba7ca1dce

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1adf46c1a950e5237177292eb7e3978421475e44a2657468b6a9625a829cbec
MD5 7d7011ca3b6f80ff38f3f70db37d9a3d
BLAKE2b-256 9db42178c351c15902e1792af266276e5e855da7b9fb04e7a4c6a45bb399317d

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c440838ae9e40d7b1cce953ba791980136bde82366ccb7d22f1b8ad2fa9fbd6b
MD5 8f6b3dee95abc1b84ad38c3ab6b82e54
BLAKE2b-256 b9a1d66dc9af54fd2870f25d6c2e323e0e54f16d5321accf679fd9e7e690589e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b8f5cfe4a452a421cd7ca16181c7614105e6ca0eda85f8f231e931acfc8ceb2
MD5 e24a3dcca9bae58e4bacd089bdf83cab
BLAKE2b-256 a72a8f1e0db4d168fe844cb5cfa682a4310b3e7d436bc4dbdb18eab20427c6bb

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 72724fac76e18491e4f9fabda86ab7a824cd771906a396d11b534a58a7f3ae7d
MD5 833cf82dde254017bef6912fa2d9bb45
BLAKE2b-256 032ea2e53a591802aa6c88cce6fab7eb65cf59c4266ee266eaa915a1df4ababf

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-none-win32.whl.

File metadata

  • Download URL: rusty_logger-0.3.0-cp39-none-win32.whl
  • Upload date:
  • Size: 861.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for rusty_logger-0.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fb5998b3d1337dba4570a17a2ce0ad47df330b0372ba26363537986a524b3941
MD5 44d96982ba7802b7c7de7bcf8898ad11
BLAKE2b-256 3c6b0df9e05130174dd0ba461706548da823c7edf30574417b9a0eda89b2e25a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 64bba2f262ea9524cac144f176e587829488ed13aa85439e8f2c525c7a8df7b3
MD5 31122ca8cb6a8590477d4027b3e66435
BLAKE2b-256 dbe46232df998e9848533c6b23f30d16b4088443bfb381519eb324656efc430e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e696b56a22adec7866fbc7bbc7d12e7bd425d2f1a8b48ea0123471915ce13bd2
MD5 e1875337c4ece658740020521398f565
BLAKE2b-256 bf4bb339ab7e37f111d425fa170fdcdfb22d95b6e0239ff6cacd2452e566d704

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bab3edef827f4e1c253d9268c38cba357c84ee9212a80e5b536cfab9e3e279d7
MD5 2983a9a0783bfa426717d9e2975754c4
BLAKE2b-256 0c4252caf751d88497feb3f38daf79db9fd9f891277c5197485ed398fea76d7c

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b541ff265b061a7e7294a474637ca4802946ac65efc813941c3109518d8b720
MD5 d0c327aff9336008839671d18ca31282
BLAKE2b-256 f662bb72d03f42d825044e39cc1610aa5ab99f12b3ae349c5e6d3a364f2556a0

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 448501700bb5ac3a49d1dd264320ef9f2695fadbea13a783380ed54c91147373
MD5 9e29c62ba5722fff74b4a1bc78388aaf
BLAKE2b-256 26eed82902d0191d5f123b574dfa15b0400b109143c7c34d5041c41a840391b2

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6c870d9776b9e002cf985f87b0d2ced22e6edfc4b371a73643635a409353e2a
MD5 13dc79a4d8f6297dea0d121189de70ed
BLAKE2b-256 098cfca3d11aa8860b5bb1e0e781ae4b5d8daf9c1f6849ed1fb7cce9b8ec40eb

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a55938fc0db344072790908d54a6e30c00a3be869427d38716df08ed1043710b
MD5 af7c815e1eecc95eafa32dadd3b8d5c8
BLAKE2b-256 3bb284fea38d65508d7886b7736fbad418f4d0c1a747025082abd9c28b23a3d2

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ae7784888b61858bbe53d6aa56da1104b556eb32e63196337e0b45efa00576b2
MD5 713b273fd51fd3420f7251e053896114
BLAKE2b-256 6eceaf7126276ff09e65920126e8fd480d76527ff81946dc0fe48d5ec0e54884

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b8da347f8d1dfa0ddd68ec839b712f199b69702f82405bdd7dd79930e8762d
MD5 397113a6a6e195776f6594d05ba4f596
BLAKE2b-256 eea21724f34f3b05b3fec2076a1035226568a8960337a6a643c51c6efd7d958c

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9aa2a1040fff400e1aacf953712527d9563fb6876fc4b2fb18298dda0d40e065
MD5 3a943c39b737fdeede0a6e63fa4983df
BLAKE2b-256 8b2788f6fb10041a1da507fdd0fd49a47200f8b2a1934420de1ea8cd2ed2332a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8abd724f492ba0c5a725c6fdb5b0c6a031001a0dd978f94544d6a1f3a2e827dc
MD5 4326393dd7c117fb039295f13b11c769
BLAKE2b-256 c0a1e0b0ce7c4f6a3a3c3b556d9e4b6c0db0a6ba0f6886c345d285895bf6547c

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-none-win32.whl.

File metadata

  • Download URL: rusty_logger-0.3.0-cp38-none-win32.whl
  • Upload date:
  • Size: 861.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.13

File hashes

Hashes for rusty_logger-0.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b2af078acc109c927348453a8edbcd4cca33069b4fd34c35ffe129f2b207a3a7
MD5 aab645ee1b03248c5e16898ddb95fe44
BLAKE2b-256 65e43cdc3bf3cca63dba55541c84c7d7194a6bde756ca017e3061ff657842f3a

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15063d0762e6a5a3962804d8151a164550f7d60090e8557d051bf776307a296b
MD5 e048124f3097d4c365bb67651b7e0e4d
BLAKE2b-256 c08a7cc7bfab5aa65a108c8744b022584eb8d710144202719889228d2b5b4bd3

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6cf020f4acc0ac78ea41180ac213345b6514440abf98631e7c9e4781cf9f7f02
MD5 7a41c62a74c16e0c94f65c100058c293
BLAKE2b-256 5b3904a01accbbf39fbd80bb5804c9b3cab23230f15bbfd8afbf7ab68175505e

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5e22b365494865b8a90cf915ea8badaa0d932b6a8c143b33a27977bf9f40c45
MD5 6d935b6331ab4516a712275ac0089014
BLAKE2b-256 af9c2bce35d0c5a43b6731d570162dedb81025409bf3a88f2bcc4cfce84e69f5

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2368ed12357958646c57a1c02873dd6e9bee92d5f90639e18581e73a5656b270
MD5 78090b20d3e579675494db5f4f611d24
BLAKE2b-256 ef0e4b63306593f051d243d65134de6ecaaba7a0f1b137bdf0662d1ebde1f645

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 08c53d1e8a8f5b6fbd2fdb3540c3ee1efd8e1c988be4bf5391142ca7cb05966e
MD5 6706989d0176f1680e120a80bea5234a
BLAKE2b-256 09779aebcf644906ec22ce182f2628f521d3b066071c404979b3a7b6dc1fafcd

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eed176525ec3e0a759eb66cecf3bf4c5554d6b9241810d482687521ed2b34643
MD5 6296882189f3ab087d09ff6b6fed48ad
BLAKE2b-256 a28773ccbdeac98c00920073529949e127c73bcebdc664db9a51390e8e1163e0

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ce0ae994102706572172cba22e8d4244816fe6de9b9356bdf09b724f04f19f3
MD5 1487a95844c8130fe8111bcb6775789d
BLAKE2b-256 e0a8316a892c4d6c789a60873a47011b861012c81969007cc4a6a5df45da9fe0

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3438a2d223110b11175e0f19e96b8a943e17e4e3b0dfd25cfa514fbab112d864
MD5 c0aab2c018140bee5f51b64454a39359
BLAKE2b-256 531a29cc68485aa7df0a8b81b842c50ed69cacdbd12743e4d159d13bbe2cd6a2

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51e98bd763e82174411b586b665c2435b0825a64a1d9bbd37b3e86f0f99dcfc6
MD5 1f2b52ae391cd1b3d980cc844aa88a83
BLAKE2b-256 6322679cbbf3c93170a84fe2f99246c45fc724eda5459bc0f1116c8b34c8d7ca

See more details on using hashes here.

File details

Details for the file rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for rusty_logger-0.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 daba876339fe3e58e9a4e81e35d55f867f2a8606ee29fef0b889b1cb228dc475
MD5 d237186551b3c15c25c280ee7d5584c3
BLAKE2b-256 23cb74cf6ed07e2339682cfbd9cd18eac661d7265457a561722f914f432f6adb

See more details on using hashes here.

Supported by

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