Snippets and utils for python projects
Project description
python‑purse
python‑purse is a library that collects a variety of snippets and utilities for both asynchronous and synchronous Python projects. Whether you're building bots, web applications, or other tools, this library provides ready-to-use code modules to speed up development.
Framework Extensions
- aiogram: Bots and dp bootstrap, router-makers, useful decorators and utilities for Telegram bots.
- aiohttp: Simplified app creation and server utilities.
- django: ASGI/WSGI handlers, repository patterns, and more for Django projects.
Logging
Custom logging configurations and integrations (including Telegram-based logging).
from configparser import ConfigParser
import purse.logging
config = ConfigParser()
config.read('config.ini')
bot_config = config['bot']
tg_logger = purse.logging.setup(
telegram_setup=purse.logging.TelegramSetup(
bot=purse.logging.SimpleLoggingBot(token=bot_config.get('token')),
log_chat_id=bot_config.get('log_chat_id'),
send_delay=bot_config.getint('send_delay'),
logger_level=bot_config.getint('logger_level'),
service_name=bot_config.get('service_name'),
),
)
tg_logger.debug("dev message", to_dev=True) # prints to stderr and sends message to telegram
try:
raise Exception("some exception")
except Exception as exc:
tg_logger.exception(exc) # prints traceback to stderr and sends message to telegram
from logging import getLogger
your_app_logger = getLogger("app")
your_app_logger.error('error in runtime') # prints to stderr and sends message to telegram
You don't have to use purse.logging.setup function return object (tg_logger in example above)
directly for error/exception telegram logging unless you want to send messages
by TelegramLogger.to_tg(...) and TelegramLogger.to_dev(...) methods.
Interfaces and Repositories
Protocol definitions and in-memory repository implementations for fast prototyping and testing.
JSON encoders and decoders
Utility functions and classes to simplify JSON handling (mostly decoding and encoding Decimals, UUIDs, dates, and other specific types).
from purse import json as purse_json
from decimal import Decimal
purse_json.dumps({"val": Decimal("100")}) # '{"val": "100"}'
purse_json.loads('{"val": "100"}') # {'val': Decimal('100')}
Asyncio signals handling
Easy loop signal setup for SIGINT and SIGTERM.
Use predefined purse.signals.prepare_shutdown (internal flag of this event would be set to True
when one of signals received) and purse.signals.shutdown_complete events in your code for more
compatability.
import purse
import asyncio
async def main():
kill_event = purse.signals.setup()
... # some startup logic
await kill_event.wait()
... # some shutdown logic
await purse.signals.shutdown_complete.wait()
if __name__ == '__main__':
asyncio.run(main())
You can pass your custom function to purse.signals.setup for handling signals. This function
must have exact two arguments: signal.Signals and asyncio.Event (internal flag of this event
you must set to True due the function execution).
Installation
You can install python-purse via pip (or with your another favorite manager) from PyPi:
pip install python-purse
Contributing
Contributions are welcome! If you’d like to contribute, please follow these steps:
- Fork the repository.
- Create a new branch (git checkout -b feature/my-feature).
- Commit your changes (git commit -am 'Add new feature').
- Push your branch (git push origin feature/my-feature).
- Open a pull request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Contacts
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
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 python_purse-1.0.30.tar.gz.
File metadata
- Download URL: python_purse-1.0.30.tar.gz
- Upload date:
- Size: 36.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cd2d715dad5b61b70323d771898a01471a40d308d837bb26a5a0df5464eb8eb
|
|
| MD5 |
46a14b200e65635ffaacae5e4b509290
|
|
| BLAKE2b-256 |
3ae34f70df6aaa70faa1744f8ff46e76c0db4b21f282209cd80601e007c31bdf
|
File details
Details for the file python_purse-1.0.30-py3-none-any.whl.
File metadata
- Download URL: python_purse-1.0.30-py3-none-any.whl
- Upload date:
- Size: 36.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.5.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2096b52fbc810d33f9885936d920d46481e3ca6806dafb2db151761ed0ea35ee
|
|
| MD5 |
386aff19e2abf267b940a8d07be1178b
|
|
| BLAKE2b-256 |
8e5a7893fc70cfa483d966fadae0cf84377ff72a8cfd2cd95fa3c9ae524b4ba5
|