معرفی شرکت ها


acryl-datahub-0.9.6rc1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

A CLI to work with DataHub metadata
ویژگی مقدار
سیستم عامل -
نام فایل acryl-datahub-0.9.6rc1
نام acryl-datahub
نسخه کتابخانه 0.9.6rc1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده -
ایمیل نویسنده -
آدرس صفحه اصلی https://datahubproject.io/
آدرس اینترنتی https://pypi.org/project/acryl-datahub/
مجوز Apache License 2.0
# Introduction to Metadata Ingestion ## Integration Options DataHub supports both **push-based** and **pull-based** metadata integration. Push-based integrations allow you to emit metadata directly from your data systems when metadata changes, while pull-based integrations allow you to "crawl" or "ingest" metadata from the data systems by connecting to them and extracting metadata in a batch or incremental-batch manner. Supporting both mechanisms means that you can integrate with all your systems in the most flexible way possible. Examples of push-based integrations include [Airflow](../docs/lineage/airflow.md), [Spark](../metadata-integration/java/spark-lineage/README.md), [Great Expectations](./integration_docs/great-expectations.md) and [Protobuf Schemas](../metadata-integration/java/datahub-protobuf/README.md). This allows you to get low-latency metadata integration from the "active" agents in your data ecosystem. Examples of pull-based integrations include BigQuery, Snowflake, Looker, Tableau and many others. This document describes the pull-based metadata ingestion system that is built into DataHub for easy integration with a wide variety of sources in your data stack. ## Getting Started ### Prerequisites Before running any metadata ingestion job, you should make sure that DataHub backend services are all running. You can either run ingestion via the [UI](../docs/ui-ingestion.md) or via the [CLI](../docs/cli.md). You can reference the CLI usage guide given there as you go through this page. ## Core Concepts ### Sources Data systems that we are extracting metadata from are referred to as **Sources**. The `Sources` tab on the left in the sidebar shows you all the sources that are available for you to ingest metadata from. For example, we have sources for [BigQuery](https://datahubproject.io/docs/generated/ingestion/sources/bigquery), [Looker](https://datahubproject.io/docs/generated/ingestion/sources/looker), [Tableau](https://datahubproject.io/docs/generated/ingestion/sources/tableau) and many others. #### Metadata Ingestion Source Status We apply a Support Status to each Metadata Source to help you understand the integration reliability at a glance. ![Certified](https://img.shields.io/badge/support%20status-certified-brightgreen): Certified Sources are well-tested & widely-adopted by the DataHub Community. We expect the integration to be stable with few user-facing issues. ![Incubating](https://img.shields.io/badge/support%20status-incubating-blue): Incubating Sources are ready for DataHub Community adoption but have not been tested for a wide variety of edge-cases. We eagerly solicit feedback from the Community to streghten the connector; minor version changes may arise in future releases. ![Testing](https://img.shields.io/badge/support%20status-testing-lightgrey): Testing Sources are available for experiementation by DataHub Community members, but may change without notice. ### Sinks Sinks are destinations for metadata. When configuring ingestion for DataHub, you're likely to be sending the metadata to DataHub over either the [REST (datahub-sink)](./sink_docs/datahub.md#datahub-rest) or the [Kafka (datahub-kafka)](./sink_docs/datahub.md#datahub-kafka) sink. In some cases, the [File](./sink_docs/file.md) sink is also helpful to store a persistent offline copy of the metadata during debugging. The default sink that most of the ingestion systems and guides assume is the `datahub-rest` sink, but you should be able to adapt all of them for the other sinks as well! ### Recipes A recipe is the main configuration file that puts it all together. It tells our ingestion scripts where to pull data from (source) and where to put it (sink). :::tip Name your recipe with **.dhub.yaml** extension like *myrecipe.dhub.yaml* to use vscode or intellij as a recipe editor with autocomplete and syntax validation. Make sure yaml plugin is installed for your editor: - For vscode install [Redhat's yaml plugin](https://marketplace.visualstudio.com/items?itemName=redhat.vscode-yaml) - For intellij install [official yaml plugin](https://plugins.jetbrains.com/plugin/13126-yaml ) ::: Since `acryl-datahub` version `>=0.8.33.2`, the default sink is assumed to be a DataHub REST endpoint: - Hosted at "http://localhost:8080" or the environment variable `${DATAHUB_GMS_URL}` if present - With an empty auth token or the environment variable `${DATAHUB_GMS_TOKEN}` if present. Here's a simple recipe that pulls metadata from MSSQL (source) and puts it into the default sink (datahub rest). ```yaml # The simplest recipe that pulls metadata from MSSQL and puts it into DataHub # using the Rest API. source: type: mssql config: username: sa password: ${MSSQL_PASSWORD} database: DemoData # sink section omitted as we want to use the default datahub-rest sink ``` Running this recipe is as simple as: ```shell datahub ingest -c recipe.dhub.yaml ``` or if you want to override the default endpoints, you can provide the environment variables as part of the command like below: ```shell DATAHUB_GMS_URL="https://my-datahub-server:8080" DATAHUB_GMS_TOKEN="my-datahub-token" datahub ingest -c recipe.dhub.yaml ``` A number of recipes are included in the [examples/recipes](./examples/recipes) directory. For full info and context on each source and sink, see the pages described in the [table of plugins](../docs/cli.md#installing-plugins). > Note that one recipe file can only have 1 source and 1 sink. If you want multiple sources then you will need multiple recipe files. ### Handling sensitive information in recipes We automatically expand environment variables in the config (e.g. `${MSSQL_PASSWORD}`), similar to variable substitution in GNU bash or in docker-compose files. For details, see https://docs.docker.com/compose/compose-file/compose-file-v2/#variable-substitution. This environment variable substitution should be used to mask sensitive information in recipe files. As long as you can get env variables securely to the ingestion process there would not be any need to store sensitive information in recipes. ### Basic Usage of CLI for ingestion ```shell pip install 'acryl-datahub[datahub-rest]' # install the required plugin datahub ingest -c ./examples/recipes/mssql_to_datahub.dhub.yml ``` The `--dry-run` option of the `ingest` command performs all of the ingestion steps, except writing to the sink. This is useful to validate that the ingestion recipe is producing the desired metadata events before ingesting them into datahub. ```shell # Dry run datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yml --dry-run # Short-form datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yml -n ``` The `--preview` option of the `ingest` command performs all of the ingestion steps, but limits the processing to only the first 10 workunits produced by the source. This option helps with quick end-to-end smoke testing of the ingestion recipe. ```shell # Preview datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yml --preview # Preview with dry-run datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yml -n --preview ``` By default `--preview` creates 10 workunits. But if you wish to try producing more workunits you can use another option `--preview-workunits` ```shell # Preview 20 workunits without sending anything to sink datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yml -n --preview --preview-workunits=20 ``` #### Reporting By default, the cli sends an ingestion report to DataHub, which allows you to see the result of all cli-based ingestion in the UI. This can be turned off with the `--no-default-report` flag. ```shell # Running ingestion with reporting to DataHub turned off datahub ingest -c ./examples/recipes/example_to_datahub_rest.dhub.yaml --no-default-report ``` The reports include the recipe that was used for ingestion. This can be turned off by adding an additional section to the ingestion recipe. ```yaml source: # source configs sink: # sink configs # Add configuration for the datahub reporter reporting: - type: datahub config: report_recipe: false ``` ## Transformations If you'd like to modify data before it reaches the ingestion sinks – for instance, adding additional owners or tags – you can use a transformer to write your own module and integrate it with DataHub. Transformers require extending the recipe with a new section to describe the transformers that you want to run. For example, a pipeline that ingests metadata from MSSQL and applies a default "important" tag to all datasets is described below: ```yaml # A recipe to ingest metadata from MSSQL and apply default tags to all tables source: type: mssql config: username: sa password: ${MSSQL_PASSWORD} database: DemoData transformers: # an array of transformers applied sequentially - type: simple_add_dataset_tags config: tag_urns: - "urn:li:tag:Important" # default sink, no config needed ``` Check out the [transformers guide](./docs/transformer/intro.md) to learn more about how you can create really flexible pipelines for processing metadata using Transformers! ## Using as a library (SDK) In some cases, you might want to construct Metadata events directly and use programmatic ways to emit that metadata to DataHub. In this case, take a look at the [Python emitter](./as-a-library.md) and the [Java emitter](../metadata-integration/java/as-a-library.md) libraries which can be called from your own code. ### Programmatic Pipeline In some cases, you might want to configure and run a pipeline entirely from within your custom Python script. Here is an example of how to do it. - [programmatic_pipeline.py](./examples/library/programatic_pipeline.py) - a basic mysql to REST programmatic pipeline. ## Developing See the guides on [developing](./developing.md), [adding a source](./adding-source.md) and [using transformers](./docs/transformer/intro.md).


