An open API service indexing awesome lists of open source software.

https://github.com/havocesp/typext

Enhanced Python builtin types
https://github.com/havocesp/typext

builtin extension library module python types

Last synced: about 1 year ago
JSON representation

Enhanced Python builtin types

Awesome Lists containing this project

README

          

# Typext
New methods for some builtin types like int, str, dict, list, ...

# Description
This module adds some useful methods to builtin types.

Thanks to https://github.com/clarete/forbiddenfruit for make this possible.

## Reqirements
* **frobiddenfruit**
* **py-term**
* **requests**

## Usage
```python
from typext import install

install()

# conversion
a = 100
a.cstr() # '100'

# iterables
l = [1, 2, 3]
l.empty() # False

```