Helpers for Python
Project description
Lully
A small library providing some helpers for python devs.
See the tests for usage examples and ideas.
Collections
Otom
The One-To-One-Mapping is a special kind of dict, where all values are also keys, associated to their key.
from lully import Otom
O = Otom({
'one': 1,
'two': 2,
'tee': 3,
})
assert O[1] == 'one'
assert O['one'] == 1
An Otom acts like a dict. See tests for more.
Confiseur
A Confiseur is here to help with configurations.
The principle is to subclass, for each configuration kind you need, the Confiseur base class and populate it with Bonbon instances, describing options.
from lully import Confiseur, Bonbon
class MyConfig(Confiseur):
def bonbons(self) -> [Bonbon]:
return (
Bonbon('server options', 'max instances', default=3),
)
def validate(self, cfg):
if cfg['server options']['max instances'] > 10:
self.add_error(f"Can't handle more than ten instances. Provided: {cfg['server options']['max instances']}.")
myconfig = MyConfig('{"server options": { "max instances": 11 }}')
assert myconfig['server options']['max instances'] == 11
assert myconfig.has_error
assert len(myconfig.errors)
See tests for more.
Itermore
More itertools functions !
from lully.itermore import window, grouper, flatten, dotproduct, ncycles
See the source file for the full set of functions.
Kotlin-inspired functions
When coding in other languages, you get ideas. Here are the ones i got after a 1h course of Kotlin.
from lully import first, last, zip_with_next
assert first([1, 2]) == 1
assert last([1, 2]) == 2
assert first([2, 3], lambda x: x % 2) == 3
assert tuple(zip_with_next('abc')) == (('a', 'b'), ('c', None))
See the source file for the full set of functions.
Fief
This name should recall both its goal, which is FIltering of EFfective paramaters, and the fact it keeps functions to work within their fief.
You have this function:
def func(a, b):
... # some implementation
and you have its parameter stored in a dict, with other keys that are not for that specific function:
config = {'a': 1, 'b': 'doe', 'loglevel': 'WARNING'}
Thus, you can't just do that:
func(**config)
Because of the expected:
TypeError: func() got an unexpected keyword argument 'loglevel'
One solution can be to filter that dict, but that's cumbersome and needs maintainance. And that's worse if you have a lot of functions to call that way.
Fief is a decorator that will make that for you, using inspect
module.
from lully import fief
@fief
def func(a, b):
return a + b
config = {'a': 2, 'b': 3, 'loglevel': 'WARNING'}
# and suddenly, you can provide anything in keywords argument:
assert func(**config) == 5 # no TypeError, that's magic !
random
lsample
This is a function answering to the n choose k problem using the Vitter's algorithm.
The problem is to choose randomly n element in a set of k. That's usually done with the random.sample(n, [1, 2, ...])
function. Hence the sampling part of lsample
name.
However, that stdlib function will load everything in memory, forcing you to provide a list, not a generator.
Vitter's solution is to collect the n
elements during a single pass over the list, making possible to work on generators,
as long as you have a idea of their size, hence not loading all data in memory.
from lully import lsample
print(lsample(3, [x for x in range(10)], it_size=10))
This enables you to pick 100 random tweets among the entire tweeter database without having to load it in memory. Provided you have enough time for the full browsing to be performed.
See that repo for more information, sources and benchmarks.
weighed_choices
This function is basically a random.choice()
equivalent, but where each choice can be weighted.
from lully import weighed_choices
print(weighed_choices(a=2, b=4, c=1))
Will print you mostly b
, sometimes a
and only once on seven calls c
.
Note that you can also provide the input choices as a dict:
print(weighed_choices({'a': 2, 'b': 4, 'c': 1))
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 lully-0.0.4.tar.gz
.
File metadata
- Download URL: lully-0.0.4.tar.gz
- Upload date:
- Size: 25.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 59d8daace5e18f8f90e6f7aab5bd0eebd3115b4b663a615464bbc37440e00d0c |
|
MD5 | a0ba3a966d812513172f2ff93cef3d17 |
|
BLAKE2b-256 | 6e35d516bcf31daeb857c826e0b22fe89bbca033dbd6b7484411773a1ee35cd3 |
File details
Details for the file lully-0.0.4-py3-none-any.whl
.
File metadata
- Download URL: lully-0.0.4-py3-none-any.whl
- Upload date:
- Size: 23.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d760406964639d90557b69da2d9cf3c3748c2261f8ce313457d7c07fd6011cae |
|
MD5 | 6434886e12ae7e0c0a1a070e5da01815 |
|
BLAKE2b-256 | 8e8116dc119cfb18ab356e6bb4e656f1044de237d811f8b2532de8195cb4c6e4 |