Go to file
2013-03-26 09:59:29 -07:00
bin Get incremental sync working (tested against simulator) and improve status messages 2013-03-22 14:59:29 -04:00
docs Add section 4 and section 5 examples 2013-02-27 22:56:38 -05:00
resync Improve status messages 2013-03-22 16:13:57 -04:00
.gitignore Ignore rc 2013-03-20 10:44:27 -04:00
CHANGES.md Add message for 0.5.2 2013-03-26 09:59:29 -07:00
LICENSE.txt created init skeleton 2012-12-05 15:43:58 -05:00
MANIFEST.in created init skeleton 2012-12-05 15:43:58 -05:00
README.md Use markdown extension 2013-03-22 15:12:03 -04:00
setup.py Fix for rename of README.md 2013-03-26 12:47:15 -04:00

====== resync

resync is ResourceSync client and library in python.

Typical client usage:

resync http://source.example.com/ /tmp/my_source_example_com

Typical library usage in a source:

from resync.resource_list import ResourceList
from resync.resource import Resource

rl = ResourceList()
rl.add( Resource('http://example.com/res1', lastmod='2013-01-01') )
rl.add( Resource('http://example.com/res2', lastmod='2013-01-02') )
print rl.as_xml(rl)

See also

http://github.com/resync/simulator