Metadata-Version: 2.1
Name: fixpath
Version: 0.1.0
Summary: fix incorrect user-path-inputs
Home-page: https://github.com/PlayerG9/FixPath.py
Author: PlayerG9
License: UNKNOWN
Project-URL: Author Github, https://github.com/PlayerG9
Project-URL: Bug Tracker, https://github.com/PlayerG9/FixPath.py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# FixPath.py
 fix incorrect user-path-inputs


# Installation
`pip install fixpath`


# Usage
```python
from fixpath import findpath

path = input("Enter path: ")
# path = 'scr/fipath'
path = findpath(path)
# path = 'src/fixpath'
```
- `findpath('REAMDE.md')` -> `README.md`
- `findpath('LIECNSE')` -> `LICENSE`

# Comment
tested in windows but should also work under linux


