https://github.com/avidhanr/exasearch
Developed a user-friendly web application utilizing Streamlit, designed to facilitate seamless content searches on Wikipedia.
https://github.com/avidhanr/exasearch
exa-api python streamlit wikipedia
Last synced: about 1 month ago
JSON representation
Developed a user-friendly web application utilizing Streamlit, designed to facilitate seamless content searches on Wikipedia.
- Host: GitHub
- URL: https://github.com/avidhanr/exasearch
- Owner: AVidhanR
- Created: 2024-05-15T04:31:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-26T06:24:37.000Z (over 1 year ago)
- Last Synced: 2025-01-30T21:32:43.343Z (over 1 year ago)
- Topics: exa-api, python, streamlit, wikipedia
- Language: Python
- Homepage: https://exa-search-web.streamlit.app
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## ExaSearch WebApp
- I've developed a user-friendly web application utilizing Streamlit, designed to facilitate seamless content searches on Wikipedia. Leveraging the exa-api, users can access Wikipedia's vast repository of information directly through the app. Whether you're a student, researcher, or simply curious, this tool offers a convenient way to explore and discover knowledge.
- I used `exa_py` and `streamlit` packages in this project.
```txt
Directory structure:
└── avidhanr-exasearch/
├── README.md
├── requirements.txt
└── app/
├── navigation.py
└── pages/
├── about.py
├── exa_search.py
└── footer.py
```
- Get the `Exa API KEY` from [`here`](https://dashboard.exa.ai/api-keys)
- Checkout the cheatsheet to get a basic understanding of how to use `Exa API` from [`here`](https://docs.exa.ai/reference/cheat-sheet)
- Checkout the official `StreamLit` documentation from [`here`](https://docs.streamlit.io/get-started)
## How to run this project?
- Open the integrated terminal and run the following command to install the required packages:
```bash
pip install -r requirements.txt
```
- The `requirements.txt` file contains the list of packages used in this project.
- After installing the required packages, run the following command to start the Streamlit app:
```bash
streamlit run app/navigation.py
```
- The Streamlit app will open in the default web browser.
- The app contains the following pages:
- Home (Exa Search)
- About
- Visit the web app from [`here`](https://exa-search-web.streamlit.app/)
- Fork this `repo` and experiment on it.
- Project by [`AVidhanR`](https://linktr.ee/itsvidhanreddy)