TThe versatile dict for Python!
Project description
Folder Dict
The versatile dict for Python!
Installation
pip install folder-dict
or clone this repository and run the following command.
pip install -e ./
Import
from folder_dict import FolderDict
Usage
-
Import and Construct
# Empty Folder Dict fd = FolderDict(sep="/") > fd --> FolderDict({})
-
Subscription
user = { "name": "Joe", "age": 22, "hobbies": ["Playing football", "Podcasts"], "friends": { "Sue": {"age": 30}, "Ben": {"age": 35}, } } fd = FolderDict(user, sep="/") > fd["name"] --> Joe > fd["friend/Sue/age"] --> 30 > fd["/friend/Ben"] --> FolderDict({ "age": 30, })
- Multiple inputs
> fd["name", "age","friends/Ben/age"] --> ("Joe", 22, 35)
- Multiple inputs
-
Assignment
Assigns the object at the given path into the FolderDict.fd = FolderDict(sep="/") fd["path/to/obj_name"] = 10 > fd["path/to/obj_name"] 10
- Multiple inputs
fd["a/b", "c/d"] = (0,1) > fd --> FolderDict({ "a/b": 0, "c/d": 1 })
-
list Lists all paths contained in the FolderDict.
fd["a/b", "c/d"] = (0,1) > fd.list() --> ["/a/b", "/c/d"]
-
Direct card
~
Get paths ending with "c".fd["a/b/c", "d/e/f/abc", "g/h/c", "i/j"] = (1,2,3,4) > fd.list("~c") --> ["/a/b/c", "/d/e/f/abc", "/g/h/c"]
cf.
> fd.list("~/c") --> ["a/b/c", "g/h/c"]
-
Properties
fd["a/b","a/c"] = (1,2) # dict > fd.dict --> {'a': {'b': 1, 'c': 2}} # PathDict > fd.PathDict -->PathDict({ "a": { "b": 1, "c": 2 } }) # sep > fd.sep --> '/'
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
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 folder_dict-0.1.2.tar.gz.
File metadata
- Download URL: folder_dict-0.1.2.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.12 Darwin/21.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7b2c96fb0920756705e4c6e3ec2823dfad84f583a2a183708c10e49097e82862
|
|
| MD5 |
6c2b93443a9291237c6353ed764cf746
|
|
| BLAKE2b-256 |
96067b69983654aa6ebaa444716dfbfb9adec64e3f3630291bbd23bdc560d69e
|
File details
Details for the file folder_dict-0.1.2-py3-none-any.whl.
File metadata
- Download URL: folder_dict-0.1.2-py3-none-any.whl
- Upload date:
- Size: 4.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.13 CPython/3.9.12 Darwin/21.4.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0b5bf4eb099ec46e14ad477eee3f2677a84d103aca6be622a1312e2322cbeccf
|
|
| MD5 |
eda396d80cfccce2d3afd504e401d028
|
|
| BLAKE2b-256 |
4116ec4a436734658202d5228cadaafff5d5e12352db42573a83024dc0a7c1c3
|