CryoSolace commented on issue #962: URL: https://github.com/apache/streampipes/issues/962#issuecomment-1370381369
Hi, Thank you for responding. I would like to know how I can replicate and work on the issue. I've tried cloning the project but I can't seem to get the software running or open the docs. In the mean time, would something like adding # # or \# work? Thanks. On Sun, 1 Jan 2023, 17:24 Tim, ***@***.***> wrote: > Hi @CryoSolace <https://github.com/CryoSolace>, > > great that you are interested in contributing to StreamPipes 🚀 > Here is one of the examples given in the pydocs: > > Examples > -------- > > > >>> from streampipes_client.client import StreamPipesClient > >>> from streampipes_client.client.client_config import StreamPipesClientConfig > >>> from streampipes_client.client.credential_provider import StreamPipesApiKeyCredentials > > > >>> client_config = StreamPipesClientConfig( > > ... credential_provider=StreamPipesApiKeyCredentials( > > ... username="test-user", > > ... api_key="api-key" > > ... ), > > ... host_address="localhost", > > ... https_disabled=True > > ... ) > > > >>> client = StreamPipesClient.create(client_config=client_config) > > > # The above way of instantiating a client instance is intended > # to be consistent with the StreamPipes Java client. > # If you prefer a more pythonic way, you can simply write: > >>> client = StreamPipesClient(client_config=client_config) > > > # Interact with an endpoint > >>> data_lake_measures = client.dataLakeMeasureApi.all() > > > # Inspect returned data as a pandas dataframe > >>> data_lake_measures.to_pandas() > > > > measure_name timestamp_field ... pipeline_is_running num_event_properties > 0 test s0::timestamp ... False 2 > > [1 rows x 6 columns] > > Would be great if the whole code snippet would be rendered correctly in > the docs. > Please note our make commands for building the docs conventiently: make > doc and make livedoc (see also here > <https://github.com/apache/streampipes/blob/dev/streampipes-client-python/Makefile> > ) > Is there anything else you need to get started? > > — > Reply to this email directly, view it on GitHub > <https://github.com/apache/streampipes/issues/962#issuecomment-1368492975>, > or unsubscribe > <https://github.com/notifications/unsubscribe-auth/AX52KSTNPRG7LNFJN6CJGDDWQG4WPANCNFSM6AAAAAATNO2AHU> > . > You are receiving this because you were mentioned.Message ID: > ***@***.***> > -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
