Metadata-Version: 2.1
Name: localretriever
Version: 0.0.2
Summary: A simple Python package
Home-page: https://github.com/GovML/retriever.git
Author: Sidharth Kathpal
Author-email: kathpal.sid@gmail.com
Project-URL: repository, https://github.com/GovML/retriever.git
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
License-File: LICENSE

# Retriever


## Install 

Recommended to use a virtual environment using venv - 

```bash
$ python -m venv new_env
$ source new_env/bin/activate
$ pip install -e .
```

## Search server and frontend run

```bash
>>> from retriever_search import search_server
>>> from retriever_search import frontend_app as fp
>>> fp.run_frontend()
>>> search_server.run_search_server('path_to_folder', 'save_json_path')
```
