Ejemplo n.º 1
0
 def __init__(self, config, url):
     Api.__init__(self, config)
     self.url = url
 def __init__(self, config, anno_id):
     Api.__init__(self, config)
     self.anno_id = anno_id
Ejemplo n.º 3
0
 def __init__(self, config, entry_id, tag):
     Api.__init__(self, config)
     self.entry_id = entry_id
     self.tag = tag
Ejemplo n.º 4
0
 def __init__(self, config, entry_id):
     Api.__init__(self, config)
     self.entry_id = entry_id
Ejemplo n.º 5
0
 def __init__(self, config):
     Api.__init__(self, config)
     self.skip_auth = True
 def __init__(self, config, tag_id):
     Api.__init__(self, config)
     self.tag_id = tag_id
Ejemplo n.º 7
0
 def __init__(self, config, tags):
     Api.__init__(self, config)
     self.tags = tags
Ejemplo n.º 8
0
 def __init__(self, config, custom_url=None):
     Api.__init__(self, config)
     self.custom_url = custom_url
     self.skip_auth = True
 def __init__(self, config, params):
     Api.__init__(self, config)
     self.params = params
Ejemplo n.º 10
0
 def __init__(self, config, url, params):
     Api.__init__(self, config)
     self.url = url
     self.params = params
Ejemplo n.º 11
0
 def __init__(self, config, entry_id, format):
     Api.__init__(self, config)
     self.entry_id = entry_id
     self.format = format
Ejemplo n.º 12
0
 def __init__(self, config):
     Api.__init__(self, config)
Ejemplo n.º 13
0
 def __init__(self, config, entry_id, params):
     Api.__init__(self, config)
     self.entry_id = entry_id
     self.params = params