10 lines
335 B
Python
10 lines
335 B
Python
from resync.resource_list import ResourceList
|
|
from resync.resource import Resource
|
|
from resync.sitemap import Sitemap
|
|
|
|
rl = ResourceList()
|
|
rl.add( Resource('http://example.com/res1', lastmod='2013-01-01') )
|
|
rl.add( Resource('http://example.com/res2', lastmod='2013-01-02') )
|
|
sm = Sitemap(pretty_xml=True)
|
|
print sm.resources_as_xml(rl)
|