Metadata-Version: 2.4
Name: PyToTXT
Version: 0.1.0
Summary: A TXT File Writer.
Author-email: Cosmic Union <cosmicunion2@gmail.com>
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3

PyToTXT is a file writer that can save files to any path you want.
# Installation
```bash
pip install PyToTXT
```
# Usage
```python
import PyToTXT

PyToTXT.writeTXT("This is a text file")
PyToTXT.save("/your/home/path/file.txt")
```

