A better base class to automatically parse local args.
Project description
ABCParse
A better base class that handles parsing local arguments.
pip install ABCParse
from ABCParse import ABCParse
class SomeClass(ABCParse):
def __init__(self, arg1, arg2):
self.__parse__(kwargs=locals())
something = SomeClass(arg1 = 4, arg2 = "name")
Logging
ABCParse includes a built-in logging system that provides visibility into the parsing process. You can configure the logging level, format, and output destination.
Basic Usage
from ABCParse import set_global_log_level, get_logger
# Set the global log level
set_global_log_level("debug") # Options: debug, info, warning, error, critical
# Get a custom logger for your module
logger = get_logger(name="my_module")
logger.info("This is an info message")
logger.debug("This is a debug message")
Advanced Configuration
from ABCParse import get_logger
# Configure a logger with custom settings
logger = get_logger(
name="my_custom_logger",
level="debug",
format="%(asctime)s - %(name)s - %(levelname)s - %(message)s",
date_format="%Y-%m-%d %H:%M:%S",
file_path="logs/my_app.log", # Optional: log to file
propagate=False
)
# Log messages at different levels
logger.debug("Detailed information for debugging")
logger.info("General information about program execution")
logger.warning("Warning about potential issues")
logger.error("Error that occurred during execution")
logger.critical("Critical error that may cause program failure")
# Log dictionary data
config = {"param1": 42, "param2": "value", "enabled": True}
logger.log_dict(config, level="debug", prefix="Configuration")
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
abcparse-0.1.4.tar.gz
(25.4 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
abcparse-0.1.4-py3-none-any.whl
(24.0 kB
view details)
File details
Details for the file abcparse-0.1.4.tar.gz.
File metadata
- Download URL: abcparse-0.1.4.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fdcd7ae6a20de91883a127513b0a1eb90b4b4abe5dd212d485e23186a07e3092
|
|
| MD5 |
9556fb066df0e56437aa3ce778ef09c2
|
|
| BLAKE2b-256 |
9684fc66c410e87de20df2b79e8a5b77e5a96fe6b6c4e30f575623dbd914a176
|
File details
Details for the file abcparse-0.1.4-py3-none-any.whl.
File metadata
- Download URL: abcparse-0.1.4-py3-none-any.whl
- Upload date:
- Size: 24.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6489a5c958eb18ae213a21965a131848a8f3fdcef2fd82a3e774ab46c7a250d1
|
|
| MD5 |
002d8e21b792bbb42ba711728c11d914
|
|
| BLAKE2b-256 |
cc5a0587c0d9acad063b60345c5f4ea7cbd80de2545ae283b489dec437d576c1
|