Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hroncok/dbox-fuse
Drobox mount via fuse
https://github.com/hroncok/dbox-fuse
Last synced: 15 days ago
JSON representation
Drobox mount via fuse
- Host: GitHub
- URL: https://github.com/hroncok/dbox-fuse
- Owner: hroncok
- License: other
- Created: 2013-07-08T20:04:35.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-07-26T01:10:30.000Z (over 11 years ago)
- Last Synced: 2024-12-13T20:47:59.131Z (20 days ago)
- Language: Python
- Size: 164 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
dbox-fuse - Mount Dropbox with fuse
===================================If you want to mount Dropbox and not to synchronize, this is for you.
Status
------This application is in very pre-alpha state. Use it at your own risk.
Currently, it only support browsing the file tree, reading some metadata and reading files. You cannot create or write anything yet.
Dependencies
------------* [python-dropbox](https://pypi.python.org/pypi/dropbox/1.6)
* [fuse-python](https://sourceforge.net/apps/mediawiki/fuse/?title=FUSE_Python_tutorial) and fuseSetup
-----Go to [Dropbox app console](https://www.dropbox.com/developers/apps) and create an app. Select type **Core** and permission type **Full Dropbox**. Name it somehow and click **Create app**. Save **App key** and **App secret** to file `_login.py` in the same folder as `dbox-fuse.py`.
APP_KEY = 'your_app_key_here'
APP_SECRET = 'your_app_secret_here'Create a directory, where you want to mount your Dropbox. Remember to do all actions as regular user, not as root!
$ mkdir foo
Mount your Dropbox:
$ ./dbox-fuse.py foo
Feel free to browse the folder. To umount , run:
$ fusermount -zu foo
If something went wrong, you can force umount as root:
# umount -l foo
License
-------The app itself uses ISC license. However, it also uses other's code, see COPYING.