This is a peer to peer console chat application. The clients are able to connect to the server via TCP socket connections and obtain the list of available clients. Afterwards, the client can connect to one other client on the list and exchange text messages directly to one another.
- run
pip install .
from the root of the project - Run
p2p_demo run server
- Run
p2p_demo run client
(from a different terminal) - (Optional) Continue adding as many clients as you need by running the command above.
- Follow the prompts.
- (Optional) To get help about
p2p_demo
, runp2p_demo --help
- (Optional) To get help about the main
run
functionality, runp2p_demo run --help
- Ability to exchange messages without further help from the server
- Implement a GUI
- Connect users outside the localhost via the Internet
- Test the package on Windows (tested only on Linux)
- Implement tests
- Python >3.7