You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2023/02/06 20:11:14 UTC

[streampipes] branch chore/branch-protection updated (a73dee9de -> 8a6ef0078)

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

bossenti pushed a change to branch chore/branch-protection
in repository https://gitbox.apache.org/repos/asf/streampipes.git


    from a73dee9de chore(asf-yaml): add basic branch protection setup
     add 8a6ef0078 chore(python-client): rename python package to `streampipes`

No new revisions were added by this update.

Summary of changes:
 streampipes-client-python/.pre-commit-config.yaml  |  2 +-
 streampipes-client-python/Makefile                 | 12 ++--
 streampipes-client-python/README.md                | 62 ++++++++++++++------
 ...introduction-to-streampipes-python-client.ipynb |  6 +-
 ...cting-data-from-the-streampipes-data-lake.ipynb |  6 +-
 ...ive-data-from-the-streampipes-data-stream.ipynb | 16 +++---
 .../docs/getting-started/quickstart.md             | 66 +++++++++++++++-------
 streampipes-client-python/docs/index.md            | 61 ++++++++++----------
 .../docs/scripts/gen_ref_pages.py                  |  8 +--
 streampipes-client-python/setup.py                 |  4 +-
 .../__init__.py                                    |  0
 .../__version__.py                                 |  0
 .../client/__init__.py                             |  0
 .../client/client.py                               | 12 ++--
 .../client/config.py}                              |  2 +-
 .../client/credential_provider.py                  |  0
 .../endpoint/__init__.py                           |  0
 .../endpoint/api/__init__.py                       |  0
 .../endpoint/api/data_lake_measure.py              | 14 ++---
 .../endpoint/api/data_stream.py                    | 12 ++--
 .../endpoint/endpoint.py                           |  8 +--
 .../endpoint/exceptions.py                         |  0
 .../endpoint/messaging/__init__.py                 |  0
 .../functions/__init__.py                          |  0
 .../functions/broker/__init__.py                   |  0
 .../functions/broker/broker.py                     |  2 +-
 .../functions/broker/nats_broker.py                |  2 +-
 .../functions/function_handler.py                  | 14 ++---
 .../functions/registration.py                      |  2 +-
 .../functions/streampipes_function.py              |  4 +-
 .../functions/utils/__init__.py                    |  0
 .../functions/utils/async_iter_handler.py          |  0
 .../functions/utils/data_stream_context.py         |  6 +-
 .../functions/utils/function_context.py            |  4 +-
 .../model/__init__.py                              |  0
 .../model/common.py                                |  0
 .../model/container/__init__.py                    |  0
 .../model/container/data_lake_measures.py          |  6 +-
 .../model/container/data_streams.py                |  6 +-
 .../model/container/resource_container.py          |  2 +-
 .../model/resource/__init__.py                     |  0
 .../model/resource/data_lake_measure.py            |  4 +-
 .../model/resource/data_lake_series.py             |  2 +-
 .../model/resource/data_stream.py                  |  4 +-
 .../model/resource/function_definition.py          |  4 +-
 .../model/resource/resource.py                     |  2 +-
 .../tests/client/test_client.py                    | 10 ++--
 .../tests/client/test_credential_provider.py       |  2 +-
 .../tests/client/test_data_lake_series.py          | 12 ++--
 .../tests/client/test_endpoint.py                  | 28 ++++-----
 .../tests/functions/test_function_handler.py       | 34 +++++------
 51 files changed, 248 insertions(+), 193 deletions(-)
 rename streampipes-client-python/{streampipes_client => streampipes}/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/__version__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/client/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/client/client.py (94%)
 rename streampipes-client-python/{streampipes_client/client/client_config.py => streampipes/client/config.py} (96%)
 rename streampipes-client-python/{streampipes_client => streampipes}/client/credential_provider.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/api/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/api/data_lake_measure.py (88%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/api/data_stream.py (84%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/endpoint.py (97%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/exceptions.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/endpoint/messaging/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/broker/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/broker/broker.py (97%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/broker/nats_broker.py (97%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/function_handler.py (93%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/registration.py (95%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/streampipes_function.py (95%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/utils/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/utils/async_iter_handler.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/utils/data_stream_context.py (88%)
 rename streampipes-client-python/{streampipes_client => streampipes}/functions/utils/function_context.py (93%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/common.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/container/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/container/data_lake_measures.py (88%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/container/data_streams.py (88%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/container/resource_container.py (99%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/__init__.py (100%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/data_lake_measure.py (94%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/data_lake_series.py (98%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/data_stream.py (97%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/function_definition.py (95%)
 rename streampipes-client-python/{streampipes_client => streampipes}/model/resource/resource.py (97%)