├── .gitignore ├── .gitmodules ├── App ├── .gitignore ├── __init__.py ├── config.py ├── fbpage.py ├── messenger.py ├── nltk.txt ├── server.py ├── sources.csv ├── stopwords │ └── stopwords-nlp-en.txt ├── subscribe.py ├── templates │ └── authorize.html └── version.txt ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Scrapper ├── indian_scraper_plug.py ├── nltk.txt ├── sources.csv ├── stopwords-hi.txt └── subscribe.py ├── assets ├── Briefly.png ├── briefly-web.gif ├── show-news.gif ├── sync-sub.gif └── winners.png └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/.gitmodules -------------------------------------------------------------------------------- /App/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/.gitignore -------------------------------------------------------------------------------- /App/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /App/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/config.py -------------------------------------------------------------------------------- /App/fbpage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/fbpage.py -------------------------------------------------------------------------------- /App/messenger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/messenger.py -------------------------------------------------------------------------------- /App/nltk.txt: -------------------------------------------------------------------------------- 1 | punkt 2 | -------------------------------------------------------------------------------- /App/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/server.py -------------------------------------------------------------------------------- /App/sources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/sources.csv -------------------------------------------------------------------------------- /App/stopwords/stopwords-nlp-en.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/stopwords/stopwords-nlp-en.txt -------------------------------------------------------------------------------- /App/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/subscribe.py -------------------------------------------------------------------------------- /App/templates/authorize.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/App/templates/authorize.html -------------------------------------------------------------------------------- /App/version.txt: -------------------------------------------------------------------------------- 1 | 1.0.1 2 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/README.md -------------------------------------------------------------------------------- /Scrapper/indian_scraper_plug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/Scrapper/indian_scraper_plug.py -------------------------------------------------------------------------------- /Scrapper/nltk.txt: -------------------------------------------------------------------------------- 1 | punkt 2 | -------------------------------------------------------------------------------- /Scrapper/sources.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/Scrapper/sources.csv -------------------------------------------------------------------------------- /Scrapper/stopwords-hi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/Scrapper/stopwords-hi.txt -------------------------------------------------------------------------------- /Scrapper/subscribe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/Scrapper/subscribe.py -------------------------------------------------------------------------------- /assets/Briefly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/assets/Briefly.png -------------------------------------------------------------------------------- /assets/briefly-web.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/assets/briefly-web.gif -------------------------------------------------------------------------------- /assets/show-news.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/assets/show-news.gif -------------------------------------------------------------------------------- /assets/sync-sub.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/assets/sync-sub.gif -------------------------------------------------------------------------------- /assets/winners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/assets/winners.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/team-anything/Briefly/HEAD/requirements.txt --------------------------------------------------------------------------------