Skip to main content

My neat tools grouped together!

Project description

Photonic Utilities Library

Description

Photonic is the library where I upload all my neat tools!

_logging

This package is designed to make logging easier and customizable.

Quick start:

  1. You need to configure your logger before using it, here is an example:

    logger_name = "my_logger"

    console_config(logger_name) # This makes the logger log to the console (with colors)! json_file_config(logger_name) # This makes the logger log to a json file (more detailed too).

  2. Now, we are all set! To use the logger all you need to do is:

    logger = getLogger("my_logger")

    logger.debug(f"Test Message from logger.debug") logger.info(f"Test Message from logger.info") logger.warning(f"Test Message from logger.warning") logger.error(f"Test Message from logger.error") logger.critical(f"Test Message from logger.critical")

This code will log the messages to both the console and the json file.

You can use custom formats for the message or the provided formats in the logging.formatters.Format enum.

utils

Utils are a group of functions that are nice to have ready for you. Note: the functions currently in the package are meant to be used as a decorator. Example:

@threaded
def treaded_function():
    # some code

Now, threaded_function will start in a new thread whenever called.

enums

This package is a place where I put enums that I might use in the future. Currently, it has one enum called AnsiColor which contains some of the colors used in the console. Example:

print(AnsiColor.red.value + "Example Error Text." + AnsiColor.reset.value)

Contact Me!

If you have any suggestions to add to the library you can email me. I am open to any constructive criticism!

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

photonic-0.0.1.tar.gz (4.2 MB view hashes)

Uploaded Source

Built Distribution

photonic-0.0.1-py3-none-any.whl (11.5 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