Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/capi-nemoo/terminalshare
This project implements a simple file-sharing web server that allows users to upload and download files through a web interface. Users can access the server via a web browser and manage their shared files efficiently.
https://github.com/capi-nemoo/terminalshare
Last synced: about 1 month ago
JSON representation
This project implements a simple file-sharing web server that allows users to upload and download files through a web interface. Users can access the server via a web browser and manage their shared files efficiently.
- Host: GitHub
- URL: https://github.com/capi-nemoo/terminalshare
- Owner: Capi-nemoo
- Created: 2024-06-04T01:24:13.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-04T16:45:02.000Z (7 months ago)
- Last Synced: 2024-06-04T18:48:52.053Z (7 months ago)
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TerminalShare
```
TerminalShare/
├── src/
│ ├── client/ # Código cliente
│ │ ├── client.py
│ │ ├── config.py
│ │ └── ... (otros archivos del cliente)
│ ├── server/ # Códee servidor
│ │ ├── server.py
│ │ ├── config.py
│ │ └── ... (otros archivos del servidor)
│ ├── utils/ # Utilitarios comunes
│ │ ├── logger.py
│ │ └── ... (otros utilitarios)
│ └── common/ # Código cliente y servidor
│ ├── protocol.py
│ └── ... (otros archivos comunes)
├── tests/
│ ├── client/
│ ├── server/
│ └── common/
├── configs/
│ └── server_config.yaml
├── .gitignore
├── requirements.txt
├── README.md
└── docs/
├── setup.md
├── usage.md
└── api_reference.md