Skip to main content

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

[![Build Status](https://travis-ci.org/geowurster/str2type.svg?branch=master)](https://travis-ci.org/geowurster/str2type)

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.

>>> from str2type import str2type
>>> print(str2type("1.23"))
1.23

The user can also specify which JSON library to use for decoding should they know they will be encountering a lot of JSON, in which case a different library is probably more appropriate than this function.

>>> from str2type import str2type
>>> import ujson
>>> print(str2type('[0,1,2,3,4]', json_lib=ujson))
[0, 1, 2, 3, 4]

Alternatively:

>>> import str2type
>>> import ujson
>>> str2type.JSON = ujson
>>> print(str2type('FaLsE'))
False

The brunt of the decoding is handled by json, which can decode all supported types except for strings and None. If the user specifies a different JSON library it is still expected to be able to handle these types.

Installing

Via pip:

$ pip install str2type

From master branch

$ git clone https://github.com/geowurster/str2type $ pip install ./str2type/

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 $ pip install -e .

Test:

$ nosetests

–with-coverage –cover-package=str2type –cover-erase –cover-inclusive

Lint:

$ pep8 –max-line-length=120 str2type

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

str2type-0.1.1.tar.gz (4.0 kB view details)

Uploaded Source

File details

Details for the file str2type-0.1.1.tar.gz.

File metadata

  • Download URL: str2type-0.1.1.tar.gz
  • Upload date:
  • Size: 4.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for str2type-0.1.1.tar.gz
Algorithm Hash digest
SHA256 db0b2dae9c29cfefb7cfa59b95b37ef142e15de0a6178ec66875e499963c8a28
MD5 85bea273fa9bd86baf2abc3f95d957ef
BLAKE2b-256 1f71780ee124e8f6f213fbbb856e0bc9ff72ac7b9fe627edd1ff656d3de26731

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page