A grocery helper
Project description
grocery
grocery is a toolkit which is collected on my daily work.
Requirements
You will need the following prerequisites in order to use grocery:
- Python 3.6+
Installation
To install grocery:
.. code-block:: bash
$ pip install grocery
Introduction
list_ext which an enhancement of built-in list objects. It can filter the dict-list. e.g.: You have the following dict-list, and want to filter the items which are 'a' > 3 and 'b' >= 4:
dict of list:
dict_of_list = [
{'a': 1, 'b': 2},
{'a': 4, 'b': 3},
{'a': 3, 'b': 8},
{'a': 6, 'b': 10},
{'a': 2, 'b': 9}
]
Usage:
from grocery.builtins_ext import list_ext
l = list_ext(dict_of_list)
for item in l.filter_dict(a__gt=3, b__ge=4):
print(item)
# output: {'a': 6, 'b': 10}
Other introduction is coming
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 Distributions
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 grocery-1.4.6-py3-none-any.whl.
File metadata
- Download URL: grocery-1.4.6-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
04480465543b6571f348cd4664c65809acfe123d27ea14eea3e026a2f4bd47e1
|
|
| MD5 |
ea6b26fa339dfc0aa2afb2d52e916ac4
|
|
| BLAKE2b-256 |
5b8680ad07d3034a645d0f8a5b2161e4811aa6d367a4b96d058aadd9f1e02c2d
|