Read Project Report
Explore the docs »
View Demo
Table of Contents
Our goal is to develop a user-friendly website that will have a user profile and dashboard.
It will also enable users to input a list of news and social media sources, topics, keywords, locations, or industries to generate personalized newsletters and social media content using advanced AI techniques such as Natural Language Processing (NLP).
The content will be formatted for various platforms, including:
- Email newsletters
- Twitter posts
- LinkedIn updates
- Instagram captions
This ensures both relevance and platform compatibility. Additionally, users will receive automated notifications at intervals they specify.
- Save time by automating content aggregation, summarization, and delivery.
- Provide users with highly relevant and tailored content.
- Offer Software-as-a-Service (SaaS) to enable seamless interaction and personalized content delivery.
- Share generated content with other media platforms.
Use the BLANK_README.md to get started.
This section should list any major frameworks/libraries used to bootstrap your project. Leave any add-ons/plugins for the acknowledgements section. Here are a few examples.
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
- Use Git Clone to create a local repo
git clone https://github.com/iaminhri/COSC-4P02.git- Change git remote url to avoid accidental pushes to base project. For more git operation refer to this [Documentation](resources/GitHub Commands.pdf)
git remote set-url origin github_username/repo_name
git remote -v # confirm the changesFirst Install Virtual Environment, makes life easier. 3. Python Virtual Environment for MAC or Linux, For windows use VSCode virtual environment
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip- Install The requirements file
pip install -r requirements.txt- Some Django Application Useful Commands
- Shows all subcommands available
django-admin
- Starts a new project
django-admin startproject file_name
- To run the project
python manage.py runserver
- Change the port to access the localhost website
python manage.py runserver 1313
- Creates an App functionality
python manage.py startapp app_name
Use this space to show useful examples of how a project can be used. Additional screenshots, code examples and demos work well in this space. You may also link to more resources.
For more examples, please refer to the Documentation
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the Unlicense License. See LICENSE.txt for more information.
Your Name - Hridoy Rahman - [email protected]
Project Link: https://github.com/iaminhri/COSC-4P02