Skip to content
Snippets Groups Projects
Commit bc496a8e authored by Swen Vermeul's avatar Swen Vermeul
Browse files

registration and modification date of spaces are formatted

parent c4e4c612
No related branches found
No related tags found
No related merge requests found
...@@ -16,6 +16,7 @@ from requests.packages.urllib3.exceptions import InsecureRequestWarning ...@@ -16,6 +16,7 @@ from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning) requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
import time import time
from datetime import datetime
import json import json
import re import re
from urllib.parse import urlparse from urllib.parse import urlparse
...@@ -213,6 +214,8 @@ class Openbis: ...@@ -213,6 +214,8 @@ class Openbis:
""" Get a list of all available spaces (DataFrame object). To create a sample or a """ Get a list of all available spaces (DataFrame object). To create a sample or a
dataset, you need to specify in which space it should live. dataset, you need to specify in which space it should live.
""" """
format_timestamp = lambda ts: datetime.fromtimestamp(round(ts/1000)).strftime('%Y-%m-%d %H:%M:%S')
if len(self.spaces) == 0 or refresh is not None: if len(self.spaces) == 0 or refresh is not None:
request = { request = {
"method": "searchSpaces", "method": "searchSpaces",
...@@ -222,7 +225,10 @@ class Openbis: ...@@ -222,7 +225,10 @@ class Openbis:
} }
resp = self._post_request(self.as_v3, request) resp = self._post_request(self.as_v3, request)
if resp is not None: if resp is not None:
self.spaces = DataFrame(resp['objects'])[['code','description']] spaces = DataFrame(resp['objects'])
spaces['registrationDate']= spaces['registrationDate'].map(format_timestamp)
spaces['modificationDate']= spaces['modificationDate'].map(format_timestamp)
self.spaces = spaces[['code', 'description', 'registrationDate', 'modificationDate']]
return self.spaces return self.spaces
else: else:
raise ValueError("No spaces found!") raise ValueError("No spaces found!")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment