Metadata-Version: 2.1
Name: quickdone
Version: 0.0.7
Summary: A handy toolkit
Home-page: https://github.com/donequick/quickdone
Author: quickdone
Author-email: donequick@outlook.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

# Get Things Done Quickly!

### Usage
```bash
$ pip install quickdone
```
```python
>>> import quickdone as qd
```

fp() short for format_path(file_path)
```python
>>> qd.fp(r'C:\Users\user_name\Desktop\test.xlsx')
'C:/Users/user_name/Desktop/test.xlsx'
```

etc() short for excel_to_csv(input_path,output_path,input_enc,output_enc)
```python
>>> qd.etc(r'C:\Users\user_name\Desktop\test.xlsx',r'C:\Users\user_name\Desktop\test.csv')
```

### Packaging
```bash
$ python setup.py sdist bdist_wheel
$ twine upload dist/*
```

For more, see [python packaging-projects](https://packaging.python.org/tutorials/packaging-projects/)

