Convert a string representation of an int, float, None, True, False, or JSON to its native type. For None, True, and False, case is irrelevant.
Project description
Convert the string representation of a Python type to its native type.
Why?
When building commandline utilities the syntax --arg key=val is useful, especially when key and val will be used as Class(key=val) internally. This module was built specifically to be used with the CLI framework click, and the included extensions play nicely, but the str2type.str2type() function can be used elsewhere.
Examples
See the examples directory for click integration examples. Everything else is primarily handled by a single function:
>>> from str2type import str2type
>>> print(str2type("1.23"))
1.23
>>> print(str2type("1.")
1.0
>>> print(str2type(".2"))
0.2
>>> print(str2type("None"))
None
>>> print(str2type('String'))
'String'
Supported Types
Only the standard builtin Python types plus JSON strings are supported:
int
float
None
True
False
JSON
Installing
Via pip:
$ pip install str2type
From master branch:
$ git clone https://github.com/geowurster/str2type
$ cd str2type
$ pip install .
Developing
Install:
$ pip install virtualenv
$ git clone https://github.com/geowurster/str2type
$ cd str2type
$ virtualenv venv
$ source venv/bin/activate
$ pip install -r requirements-dev.txt -e .
$ nosetests --with-coverage
$ pep8 --max-line-length=95 str2type
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
File details
Details for the file str2type-0.4.1.tar.gz
.
File metadata
- Download URL: str2type-0.4.1.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0682f079c225ff88006b12fa37f64e121c2b9e2d538a4611e4ef4a3ef982c05 |
|
MD5 | 8f02c42ca866161c54b498779411384c |
|
BLAKE2b-256 | 3028cf1f21ab9e42161fa61298b39ab34b4c7882e680424739484a1380b61d5f |