A modern, logging utility for Python with multiple output formats and colorful console output.
tamΒ·ga / noun
An ancient Turkic symbol or seal used for marking ownership, identity, or lineage.
- π¨ 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
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]
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")
logger = Tamga(
logToMongo=True,
mongoURI="your_mongodb_uri",
mongoDatabaseName="logs_db",
mongoCollectionName="application_logs"
)
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"]
)
logger = Tamga(
logToFile=True,
logToJSON=True,
maxLogSize=10, # MB
maxJsonSize=10, # MB
enableBackup=True
)
logger = Tamga(
logToAPI=True,
apiURL="http://your-api.com/logs"
)
- INFO (sky blue)
- WARNING (amber)
- ERROR (rose)
- SUCCESS (emerald)
- DEBUG (indigo)
- CRITICAL (red)
- DATABASE (green)
- MAIL (neutral)
- METRIC (cyan)
- TRACE (gray)
- Custom (user-defined)
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.
- DoΔukan Γrker
- Email: dogukanurker@icloud.com
- GitHub: @dogukanurker