NOFUS - Nate's One-File Utilities Stash
Project description
NOFUS: Nate's One-File Utilities Stash
About NOFUS
A collection of single purpose classes for common tasks, focusing on simple and straightforward use. Each class can be taken and used individually and requires no external dependencies.
Uses
- ConfigFile: No Hassle Config File Parser
- Logger: Simplified Alternate Logging Interface
- DBConnect: Quick interface for making MariaDB queries
ConfigFile: No Hassle Config File Parser
Example Config:
[email]
admin = admin@example.com
reply_to = feedback@example.com
[auth.sql]
host = sql.example.com
db = mydbname
user = sqluser
pw = "secret_passwd"
[auth.ldap]
uri = "ldap://ldap1.example.com:389"
uri = "ldap://ldap2.example.com:389"
uri = "ldap://ldap3.example.com:389"
Example Use:
from nofus import ConfigFile
conf = ConfigFile("/path/to/my.conf")
if not conf.load():
print(conf.errors())
else:
admin_email = conf.get("email.admin")
reply_email = conf.get("email.reply_to", default="donotreply@example.com")
sqlauth = conf.get("auth.sql")
sql_host = sqlauth.get("host")
sql_db = sqlauth.get("db")
sql_user = sqlauth.get("user")
sql_pw = sqlauth.get("pw")
ldap_uris = conf.get_list("auth.ldap.uri")
Logger: Simplified Alternate Logging Interface
Example Use:
from nofus import Logger
# Fast setup, default to logging LOG_DEBUG and higher
Logger.initialize('/tmp/myfile.log')
Logger.info("Info!")
Logger.notice("Notice!")
Logger.warning("Warning!")
Logger.error("Error!")
Logger.critical("Critical!")
# Easily put an exception stack trace into the log
try:
1/0
except ZeroDivisionError as exc:
Logger.info("Caught something.", exc_info=exc)
# Disable logging
Logger.disable()
# Set custom log level
Logger.initialize('/tmp/myfile.log', Logger.LOG_TRACE)
Logger.trace("Trace!")
# Check log level
if Logger.is_enabled(Logger.LOG_DEBUG):
Logger.debug("Yep, we're debugging.")
# Or Define a custom logger
from nofus import LoggingInterface
class CustomLogger(LoggingInterface):
def __init__(self, log_file=None, log_level=None):
if log_level is None:
log_level = Logger.LOG_LOW
# Customize your init
def make_log(self, entry, log_level):
# Customize your log actions
Logger.register(CustomLogger())
DBConnect: Quick interface for making MariaDB queries
Example Use:
from nofus import DBConnect
conn = [
{"host": "127.0.0.1", "port": 3306, "database": "myapp", "username": "appuser", "password": "secret"}
]
db = DBConnect(conn)
# Simple query, rows being a list of dict with keys being table column names
rows = db.query("SELECT * FROM users WHERE username = ?", ["soandso"])
# Simple query, getting just first row. Returns None if no rows found
row = db.query_row("SELECT * FROM users WHERE username = ?", ["soandso"])
# Get a column of values as a list
list_user_ids = db.query_column("SELECT id FROM users")
# Print what a query might look like with values inserted, but doesn't run query
query_string = db.query_return("SELECT * FROM users WHERE username = ?", ["soandso"])
# For large queries, retrieve rows one at a time instead of all at once
db.query_loop("SELECT * FROM very_large_table")
while row := db.query_next():
print(row)
# Safe handling of table and column names; returns empty string if invalid
safe_table_name = db.escape_identifer(table_name)
safe_column_name = db.escape_identifer(column_name)
if safe_table_name and safe_column_name:
db.query(f"SELECT {safe_column_name} FROM {safe_table_name}")
# Return last insert id for single record inserts
new_user_id = db.query("INSERT INTO users SET username = ?", ['soando'])
# Returns row count for update, insert, delete, and multi-insert queries
rows_changed = db.query("UPDATE users SET last_updated = NOW()")
# Transactions
db.transaction_start() # Default REPEATABLE READ, pass True for READ COMMITTED.
db.is_transaction_started()
db.transaction_commit()
db.transaction_rollback()
Installation
If all you need is one class, you can just grab a file and throw it in your project.
Or you can install the whole stack using pip:
pip install nofus
License
NOFUS is covered by the Simplified BSD License.
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
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
File details
Details for the file nofus-0.2.0.tar.gz.
File metadata
- Download URL: nofus-0.2.0.tar.gz
- Upload date:
- Size: 21.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c34adabf51e351b296d372ab41e38075bedc4c378644384cb0ac14a81b045831
|
|
| MD5 |
869d80a6eb1ac912a5c7a779ba46437a
|
|
| BLAKE2b-256 |
b73820c70eba4f4db09f4faef0673ea7c56a96c80422bbb94c70c6fcfd613c7b
|
File details
Details for the file nofus-0.2.0-py3-none-any.whl.
File metadata
- Download URL: nofus-0.2.0-py3-none-any.whl
- Upload date:
- Size: 21.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ef0cfe8cb530d0c114a9c26dd339fa3b98eca811e521f692dc78c4536f62f16
|
|
| MD5 |
d87922c4703bd39a7a716546ad3ba3fb
|
|
| BLAKE2b-256 |
24a924bc96c9dfc98b5d096e0524d6252146b6e279e1b1b78c0fc93cd5dfd4c3
|