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
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file grocery-1.4.4-py3-none-any.whl
.
File metadata
- Download URL: grocery-1.4.4-py3-none-any.whl
- Upload date:
- Size: 6.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68cadb3327250e2c2a9a3ec8244dcd046220fb9eb040dd2fa143cc76528ab2bd |
|
MD5 | 78dad5eaa20578af31668fab6d26e942 |
|
BLAKE2b-256 | c0ecb0629a30358d75a37143925fdf49875ecbe8c0dd8628cabe89a047f28884 |