Skip to main content

Simple Logging using CSV

Project description

adoreta_log

installing the package

pip install adoreta

Examples:

Logging your logs


Default name of the log file logs.csv

from adoreta.log import Log

log = Log()
log.write("Please log this text to show this in the future")

Custom name of the log file

from adoreta.log import Log

log = Log("custom_filename.csv") # any custom file name you want
log.write("This text will go in the custom named file")

Displaying your logs


Default logs file display logs.csv

from adoreta.log import Log

log = Log()
log.show()

Custom logs file display

from adoreta.log import Log

log = Log("custom_filename.csv")
log.show()

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

adoreta-0.0.4.tar.gz (14.7 kB view hashes)

Uploaded Source

Built Distribution

adoreta-0.0.4-py3-none-any.whl (14.8 kB view hashes)

Uploaded Python 3

Supported by

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