Metadata-Version: 2.1
Name: PathFile
Version: 1.1.0
Summary: This package is PathFile
Home-page: https://github.com/ArtemMurashkin
Author: Murashkin Artem
Author-email: artemmurashkin02@mai.ru
License: UNKNOWN
Platform: any
Requires-Python: >=3.0
Description-Content-Type: text/markdown
Requires-Dist: pypiwin32 (>=223)


# Path File 1.1.0<a id="home"></a>
___
# Table of contents
1. [Installation](#Installation)
2. [How to use](#manual)
3. [Example](#Example)

# Installation<a id="Installation"></a>
___
pip install PathFile
# How to use<a id="manual"></a>
___
1. Add to your code: from PathFile.PathFile import find_files, find_files_dir
2. In order to insert find path to file use find_files('filename.exe/txt/jpg/doc/...')  

# Example<a id="Example"></a>

```python
from PathFile.PathFile import find_files, find_files_dir

a = find_files('cat.jpeg')
b = find_files_dir('path_to_dir', 'test.txt')
```
____
# Notes
For the library to work properly, must specify the file extension

[UP](#home)

