Guest User

Untitled

a guest
Feb 11th, 2018
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. from eulexistdb import db
  2. from eulexistdb.models import XmlModel
  3. from eulexistdb.query import QuerySet
  4.  
  5. db = db.ExistDB(server_url=EXISTDB_SERVER_URL,username='user1',password='password1')
  6. qs = QuerySet(using=db,model=XmlModel,xpath="//tag1")
  7.  
  8. <tag1>
  9. <tag2>value2</tag2>
  10. <tag3>value3</tag3>
  11. </tag1>
Add Comment
Please, Sign In to add comment