A python package to classify data types from a list.
Project description
DeeType
A python package to classify data types from a list.
This package can help you sort the different types of data in a list. For example :- You make a list [1,"Hello",True,[0,8],{"name":"Hardeep"}] You want to extract all the string, ints, bools, lists or dicts from it into different lists.
the code for that would be :-
from DeeType import DeeType
deetype_obj = DeeType([1,"Hello",True,[0,8],{"name":"Hardeep"}])
# for strings
print(deetype_obj.findStr())
## Output :- ["Hello"]
# for integers
print(deetype_obj.findInt())
## Output :- [1]
# for list
print(deetype_obj.findList())
## Output :- [[0,8]]
# for dict
print(deetype_obj.findDict())
## Output :- [{"name":"Hardeep"}]
# for all datatypes
print(deetype_obj.showTypeDict())
## Output :- {
'strings': ['Hello'],
'integers': [1],
'booleans': [True],
'lists': [[0, 8]],
'dicts': [{'name': 'Hardeep'}]
}
Consider Giving a star on our github repo.
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
DeeType-0.3-py3-none-any.whl
(3.2 kB
view details)
File details
Details for the file DeeType-0.3-py3-none-any.whl
.
File metadata
- Download URL: DeeType-0.3-py3-none-any.whl
- Upload date:
- Size: 3.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.4.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c70196d0ff2bb458686f7bde2ef9ba90bb49157f8283199bf14f1b10bc8df52d |
|
MD5 | b02b948eddf89a793f028aac27029ea5 |
|
BLAKE2b-256 | 6845ff07413362762b01df41a6f41056a3bc346906037bf92ec0738a8aba76c8 |