Python Snippets
Project description
Python Snippets
Installation
pip install pysnippets
Usage
dict:
In [1]: from pysnippets import dictsnippets as dsn In [2]: dsn.filter({'a': 1, 'b': 2, 'c': 3}, ['c', 'd:4']) Out[2]: {'c': 3, 'd': 4} In [3]: dsn.filter({'a': 1, 'b': 2, 'c': 3}, ['c', 'd:4'], exec_eval=False) Out[3]: {'c': 3, 'd': '4'} In [4]: dsn.gets({'a': 1, 'b': 2, 'c': 3}, ['c', 'd:4']) Out[4]: [3, 4] In [5]: dsn.gets({'a': 1, 'b': 2, 'c': 3}, ['c', 'd:4'], exec_eval=False) Out[5]: [3, '4']
list:
In [1]: from pysnippets import listsnippets as lsn In [2]: lsn.all([1, 2, 3], [1, 2]) Out[2]: True In [3]: lsn.any([1, 2, 3], [1, 5]) Out[3]: True
str:
In [1]: from pysnippets import strsnippets as ssn In [2]: ssn.strip(None) In [3]: ssn.strip(' xyz ') Out[3]: 'xyz'
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
pysnippets-1.1.0.tar.gz
(3.3 kB
view details)
Built Distribution
File details
Details for the file pysnippets-1.1.0.tar.gz
.
File metadata
- Download URL: pysnippets-1.1.0.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/18.5 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad4effb09bc8165345bde4324fc9d63a84563837081bff9e419b875a174115dc |
|
MD5 | 9df6cd1d61da891dcf58e5502d835f62 |
|
BLAKE2b-256 | 0def3aa3d7acf4e583225b3caf95620ac74924d2a81ea028b14802dc22a9e550 |
File details
Details for the file pysnippets-1.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pysnippets-1.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 4.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/18.5 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/2.7.10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 672e72a3ddfa443b4e4353a11d04095f952088f42ab21f1e1c61d2375de6b1b0 |
|
MD5 | 1a378126ac8b26e4135a405af35542f2 |
|
BLAKE2b-256 | c6028d2cede70effa5e5ff7d9b927af382702891248bc83b79180ff51b6a38db |