loguru 0.7.2-3 source package in Ubuntu

Changelog

loguru (0.7.2-3) unstable; urgency=medium

  * Team upload.
  * Add missing Test-Depends: python3-mypy

 -- Andreas Tille <email address hidden>  Fri, 05 Jan 2024 17:04:28 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
Architectures:
all
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Builds

Noble: [FULLYBUILT] amd64

Downloads

File Size SHA-256 Checksum
loguru_0.7.2-3.dsc 2.3 KiB 51b5525c258436c419e05f953a4df8ca526965fc0c077e9ecaabc30dbe3bf560
loguru_0.7.2.orig.tar.gz 433.2 KiB 2b3517ef6941a3bb24ed108074194041b3de429d5d43fe9d51359f4abdd8bad5
loguru_0.7.2-3.debian.tar.xz 4.0 KiB acc98efe7f82a518fa50c85823c8f4482d1283f400cf13a17ae1510e233bc743

Available diffs

No changes file available.

Binary packages built by this source

python3-loguru: enjoyable loggin' for Python

 Logging is fundamental to every application
 and eases the process of debugging. Using Loguru user has no excuse
 not to use logging from the start, this is as simple as
  from loguru import logger.
 .
 Also, this library is intended to make Python logging less painful
 by adding a bunch of useful functionalities that solve caveats of the
 standard loggers. Using logs in your application should be an automatism,
 Loguru tries to make it both pleasant and powerful.
 Ready to use out of the box without boilerplate
 .
  * No Handler, no Formatter, no Filter: one function to rule them all
  * Easier file logging with rotation / retention / compression
  * Modern string formatting using braces style
  * Exceptions catching within threads or main
  * Pretty logging with colors
  * Asynchronous, Thread-safe, Multiprocess-safe
  * Fully descriptive exceptions
  * Structured logging as needed
  * Lazy evaluation of expensive functions
  * Customizable levels
  * Better datetime handling
  * Suitable for scripts and libraries
  * Entirely compatible with standard logging
  * Personalizable defaults through environment variables
  * Convenient parser
  * Exhaustive notifier