Skip to main content

A custom logger package

Project description

LogMagix

LogMagix is a custom Python logging package that offers styled, colorful log messages for various logging levels such as success, warning, failure, and more. It also features an animated loader class for providing a visual indicator during long-running operations in the terminal. Additionally, the new Home class offers customizable ASCII art displays for greeting users with special messages, branding, or system information.

🔥 Features

  • Log messages for success, warning, failure, and informational levels.
  • Customize message colors using ANSI escape sequences.
  • Time-stamped log messages for better tracking.
  • Built-in animated loader for visually appealing loading spinners.
  • Customizable log and loader prefixes.
  • ASCII art display for personalized greetings, system info, and branding.
  • Simple and flexible API with multiple ways to use the Loader class.
  • Customizable text alignment for the Home ASCII art display.

⚙️ Installation

To install the package locally, clone the repository and run:

pip install .

You can also install it via pip from PyPI:

pip install logmagix

🔧 Usage

Importing the Package

from logmagix import Logger, Loader, Home

Logging

Initialize the Logger class to log messages with different levels:

log = Logger()

# Success message
log.success("Operation completed successfully!")

# Failure message
log.failure("Something went wrong!")

# Warning message
log.warning("This is a warning!")

# Informational message
log.info("Informational log message")

# Debug message
log.debug("Debugging log message")

# Question input
log.question("This is an input question!")

Loading Animation

The Loader class can be used in two ways:

Using a context manager:

from time import sleep

with Loader(desc="Loading with context manager..."):
    for i in range(10):
        sleep(0.25)

Using start() and stop() methods:

loader = Loader(desc="Loading with object...", end="That was fast!", timeout=0.05).start()
for i in range(10):
    sleep(0.25)
loader.stop()

Custom Log and Loader Prefix

Both the Logger and Loader classes allow for customizing the prefix that is shown before each message:

Logger Prefix:

log = Logger(prefix=".myapp/logs")
log.success("This message has a custom log prefix!")

Loader Prefix:

loader = Loader(prefix=".myapp/loader", desc="Loading with a custom loader prefix...")
loader.start()
time.sleep(5)  # Simulate a task
loader.stop()

ASCII Art and Greeting (New Home Class)

The Home class lets you display customized ASCII art text along with system information, such as a welcome message, username, or credits.

Using the Home Class:

home_screen = Home(
    text="LogMagix",
    align="center",
    adinfo1="discord.cyberious.xyz",
    adinfo2="v1.0",
    credits="Developed by sexfrance",
    clear = False, # To clear the console, default is True
)

home_screen.display()

This will display the ASCII art version of "LogMagix" in the center of the terminal, along with optional adinfo1 and adinfo2 texts at the bottom. The terminal width is automatically detected to align the text properly.

Full Example

Here’s an example showing both logging, loader, and the new Home class functionality:

from logmagix import Logger, Loader, Home
import time

log = Logger(prefix="custom/log/prefix")

# Log messages
log.success("Everything is running smoothly!")
log.warning("Watch out, something might happen!")
log.failure("Critical error occurred!")

# Use loader with custom prefix and context manager
with Loader(prefix="custom/loader/prefix", desc="Processing data..."):
    time.sleep(5)  # Simulate task

# Use loader with custom prefix and start/stop methods
loader = Loader(prefix="custom/loader/prefix", desc="Saving files...", end="Done!", timeout=0.05).start()
time.sleep(5)  # Simulate task
loader.stop()

# Display Home screen with ASCII art and welcome message
home_screen = Home(
    text="LogMagix",
    align="center",
    adinfo1="discord.cyberious.xyz",
    adinfo2="v1.0",
    credits="Developed by sexfrance",
    clear = False
)

home_screen.display()

log.success("Processing completed!")

Customization in Home Class

  • text: The text to be displayed in ASCII art.
  • align: Align the ASCII art text to "left", "center", or "right" in the terminal.
  • adinfo1 and adinfo2: Additional information displayed below the ASCII art.
  • credits: Optional credits or user information.

❗ Requirements

LogMagix requires:

  • colorama for cross-platform color support in the terminal.
  • pystyle for creating the colored text effects.

To install dependencies, run:

pip install colorama pystyle

©️ License

LogMagix is licensed under the MIT License. See the LICENSE file for more details.

🖥️ Contributing

Contributions are welcome! Feel free to fork the repository, make changes, and submit a pull request.

👤 Author

LogMagix is developed and maintained by sexfrance.

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

logmagix-1.0.5.tar.gz (9.5 kB view details)

Uploaded Source

Built Distribution

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

logmagix-1.0.5-py3-none-any.whl (7.8 kB view details)

Uploaded Python 3

File details

Details for the file logmagix-1.0.5.tar.gz.

File metadata

  • Download URL: logmagix-1.0.5.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for logmagix-1.0.5.tar.gz
Algorithm Hash digest
SHA256 06ee188fb6cc3bad3152cb9cbe0fb636e12b50a983f712f19856cf0c46899799
MD5 6dc42ca2b8ee9721156642855158dc87
BLAKE2b-256 e5d6682e62aa9a6a42f2a34210d6526d72a6e20ce975695cbba2b7afa8c03172

See more details on using hashes here.

File details

Details for the file logmagix-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: logmagix-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 7.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for logmagix-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 0ec30f650bb3faffe635d61dbe6ef02708f23f7dbe3ed604882112c3ea7521ae
MD5 73ca8d69035011f0aaa0ef02b795c48f
BLAKE2b-256 5ebc3c94371fc47aa371135d5aeb5cf0e1b3c4aec925f209f08a8bfb76e48cfc

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