Table of Contents
TheGroundFloor™ is aimed towards creating a fast, secure, lightweight CLI for texting your friends. No more Mr. Zuckerberg stealing your data. The project makes use of multi-threading and PostgreSQL to send and receive messages from 2 clients.
- Login/Create user (Supporting hashing of passwords)
- Notifications for friend requests and unread messages
- Sending friend requests, accepting/declining friend requests
- Removing friends
- Starting chatrooms (Supporting AES Encryption, can only send messages to your friends)
- Plays a sound upon receiving a message
- Changing default settings (Number of messages displayed upon starting chat room, etc.)
- Strong error logging to help with future debugging
- Python
- PostgreSQL
- Use the
log.sql
file in the directory get the commands through which you can create your own database. - You can host the database on a platform like bit.io.
- After hosting the database, Make a
filekeys.py
file in the directory and add the following lines:
postgresqluri = "<YOUR POSTGRESQL DATABASE URI>"
referralkey = "<YOUR REFERRAL KEY>"
encryptkey = b"<YOUR ENCRYPTION KEY>"
iv = b"<YOUR IV KEY>"
- The "encryptkey" and "iv" keys are used to encrypt and decrypt the messages and MUST be 16 bytes long.
- Voila! You can now text your friends using this CLI. Just send the
main.py
file to your friends or you can convert it to a.exe
file and send it as an application!
Go to the directory where you downloaded the project and run the following command in the terminal:
pip install -r requirements.txt
There's no instructions, just run main.py
in your terminal and follow the instructions on the screen!
- Allow sending images and audio files to your friends.
- Make the UI more friendly and add color.
- Have the notifications autoupdate.
- Implement sending messages using websockets.
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 MIT License. See LICENSE.txt
for more information.
Pratyush Shah - Email, LinkedIn
Project Link: https://github.com/pratyushvshah/TheGroundFloor