https://github.com/sigmanificient/pytchat
A open-source python tchat for basic text communications
https://github.com/sigmanificient/pytchat
pygame pygame-application python python-socket python-socket-chat python-socket-client python-socket-server socket tchat tchat-client
Last synced: 9 months ago
JSON representation
A open-source python tchat for basic text communications
- Host: GitHub
- URL: https://github.com/sigmanificient/pytchat
- Owner: Sigmanificient
- License: mit
- Created: 2021-03-28T07:09:58.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-10-08T08:51:23.000Z (about 3 years ago)
- Last Synced: 2025-03-07T14:11:57.872Z (10 months ago)
- Topics: pygame, pygame-application, python, python-socket, python-socket-chat, python-socket-client, python-socket-server, socket, tchat, tchat-client
- Language: Vue
- Homepage:
- Size: 416 KB
- Stars: 9
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Tchat
[](https://scrutinizer-ci.com/g/Sigmanificient/PyTchat/?branch=main)






### A simple texts communication platform using pygame and sockets.
## How to install ?
*You need a python 3.8.6 server with at least one opened port*
- Download the source code from this repo.
### Server
- Run the Makefile main target.
```bash
make server
```
### Or
```bash
cd server
```
- Install the required python packages
```bash
python -m pip install requirements.txt
```
- run the server using the `bat` file, the `sh` file or this command
below:
```bash
python -m pytchat [port]
```
### Client
- Make sure to have `node.js` installed on your computer.
- Download the source code from this repo.
- Run the client using
```sh
make client
```
#### Or
```bash
cd client
```
- Install the required dependencies
```sh
npm install
```
- Run the client using
```sh
npm serve
```