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

https://github.com/keyan/flopbox

File transfer over HTTP, just flop your files over
https://github.com/keyan/flopbox

Last synced: about 1 year ago
JSON representation

File transfer over HTTP, just flop your files over

Awesome Lists containing this project

README

          

# flopbox
A simplified reconstruction of dropbox which uses HTTP to sync files between a client folder and a webserver.

### Requirements
- [Flask]
- [requests]

### Usage
1. Run the server on a remote hosting service or another machine using a publicly accessible IP address:

```python server.py```
2. Run the client in a folder you wish to be synced:

```python client.py ```
3. Any changes to files in the directory running client.py will be reflected on the server.

### Under Construction
1. A web interface for accessing files on the server is still being developed.

[Flask]:http://flask.pocoo.org/
[requests]: http://docs.python-requests.org/en/latest/#