Skip to content

🌈 Modern, logging utility for Python with multiple output formats and colorful console output.

License

Notifications You must be signed in to change notification settings

DogukanUrker/Tamga

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

69 Commits
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 
Β 

Repository files navigation

Tamga PyPI Downloads

A modern, logging utility for Python with multiple output formats and colorful console output.

Installation

tamΒ·ga / noun
An ancient Turkic symbol or seal used for marking ownership, identity, or lineage.

Terminal

Features

  • 🎨 Colorful console output using Tailwind CSS color palette
  • πŸ“ File logging with rotation and backup
  • πŸ“Š JSON logging with size limits and backup
  • πŸ—„οΈ SQLite database logging
  • πŸš€ MongoDB integration
  • πŸ“§ Email notifications for specific log levels
  • 🌐 API logging support
  • πŸ”„ Automatic file rotation and backup
  • 🎯 Multiple log levels with customizable colors

Installation

To install the tamga package, you can use the following commands based on your requirements:

  • Basic installation:

    pip install tamga
  • With API logging support:

    pip install tamga[api]
  • With MongoDB integration:

    pip install tamga[mongo]
  • Full installation with all features:

    pip install tamga[full]

Quick Start

from tamga import Tamga

# Initialize the logger
logger = Tamga(
    logToFile=True,
    logToJSON=True,
    logToConsole=True
)

# Basic logging
logger.info("This is an info message")
logger.warning("This is a warning")
logger.error("This is an error")
logger.success("This is a success message")
logger.debug("This is a debug message")
logger.critical("This is a critical message")

# Custom logging
logger.custom("This is a custom message", "CUSTOM", "orange")

Advanced Usage

MongoDB Integration

logger = Tamga(
    logToMongo=True,
    mongoURI="your_mongodb_uri",
    mongoDatabaseName="logs_db",
    mongoCollectionName="application_logs"
)

Email Notifications

logger = Tamga(
    sendMail=True,
    smtpServer="smtp.gmail.com",
    smtpPort=587,
    smtpMail="your_email@gmail.com",
    smtpPassword="your_password",
    smtpReceivers=["receiver@email.com"],
    mailLevels=["CRITICAL", "ERROR"]
)

File Rotation and Backup

logger = Tamga(
    logToFile=True,
    logToJSON=True,
    maxLogSize=10,  # MB
    maxJsonSize=10,  # MB
    enableBackup=True
)

API Integration

logger = Tamga(
    logToAPI=True,
    apiURL="http://your-api.com/logs"
)

Available Log Levels

  • INFO (sky blue)
  • WARNING (amber)
  • ERROR (rose)
  • SUCCESS (emerald)
  • DEBUG (indigo)
  • CRITICAL (red)
  • DATABASE (green)
  • MAIL (neutral)
  • METRIC (cyan)
  • TRACE (gray)
  • Custom (user-defined)

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

About

🌈 Modern, logging utility for Python with multiple output formats and colorful console output.

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Languages