A simple package for rapidly developing system sejings.
Project description
Sejings
Sejings is meant to be a quick and simple tool to rapidly integrate project sejings. This was inspired by a desire to work with a solution similar to MatPlotLib's rcParams and to improve on the developer experience and developing speed by avoiding None checks.
This is the development experience I'm trying to avoid:
def add(*nums, cache=None, cache_path=None):
if cache is None:
cache = sejings['cache']
if cache_path is None:
cache_path = sejings['cache.path']
result = sum(nums)
if cache: # True
save_to_cache(result, cache_path) #'/some/dir/path'
return result
Obviously dictionaries would be computationally the fastest way to accomplish sejings. This project is meant to be friendly to developers consuming packages and to encourage rapid development over absolute runtime speed. We're using Python after all, right?
Usage
Import sejings and create the sejings you need:
from sejings import sejings
sejings.cache = True
sejings.cache.path = '/some/dir/path'
To evaluate sejings passed into a function as an argument use the @extract_sejings decorator. This will evaluate all sejings in the function definition and in the arguments being passed into the function:
from sejings import extract_sejings
@extract_sejings
def add(*nums, cache=sejings.cache, cache_path=sejings.cache.path):
result = sum(nums)
if cache: # True
save_to_cache(result, cache_path) #'/some/dir/path'
return result
A branch is also evaluated when an endpoint is called.
assert sejings.cache()
assert sejings.cache.path() == '/some/dir/path'
def add(*nums, cache=sejings.cache, cache_path=sejings.cache.path):
result = sum(nums)
if cache(): # True
save_to_cache(result, cache_path()) #'/some/dir/path'
return result
In some cases defining arguments as a Sejings object may be desired. This is accomplished by adding the argument name to the @extract_sejings arguments.
@extract_sejings('cache')
def add(*nums, cache=sejings.cache):
result = sum(nums)
if cache(): # True
save_to_cache(result, cache.path()) #'/some/dir/path'
return result
@TODO
- I'm exploring options right now to allow methods to be called directly on self._val but am weighing the pros and cons. The SejingsNumber class published is something I'm exploring and should not be depended on as it may change.
- Context manager
- Copy functionality
- Iteration
- getitem, setitem
- IO to file. Look into integration with configparser.
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
File details
Details for the file sejings-0.0.4.tar.gz
.
File metadata
- Download URL: sejings-0.0.4.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.41.0 CPython/3.7.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf8b40fed066520bc022cada60cab0bbfd386b9f2819c5083c79471343f28eff |
|
MD5 | 733385007cd8ad1862ef2e69b767d4a1 |
|
BLAKE2b-256 | 4f247fdcae38dafefd8c7f224affdd8c1d8d501f62b8eec18de26d7cfcedb267 |