Misc utilities for python projects.
Project description
miscutils
Utilities for working with python projects.
Usage
logging_config
Default configuration for structlog.
Configure json logging at the INFO level:
from miscutils.logging_config import default_logging, LogFormat, Verbosity
default_logging(Verbosity.INFO, LogFormat.JSON)
Configure text logging at the DEBUG level:
from miscutils.logging_config import default_logging, LogFormat, Verbosity
default_logging(Verbosity.DEBUG, LogFormat.TEXT)
Configure text logging at the DEBUG level and filter out external loggers:
from miscutils.logging_config import default_logging, LogFormat, Verbosity
default_logging(Verbosity.DEBUG, LogFormat.TEXT, ["extern_logger_1"])
Log timing information for a function
Decorator to add timing information to the logs:
from miscutils.timer import timer
import structlog
@timer(structlog.get_logger(__name__))
def some_function():
pass
Create a namespace relative patch
Create namespace relative patches:
import some_package.sub_package.another_package as under_test
from miscutils.testing import relative_patch_maker
patch = relative_patch_maker(under_test.__name__)
class TestStuff:
#equivalent to @unittest.mock.patch("some_package.sub_package.another_package.something_to_patch")
@patch("something_to_patch")
def test_something(self, patched):
under_test.something()
patched.assert_called_once()
#equivalent to @unittest.mock.patch("some_package.sub_package.another_package.something_else_to_patch")
@patch("something_else_to_patch")
def test_something(self, patched):
under_test.something()
patched.assert_called_once()
Starlette Structlog middleware
Middleware for Starlette framework to log HTTP requests to structlog. Log entries will be made at the start and end of each request. Error requests (400s and 500s) will also be logged. Any calls that throw exceptions will be converted 500 responses.
from miscutils.middleware import StructlogRequestMiddleware
import structlog
app.add_middleware(StructlogRequestMiddleware(app, logger=structlog.get_logger(__name__)))
There are options to customize the logging:
import logging
import structlog
from miscutils.middleware import StructlogRequestMiddleware
app.add_middleware(StructlogRequestMiddleware(
app,
logger=structlog.get_logger(__name__),
log_level=logging.DEBUG, # Log at the DEBUG level.
ignored_status_codes={404}, # Do not log 404 errors.
))
Development Guide
This project uses poetry:
$ pip install poetry
$ cd to/project/root
$ poetry install
Testing
Testing is done via pytest.
$ poetry run pytest
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
File details
Details for the file misc-utils-py-0.3.0.tar.gz
.
File metadata
- Download URL: misc-utils-py-0.3.0.tar.gz
- Upload date:
- Size: 9.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 887514753e2c18b96170c0db6c966ec70a8b979b763d6b18cbd193d03988791b |
|
MD5 | 2ea7552e0e397783737e3ff63f215851 |
|
BLAKE2b-256 | 3bbddc64bb64f6cce643561215f07da91c0f3b24fa330a272b3177559950201c |
File details
Details for the file misc_utils_py-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: misc_utils_py-0.3.0-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.9 CPython/3.8.3 Linux/5.3.0-1031-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c96127ac54ec29c0cf1ed741c0e25ea1ec7ed0407660a7f3c877d0e7b82e518a |
|
MD5 | 444745c598e8135212750ffcc573a019 |
|
BLAKE2b-256 | 0620741f79273ca9b679c6686e0a6935aa3ac7457e577849be8e37ed879bed9e |