relet / python-remotestorage

An implementation of remotestorage for Python, using a git backend.
MIT License
16 stars 1 forks source link

dulwich? #2

Open interstar opened 9 years ago

interstar commented 9 years ago

What's this dulwich dependency in this code?

relet commented 9 years ago

I chose to use any git repository as a backend for storage. Dulwich is a python git library.

interstar commented 9 years ago

Thanks.

Unfortunately, dulwich is failing to install for me with both easy_install and pip. :-(

relet commented 9 years ago

I guess it should be relatively easy to replace the functionality used with anything else, or an abstraction layer at this proof of concept stage. IIRC I never used anything but reading and writing.

Are you interested in bringing the library up to speed? The specification also has evolved since I last looked at it.