├── .gitignore ├── .venv ├── bin │ ├── Activate.ps1 │ ├── activate │ ├── activate.csh │ ├── activate.fish │ ├── pip │ ├── pip3 │ ├── python │ └── python3 ├── lib64 └── pyvenv.cfg ├── LICENSE ├── README.md ├── app.py ├── example.env ├── main.py ├── models.py ├── requirements.txt ├── searches.db └── src ├── __init__.py ├── models.py ├── models ├── __init__.py └── search.py ├── services ├── __init__.py ├── analytics.py ├── google_service.py ├── search_providers.py └── search_service.py ├── static ├── streamlit_styles.css └── styles.css └── ui └── streamlit_app.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.venv/bin/Activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/Activate.ps1 -------------------------------------------------------------------------------- /.venv/bin/activate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/activate -------------------------------------------------------------------------------- /.venv/bin/activate.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/activate.csh -------------------------------------------------------------------------------- /.venv/bin/activate.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/activate.fish -------------------------------------------------------------------------------- /.venv/bin/pip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/pip -------------------------------------------------------------------------------- /.venv/bin/pip3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/bin/pip3 -------------------------------------------------------------------------------- /.venv/bin/python: -------------------------------------------------------------------------------- 1 | /home/pablorm/.pyenv/versions/3.11.10/bin/python -------------------------------------------------------------------------------- /.venv/bin/python3: -------------------------------------------------------------------------------- 1 | python -------------------------------------------------------------------------------- /.venv/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /.venv/pyvenv.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/.venv/pyvenv.cfg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/app.py -------------------------------------------------------------------------------- /example.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/example.env -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/main.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/models.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /searches.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/searches.db -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/__init__.py -------------------------------------------------------------------------------- /src/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/models.py -------------------------------------------------------------------------------- /src/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/models/__init__.py -------------------------------------------------------------------------------- /src/models/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/models/search.py -------------------------------------------------------------------------------- /src/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/services/__init__.py -------------------------------------------------------------------------------- /src/services/analytics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/services/analytics.py -------------------------------------------------------------------------------- /src/services/google_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/services/google_service.py -------------------------------------------------------------------------------- /src/services/search_providers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/services/search_providers.py -------------------------------------------------------------------------------- /src/services/search_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/services/search_service.py -------------------------------------------------------------------------------- /src/static/streamlit_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/static/streamlit_styles.css -------------------------------------------------------------------------------- /src/static/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/static/styles.css -------------------------------------------------------------------------------- /src/ui/streamlit_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/murapadev/Populpy/HEAD/src/ui/streamlit_app.py --------------------------------------------------------------------------------