Skip to content

Commit 3bebcdf

Browse files
committed
Updating README.rst .
1 parent bcfd805 commit 3bebcdf

File tree

5 files changed

+31
-1
lines changed

5 files changed

+31
-1
lines changed

README.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -542,3 +542,21 @@ Sample User Apps/Modules/Scripts
542542

543543
If the next service unit outside the group accepts the pipeline arguments,
544544
all the result dictionaries in current group will be overlaid one on top of the other in sequence as the pipeline arguments for the next external service.
545+
546+
|
547+
548+
----
549+
550+
Releases
551+
--------
552+
553+
For customization, you can download all Sample Server and User Apps/Modules/Scripts from the `releases <https://github.com/DataBooster/PyWebApi/releases>`_ of this repository.
554+
555+
*Initially, all projects in this repository were created in Visual Studio 2017 (with built-in Python 3.6.6).
556+
If you are more comfortable using other IDE or other platform without IDE, please ignore the Visual Studio project files (.sln and .pyproj) safely
557+
and organize them in your own way since they are just Python.*
558+
559+
License
560+
-------
561+
562+
Licensed under the `MIT <https://github.com/DataBooster/PyWebApi/blob/master/LICENSE>`_ license.

Sample/PyWebApi.IIS/routes.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,7 @@ def execute_module_level_function(app_id:str, module_func:str):
6565
return fmt_result
6666
else:
6767
abort(401, f"Current user ({repr(user_name)}) does not have permission to execute the requested {repr(module_func)}.")
68+
69+
70+
71+
__version__ = "0.1"

Sample/README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PyWebApi
99

1010
|
1111
12-
**Sample user-apps/user-modules/user-scripts**:
12+
**Sample user-apps/user-modules/user-scripts** :
1313

1414
1. `MdxReader <https://github.com/DataBooster/PyWebApi#mdx-reader>`_
1515
---------------------------------------------------------------------

Sample/UserApps/MdxReader/mdx_task.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,7 @@ def run_query(connection_string:str, command_text:str, result_model:str='DictOfL
6363
except Exception as err:
6464
if not _notify(result, err, notify_url, notify_args): # Send a notification with result data and/or error information
6565
raise
66+
67+
68+
69+
__version__ = "0.1"

Sample/UserApps/ServicesGrouping/rest_grouping.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,3 +104,7 @@ def start(rest:Dict[str, Any]):
104104
loader = RestTaskLoader(thread_pool)
105105
container = loader.load(rest)
106106
return container.run()
107+
108+
109+
110+
__version__ = "0.1"

0 commit comments

Comments
 (0)