├── .coveragerc ├── .flake8 ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── actions.yml │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Makefile ├── _static │ ├── css │ │ └── custom.css │ └── mymarilyn-icon.png ├── _templates │ └── layout.html ├── api.rst ├── changelog.rst ├── conf.py ├── contents.rst.inc ├── contributing.rst ├── dbapi.rst ├── development.rst ├── features.rst ├── index.rst ├── installation.rst ├── license.rst ├── misc.rst ├── performance.rst ├── quickstart.rst ├── types.rst └── unsupportedserverversions.rst ├── example ├── bytewax │ ├── .dockerignore │ ├── Dockerfile │ ├── README.md │ ├── compose.yaml │ ├── grafana_provisioning │ │ ├── dashboards │ │ │ ├── grafana_dashboard.json │ │ │ └── main.yaml │ │ └── datasources │ │ │ └── automatic.yml │ ├── hackernews.py │ ├── init_sql │ │ └── init.sql │ ├── proton.py │ └── requirements.txt ├── descriptive_pipeline │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ ├── config.yaml │ ├── requirements.txt │ ├── server │ │ ├── main.py │ │ └── utils │ │ │ └── logging.py │ └── test │ │ ├── script.js │ │ └── script_ws.js ├── idempotent │ └── idempotent.py ├── pandas │ └── dataframe.py └── streaming_query │ ├── car.py │ └── server monitor.py ├── proton_driver ├── __init__.py ├── block.py ├── blockstreamprofileinfo.py ├── bufferedreader.c ├── bufferedreader.pyx ├── bufferedwriter.c ├── bufferedwriter.pyx ├── client.py ├── clientinfo.py ├── columns │ ├── __init__.py │ ├── arraycolumn.py │ ├── base.py │ ├── boolcolumn.py │ ├── datecolumn.py │ ├── datetimecolumn.py │ ├── decimalcolumn.py │ ├── enumcolumn.py │ ├── exceptions.py │ ├── floatcolumn.py │ ├── intcolumn.py │ ├── intervalcolumn.py │ ├── ipcolumn.py │ ├── jsoncolumn.py │ ├── largeint.c │ ├── largeint.pyx │ ├── lowcardinalitycolumn.py │ ├── mapcolumn.py │ ├── nestedcolumn.py │ ├── nothingcolumn.py │ ├── nullablecolumn.py │ ├── nullcolumn.py │ ├── numpy │ │ ├── __init__.py │ │ ├── base.py │ │ ├── datecolumn.py │ │ ├── datetimecolumn.py │ │ ├── floatcolumn.py │ │ ├── intcolumn.py │ │ ├── lowcardinalitycolumn.py │ │ ├── service.py │ │ └── stringcolumn.py │ ├── service.py │ ├── simpleaggregatefunctioncolumn.py │ ├── stringcolumn.py │ ├── tuplecolumn.py │ ├── util.py │ └── uuidcolumn.py ├── compression │ ├── __init__.py │ ├── base.py │ ├── lz4.py │ ├── lz4hc.py │ └── zstd.py ├── connection.py ├── context.py ├── dbapi │ ├── __init__.py │ ├── connection.py │ ├── cursor.py │ ├── errors.py │ └── extras.py ├── defines.py ├── errors.py ├── log.py ├── numpy │ ├── __init__.py │ ├── block.py │ ├── helpers.py │ └── result.py ├── opentelemetry.py ├── progress.py ├── protocol.py ├── queryprocessingstage.py ├── reader.py ├── readhelpers.py ├── result.py ├── settings │ ├── __init__.py │ ├── available.py │ ├── types.py │ └── writer.py ├── streams │ ├── __init__.py │ ├── compressed.py │ └── native.py ├── util │ ├── __init__.py │ ├── compat.py │ ├── escape.py │ └── helpers.py ├── varint.c ├── varint.pyx └── writer.py ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── columns │ ├── __init__.py │ ├── test_array.py │ ├── test_bool.py │ ├── test_common.py │ ├── test_date.py │ ├── test_datetime.py │ ├── test_decimal.py │ ├── test_enum.py │ ├── test_fixedstring.py │ ├── test_float.py │ ├── test_int.py │ ├── test_interval.py │ ├── test_ip.py │ ├── test_json.py │ ├── test_low_cardinality.py │ ├── test_map.py │ ├── test_nested.py │ ├── test_null.py │ ├── test_nullable.py │ ├── test_simpleaggregatefunction.py │ ├── test_string.py │ ├── test_tuple.py │ ├── test_unknown.py │ └── test_uuid.py ├── conftest.py ├── docker-compose.yml ├── log.py ├── numpy │ ├── __init__.py │ ├── columns │ │ ├── __init__.py │ │ ├── test_datetime.py │ │ ├── test_float.py │ │ ├── test_int.py │ │ ├── test_low_cardinality.py │ │ ├── test_nullable.py │ │ ├── test_other.py │ │ └── test_string.py │ ├── test_external_tables.py │ ├── test_generic.py │ ├── testcase.py │ └── util.py ├── test_blocks.py ├── test_buffered_reader.py ├── test_client.py ├── test_compression.py ├── test_connect.py ├── test_dbapi.py ├── test_errors.py ├── test_external_tables.py ├── test_insert.py ├── test_opentelemetry.py ├── test_query_info.py ├── test_settings.py ├── test_substitution.py ├── test_varint.py ├── testcase.py └── util.py ├── testsrequire.py └── valgrind.supp /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | recursive-include proton_driver *.pyx 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/_static/css/custom.css -------------------------------------------------------------------------------- /docs/_static/mymarilyn-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/_static/mymarilyn-icon.png -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/api.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/contents.rst.inc -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/dbapi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/dbapi.rst -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/features.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/license.rst -------------------------------------------------------------------------------- /docs/misc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/misc.rst -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/types.rst -------------------------------------------------------------------------------- /docs/unsupportedserverversions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/docs/unsupportedserverversions.rst -------------------------------------------------------------------------------- /example/bytewax/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/.dockerignore -------------------------------------------------------------------------------- /example/bytewax/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/Dockerfile -------------------------------------------------------------------------------- /example/bytewax/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/README.md -------------------------------------------------------------------------------- /example/bytewax/compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/compose.yaml -------------------------------------------------------------------------------- /example/bytewax/grafana_provisioning/dashboards/grafana_dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/grafana_provisioning/dashboards/grafana_dashboard.json -------------------------------------------------------------------------------- /example/bytewax/grafana_provisioning/dashboards/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/grafana_provisioning/dashboards/main.yaml -------------------------------------------------------------------------------- /example/bytewax/grafana_provisioning/datasources/automatic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/grafana_provisioning/datasources/automatic.yml -------------------------------------------------------------------------------- /example/bytewax/hackernews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/hackernews.py -------------------------------------------------------------------------------- /example/bytewax/init_sql/init.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/init_sql/init.sql -------------------------------------------------------------------------------- /example/bytewax/proton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/bytewax/proton.py -------------------------------------------------------------------------------- /example/bytewax/requirements.txt: -------------------------------------------------------------------------------- 1 | bytewax==0.18 2 | requests 3 | proton-driver -------------------------------------------------------------------------------- /example/descriptive_pipeline/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/Dockerfile -------------------------------------------------------------------------------- /example/descriptive_pipeline/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/Makefile -------------------------------------------------------------------------------- /example/descriptive_pipeline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/README.md -------------------------------------------------------------------------------- /example/descriptive_pipeline/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/config.yaml -------------------------------------------------------------------------------- /example/descriptive_pipeline/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/requirements.txt -------------------------------------------------------------------------------- /example/descriptive_pipeline/server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/server/main.py -------------------------------------------------------------------------------- /example/descriptive_pipeline/server/utils/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/server/utils/logging.py -------------------------------------------------------------------------------- /example/descriptive_pipeline/test/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/test/script.js -------------------------------------------------------------------------------- /example/descriptive_pipeline/test/script_ws.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/descriptive_pipeline/test/script_ws.js -------------------------------------------------------------------------------- /example/idempotent/idempotent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/idempotent/idempotent.py -------------------------------------------------------------------------------- /example/pandas/dataframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/pandas/dataframe.py -------------------------------------------------------------------------------- /example/streaming_query/car.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/streaming_query/car.py -------------------------------------------------------------------------------- /example/streaming_query/server monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/example/streaming_query/server monitor.py -------------------------------------------------------------------------------- /proton_driver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/__init__.py -------------------------------------------------------------------------------- /proton_driver/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/block.py -------------------------------------------------------------------------------- /proton_driver/blockstreamprofileinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/blockstreamprofileinfo.py -------------------------------------------------------------------------------- /proton_driver/bufferedreader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/bufferedreader.c -------------------------------------------------------------------------------- /proton_driver/bufferedreader.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/bufferedreader.pyx -------------------------------------------------------------------------------- /proton_driver/bufferedwriter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/bufferedwriter.c -------------------------------------------------------------------------------- /proton_driver/bufferedwriter.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/bufferedwriter.pyx -------------------------------------------------------------------------------- /proton_driver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/client.py -------------------------------------------------------------------------------- /proton_driver/clientinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/clientinfo.py -------------------------------------------------------------------------------- /proton_driver/columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/columns/arraycolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/arraycolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/base.py -------------------------------------------------------------------------------- /proton_driver/columns/boolcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/boolcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/datecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/datecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/datetimecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/datetimecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/decimalcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/decimalcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/enumcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/enumcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/exceptions.py -------------------------------------------------------------------------------- /proton_driver/columns/floatcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/floatcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/intcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/intcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/intervalcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/intervalcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/ipcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/ipcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/jsoncolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/jsoncolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/largeint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/largeint.c -------------------------------------------------------------------------------- /proton_driver/columns/largeint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/largeint.pyx -------------------------------------------------------------------------------- /proton_driver/columns/lowcardinalitycolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/lowcardinalitycolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/mapcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/mapcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/nestedcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/nestedcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/nothingcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/nothingcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/nullablecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/nullablecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/nullcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/nullcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/columns/numpy/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/base.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/datecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/datecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/datetimecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/datetimecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/floatcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/floatcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/intcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/intcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/lowcardinalitycolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/lowcardinalitycolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/service.py -------------------------------------------------------------------------------- /proton_driver/columns/numpy/stringcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/numpy/stringcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/service.py -------------------------------------------------------------------------------- /proton_driver/columns/simpleaggregatefunctioncolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/simpleaggregatefunctioncolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/stringcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/stringcolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/tuplecolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/tuplecolumn.py -------------------------------------------------------------------------------- /proton_driver/columns/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/util.py -------------------------------------------------------------------------------- /proton_driver/columns/uuidcolumn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/columns/uuidcolumn.py -------------------------------------------------------------------------------- /proton_driver/compression/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/compression/__init__.py -------------------------------------------------------------------------------- /proton_driver/compression/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/compression/base.py -------------------------------------------------------------------------------- /proton_driver/compression/lz4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/compression/lz4.py -------------------------------------------------------------------------------- /proton_driver/compression/lz4hc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/compression/lz4hc.py -------------------------------------------------------------------------------- /proton_driver/compression/zstd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/compression/zstd.py -------------------------------------------------------------------------------- /proton_driver/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/connection.py -------------------------------------------------------------------------------- /proton_driver/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/context.py -------------------------------------------------------------------------------- /proton_driver/dbapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/dbapi/__init__.py -------------------------------------------------------------------------------- /proton_driver/dbapi/connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/dbapi/connection.py -------------------------------------------------------------------------------- /proton_driver/dbapi/cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/dbapi/cursor.py -------------------------------------------------------------------------------- /proton_driver/dbapi/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/dbapi/errors.py -------------------------------------------------------------------------------- /proton_driver/dbapi/extras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/dbapi/extras.py -------------------------------------------------------------------------------- /proton_driver/defines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/defines.py -------------------------------------------------------------------------------- /proton_driver/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/errors.py -------------------------------------------------------------------------------- /proton_driver/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/log.py -------------------------------------------------------------------------------- /proton_driver/numpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/numpy/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/numpy/block.py -------------------------------------------------------------------------------- /proton_driver/numpy/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/numpy/helpers.py -------------------------------------------------------------------------------- /proton_driver/numpy/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/numpy/result.py -------------------------------------------------------------------------------- /proton_driver/opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/opentelemetry.py -------------------------------------------------------------------------------- /proton_driver/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/progress.py -------------------------------------------------------------------------------- /proton_driver/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/protocol.py -------------------------------------------------------------------------------- /proton_driver/queryprocessingstage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/queryprocessingstage.py -------------------------------------------------------------------------------- /proton_driver/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/reader.py -------------------------------------------------------------------------------- /proton_driver/readhelpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/readhelpers.py -------------------------------------------------------------------------------- /proton_driver/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/result.py -------------------------------------------------------------------------------- /proton_driver/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/settings/available.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/settings/available.py -------------------------------------------------------------------------------- /proton_driver/settings/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/settings/types.py -------------------------------------------------------------------------------- /proton_driver/settings/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/settings/writer.py -------------------------------------------------------------------------------- /proton_driver/streams/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/streams/compressed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/streams/compressed.py -------------------------------------------------------------------------------- /proton_driver/streams/native.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/streams/native.py -------------------------------------------------------------------------------- /proton_driver/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /proton_driver/util/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/util/compat.py -------------------------------------------------------------------------------- /proton_driver/util/escape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/util/escape.py -------------------------------------------------------------------------------- /proton_driver/util/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/util/helpers.py -------------------------------------------------------------------------------- /proton_driver/varint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/varint.c -------------------------------------------------------------------------------- /proton_driver/varint.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/varint.pyx -------------------------------------------------------------------------------- /proton_driver/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/proton_driver/writer.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/columns/test_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_array.py -------------------------------------------------------------------------------- /tests/columns/test_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_bool.py -------------------------------------------------------------------------------- /tests/columns/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_common.py -------------------------------------------------------------------------------- /tests/columns/test_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_date.py -------------------------------------------------------------------------------- /tests/columns/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_datetime.py -------------------------------------------------------------------------------- /tests/columns/test_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_decimal.py -------------------------------------------------------------------------------- /tests/columns/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_enum.py -------------------------------------------------------------------------------- /tests/columns/test_fixedstring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_fixedstring.py -------------------------------------------------------------------------------- /tests/columns/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_float.py -------------------------------------------------------------------------------- /tests/columns/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_int.py -------------------------------------------------------------------------------- /tests/columns/test_interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_interval.py -------------------------------------------------------------------------------- /tests/columns/test_ip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_ip.py -------------------------------------------------------------------------------- /tests/columns/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_json.py -------------------------------------------------------------------------------- /tests/columns/test_low_cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_low_cardinality.py -------------------------------------------------------------------------------- /tests/columns/test_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_map.py -------------------------------------------------------------------------------- /tests/columns/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_nested.py -------------------------------------------------------------------------------- /tests/columns/test_null.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_null.py -------------------------------------------------------------------------------- /tests/columns/test_nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_nullable.py -------------------------------------------------------------------------------- /tests/columns/test_simpleaggregatefunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_simpleaggregatefunction.py -------------------------------------------------------------------------------- /tests/columns/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_string.py -------------------------------------------------------------------------------- /tests/columns/test_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_tuple.py -------------------------------------------------------------------------------- /tests/columns/test_unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_unknown.py -------------------------------------------------------------------------------- /tests/columns/test_uuid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/columns/test_uuid.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/docker-compose.yml -------------------------------------------------------------------------------- /tests/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/log.py -------------------------------------------------------------------------------- /tests/numpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/numpy/columns/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/numpy/columns/test_datetime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_datetime.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_float.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_int.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_low_cardinality.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_low_cardinality.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_nullable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_nullable.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_other.py -------------------------------------------------------------------------------- /tests/numpy/columns/test_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/columns/test_string.py -------------------------------------------------------------------------------- /tests/numpy/test_external_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/test_external_tables.py -------------------------------------------------------------------------------- /tests/numpy/test_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/test_generic.py -------------------------------------------------------------------------------- /tests/numpy/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/testcase.py -------------------------------------------------------------------------------- /tests/numpy/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/numpy/util.py -------------------------------------------------------------------------------- /tests/test_blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_blocks.py -------------------------------------------------------------------------------- /tests/test_buffered_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_buffered_reader.py -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_compression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_compression.py -------------------------------------------------------------------------------- /tests/test_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_connect.py -------------------------------------------------------------------------------- /tests/test_dbapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_dbapi.py -------------------------------------------------------------------------------- /tests/test_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_errors.py -------------------------------------------------------------------------------- /tests/test_external_tables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_external_tables.py -------------------------------------------------------------------------------- /tests/test_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_insert.py -------------------------------------------------------------------------------- /tests/test_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_opentelemetry.py -------------------------------------------------------------------------------- /tests/test_query_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_query_info.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_substitution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_substitution.py -------------------------------------------------------------------------------- /tests/test_varint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/test_varint.py -------------------------------------------------------------------------------- /tests/testcase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/testcase.py -------------------------------------------------------------------------------- /tests/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/tests/util.py -------------------------------------------------------------------------------- /testsrequire.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/testsrequire.py -------------------------------------------------------------------------------- /valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timeplus-io/proton-python-driver/HEAD/valgrind.supp --------------------------------------------------------------------------------