diff options
author | Yves Fischer <yvesf-git@xapek.org> | 2015-11-24 23:24:31 +0100 |
---|---|---|
committer | Yves Fischer <yvesf-git@xapek.org> | 2015-11-24 23:24:31 +0100 |
commit | 4fb7d2e1c0e9e80038148163650f47e69270e80a (patch) | |
tree | 8848b94169945884985b421cc0a5aab133885ab3 /README.md | |
parent | e420859e28e950e2761829612816145b6e1232e9 (diff) | |
download | fuse-httpfs-4fb7d2e1c0e9e80038148163650f47e69270e80a.tar.gz fuse-httpfs-4fb7d2e1c0e9e80038148163650f47e69270e80a.zip |
Cleanup and solve trailing '/' problem with redirects
* Format README as markdown. Mention dependencies
* Fix 'timeout'
* Run autopep8 on all python sources
* Fix unittests
* For HEAD requests explicitly allow to follow redirects.
This solves the problem if you request: https://server/dir
and then the server wants to redirect you to https://server/dir/
This should solve #1
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..703c58e --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +# fuse-httpfs + +python-requests based fuse read-only filesystem + +## Usage + +python3 dependencies: + +* requests +* fusepy + +### Mount + +* Create a directory to be used as a mountpoint. +* run with --help + +### Using + +* access the mountpoint +* open directory for schema (http/https) +* open an (maybe non-existing) directoring with the desired hostname + + +Remote machines configure in ~/.netrc will appear automatically. python-requests will pick-up the authentication infos from .netrc + + +## Run the tests + + python3.4 -m unittest test |