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) [![Coverage Status](https://coveralls.io/repos/geowurster/str2type/badge.svg?branch=master)](https://coveralls.io/r/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. The primary use-case of this function is automatically parsing user-input from the commandline into Python types. Argument parsers usually handle this no problem but if a flag can take multiple types then str2type() can serve as the decoder.

>>> 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"

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

Coverage:

$ nosetests –with-coverage

Lint:

$ pep8 –max-line-length=120 str2type.py

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.3.0.tar.gz (5.3 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for str2type-0.3.0.tar.gz
Algorithm Hash digest
SHA256 aac9d55fa9aba06c01765d48f6423d7f5b505fc55ce986903dbbe1924d013242
MD5 2551b55c4c225597adea98eafae054ae
BLAKE2b-256 24c00ff9fc1fbc03c3ff2f09ba1a76ff2e55bdaabd7ad255c164196043a6aba7

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