├── .gitignore ├── AUTHORS.txt ├── CHANGES.rst ├── README.rst ├── lib └── photofs │ ├── __init__.py │ ├── __main__.py │ ├── _image.py │ ├── _source.py │ ├── _tag.py │ ├── _util.py │ └── sources │ ├── __init__.py │ └── shotwell.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | /dist/ 3 | *.pyc 4 | *.egg* 5 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- 1 | Moses Palmér 2 | Thomas Fenzl 3 | -------------------------------------------------------------------------------- /CHANGES.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/CHANGES.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/README.rst -------------------------------------------------------------------------------- /lib/photofs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/__init__.py -------------------------------------------------------------------------------- /lib/photofs/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/__main__.py -------------------------------------------------------------------------------- /lib/photofs/_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/_image.py -------------------------------------------------------------------------------- /lib/photofs/_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/_source.py -------------------------------------------------------------------------------- /lib/photofs/_tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/_tag.py -------------------------------------------------------------------------------- /lib/photofs/_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/_util.py -------------------------------------------------------------------------------- /lib/photofs/sources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/sources/__init__.py -------------------------------------------------------------------------------- /lib/photofs/sources/shotwell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/lib/photofs/sources/shotwell.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moses-palmer/photofs/HEAD/setup.py --------------------------------------------------------------------------------