Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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