public
Description: A Fuse filesystem for your friends' files on Pownce
Homepage: http://rcrowley.org/2008/03/22/powncefs/
Clone URL: git://github.com/rcrowley/powncefs.git
name age message
file .gitignore Mon May 26 22:32:51 -0700 2008 Ignoring *.pyc files [rcrowley]
file README Tue Jun 03 18:31:49 -0700 2008 Few README tweaks [rcrowley]
file api.py Fri May 30 19:12:16 -0700 2008 Stopping point in case this execvp crap doesn't... [rcrowley]
file powncefs.py Tue Jun 03 01:06:25 -0700 2008 Quick removing of debug info [rcrowley]
README
NAME
  powncefs -- A Fuse filesystem for your friends' files on Pownce

SYNOPSIS

  Linux:

  ./powncefs.py <mountpoint>
  ls -l <mountpoint>
  fusermount -u <mountpoint>

  Mac:

  ./powncefs.py <mountpoint>
  ls -l <mountpoint>
  umount python2.5@fuse0

DESCRIPTION
  Creates a directory for each of your friends on Pownce containing
  all of the files they've uploaded to the site.

DEPENDENCIES
  The short list:
    FUSE or Fuse or fuse, the Filesystem in USEr space
    Leah's OAuth Python library

  Verbositized:

    Linux (Ubuntu, at least):

    $ sudo apt-get install python-fuse python-json

    $ cd /usr/lib/python2.5/site-packages/
    $ sudo svn co http://oauth.googlecode.com/svn/code/python/oauth

    Mac OS X Leopard:

    Install Xcode from http://developer.apple.com/tools/download/
    Install MacPorts 1.6 from http://www.macports.org/install.php
    $ export PATH="/opt/local/bin:~/bin:$PATH"
    $ export MANPATH="/opt/local/share/man:$MANPATH"
    $ sudo port selfupdate

    $ sudo port install macfuse fuse-bindings-python25
    This will fail, so edit the fuse-bindings-python and
    fuse-bindings-python25 Portfiles, replacing dependencies on fusefs
    and libfuse with dependencies on macfuse
    $ sudo port install macfuse fuse-bindings-python25

    $ sudo port install py25-hashlib
    $ cd /opt/local/lib/python2.5/site-packages/
    $ sudo port install wget
    $ sudo wget \
      http://internap.dl.sourceforge.net/sourceforge/json-py/json-py-3_4.zip
    $ sudo unzip json-py-3_4.zip \*.py
    $ sudo rm json-py-3_4.zip

    $ cd /opt/local/lib/python2.5/site-packages/
    $ sudo svn co http://oauth.googlecode.com/svn/code/python/oauth

VERSION
  0.2

DATE
  2008-06-03

AUTHOR
  Richard Crowley <r@rcrowley.org>

SEE ALSO
  <http://rcrowley.org/2008/03/22/powncefs/>
  <http://randomfoo.net/blog/id/4158>

LICENSE
  This work is licensed under a Creative Commons
  Attribution-Noncommercial-Share Alike 3.0 Unported License
  <http://creativecommons.org/licenses/by-nc-sa/3.0/>