https://github.com/simplisoni/twitter-clone
A simple Twitter-like web application built using Flask and MongoDB.
https://github.com/simplisoni/twitter-clone
beginner-project bootstrap crud css developer-tools flask-auth flask-webapp fullstack html javascript microblog open-source python social-network twitter-clone web-application web-development
Last synced: 2 months ago
JSON representation
A simple Twitter-like web application built using Flask and MongoDB.
- Host: GitHub
- URL: https://github.com/simplisoni/twitter-clone
- Owner: SimpliSoni
- License: mit
- Created: 2025-06-04T16:33:07.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-06-04T17:02:12.000Z (7 months ago)
- Last Synced: 2025-06-04T21:58:26.276Z (7 months ago)
- Topics: beginner-project, bootstrap, crud, css, developer-tools, flask-auth, flask-webapp, fullstack, html, javascript, microblog, open-source, python, social-network, twitter-clone, web-application, web-development
- Language: HTML
- Size: 19.5 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Twitter Clone
A simple Twitter-like web application built using Flask and MongoDB.

## Tech Stack
- **Frontend:** HTML, CSS, JavaScript, Bootstrap
- **Backend:** Flask
- **Database:** MongoDB
## Project Structure
```
/twitter-clone
├── app.py
├── README.md
├── /templates
│ ├── base.html
│ ├── index.html
│ ├── login.html
│ ├── profile.html
│ └── register.html
└── /static
├── /css
│ └── styles.css
└── /js
└── scripts.js
```
## Features
✅ **User Authentication** – Signup & Login using Flask sessions
✅ **Create Tweets** – Users can post short messages
✅ **Edit Tweets** – Users can now edit messages
✅ **View Tweets** – Display all tweets from users
✅ **Delete Tweets** – Users can remove their own tweets
✅ **Like Tweets** – Simple like feature using MongoDB
✅ **Follow Users** – Basic follow/unfollow functionality
## Installation
1. **Clone the Repository**
```sh
git clone https://github.com/yourusername/twitter_clone.git
cd twitter_clone
```
2. **Install Dependencies**
```sh
pip install flask pymongo
```
3. **Run the Application**
```sh
python app.py
```
4. **Open in Browser**
Visit `http://127.0.0.1:5000` to access the application.
## Contributing
Feel free to submit issues or pull requests to improve this project!
## License
This project is open-source and available under the MIT License