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
- Host: GitHub
- URL: https://github.com/keyan/flopbox
- Owner: keyan
- License: mit
- Created: 2015-02-20T21:03:05.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-04T16:52:50.000Z (about 11 years ago)
- Last Synced: 2025-02-09T00:43:18.659Z (over 1 year ago)
- Language: Python
- Homepage:
- Size: 710 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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/#