PyconChat
PyconChat copied to clipboard
A Python console chat application featuring group conversations, file sharing and offline messaging.
PyConChat
Python Console Chat - A Python chat application featuring group conversations, file sharing and offline messaging.
Requirements
- Python 3
Instructions (Client)
- Open a terminal window in the directory containing client.py and run the following command:
python client.py localhost 8000
- Replace
localhostwith your IP and8000with a TCP port number of your choice. - A prompt to enter a username will appear. Enter a username and press enter.
- Next, a prompt to enter a group name will appear. Enter a group name and press enter.
- If a group with the specified name does not exist, a new group is automatically created with the current user as admin. Otherwise, a join request is sent to the current group admin.
- Type anything to send a message or use the following commands:
| Command | Behaviour |
|---|---|
| /1 | View pending join requests** |
| /2 | Approve pending join requests** |
| /3 | Disconnect |
| /4 | View all group members |
| /5 | View online group members |
| /6 | Transfer adminship** |
| /7 | View group admin |
| /8 | Kick member** |
| /9 | Send a file to group |
| ** = Admin only action |
Instructions (Server)
- Open a terminal window in the directory containing server.py and run the following command:
python server.py localhost 8000
- Replace
localhostwith your IP and8000with a TCP port number of your choice. - The server console will display logs for:
- New group creation
- User connection
- User disconnection
- User kick
- Admin transfer
- Join request
- Join request approval
- File transfer
Features
- File sharing
- View online group members
- View all group members
- Transfer admin privilege
- Kick members
- View group admin
- If a user enters a group name which does not exist, a new group with the user as admin is automatically created.
Upcoming
- Offline Messages
- Password authentication