Metadata-Version: 2.4
Name: scalableSearches
Version: 0.2.0
Summary: My Python package related to scaling searches
Author-email: Prakhar Gandhi <gprakhar0@gmail.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: mpire

# scalableSearches


Python package related to scaling searches

```python
import scalableSearches 
from scalableSearches import search
from pprint import pprint

folder_path = r"C:\Users\prakhar.a.gandhi\Downloads"
search_query = 'Exit Template'
progress_bar = True
files = search.searches(folder_path,search_query,progress_bar)
pprint(files)
```

