Metadata-Version: 2.4
Name: scalableSearches
Version: 0.4.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

if __name__ == "__main__":
    main_folder_path = r"C:\\Users\\gprak\\Downloads"
    search_query = ["test","test1"]
    progress_bar = True
    results = searches(main_folder_path, search_query, progress_bar)
    pprint(results)
```

