Skip to main content

My own logging library so i don't need to port it to every single project i make.

Project description

📚 kwslogger: Your Custom Logging Solution! 🚀

Welcome to kwslogger, a tailored logging solution for Python developers who desire more color and style in their logs.

🌟 Features

  • 🎨 Colorful logs to easily differentiate log types.
  • 📅 Timestamped logs to understand when events occur.
  • 📝 Write your logs to a file with ease.
  • ⛔ Filter out logs with the log levels.
  • 📈 Progress bar & spinner support.
  • 🤖 ASCII logo creation with just 1 call.
  • 🧑‍💻 Generate QR codes easily.

⚙️ Installation

pip install kwslogger

🤖 Documentation

Click me to go to the library docs.

🚀 Usage

Normal logs for your tools

from kwslogger import Logger

# Create a logger instance
logger = Logger(log_level="ANY", log_to_file=True, log_file_name="mylogs", log_file_mode="a")

# Clear the console
logger.clear()

# Log a message
logger.welcome("I'm a welcome message!")
logger.info("I'm an info message!")
logger.debug("I'm a debug message!")
logger.success("I'm a success message!")
logger.warning("I'm a warning!")
logger.error("I'm an error!")
logger.input("I'm an input message!")
logger.ratelimit("I'm a rate limit message!")

Animated Sleeps

from kwslogger import Logger

# Create a logger instance
logger = Logger()

logger.sleep("Waiting for 1 second...", 1)

Run functions while you showing the spinner with an optional timer

from kwslogger import Logger

# Create a logger instance
logger = Logger()

def test_func(number1, number2):
    answer = number1 + number2
    return answer

result = logger.run_with_spinner(test_func, "Calculating...", True, 1, 1)
print(str(result) + " (Func returned)")

Filter out your logs with the built in log levels, anything above the level you set on the logger instace won't be logged nor written to the file.

debug (0) --> info (1) --> welcome (2) --> success (3) --> warning (4) --> error (5) --> input (6) --> ratelimit (7) --> sleep (8) --> any (9)

Example:

from kwslogger import Logger

# Create a logger instance
logger = Logger(log_level="WARNING", log_to_file=True, log_file_name="mylogs", log_file_mode="a")

print(logger.can_log("INFO")) # --> True because it's below warning level. Would log and write to the file.
print(logger.can_log("RATELIMIT")) # --> False because it's above the warning level. Wouldn't log nor write to the file.

You don't need to filter out the logs with this method, it's done automatically, this is just an example and a method added to check whether a log should be logged or not.

Create progress bars with ease.

import time
from kwslogger import Logger

logger = Logger()

for i in (logger.progress_bar(range(100), desc="Progress Bar", unit="items", unit_scale=True, unit_divisor=100, miniters=1, mininterval=0.1, maxinterval=1, dynamic_ncols=True, smoothing=0.3, bar_format="{l_bar}{bar}| {n_fmt}/{total_fmt} [{elapsed}<{remaining}]", leave=False)):
    time.sleep(0.1)

You can add as many arguments and customizations as the tqdm library supports.

Create logos with just 1 function

from kwslogger import Logger

logger = Logger()

logger.create_logo("Pluto Reportbot")

You can use a custom pyfiglet font with the following

logger.create_logo("Pluto Reportbot", font = "slant")

Generate QR Codes with 1 call

from kwslogger import Logger

logger = Logger()

logger.generate_qr("https://hvh.bio/")

🤝 Contributing

Contributions, issues, and feature requests are welcome! Feel free to check the issues page.

💖 Support

If you like this project, please give it a ⭐️ and share it with your friends!

📝 Dependencies

Those are the libraries we use for the logger! Thanks to all of them 🤍

📄 License

This project is MIT licensed, click here to see the license file.


Thanks for choosing kwslogger for your logging needs!

Project details


Download files

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

Source Distribution

kwslogger-0.3.2.tar.gz (10.0 kB view details)

Uploaded Source

Built Distribution

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

kwslogger-0.3.2-py3-none-any.whl (10.6 kB view details)

Uploaded Python 3

File details

Details for the file kwslogger-0.3.2.tar.gz.

File metadata

  • Download URL: kwslogger-0.3.2.tar.gz
  • Upload date:
  • Size: 10.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for kwslogger-0.3.2.tar.gz
Algorithm Hash digest
SHA256 f0ffda3951a65e730493d96de4fadfbb52cf77b27d0a0d11ed4696d682fb03bb
MD5 ea5602e2dd915fd9922293f2d9ad47cf
BLAKE2b-256 b88e5b2a62c6eb9904e63d20330d92a7ae2c60f7738737ca44744c0a81cdb806

See more details on using hashes here.

File details

Details for the file kwslogger-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: kwslogger-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 10.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for kwslogger-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 6e7458360f49d03e4d157b78ad042b819c77b9b1d3c04d29e6ac49b9dae21cda
MD5 6db3d896d82a649fb6439d4dc6a861e0
BLAKE2b-256 73f38ed8b01d7c4b7b497b5701be4c88a7610df96e4acc509b64ac55faa39dee

See more details on using hashes here.

Supported by

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