Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ayushsubedi/newspaper
a project to come back to later. statistical literacy
https://github.com/ayushsubedi/newspaper
Last synced: about 2 months ago
JSON representation
a project to come back to later. statistical literacy
- Host: GitHub
- URL: https://github.com/ayushsubedi/newspaper
- Owner: ayushsubedi
- Created: 2019-12-10T12:23:37.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T21:18:11.000Z (over 1 year ago)
- Last Synced: 2023-05-31T04:31:16.535Z (over 1 year ago)
- Language: CSS
- Homepage:
- Size: 32.1 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Readme
Installation and Configuration1. Create a directory named newspaper.
mkdir newspaper
2. Get in the directory
cd newspaper
3. Clone this repo.
git clone {repo_url}
4. Create a virtual environment inside the folder
python -m venv env
5. Activate the virtual environment
. env/bin/activate [MAC/LINUX]
. env/scripts/activate [Windows]
6. Install all dependencies
pip install -r “requirements.txt”
7. Run flask
export FLASK_APP=”run.py”
flask run
8. Sometimes, the project may not run. This is because nltk library is missing. To install it open terminal
import nltk
nltk.download()