Metadata-Version: 2.1
Name: cfwp
Version: 0.0.1a1
Summary: A package for faster coding.
Home-page: https://github.com/private_repo/codefast
Author: R2FsCg
Author-email: r2fscg@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: colorlog (>=4.6.1)
Requires-Dist: lxml
Requires-Dist: smart-open
Requires-Dist: pillow
Requires-Dist: bs4
Requires-Dist: arrow
Requires-Dist: numpy
Requires-Dist: termcolor
Requires-Dist: pydub

A package for faster Python programming. 

## Usage
```python
import codefast as cf

js = cf.jsonread('json_file.json')
cf.pp(js) # == pprint.pprint(js)
```

## Install
`python3 -m pip install codefast`

Or, update to latest version with:

`python3 -m pip install codefast --upgrade`


