About | Features | Technologies | Requirements | Starting | Demo | Contributing | Author
This project is a real-time chat app built in Python using the Flet library, allowing instant communication between connected users. Ideal for small chat rooms or testing WebSocket applications.
✔️ Enter a username and send real-time messages;
✔️ Differentiates user’s own messages;
✔️ Alerts when new users join.
The following tools were used in this project:
Before starting, you need to have Python installed.
# Clone this project
$ git clone https://github.com/tamirespatrocinio/chat-python
# Access the project folder
$ cd chat-python
# Install dependencies
$ pip install flet
# Run the project
$ python main.py
# The server will initialize at <http://localhost:3000>
Watch the demo of the chat in action below:
demo.mp4
Contributions are welcome! To contribute to this project, please follow these steps:
- Fork the repository.
- Create a new branch: git checkout -b feature/your-feature.
- Make your changes and commit them: git commit -m 'Add your feature'.
- Push to the branch: git push origin feature/your-feature. Open a pull request.