نیازمندی

مقدار نام
!=1.10.3,>=1.5.1 pydantic
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
>=0.4.3 mypy-extensions
- click-default-group
==0.7.8 avro-gen3
>=4.9.0 mixpanel
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- progressbar2
- entrypoints
- typing-inspect
- docker
- tabulate
- Deprecated
- humanfriendly
- ijson
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=3.7.4.3 typing-extensions
>=3.10.0.2 typing-extensions
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=2.0.2 apache-airflow
>=1.2.0 fastavro
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=1.5.0 confluent-kafka
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
<1.9.0 confluent-kafka
>=5.8.0 psutil
<2,>=1.44.0 grpcio
- cx-Oracle
>=1.0.1 pydeequ
>=7.1.2 click
>=1.3.0 flask-openid
- click-default-group
- google-api-python-client
==2.2.2 sql-metadata
==0.7.8 avro-gen3
- msal
- sqlalchemy
- sql-metadata
!=0.6.4,>=0.6.3 deltalake
>=8.0.1 tenacity
==0.0.1 vertica-sqlalchemy-dialect[vertica-python]
<1.4.42 SQLAlchemy
>=2.6.2 networkx
<4 aiohttp
==3.0.3 pyspark
==1.16.0 msal
- docker
- ijson
- Deprecated
- greenlet
!=1.23.0 botocore
!=0.317,>=0.308 trino[sqlalchemy]
>=1.5.0 confluent-kafka
>=8.12.0 more-itertools
- packaging
>=2.0.2 apache-airflow
!=1.2.5,>=1.2.4 snowflake-sqlalchemy
- requests-ntlm
>=0.6.12 acryl-pyhive[hive]
- simple-salesforce
>=0.17.0 tableauserverclient
- JPype1
>=1.7.2 scipy
<2,>=1.3.24 sqlalchemy
==0.2.0 google-cloud-datacatalog-lineage
- cryptography
>=5.2.0 ujson
- great-expectations
>=0.1.8 clickhouse-sqlalchemy
- sqlparse
!=0.15.23,!=0.15.24,!=0.15.25,!=0.15.26 great-expectations
- sqlalchemy-redshift
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
==1.1.4 lark[regex]
>=1.0.2 pymysql
>=6.0.1 pyarrow
- humanfriendly
>=0.0.4 acryl-datahub-classify
>=1.20.2 tableschema
- requests-file
- pandas
>=0.6.13 acryl-pyhive[hive]
>=3.3.0 gql
>=1.19.0 parse
>=2.4 python-ldap
>=0.6.2 pydruid
- databricks-dbapi
!=2.8.2 snowflake-connector-python
- psycopg2-binary
>=3.3.0 gql[requests]
==0.17.3 databricks-cli
- moto[s3]
- google-cloud-bigquery
~=1.7.0 okta
==22.2.1 looker-sdk
- PyYAML
>=1.4.1 sqlalchemy-bigquery
>=0.10.0 toml
- ratelimiter
>2 GitPython
- cached-property
- entrypoints
- tabulate
>=1.2.0 fastavro
>=0.2.6 stackprinter
- GeoAlchemy2
==1.3.6 sqllineage
<1.11,>=1.10.2 avro
<3.1.2 google-cloud-logging
>=2.8.0 python-dateutil
- packaging
==0.0.4 acryl-iceberg-legacy
>=0.3 sqlalchemy-pytds
==3.4.3 spacy
==7.13.4 elasticsearch
==2.4.1 PyAthena[sqlalchemy]
>=3.11 pymongo[srv]
- requests
<5.2.2 traitlets
==1.10.0 azure-identity
<2,>=1.44.0 grpcio-tools
- redash-toolbelt
<=0.15.41,>=0.15.12 great-expectations
- wcmatch
>=5.2.1 smart-open[s3]
>=1.3.0b5 lkml
~=0.29.0 feast
- boto3
- progressbar2
>=2.11.20 hdbcli
>=0.5.0 sqlalchemy-hana
<1.9.0 confluent-kafka
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
==2.4.1 PyAthena[sqlalchemy]
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
<3.1.2 google-cloud-logging
>=5.8.0 psutil
>=8.12.0 more-itertools
- greenlet
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
- google-api-python-client
==0.7.8 avro-gen3
==0.2.0 google-cloud-datacatalog-lineage
- google-cloud-bigquery
<5.2.2 traitlets
- sql-metadata
- PyYAML
>=1.4.1 sqlalchemy-bigquery
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
<3.1.2 google-cloud-logging
>=5.8.0 psutil
>=8.12.0 more-itertools
- greenlet
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
- google-api-python-client
==0.7.8 avro-gen3
- google-cloud-bigquery
<5.2.2 traitlets
- sql-metadata
- PyYAML
>=1.4.1 sqlalchemy-bigquery
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=3.3.0 gql
>=7.1.2 click
- humanfriendly
>=3.3.0 gql[requests]
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
>=0.1.8 clickhouse-sqlalchemy
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- sqlparse
>=0.1.8 clickhouse-sqlalchemy
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.2.0 fastavro
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=1.5.0 confluent-kafka
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
<1.9.0 confluent-kafka
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- uvicorn
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- duckdb
- fastapi
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- boto3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=1.23.0 botocore
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=6.0.1 pyarrow
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.20.2 tableschema
>=1.19.0 parse
>=1.0.1 pydeequ
>=7.1.2 click
- humanfriendly
- click-default-group
- moto[s3]
==0.7.8 avro-gen3
- boto3
>=5.2.0 ujson
- PyYAML
!=0.6.4,>=0.6.3 deltalake
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- wcmatch
>=5.2.1 smart-open[s3]
==3.0.3 pyspark
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=1.23.0 botocore
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- uvicorn
<2,>=1.44.0 grpcio
>=1.3.0 flask-openid
>=7.1.2 click
- requests-mock
>=0.4.3 mypy-extensions
==0.7.8 avro-gen3
- msal
<4 aiohttp
==1.16.0 msal
>=5.2.0 types-ujson
!=0.317,>=0.308 trino[sqlalchemy]
- jsonpickle
>=8.12.0 more-itertools
- packaging
- requests-ntlm
!=1.2.5,>=1.2.4 snowflake-sqlalchemy
>=0.17.0 tableauserverclient
- simple-salesforce
- twine
- cryptography
>=5.2.0 ujson
- types-toml
- types-freezegun
- sqlparse
- sqlalchemy-redshift
>=0.6.5 expandvars
- click-spinner
==1.1.4 lark[regex]
>=6.0.1 pyarrow
- humanfriendly
>=5.1 coverage
>=1.0.2 pymysql
>=0.0.4 acryl-datahub-classify
>=1.20.2 tableschema
- pandas
>=0.6.13 acryl-pyhive[hive]
>=1.19.0 parse
>=2.4 python-ldap
==0.17.3 databricks-cli
- databricks-dbapi
- psycopg2-binary
- types-pkg-resources
- google-cloud-bigquery
>=5.7.0 isort
- types-Deprecated
==22.2.1 looker-sdk
>=2.28.11.6 types-requests
- GeoAlchemy2
>=0.2.6 stackprinter
>=1.2.0 fastavro
- duckdb
- types-tabulate
- types-PyYAML
>=2.8.1 pytest-cov
>=4.3.0 flake8-tidy-imports
==3.4.3 spacy
<5.2.2 traitlets
>=4.21.0.1 types-protobuf
<2,>=1.44.0 grpcio-tools
- redash-toolbelt
- types-cachetools
- wcmatch
>=5.2.1 smart-open[s3]
<=0.15.41,>=0.15.12 great-expectations
>=1.3.0b5 lkml
- typing-inspect
- types-pyOpenSSL
- boto3
>=6.2.2 pytest
>=5.8.0 psutil
- cx-Oracle
- types-python-dateutil
- types-pytz
>=1.0.1 pydeequ
- click-default-group
- google-api-python-client
==2.2.2 sql-metadata
>=3.8.3 flake8
>=4.9.0 mixpanel
- sql-metadata
!=0.6.4,>=0.6.3 deltalake
<1.4.42 SQLAlchemy
- types-PyMySQL
>=2.6.2 networkx
==3.0.3 pyspark
>=2.0.2 apache-airflow[snowflake]
- docker
- ijson
- Deprecated
==0.1.12 types-click
- deepdiff
!=1.23.0 botocore
- greenlet
>=1.5.0 confluent-kafka
- boto3-stubs[glue,s3,sagemaker,sts]
- virtualenv
>=0.6.12 acryl-pyhive[hive]
>=1.0.0 types-termcolor
- build
>=1.7.2 scipy
<2,>=1.3.24 sqlalchemy
==0.2.0 google-cloud-datacatalog-lineage
>=1.9.0 pydantic
==0.991 mypy
>=0.1.13.1 types-click-spinner
- fastapi
>=0.1.8 clickhouse-sqlalchemy
!=0.15.23,!=0.15.24,!=0.15.25,!=0.15.26 great-expectations
>=1.0.0 termcolor
- freezegun
!=1.10.3,>=1.5.1 pydantic
- requests-file
!=2.8.2 snowflake-connector-python
==22.12.0 black
>=0.6.2 pydruid
- moto[s3]
~=1.7.0 okta
- PyYAML
>=1.4.1 sqlalchemy-bigquery
>=0.10.0 toml
- ratelimiter
>2 GitPython
- cached-property
- types-dataclasses
- entrypoints
- tabulate
==1.3.6 sqllineage
<1.11,>=1.10.2 avro
<3.1.2 google-cloud-logging
>=2.8.0 python-dateutil
==0.0.4 acryl-iceberg-legacy
>=0.16.0 pytest-asyncio
- types-six
==7.13.4 elasticsearch
- requests
==1.10.0 azure-identity
>=1.0.1 pytest-docker
~=0.29.0 feast
- progressbar2
<1.9.0 confluent-kafka
>=3.7.4.3 typing-extensions
>=3.10.0.2 typing-extensions
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
>=0.6.2 pydruid
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
==7.13.4 elasticsearch
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.3.0 flask-openid
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
~=0.29.0 feast
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- boto3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=1.23.0 botocore
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=2.11.20 hdbcli
>=0.5.0 sqlalchemy-hana
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=0.6.13 acryl-pyhive[hive]
>=7.1.2 click
- databricks-dbapi
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
!=0.15.23,!=0.15.24,!=0.15.25,!=0.15.26 great-expectations
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
==0.0.4 acryl-iceberg-legacy
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
==1.10.0 azure-identity
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=1.20.2 tableschema
>=0.6.13 acryl-pyhive[hive]
>=3.3.0 gql
>=1.19.0 parse
>=1.0.1 pydeequ
>=0.6.2 pydruid
- databricks-dbapi
>=2.4 python-ldap
>=3.3.0 gql[requests]
- moto[s3]
!=0.6.4,>=0.6.3 deltalake
==3.0.3 pyspark
- greenlet
!=1.23.0 botocore
==1.3.6 sqllineage
- packaging
==0.0.4 acryl-iceberg-legacy
>=0.3 sqlalchemy-pytds
- JPype1
>=1.7.2 scipy
<2,>=1.3.24 sqlalchemy
==2.4.1 PyAthena[sqlalchemy]
>=3.11 pymongo[srv]
<5.2.2 traitlets
>=5.2.0 ujson
- requests
- sql-metadata
>=0.1.8 clickhouse-sqlalchemy
==1.10.0 azure-identity
!=0.15.23,!=0.15.24,!=0.15.25,!=0.15.26 great-expectations
- redash-toolbelt
<=0.15.41,>=0.15.12 great-expectations
- wcmatch
>=5.2.1 smart-open[s3]
- boto3
>=1.0.2 pymysql
>=6.0.1 pyarrow
>=2.11.20 hdbcli
>=0.5.0 sqlalchemy-hana
>=5.8.0 psutil
<2,>=1.44.0 grpcio
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.2.0 fastavro
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=1.5.0 confluent-kafka
<2,>=1.44.0 grpcio-tools
>=0.10.0 toml
- ratelimiter
>=2.6.2 networkx
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- JPype1
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
- requests
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
<1.9.0 confluent-kafka
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=2.4 python-ldap
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==2.2.2 sql-metadata
==0.7.8 avro-gen3
==22.2.1 looker-sdk
- PyYAML
>=0.10.0 toml
- ratelimiter
>2 GitPython
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
>=1.3.0b5 lkml
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==2.2.2 sql-metadata
==0.7.8 avro-gen3
==22.2.1 looker-sdk
- PyYAML
>=0.10.0 toml
- ratelimiter
>2 GitPython
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
>=1.3.0b5 lkml
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
>=1.0.2 pymysql
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=8.0.1 tenacity
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
>=3.11 pymongo[srv]
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=0.3 sqlalchemy-pytds
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- pyodbc
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
>=1.0.2 pymysql
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
~=1.7.0 okta
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
- cx-Oracle
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- psycopg2-binary
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
- GeoAlchemy2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
==1.1.4 lark[regex]
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- sqlparse
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
==1.16.0 msal
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
- requests-ntlm
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=0.6.12 acryl-pyhive[hive]
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=0.317,>=0.308 trino[sqlalchemy]
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=0.6.12 acryl-pyhive[hive]
>=7.1.2 click
- humanfriendly
- psycopg2-binary
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
>=1.0.2 pymysql
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- sql-metadata
- PyYAML
>=0.10.0 toml
- ratelimiter
- redash-toolbelt
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.19.0 parse
>=7.1.2 click
- humanfriendly
- psycopg2-binary
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- sqlalchemy-redshift
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- wcmatch
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
- GeoAlchemy2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.19.0 parse
>=7.1.2 click
- humanfriendly
- psycopg2-binary
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- sqlparse
- PyYAML
>=0.10.0 toml
- ratelimiter
- sqlalchemy-redshift
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- wcmatch
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
- GeoAlchemy2
==1.3.6 sqllineage
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=6.0.1 pyarrow
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=1.20.2 tableschema
>=1.19.0 parse
>=1.0.1 pydeequ
>=7.1.2 click
- humanfriendly
- click-default-group
- moto[s3]
==0.7.8 avro-gen3
- boto3
>=5.2.0 ujson
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- wcmatch
>=5.2.1 smart-open[s3]
==3.0.3 pyspark
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=1.23.0 botocore
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- boto3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=1.23.0 botocore
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- simple-salesforce
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- pandas
- requests-file
!=2.8.2 snowflake-connector-python
>=7.1.2 click
- click-default-group
==0.7.8 avro-gen3
- msal
- PyYAML
>=0.10.0 toml
- ratelimiter
<1.4.42 SQLAlchemy
- cached-property
- progressbar2
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
>=0.2.6 stackprinter
- greenlet
<1.11,>=1.10.2 avro
- packaging
>=2.8.0 python-dateutil
!=1.2.5,>=1.2.4 snowflake-sqlalchemy
==3.4.3 spacy
>=1.7.2 scipy
<2,>=1.3.24 sqlalchemy
- cryptography
<5.2.2 traitlets
- sqlparse
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<=0.15.41,>=0.15.12 great-expectations
- humanfriendly
>=0.0.4 acryl-datahub-classify
>=5.8.0 psutil
- pandas
- requests-file
!=2.8.2 snowflake-connector-python
>=7.1.2 click
- click-default-group
==0.7.8 avro-gen3
- msal
- PyYAML
>=0.10.0 toml
- ratelimiter
<1.4.42 SQLAlchemy
- cached-property
- progressbar2
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
>=0.2.6 stackprinter
- greenlet
<1.11,>=1.10.2 avro
- packaging
>=2.8.0 python-dateutil
!=1.2.5,>=1.2.4 snowflake-sqlalchemy
==3.4.3 spacy
>=1.7.2 scipy
<2,>=1.3.24 sqlalchemy
- cryptography
<5.2.2 traitlets
- sqlparse
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<=0.15.41,>=0.15.12 great-expectations
- humanfriendly
>=0.0.4 acryl-datahub-classify
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- sqlparse
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=0.317,>=0.308 trino[sqlalchemy]
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- great-expectations
- sqlalchemy
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
>=0.17.0 tableauserverclient
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
!=0.317,>=0.308 trino[sqlalchemy]
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
==0.17.3 databricks-cli
>=7.1.2 click
- humanfriendly
- click-default-group
==0.7.8 avro-gen3
- requests
- PyYAML
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro
- greenlet
>=5.8.0 psutil
- packaging
- requests-file
>=2.8.0 python-dateutil
>=7.1.2 click
- humanfriendly
>=1.7.2 scipy
- click-default-group
<2,>=1.3.24 sqlalchemy
==0.7.8 avro-gen3
<5.2.2 traitlets
- PyYAML
==0.0.1 vertica-sqlalchemy-dialect[vertica-python]
>=0.10.0 toml
- ratelimiter
- cached-property
>=0.6.5 expandvars
>=1.0.0 termcolor
- click-spinner
<4 aiohttp
<=0.15.41,>=0.15.12 great-expectations
- entrypoints
- docker
- tabulate
- Deprecated
- ijson
- progressbar2
>=0.2.6 stackprinter
<1.11,>=1.10.2 avro


زبان مورد نیاز

مقدار نام
>=3.7 Python


نحوه نصب


نصب پکیج whl acryl-datahub-0.9.6rc1:

    pip install acryl-datahub-0.9.6rc1.whl


نصب پکیج tar.gz acryl-datahub-0.9.6rc1:

    pip install acryl-datahub-0.9.6rc1.tar.gz