├── .env.example ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── dependabot.yml └── workflows │ ├── auto-assign.yaml │ ├── doc-gen.yml │ └── greeting.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Kolkata_Murder_case_2024-08-21.json ├── LICENSE ├── README.md ├── __init__.py ├── docs ├── Makefile ├── conf.py ├── index.rst ├── make.bat ├── modules.rst ├── src.dashboard.rst ├── src.ingestion.rst ├── src.preprocessing.rst ├── src.rst ├── src.sentiment_analysis.rst └── src.utils.rst ├── requirements.txt ├── src ├── __init__.py ├── dashboard │ ├── __init__.py │ ├── app.py │ └── requirements.txt ├── ingestion │ ├── __init__.py │ ├── fetch_articles.py │ ├── newsapi.py │ └── prawapi.py ├── pipeline.py ├── preprocessing │ ├── __init__.py │ ├── keyword_extraction.py │ └── summarization.py ├── sentiment_analysis │ ├── __init__.py │ ├── classify.py │ ├── sentiment_model.py │ └── wordcloud.py ├── styles.css └── utils │ ├── __init__.py │ ├── dbconnector.py │ └── logger.py └── wordcloud.png /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.env.example -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto-assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/workflows/auto-assign.yaml -------------------------------------------------------------------------------- /.github/workflows/doc-gen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/workflows/doc-gen.yml -------------------------------------------------------------------------------- /.github/workflows/greeting.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.github/workflows/greeting.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Kolkata_Murder_case_2024-08-21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/Kolkata_Murder_case_2024-08-21.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/modules.rst -------------------------------------------------------------------------------- /docs/src.dashboard.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.dashboard.rst -------------------------------------------------------------------------------- /docs/src.ingestion.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.ingestion.rst -------------------------------------------------------------------------------- /docs/src.preprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.preprocessing.rst -------------------------------------------------------------------------------- /docs/src.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.rst -------------------------------------------------------------------------------- /docs/src.sentiment_analysis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.sentiment_analysis.rst -------------------------------------------------------------------------------- /docs/src.utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/docs/src.utils.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dashboard/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dashboard/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/dashboard/app.py -------------------------------------------------------------------------------- /src/dashboard/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/dashboard/requirements.txt -------------------------------------------------------------------------------- /src/ingestion/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/ingestion/fetch_articles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/ingestion/fetch_articles.py -------------------------------------------------------------------------------- /src/ingestion/newsapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/ingestion/newsapi.py -------------------------------------------------------------------------------- /src/ingestion/prawapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/ingestion/prawapi.py -------------------------------------------------------------------------------- /src/pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/pipeline.py -------------------------------------------------------------------------------- /src/preprocessing/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/preprocessing/keyword_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/preprocessing/keyword_extraction.py -------------------------------------------------------------------------------- /src/preprocessing/summarization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/preprocessing/summarization.py -------------------------------------------------------------------------------- /src/sentiment_analysis/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/sentiment_analysis/classify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/sentiment_analysis/classify.py -------------------------------------------------------------------------------- /src/sentiment_analysis/sentiment_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/sentiment_analysis/sentiment_model.py -------------------------------------------------------------------------------- /src/sentiment_analysis/wordcloud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/sentiment_analysis/wordcloud.py -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/utils/dbconnector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/utils/dbconnector.py -------------------------------------------------------------------------------- /src/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/src/utils/logger.py -------------------------------------------------------------------------------- /wordcloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Multiverse-of-Projects/NewsAI/HEAD/wordcloud.png --------------------------------------------------------------------------------