Skip to content

Commit 7f6a326

Browse files
committed
Updating README.rst .
1 parent 8331446 commit 7f6a326

File tree

1 file changed

+22
-10
lines changed

1 file changed

+22
-10
lines changed

README.rst

Lines changed: 22 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,7 @@ The repository provides:
88

99
#. A library package **pywebapi** (https://pypi.org/project/pywebapi) for making PyWebApi Server.
1010
#. A sample `PyWebApi Server (for IIS) <https://github.com/DataBooster/PyWebApi/tree/master/Sample/PyWebApi.IIS>`_. It can be easily customized to your own PyWebApi Server.
11-
#. Some sample user-apps/user-modules:
12-
13-
* A MDX query transponder (https://github.com/DataBooster/PyWebApi/tree/master/Sample/UserApps/MdxReader)
14-
15-
a. It forwards a MDX query (received as JSON from the HTTP client) to a specified OLAP, and then convert the query result to the specified model;
16-
#. (optional) Sends the above results to a database (`DbWebApi <https://github.com/DataBooster/DbWebApi>`_) for storage or further processing;
17-
#. (optional) Sends a notification about the final result or error.
18-
11+
#. Some sample user-apps/user-modules/user-scripts.
1912
#. Some utility PyPI packages:
2013

2114
+ **dbdatareader** (https://pypi.org/project/dbdatareader/) - Data Reader for .NET `IDataReader <https://docs.microsoft.com/en-us/dotnet/api/system.data.idatareader>`_
@@ -160,7 +153,7 @@ Sample PyWebApi Server (for IIS)
160153

161154
#. Migration
162155

163-
Although this sample server is hosted in IIS as a complete working example,
156+
Although this sample server is hosted on IIS as a complete working example,
164157
the source code is pure Python and does not depend on any features specific to IIS or Windows platforms.
165158
It can be easily applied to any platform that supports Python(3+).
166159

@@ -219,7 +212,26 @@ Deploy User Modules/Scripts:
219212
{
220213
"app_id": "etl",
221214
"action": "utilities/mdxreader/mdx_task.run_query",
222-
"account": "user ID/name or group account/role"
215+
"account": "user id/name or group account/role"
223216
}
224217
225218
These elements can be essential stuff for an authorization entry.
219+
220+
|
221+
222+
----
223+
224+
|
225+
226+
----
227+
228+
Sample User Apps/Modules/Scripts:
229+
---------------------------------
230+
231+
* `MdxReader <https://github.com/DataBooster/PyWebApi/tree/master/Sample/UserApps/MdxReader>`_
232+
233+
This sample user app is a practical Python app that acts as an MDX query dispatcher:
234+
235+
1. It forwards an MDX query (received as JSON from the HTTP client) to a specified OLAP, and then convert the query result to the specified model;
236+
#. (optional) Sends the above results to a database (`DbWebApi <https://github.com/DataBooster/DbWebApi>`_) for storage or further processing;
237+
#. (optional) Sends a notification about the final result or error.

0 commit comments

Comments
 (0)