You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2020/08/09 11:58:35 UTC

[incubator-streampipes] 01/01: Merge branch 'dev' into STREAMPIPES-145

This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch STREAMPIPES-145
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit d27265d727d70fff74192c647ccc995699445e90
Merge: a49b053 8d0a842
Author: Dominik Riemer <ri...@fzi.de>
AuthorDate: Sun Aug 9 13:58:12 2020 +0200

    Merge branch 'dev' into STREAMPIPES-145

 streampipes-wrapper-python/README.md               |  31 ++++-
 streampipes-wrapper-python/requirements.txt        |  11 +-
 streampipes-wrapper-python/setup.py                |  10 +-
 streampipes-wrapper-python/streampipes/api.py      |  70 -----------
 .../streampipes/{helper.py => api/__init__.py}     |  14 +--
 .../{helper.py => api/resources/__init__.py}       |  12 --
 .../streampipes/api/resources/base.py              | 128 +++++++++++++++++++++
 .../{helper.py => api/resources/dummy.py}          |  22 ++--
 .../{helper.py => api/resources/processor.py}      |  24 ++--
 .../streampipes/api/resources/welcome.py           |  45 ++++++++
 streampipes-wrapper-python/streampipes/api/rest.py |  49 ++++++++
 .../streampipes/api/templates/index.html           |  50 ++++++++
 .../streampipes/{helper.py => base/__init__.py}    |  12 --
 .../{configuration.py => base/banner.py}           |   9 +-
 streampipes-wrapper-python/streampipes/core.py     |  34 ++----
 streampipes-wrapper-python/streampipes/declarer.py |  60 ++++++++++
 streampipes-wrapper-python/streampipes/manager.py  |  29 +----
 .../streampipes/{helper.py => model/__init__.py}   |  12 --
 .../{helper.py => model/config_item.py}            |  25 ++--
 .../streampipes/model/pipeline_element_config.py   |  96 ++++++++++++++++
 .../streampipes/submitter.py                       |  40 +++++++
 .../streampipes/{helper.py => utils/__init__.py}   |  12 --
 .../streampipes/utils/register.py                  |  71 ++++++++++++
 23 files changed, 648 insertions(+), 218 deletions(-)