Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
bc496a8e
"README.md" did not exist on "d539ee9aa71b1e7dc15691380ff24e5b428f9ad4"
Commit
bc496a8e
authored
8 years ago
by
Swen Vermeul
Browse files
Options
Downloads
Patches
Plain Diff
registration and modification date of spaces are formatted
parent
c4e4c612
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/python/PyBis/pybis/pybis.py
+7
-1
7 additions, 1 deletion
src/python/PyBis/pybis/pybis.py
with
7 additions
and
1 deletion
src/python/PyBis/pybis/pybis.py
+
7
−
1
View file @
bc496a8e
...
@@ -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!
"
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment