├── .gitignore ├── News-Aggregator ├── NewsAggregator │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── settings.cpython-311.pyc │ │ ├── settings.cpython-38.pyc │ │ ├── urls.cpython-311.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── wsgi.cpython-311.pyc │ │ └── wsgi.cpython-38.pyc │ ├── asgi.py │ ├── settings.py │ ├── urls.py │ └── wsgi.py ├── db.sqlite3 ├── manage.py ├── news │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-311.pyc │ │ ├── __init__.cpython-38.pyc │ │ ├── admin.cpython-311.pyc │ │ ├── admin.cpython-38.pyc │ │ ├── apps.cpython-311.pyc │ │ ├── models.cpython-311.pyc │ │ ├── models.cpython-38.pyc │ │ ├── urls.cpython-311.pyc │ │ ├── urls.cpython-38.pyc │ │ ├── views.cpython-311.pyc │ │ └── views.cpython-38.pyc │ ├── admin.py │ ├── apps.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── __init__.py │ │ └── __pycache__ │ │ │ ├── 0001_initial.cpython-311.pyc │ │ │ ├── 0001_initial.cpython-38.pyc │ │ │ ├── __init__.cpython-311.pyc │ │ │ └── __init__.cpython-38.pyc │ ├── models.py │ ├── templates │ │ └── news │ │ │ └── home.html │ ├── tests.py │ ├── urls.py │ └── views.py └── requirements.txt ├── README.md └── screenshots ├── Options_select.PNG ├── breaking_light_mode.PNG ├── breaking_night_mode.PNG ├── copy_to_clipboard.PNG ├── entertainment_light_mode.PNG ├── entertainment_night_mode.PNG ├── facebook_share.PNG ├── latest_light_mode.PNG ├── latest_night_mode.PNG ├── opinion_light_mode.PNG ├── opinion_night_mode.PNG ├── polititcs_light_mode.PNG ├── polititcs_night_mode.PNG ├── sports_light_mode.PNG ├── sports_night_mode.PNG ├── ss.PNG ├── ss1.PNG ├── telegram_share.PNG └── whatsapp_share.PNG /.gitignore: -------------------------------------------------------------------------------- 1 | *.db 2 | *.sqlite3 3 | -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/settings.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/settings.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/asgi.py -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/settings.py -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/urls.py -------------------------------------------------------------------------------- /News-Aggregator/NewsAggregator/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/NewsAggregator/wsgi.py -------------------------------------------------------------------------------- /News-Aggregator/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/db.sqlite3 -------------------------------------------------------------------------------- /News-Aggregator/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/manage.py -------------------------------------------------------------------------------- /News-Aggregator/news/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/admin.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/admin.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/apps.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/apps.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/models.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/models.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/urls.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/urls.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/views.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/views.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/admin.py -------------------------------------------------------------------------------- /News-Aggregator/news/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/apps.py -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/migrations/0001_initial.py -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/__pycache__/__init__.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/migrations/__pycache__/__init__.cpython-311.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /News-Aggregator/news/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/models.py -------------------------------------------------------------------------------- /News-Aggregator/news/templates/news/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/templates/news/home.html -------------------------------------------------------------------------------- /News-Aggregator/news/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/tests.py -------------------------------------------------------------------------------- /News-Aggregator/news/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/urls.py -------------------------------------------------------------------------------- /News-Aggregator/news/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/news/views.py -------------------------------------------------------------------------------- /News-Aggregator/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/News-Aggregator/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/Options_select.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/Options_select.PNG -------------------------------------------------------------------------------- /screenshots/breaking_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/breaking_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/breaking_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/breaking_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/copy_to_clipboard.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/copy_to_clipboard.PNG -------------------------------------------------------------------------------- /screenshots/entertainment_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/entertainment_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/entertainment_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/entertainment_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/facebook_share.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/facebook_share.PNG -------------------------------------------------------------------------------- /screenshots/latest_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/latest_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/latest_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/latest_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/opinion_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/opinion_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/opinion_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/opinion_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/polititcs_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/polititcs_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/polititcs_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/polititcs_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/sports_light_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/sports_light_mode.PNG -------------------------------------------------------------------------------- /screenshots/sports_night_mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/sports_night_mode.PNG -------------------------------------------------------------------------------- /screenshots/ss.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/ss.PNG -------------------------------------------------------------------------------- /screenshots/ss1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/ss1.PNG -------------------------------------------------------------------------------- /screenshots/telegram_share.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/telegram_share.PNG -------------------------------------------------------------------------------- /screenshots/whatsapp_share.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sakship31/News-Aggregator/HEAD/screenshots/whatsapp_share.PNG --------------------------------------------------------------------------------