Provides proxy classes that allow accessing objects that are usually only accessible via function calls as objects directly.
Project description
nr.proxy
The nr.proxy module provides utilities for creating Python object proxies which will forward
almost any interaction with the object to another object. This allows for the creation of very
convenient APIs in Python applications (e.g. à la Flask request object).
This package requires Python 3.5 or higher.
Example: proxy
Command-line interfaces built with Click can use the Context.ensure_object() method to
attach information to a context. Retrieving that information from the context include a couple
of lines which over all reduce the readability of the code. Using a proxy allows you to access
that information once it is initialized in the context as if the data was available globally.
import click
import nr.proxy
from pathlib import Path
from .config import Configuration
config = nr.proxy.proxy[Configuration](lambda: click.get_current_context().obj['config'])
@click.group()
@click.option('-c', '--config', 'config_file', type=Path, default='config.toml',
default='Path to the configuration file.')
@click.pass_context
def cli(ctx: click.Context, config: Path) -> None:
ctx.ensure_object(dict)['config'] = Configuration.load(config)
@cli.command()
def validate():
# No need to use @click.pass_context or access ctx.obj['config'].
config.validate()
Example: threadlocal
The below is an example for creating a globally accessible SqlAlchemy session. Inside a
with-context using make_session(), the global session object can be accesses like a normal
instance of the Session class. Outside of the context, accessing the session object results
in a RuntimeError with the specified error message.
The advantage of this method is that the Session object does not need to be passed around,
but can instead just be accessed globally.
import contextlib
import nr.proxy
from sqlalchemy.orm import sessionmaker
from typing import Generator
Session = sessionmaker()
session = nr.proxy.threadlocal[Session](
name=__name__ + '.session',
error_message=
'({name}) No SqlAlchemy session is available. Ensure that you are using the '
'make_session() context manager before accessing the global session proxy.',
)
@contextlib.contextmanager
def make_session() -> Generator[None, None, None]:
"""
A context manager that creates a new #Session object and makes it available in the global
#session proxy object.
"""
nr.proxy.push(session, Session())
try:
yield
except:
session.rollback()
raise
else:
session.commit()
finally:
nr.proxy.pop(session)
Copyright © 2020 Niklas Rosenstein
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 nr.proxy-1.1.1.tar.gz.
File metadata
- Download URL: nr.proxy-1.1.1.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a633acfad03f9610bfbc53d525764ba997951750c375d30d0df4b7646748ac67
|
|
| MD5 |
6d1b9804f217f78d2abe1d3e5c1e2762
|
|
| BLAKE2b-256 |
8a478b303f34ba861107a1f75f79a62bbe7f787592fcccde8f01875539d33e96
|
File details
Details for the file nr.proxy-1.1.1-py3-none-any.whl.
File metadata
- Download URL: nr.proxy-1.1.1-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.10.0 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3dc2dad6e1ea809440b6fa7d32e9778860f33f48e43f3e7218e8dcdb2c6564b5
|
|
| MD5 |
61732c8d1f9df462bab2f90e059af20e
|
|
| BLAKE2b-256 |
6f9f00c4e9bb9dffd099fbe029f03d44d65627a07d2d20201f64c965c6146df8
|