|
@@ -80,6 +80,22 @@ class labkeyInterface:
|
|
|
except urllib3.exceptions.HTTPError as e:
|
|
|
print(e)
|
|
|
|
|
|
+ def mkcol(self,url):
|
|
|
+
|
|
|
+ debug=False
|
|
|
+ headers=urllib3.util.make_headers(basic_auth=self.getBasicAuth())
|
|
|
+ #add csrf;also sets self.cookie
|
|
|
+ headers["X-LABKEY-CSRF"]=self.getCSRF()
|
|
|
+ headers["Cookie"]=self.cookie
|
|
|
+
|
|
|
+ try:
|
|
|
+ return self.http.request('MKCOL',url,headers=headers)
|
|
|
+ #f contains json as a return value
|
|
|
+ except urllib3.exceptions.HTTPError as e:
|
|
|
+ print(e)
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
def put(self,url,data):
|
|
|
|
|
|
debug=False
|