From 9bf511381a13ad80dce5b5f00a309bf70adf0d72 Mon Sep 17 00:00:00 2001 From: Simeon Warner Date: Fri, 22 Mar 2013 15:12:03 -0400 Subject: [PATCH] Use markdown extension --- README.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..79492c7 --- /dev/null +++ b/README.md @@ -0,0 +1,29 @@ +====== +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: + +```python +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 + + +