-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<h1 align="center"> :construction: Python Server :snake: Em construção... :construction: </h1> | ||
<h1 align="center">:snake: Python Server UDP Protocol :snake: </h1> | ||
|
||
### Concluídos | ||
|
||
- [x] Criar um server Python | ||
- [x] Fazer o server retornar uma página Web | ||
- [x] Criar requisições GET | ||
- [ ] Criar requisições POST | ||
- [ ] Criar conexões entre cliente/servidor | ||
- [x] Criar um server Python UDP | ||
- [x] Criar um client Python | ||
- [x] Simular comunicação entre Server e Client com protocolo UDP | ||
|
||
### Como rodar o projeto | ||
|
||
$ cmd.exe | ||
$ cd C:\Users\nomeUsuário\diretorio_do_projeto\python-server | ||
$ py main.py | ||
$ py client.py | ||
|
||
- Abra os dois Scripts em janelas diferentes do seu terminal | ||
|
||
### Tecnologias | ||
- [Python](https://www.python.org/) | ||
- [Bootstrap](https://getbootstrap.com/) | ||
- [Python](https://www.python.org/) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,4 +24,4 @@ def connect(self): | |
|
||
if __name__ == '__main__': | ||
cn = Client() | ||
cn.connect() | ||
cn.connect() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,4 @@ | |
|
||
if __name__ == '__main__': | ||
sr = Server() | ||
sr.connect() | ||
sr.connect() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters