Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iv4n-ga6l/nlp-chatbot-api
A NLP project leveraging NLTK for extracting weather data.
https://github.com/iv4n-ga6l/nlp-chatbot-api
flask nlp-api nlp-chatbot nltk python spacy transformers
Last synced: about 1 month ago
JSON representation
A NLP project leveraging NLTK for extracting weather data.
- Host: GitHub
- URL: https://github.com/iv4n-ga6l/nlp-chatbot-api
- Owner: iv4n-ga6l
- Created: 2024-06-21T12:56:03.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-10-29T11:18:24.000Z (about 2 months ago)
- Last Synced: 2024-11-24T08:26:58.503Z (about 1 month ago)
- Topics: flask, nlp-api, nlp-chatbot, nltk, python, spacy, transformers
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## NLP weather Chatbot API
A NLP project leveraging NLTK for extracting weather data.
Accurate weather data is retrieved from openweathermap api.### Requirements
````
pip install -r requirements
````````
python -m spacy download en_core_web_sm
````Set up environment variables:
- Create a `.env` file
- Add your OpenWeatherMap API key:
```
OPENWEATHERMAP_API_KEY=your_api_key_here
```You can get your API KEY here : https://home.openweathermap.org/api_keys
### Run
````
py app.py
````