Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
olapy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
2
Merge Requests
2
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
nexedi
olapy
Commits
d33c512e
Commit
d33c512e
authored
May 10, 2017
by
mouadh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
comment
parent
cfc91d93
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
olapy/rest_services.py
olapy/rest_services.py
+6
-1
No files found.
olapy/rest_services.py
View file @
d33c512e
...
@@ -12,22 +12,27 @@ class OlapyService(ServiceBase):
...
@@ -12,22 +12,27 @@ class OlapyService(ServiceBase):
executer
=
MdxEngine
(
'sales'
)
executer
=
MdxEngine
(
'sales'
)
# curl "http://localhost:8000/get_cubes_names"
@
rpc
(
_returns
=
Iterable
(
Unicode
))
@
rpc
(
_returns
=
Iterable
(
Unicode
))
def
get_cubes_names
(
ctx
):
def
get_cubes_names
(
ctx
):
return
MdxEngine
.
get_cubes_names
()
return
MdxEngine
.
get_cubes_names
()
# curl "http://localhost:8000/get_star_schema"
@
rpc
(
_returns
=
Unicode
)
@
rpc
(
_returns
=
Unicode
)
def
get_star_schema
(
ctx
):
def
get_star_schema
(
ctx
):
return
OlapyService
.
executer
.
load_star_schema_dataframe
.
to_json
()
return
OlapyService
.
executer
.
load_star_schema_dataframe
.
to_json
()
# curl "http://localhost:8000/get_cubes_names"
@
rpc
(
_returns
=
Unicode
)
@
rpc
(
_returns
=
Unicode
)
def
get_
tabl
es
(
ctx
):
def
get_
cubes_nam
es
(
ctx
):
return
{
return
{
table_name
:
table_dataframe
.
to_json
()
table_name
:
table_dataframe
.
to_json
()
for
table_name
,
table_dataframe
in
for
table_name
,
table_dataframe
in
OlapyService
.
executer
.
tables_loaded
.
items
()
OlapyService
.
executer
.
tables_loaded
.
items
()
}
}
# curl "http://localhost:8000/get_measures"
@
rpc
(
_returns
=
Iterable
(
Unicode
))
@
rpc
(
_returns
=
Iterable
(
Unicode
))
def
get_measures
(
ctx
):
def
get_measures
(
ctx
):
return
OlapyService
.
executer
.
measures
return
OlapyService
.
executer
.
measures
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment