recurvedata-lib 0.1.487__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of recurvedata-lib might be problematic. Click here for more details.
- recurvedata_lib-0.1.487/.gitignore +706 -0
- recurvedata_lib-0.1.487/PKG-INFO +605 -0
- recurvedata_lib-0.1.487/README.md +131 -0
- recurvedata_lib-0.1.487/pyproject.toml +580 -0
- recurvedata_lib-0.1.487/recurvedata/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/__version__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/client/__init__.py +3 -0
- recurvedata_lib-0.1.487/recurvedata/client/client.py +150 -0
- recurvedata_lib-0.1.487/recurvedata/client/server_client.py +91 -0
- recurvedata_lib-0.1.487/recurvedata/config.py +99 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/__init__.py +20 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/_register.py +46 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/base.py +111 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/config_schema.py +1575 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/aliyun_access_key.py +30 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/auth.py +44 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/azure_blob.py +89 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/azure_synapse.py +79 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/bigquery.py +359 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/clickhouse.py +219 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/dingtalk.py +61 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/doris.py +215 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/es.py +62 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/feishu.py +65 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/ftp.py +50 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/generic.py +49 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/google_cloud_storage.py +115 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/google_service_account.py +225 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/hive.py +207 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/impala.py +210 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/jenkins.py +51 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/mail.py +89 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/microsoft_fabric.py +284 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/mongo.py +79 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/mssql.py +131 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/mysql.py +191 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/n8n.py +141 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/oss.py +74 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/owncloud.py +36 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/phoenix.py +36 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/postgres.py +230 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/python.py +50 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/redshift.py +187 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/s3.py +93 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/sftp.py +87 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/slack.py +35 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/spark.py +99 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/starrocks.py +175 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/tencent_cos.py +40 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/connectors/tidb.py +49 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/const.py +315 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/datasource.py +189 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/dbapi.py +469 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/fs.py +66 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/ftp.py +40 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/object_store.py +60 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/pigeon.py +172 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/proxy.py +104 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/service.py +223 -0
- recurvedata_lib-0.1.487/recurvedata/connectors/utils.py +47 -0
- recurvedata_lib-0.1.487/recurvedata/consts.py +49 -0
- recurvedata_lib-0.1.487/recurvedata/core/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/core/config.py +46 -0
- recurvedata_lib-0.1.487/recurvedata/core/configurable.py +27 -0
- recurvedata_lib-0.1.487/recurvedata/core/consts.py +2 -0
- recurvedata_lib-0.1.487/recurvedata/core/templating.py +206 -0
- recurvedata_lib-0.1.487/recurvedata/core/tracing.py +223 -0
- recurvedata_lib-0.1.487/recurvedata/core/transformer.py +186 -0
- recurvedata_lib-0.1.487/recurvedata/core/translation.py +91 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/client.py +97 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/consts.py +99 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/cosmos_utils.py +275 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/error_codes.py +18 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/schemas.py +98 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/service.py +451 -0
- recurvedata_lib-0.1.487/recurvedata/dbt/utils.py +246 -0
- recurvedata_lib-0.1.487/recurvedata/error_codes.py +71 -0
- recurvedata_lib-0.1.487/recurvedata/exceptions.py +72 -0
- recurvedata_lib-0.1.487/recurvedata/executors/__init__.py +4 -0
- recurvedata_lib-0.1.487/recurvedata/executors/cli/__init__.py +7 -0
- recurvedata_lib-0.1.487/recurvedata/executors/cli/connector.py +117 -0
- recurvedata_lib-0.1.487/recurvedata/executors/cli/dbt.py +118 -0
- recurvedata_lib-0.1.487/recurvedata/executors/cli/main.py +82 -0
- recurvedata_lib-0.1.487/recurvedata/executors/cli/parameters.py +18 -0
- recurvedata_lib-0.1.487/recurvedata/executors/client.py +190 -0
- recurvedata_lib-0.1.487/recurvedata/executors/consts.py +50 -0
- recurvedata_lib-0.1.487/recurvedata/executors/debug_executor.py +100 -0
- recurvedata_lib-0.1.487/recurvedata/executors/executor.py +300 -0
- recurvedata_lib-0.1.487/recurvedata/executors/link_executor.py +189 -0
- recurvedata_lib-0.1.487/recurvedata/executors/models.py +34 -0
- recurvedata_lib-0.1.487/recurvedata/executors/schemas.py +222 -0
- recurvedata_lib-0.1.487/recurvedata/executors/service/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/executors/service/connector.py +380 -0
- recurvedata_lib-0.1.487/recurvedata/executors/utils.py +172 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/__init__.py +11 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/_factory.py +33 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/backends/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/backends/fsspec.py +45 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/backends/local.py +67 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/backends/oss.py +56 -0
- recurvedata_lib-0.1.487/recurvedata/filestorage/interface.py +84 -0
- recurvedata_lib-0.1.487/recurvedata/operators/__init__.py +10 -0
- recurvedata_lib-0.1.487/recurvedata/operators/base.py +28 -0
- recurvedata_lib-0.1.487/recurvedata/operators/config.py +21 -0
- recurvedata_lib-0.1.487/recurvedata/operators/context.py +255 -0
- recurvedata_lib-0.1.487/recurvedata/operators/dbt_operator/__init__.py +2 -0
- recurvedata_lib-0.1.487/recurvedata/operators/dbt_operator/model_pipeline_link_operator.py +55 -0
- recurvedata_lib-0.1.487/recurvedata/operators/dbt_operator/operator.py +353 -0
- recurvedata_lib-0.1.487/recurvedata/operators/link_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/link_operator/operator.py +120 -0
- recurvedata_lib-0.1.487/recurvedata/operators/models.py +55 -0
- recurvedata_lib-0.1.487/recurvedata/operators/notify_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/notify_operator/operator.py +180 -0
- recurvedata_lib-0.1.487/recurvedata/operators/operator.py +119 -0
- recurvedata_lib-0.1.487/recurvedata/operators/python_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/python_operator/operator.py +132 -0
- recurvedata_lib-0.1.487/recurvedata/operators/sensor_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/sensor_operator/airflow_utils.py +63 -0
- recurvedata_lib-0.1.487/recurvedata/operators/sensor_operator/operator.py +172 -0
- recurvedata_lib-0.1.487/recurvedata/operators/spark_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/spark_operator/operator.py +200 -0
- recurvedata_lib-0.1.487/recurvedata/operators/spark_operator/spark_sample.py +47 -0
- recurvedata_lib-0.1.487/recurvedata/operators/sql_operator/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/operators/sql_operator/operator.py +90 -0
- recurvedata_lib-0.1.487/recurvedata/operators/task.py +211 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/__init__.py +40 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/const.py +10 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_aliyun_sls.py +82 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_sheet_task_base.py +292 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_cass.py +155 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_dbapi.py +209 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_es.py +113 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_feishu_sheet.py +114 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_ftp.py +234 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_google_sheet.py +66 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_mongodb.py +168 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_oss.py +285 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_python.py +212 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_s3.py +270 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/dump_task_sftp.py +229 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_aliyun_oss.py +107 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_azure_blob.py +115 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_azure_synapse.py +90 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_clickhouse.py +167 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_doris.py +164 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_email.py +188 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_es.py +86 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_filebrowser.py +151 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_ftp.py +19 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_google_bigquery.py +90 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_google_cloud_storage.py +127 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_google_sheet.py +130 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_hive.py +158 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_microsoft_fabric.py +105 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_mssql.py +153 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_mysql.py +157 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_owncloud.py +135 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_postgresql.py +109 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_qcloud_cos.py +119 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_recurve_data_prep.py +75 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_redshift.py +95 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_s3.py +150 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_sftp.py +90 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_starrocks.py +169 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/load_task_yicrowds.py +97 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/mixin.py +31 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/operator.py +231 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/task.py +223 -0
- recurvedata_lib-0.1.487/recurvedata/operators/transfer_operator/utils.py +134 -0
- recurvedata_lib-0.1.487/recurvedata/operators/ui.py +80 -0
- recurvedata_lib-0.1.487/recurvedata/operators/utils/__init__.py +51 -0
- recurvedata_lib-0.1.487/recurvedata/operators/utils/file_factory.py +150 -0
- recurvedata_lib-0.1.487/recurvedata/operators/utils/fs.py +10 -0
- recurvedata_lib-0.1.487/recurvedata/operators/utils/lineage.py +265 -0
- recurvedata_lib-0.1.487/recurvedata/operators/web_init.py +15 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/__init__.py +294 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/_registry.py +17 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/aliyun_oss.py +80 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/awss3.py +123 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/azure_blob.py +176 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/azure_synapse.py +51 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/cass.py +151 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/clickhouse.py +403 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/clickhouse_native.py +351 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/dbapi.py +571 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/doris.py +166 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/es.py +176 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/feishu.py +1135 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/ftp.py +163 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/google_bigquery.py +283 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/google_cloud_storage.py +130 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/hbase_phoenix.py +108 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/hdfs.py +204 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/hive_impala.py +383 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/microsoft_fabric.py +95 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/mongodb.py +56 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/mssql.py +467 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/mysql.py +175 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/owncloud.py +92 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/postgresql.py +267 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/power_bi.py +179 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/qcloud_cos.py +79 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/redshift.py +123 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/sftp.py +73 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/sqlite.py +42 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/starrocks.py +144 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/connector/tableau.py +162 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/const.py +21 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/csv.py +172 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/docs/datasources-example.json +82 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/docs/images/pigeon_design.png +0 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/docs/lightweight-data-sync-solution.md +111 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/__init__.py +171 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/aliyun_sls.py +415 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/base.py +141 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/cass.py +213 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/dbapi.py +346 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/es.py +112 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/ftp.py +64 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/dumper/mongodb.py +103 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/handler/__init__.py +4 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/handler/base.py +153 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/handler/csv_handler.py +290 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/__init__.py +87 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/base.py +83 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_azure_synapse.py +214 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_clickhouse.py +152 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_doris.py +215 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_es.py +51 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_google_bigquery.py +169 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_hive.py +468 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_microsoft_fabric.py +242 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_mssql.py +174 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_mysql.py +180 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_postgresql.py +248 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_redshift.py +240 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/loader/csv_to_starrocks.py +233 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/meta.py +116 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/row_factory.py +42 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/schema/__init__.py +124 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/schema/types.py +13 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/sync.py +283 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/transformer.py +146 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/__init__.py +134 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/bloomfilter.py +181 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/date_time.py +323 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/escape.py +15 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/fs.py +266 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/json.py +44 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/keyed_tuple.py +85 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/mp.py +156 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/sql.py +328 -0
- recurvedata_lib-0.1.487/recurvedata/pigeon/utils/timing.py +155 -0
- recurvedata_lib-0.1.487/recurvedata/provider_manager.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/providers/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/providers/dbapi/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/providers/flywheel/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/providers/mysql/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/__init__.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/airflow.py +974 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/airflow_db_process.py +331 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/airflow_operators.py +61 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/airflow_plugin.py +9 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/airflow_trigger_dag_patch.py +117 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/base.py +99 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/cli.py +228 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/client.py +56 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/consts.py +52 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/debug_celery.py +62 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/model.py +63 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/schemas.py +97 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/service.py +20 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/system_dags.py +59 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/task_status.py +279 -0
- recurvedata_lib-0.1.487/recurvedata/schedulers/utils.py +73 -0
- recurvedata_lib-0.1.487/recurvedata/schema/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/schema/field.py +88 -0
- recurvedata_lib-0.1.487/recurvedata/schema/schema.py +55 -0
- recurvedata_lib-0.1.487/recurvedata/schema/types.py +17 -0
- recurvedata_lib-0.1.487/recurvedata/schema.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/app.py +7 -0
- recurvedata_lib-0.1.487/recurvedata/server/connector/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/connector/api.py +79 -0
- recurvedata_lib-0.1.487/recurvedata/server/connector/schemas.py +28 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/api.py +126 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/client.py +18 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/consts.py +1 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/schemas.py +68 -0
- recurvedata_lib-0.1.487/recurvedata/server/data_service/service.py +218 -0
- recurvedata_lib-0.1.487/recurvedata/server/dbt/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/dbt/api.py +116 -0
- recurvedata_lib-0.1.487/recurvedata/server/error_code.py +49 -0
- recurvedata_lib-0.1.487/recurvedata/server/exceptions.py +19 -0
- recurvedata_lib-0.1.487/recurvedata/server/executor/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/executor/api.py +37 -0
- recurvedata_lib-0.1.487/recurvedata/server/executor/schemas.py +30 -0
- recurvedata_lib-0.1.487/recurvedata/server/executor/service.py +220 -0
- recurvedata_lib-0.1.487/recurvedata/server/main.py +32 -0
- recurvedata_lib-0.1.487/recurvedata/server/schedulers/__init__.py +0 -0
- recurvedata_lib-0.1.487/recurvedata/server/schedulers/api.py +252 -0
- recurvedata_lib-0.1.487/recurvedata/server/schedulers/schemas.py +50 -0
- recurvedata_lib-0.1.487/recurvedata/server/schemas.py +50 -0
- recurvedata_lib-0.1.487/recurvedata/utils/__init__.py +15 -0
- recurvedata_lib-0.1.487/recurvedata/utils/_typer.py +61 -0
- recurvedata_lib-0.1.487/recurvedata/utils/attrdict.py +19 -0
- recurvedata_lib-0.1.487/recurvedata/utils/command_helper.py +20 -0
- recurvedata_lib-0.1.487/recurvedata/utils/compat.py +12 -0
- recurvedata_lib-0.1.487/recurvedata/utils/compression.py +203 -0
- recurvedata_lib-0.1.487/recurvedata/utils/crontab.py +42 -0
- recurvedata_lib-0.1.487/recurvedata/utils/crypto_util.py +305 -0
- recurvedata_lib-0.1.487/recurvedata/utils/dataclass.py +11 -0
- recurvedata_lib-0.1.487/recurvedata/utils/date_time.py +464 -0
- recurvedata_lib-0.1.487/recurvedata/utils/dispatch.py +114 -0
- recurvedata_lib-0.1.487/recurvedata/utils/email_util.py +104 -0
- recurvedata_lib-0.1.487/recurvedata/utils/files.py +386 -0
- recurvedata_lib-0.1.487/recurvedata/utils/helpers.py +170 -0
- recurvedata_lib-0.1.487/recurvedata/utils/httputil.py +117 -0
- recurvedata_lib-0.1.487/recurvedata/utils/imports.py +132 -0
- recurvedata_lib-0.1.487/recurvedata/utils/json.py +80 -0
- recurvedata_lib-0.1.487/recurvedata/utils/log.py +117 -0
- recurvedata_lib-0.1.487/recurvedata/utils/log_capture.py +153 -0
- recurvedata_lib-0.1.487/recurvedata/utils/mp.py +178 -0
- recurvedata_lib-0.1.487/recurvedata/utils/normalizer.py +102 -0
- recurvedata_lib-0.1.487/recurvedata/utils/redis_lock.py +474 -0
- recurvedata_lib-0.1.487/recurvedata/utils/registry.py +54 -0
- recurvedata_lib-0.1.487/recurvedata/utils/shell.py +15 -0
- recurvedata_lib-0.1.487/recurvedata/utils/singleton.py +33 -0
- recurvedata_lib-0.1.487/recurvedata/utils/sql.py +6 -0
- recurvedata_lib-0.1.487/recurvedata/utils/timeout.py +28 -0
- recurvedata_lib-0.1.487/recurvedata/utils/tracing.py +14 -0
|
@@ -0,0 +1,706 @@
|
|
|
1
|
+
### PyCharm+iml template
|
|
2
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
|
|
3
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
4
|
+
|
|
5
|
+
# User-specific stuff
|
|
6
|
+
.idea/**/workspace.xml
|
|
7
|
+
.idea/**/tasks.xml
|
|
8
|
+
.idea/**/usage.statistics.xml
|
|
9
|
+
.idea/**/dictionaries
|
|
10
|
+
.idea/**/shelf
|
|
11
|
+
|
|
12
|
+
# AWS User-specific
|
|
13
|
+
.idea/**/aws.xml
|
|
14
|
+
|
|
15
|
+
# Generated files
|
|
16
|
+
.idea/**/contentModel.xml
|
|
17
|
+
|
|
18
|
+
# Sensitive or high-churn files
|
|
19
|
+
.idea/**/dataSources/
|
|
20
|
+
.idea/**/dataSources.ids
|
|
21
|
+
.idea/**/dataSources.local.xml
|
|
22
|
+
.idea/**/sqlDataSources.xml
|
|
23
|
+
.idea/**/dynamic.xml
|
|
24
|
+
.idea/**/uiDesigner.xml
|
|
25
|
+
.idea/**/dbnavigator.xml
|
|
26
|
+
|
|
27
|
+
# Gradle
|
|
28
|
+
.idea/**/gradle.xml
|
|
29
|
+
.idea/**/libraries
|
|
30
|
+
|
|
31
|
+
# Gradle and Maven with auto-import
|
|
32
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
33
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
|
34
|
+
# auto-import.
|
|
35
|
+
# .idea/artifacts
|
|
36
|
+
# .idea/compiler.xml
|
|
37
|
+
# .idea/jarRepositories.xml
|
|
38
|
+
# .idea/modules.xml
|
|
39
|
+
# .idea/*.iml
|
|
40
|
+
# .idea/modules
|
|
41
|
+
# *.iml
|
|
42
|
+
# *.ipr
|
|
43
|
+
|
|
44
|
+
.idea
|
|
45
|
+
|
|
46
|
+
# CMake
|
|
47
|
+
cmake-build-*/
|
|
48
|
+
|
|
49
|
+
# Mongo Explorer plugin
|
|
50
|
+
.idea/**/mongoSettings.xml
|
|
51
|
+
|
|
52
|
+
# File-based project format
|
|
53
|
+
*.iws
|
|
54
|
+
|
|
55
|
+
# IntelliJ
|
|
56
|
+
out/
|
|
57
|
+
|
|
58
|
+
# mpeltonen/sbt-idea plugin
|
|
59
|
+
.idea_modules/
|
|
60
|
+
|
|
61
|
+
# JIRA plugin
|
|
62
|
+
atlassian-ide-plugin.xml
|
|
63
|
+
|
|
64
|
+
# Cursive Clojure plugin
|
|
65
|
+
.idea/replstate.xml
|
|
66
|
+
|
|
67
|
+
# SonarLint plugin
|
|
68
|
+
.idea/sonarlint/
|
|
69
|
+
|
|
70
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
71
|
+
com_crashlytics_export_strings.xml
|
|
72
|
+
crashlytics.properties
|
|
73
|
+
crashlytics-build.properties
|
|
74
|
+
fabric.properties
|
|
75
|
+
|
|
76
|
+
# Editor-based Rest Client
|
|
77
|
+
.idea/httpRequests
|
|
78
|
+
|
|
79
|
+
# Android studio 3.1+ serialized cache file
|
|
80
|
+
.idea/caches/build_file_checksums.ser
|
|
81
|
+
|
|
82
|
+
### VisualStudioCode template
|
|
83
|
+
.vscode/*
|
|
84
|
+
# !.vscode/settings.json
|
|
85
|
+
# !.vscode/tasks.json
|
|
86
|
+
# !.vscode/launch.json
|
|
87
|
+
# !.vscode/extensions.json
|
|
88
|
+
# !.vscode/*.code-snippets
|
|
89
|
+
|
|
90
|
+
# Local History for Visual Studio Code
|
|
91
|
+
.history/
|
|
92
|
+
|
|
93
|
+
# Built Visual Studio Code Extensions
|
|
94
|
+
*.vsix
|
|
95
|
+
|
|
96
|
+
### Linux template
|
|
97
|
+
*~
|
|
98
|
+
|
|
99
|
+
# temporary files which can be created if a process still has a handle open of a deleted file
|
|
100
|
+
.fuse_hidden*
|
|
101
|
+
|
|
102
|
+
# KDE directory preferences
|
|
103
|
+
.directory
|
|
104
|
+
|
|
105
|
+
# Linux trash folder which might appear on any partition or disk
|
|
106
|
+
.Trash-*
|
|
107
|
+
|
|
108
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
|
109
|
+
.nfs*
|
|
110
|
+
|
|
111
|
+
### VisualStudio template
|
|
112
|
+
## Ignore Visual Studio temporary files, build results, and
|
|
113
|
+
## files generated by popular Visual Studio add-ons.
|
|
114
|
+
##
|
|
115
|
+
## Get latest from https://github.com/github/gitignore/blob/main/VisualStudio.gitignore
|
|
116
|
+
|
|
117
|
+
# User-specific files
|
|
118
|
+
*.rsuser
|
|
119
|
+
*.suo
|
|
120
|
+
*.user
|
|
121
|
+
*.userosscache
|
|
122
|
+
*.sln.docstates
|
|
123
|
+
|
|
124
|
+
# User-specific files (MonoDevelop/Xamarin Studio)
|
|
125
|
+
*.userprefs
|
|
126
|
+
|
|
127
|
+
# Mono auto generated files
|
|
128
|
+
mono_crash.*
|
|
129
|
+
|
|
130
|
+
# Build results
|
|
131
|
+
[Dd]ebug/
|
|
132
|
+
[Dd]ebugPublic/
|
|
133
|
+
[Rr]elease/
|
|
134
|
+
[Rr]eleases/
|
|
135
|
+
x64/
|
|
136
|
+
x86/
|
|
137
|
+
[Ww][Ii][Nn]32/
|
|
138
|
+
[Aa][Rr][Mm]/
|
|
139
|
+
[Aa][Rr][Mm]64/
|
|
140
|
+
bld/
|
|
141
|
+
[Bb]in/
|
|
142
|
+
[Oo]bj/
|
|
143
|
+
[Ll]og/
|
|
144
|
+
[Ll]ogs/
|
|
145
|
+
|
|
146
|
+
# Visual Studio 2015/2017 cache/options directory
|
|
147
|
+
.vs/
|
|
148
|
+
# Uncomment if you have tasks that create the project's static files in wwwroot
|
|
149
|
+
#wwwroot/
|
|
150
|
+
|
|
151
|
+
# Visual Studio 2017 auto generated files
|
|
152
|
+
Generated\ Files/
|
|
153
|
+
|
|
154
|
+
# MSTest test Results
|
|
155
|
+
[Tt]est[Rr]esult*/
|
|
156
|
+
[Bb]uild[Ll]og.*
|
|
157
|
+
|
|
158
|
+
# NUnit
|
|
159
|
+
*.VisualState.xml
|
|
160
|
+
TestResult.xml
|
|
161
|
+
nunit-*.xml
|
|
162
|
+
|
|
163
|
+
# Build Results of an ATL Project
|
|
164
|
+
[Dd]ebugPS/
|
|
165
|
+
[Rr]eleasePS/
|
|
166
|
+
dlldata.c
|
|
167
|
+
|
|
168
|
+
# Benchmark Results
|
|
169
|
+
BenchmarkDotNet.Artifacts/
|
|
170
|
+
|
|
171
|
+
# .NET Core
|
|
172
|
+
project.lock.json
|
|
173
|
+
project.fragment.lock.json
|
|
174
|
+
artifacts/
|
|
175
|
+
|
|
176
|
+
# ASP.NET Scaffolding
|
|
177
|
+
ScaffoldingReadMe.txt
|
|
178
|
+
|
|
179
|
+
# StyleCop
|
|
180
|
+
StyleCopReport.xml
|
|
181
|
+
|
|
182
|
+
# Files built by Visual Studio
|
|
183
|
+
*_i.c
|
|
184
|
+
*_p.c
|
|
185
|
+
*_h.h
|
|
186
|
+
*.ilk
|
|
187
|
+
*.meta
|
|
188
|
+
*.obj
|
|
189
|
+
*.iobj
|
|
190
|
+
*.pch
|
|
191
|
+
*.pdb
|
|
192
|
+
*.ipdb
|
|
193
|
+
*.pgc
|
|
194
|
+
*.pgd
|
|
195
|
+
*.rsp
|
|
196
|
+
*.sbr
|
|
197
|
+
*.tlb
|
|
198
|
+
*.tli
|
|
199
|
+
*.tlh
|
|
200
|
+
*.tmp
|
|
201
|
+
*.tmp_proj
|
|
202
|
+
*_wpftmp.csproj
|
|
203
|
+
*.log
|
|
204
|
+
*.tlog
|
|
205
|
+
*.vspscc
|
|
206
|
+
*.vssscc
|
|
207
|
+
.builds
|
|
208
|
+
*.pidb
|
|
209
|
+
*.svclog
|
|
210
|
+
*.scc
|
|
211
|
+
|
|
212
|
+
# Chutzpah Test files
|
|
213
|
+
_Chutzpah*
|
|
214
|
+
|
|
215
|
+
# Visual C++ cache files
|
|
216
|
+
ipch/
|
|
217
|
+
*.aps
|
|
218
|
+
*.ncb
|
|
219
|
+
*.opendb
|
|
220
|
+
*.opensdf
|
|
221
|
+
*.sdf
|
|
222
|
+
*.cachefile
|
|
223
|
+
*.VC.db
|
|
224
|
+
*.VC.VC.opendb
|
|
225
|
+
|
|
226
|
+
# Visual Studio profiler
|
|
227
|
+
*.psess
|
|
228
|
+
*.vsp
|
|
229
|
+
*.vspx
|
|
230
|
+
*.sap
|
|
231
|
+
|
|
232
|
+
# Visual Studio Trace Files
|
|
233
|
+
*.e2e
|
|
234
|
+
|
|
235
|
+
# TFS 2012 Local Workspace
|
|
236
|
+
$tf/
|
|
237
|
+
|
|
238
|
+
# Guidance Automation Toolkit
|
|
239
|
+
*.gpState
|
|
240
|
+
|
|
241
|
+
# ReSharper is a .NET coding add-in
|
|
242
|
+
_ReSharper*/
|
|
243
|
+
*.[Rr]e[Ss]harper
|
|
244
|
+
*.DotSettings.user
|
|
245
|
+
|
|
246
|
+
# TeamCity is a build add-in
|
|
247
|
+
_TeamCity*
|
|
248
|
+
|
|
249
|
+
# DotCover is a Code Coverage Tool
|
|
250
|
+
*.dotCover
|
|
251
|
+
|
|
252
|
+
# AxoCover is a Code Coverage Tool
|
|
253
|
+
.axoCover/*
|
|
254
|
+
!.axoCover/settings.json
|
|
255
|
+
|
|
256
|
+
# Coverlet is a free, cross platform Code Coverage Tool
|
|
257
|
+
coverage*.json
|
|
258
|
+
coverage*.xml
|
|
259
|
+
coverage*.info
|
|
260
|
+
|
|
261
|
+
# Visual Studio code coverage results
|
|
262
|
+
*.coverage
|
|
263
|
+
*.coveragexml
|
|
264
|
+
|
|
265
|
+
# NCrunch
|
|
266
|
+
_NCrunch_*
|
|
267
|
+
.*crunch*.local.xml
|
|
268
|
+
nCrunchTemp_*
|
|
269
|
+
|
|
270
|
+
# MightyMoose
|
|
271
|
+
*.mm.*
|
|
272
|
+
AutoTest.Net/
|
|
273
|
+
|
|
274
|
+
# Web workbench (sass)
|
|
275
|
+
.sass-cache/
|
|
276
|
+
|
|
277
|
+
# Installshield output folder
|
|
278
|
+
[Ee]xpress/
|
|
279
|
+
|
|
280
|
+
# DocProject is a documentation generator add-in
|
|
281
|
+
DocProject/buildhelp/
|
|
282
|
+
DocProject/Help/*.HxT
|
|
283
|
+
DocProject/Help/*.HxC
|
|
284
|
+
DocProject/Help/*.hhc
|
|
285
|
+
DocProject/Help/*.hhk
|
|
286
|
+
DocProject/Help/*.hhp
|
|
287
|
+
DocProject/Help/Html2
|
|
288
|
+
DocProject/Help/html
|
|
289
|
+
|
|
290
|
+
# Click-Once directory
|
|
291
|
+
publish/
|
|
292
|
+
|
|
293
|
+
# Publish Web Output
|
|
294
|
+
*.[Pp]ublish.xml
|
|
295
|
+
*.azurePubxml
|
|
296
|
+
# Note: Comment the next line if you want to checkin your web deploy settings,
|
|
297
|
+
# but database connection strings (with potential passwords) will be unencrypted
|
|
298
|
+
*.pubxml
|
|
299
|
+
*.publishproj
|
|
300
|
+
|
|
301
|
+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
|
|
302
|
+
# checkin your Azure Web App publish settings, but sensitive information contained
|
|
303
|
+
# in these scripts will be unencrypted
|
|
304
|
+
PublishScripts/
|
|
305
|
+
|
|
306
|
+
# NuGet Packages
|
|
307
|
+
*.nupkg
|
|
308
|
+
# NuGet Symbol Packages
|
|
309
|
+
*.snupkg
|
|
310
|
+
# The packages folder can be ignored because of Package Restore
|
|
311
|
+
**/[Pp]ackages/*
|
|
312
|
+
# except build/, which is used as an MSBuild target.
|
|
313
|
+
!**/[Pp]ackages/build/
|
|
314
|
+
# Uncomment if necessary however generally it will be regenerated when needed
|
|
315
|
+
#!**/[Pp]ackages/repositories.config
|
|
316
|
+
# NuGet v3's project.json files produces more ignorable files
|
|
317
|
+
*.nuget.props
|
|
318
|
+
*.nuget.targets
|
|
319
|
+
|
|
320
|
+
# Microsoft Azure Build Output
|
|
321
|
+
csx/
|
|
322
|
+
*.build.csdef
|
|
323
|
+
|
|
324
|
+
# Microsoft Azure Emulator
|
|
325
|
+
ecf/
|
|
326
|
+
rcf/
|
|
327
|
+
|
|
328
|
+
# Windows Store app package directories and files
|
|
329
|
+
AppPackages/
|
|
330
|
+
BundleArtifacts/
|
|
331
|
+
Package.StoreAssociation.xml
|
|
332
|
+
_pkginfo.txt
|
|
333
|
+
*.appx
|
|
334
|
+
*.appxbundle
|
|
335
|
+
*.appxupload
|
|
336
|
+
|
|
337
|
+
# Visual Studio cache files
|
|
338
|
+
# files ending in .cache can be ignored
|
|
339
|
+
*.[Cc]ache
|
|
340
|
+
# but keep track of directories ending in .cache
|
|
341
|
+
!?*.[Cc]ache/
|
|
342
|
+
|
|
343
|
+
# Others
|
|
344
|
+
ClientBin/
|
|
345
|
+
~$*
|
|
346
|
+
*~
|
|
347
|
+
*.dbmdl
|
|
348
|
+
*.dbproj.schemaview
|
|
349
|
+
*.jfm
|
|
350
|
+
*.pfx
|
|
351
|
+
*.publishsettings
|
|
352
|
+
orleans.codegen.cs
|
|
353
|
+
|
|
354
|
+
# Including strong name files can present a security risk
|
|
355
|
+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
|
|
356
|
+
#*.snk
|
|
357
|
+
|
|
358
|
+
# Since there are multiple workflows, uncomment next line to ignore bower_components
|
|
359
|
+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
|
|
360
|
+
#bower_components/
|
|
361
|
+
|
|
362
|
+
# RIA/Silverlight projects
|
|
363
|
+
Generated_Code/
|
|
364
|
+
|
|
365
|
+
# Backup & report files from converting an old project file
|
|
366
|
+
# to a newer Visual Studio version. Backup files are not needed,
|
|
367
|
+
# because we have git ;-)
|
|
368
|
+
_UpgradeReport_Files/
|
|
369
|
+
Backup*/
|
|
370
|
+
UpgradeLog*.XML
|
|
371
|
+
UpgradeLog*.htm
|
|
372
|
+
ServiceFabricBackup/
|
|
373
|
+
*.rptproj.bak
|
|
374
|
+
|
|
375
|
+
# SQL Server files
|
|
376
|
+
*.mdf
|
|
377
|
+
*.ldf
|
|
378
|
+
*.ndf
|
|
379
|
+
|
|
380
|
+
# Business Intelligence projects
|
|
381
|
+
*.rdl.data
|
|
382
|
+
*.bim.layout
|
|
383
|
+
*.bim_*.settings
|
|
384
|
+
*.rptproj.rsuser
|
|
385
|
+
*- [Bb]ackup.rdl
|
|
386
|
+
*- [Bb]ackup ([0-9]).rdl
|
|
387
|
+
*- [Bb]ackup ([0-9][0-9]).rdl
|
|
388
|
+
|
|
389
|
+
# Microsoft Fakes
|
|
390
|
+
FakesAssemblies/
|
|
391
|
+
|
|
392
|
+
# GhostDoc plugin setting file
|
|
393
|
+
*.GhostDoc.xml
|
|
394
|
+
|
|
395
|
+
# Node.js Tools for Visual Studio
|
|
396
|
+
.ntvs_analysis.dat
|
|
397
|
+
node_modules/
|
|
398
|
+
|
|
399
|
+
# Visual Studio 6 build log
|
|
400
|
+
*.plg
|
|
401
|
+
|
|
402
|
+
# Visual Studio 6 workspace options file
|
|
403
|
+
*.opt
|
|
404
|
+
|
|
405
|
+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
|
|
406
|
+
*.vbw
|
|
407
|
+
|
|
408
|
+
# Visual Studio 6 auto-generated project file (contains which files were open etc.)
|
|
409
|
+
*.vbp
|
|
410
|
+
|
|
411
|
+
# Visual Studio 6 workspace and project file (working project files containing files to include in project)
|
|
412
|
+
*.dsw
|
|
413
|
+
*.dsp
|
|
414
|
+
|
|
415
|
+
# Visual Studio 6 technical files
|
|
416
|
+
*.ncb
|
|
417
|
+
*.aps
|
|
418
|
+
|
|
419
|
+
# Visual Studio LightSwitch build output
|
|
420
|
+
**/*.HTMLClient/GeneratedArtifacts
|
|
421
|
+
**/*.DesktopClient/GeneratedArtifacts
|
|
422
|
+
**/*.DesktopClient/ModelManifest.xml
|
|
423
|
+
**/*.Server/GeneratedArtifacts
|
|
424
|
+
**/*.Server/ModelManifest.xml
|
|
425
|
+
_Pvt_Extensions
|
|
426
|
+
|
|
427
|
+
# Paket dependency manager
|
|
428
|
+
.paket/paket.exe
|
|
429
|
+
paket-files/
|
|
430
|
+
|
|
431
|
+
# FAKE - F# Make
|
|
432
|
+
.fake/
|
|
433
|
+
|
|
434
|
+
# CodeRush personal settings
|
|
435
|
+
.cr/personal
|
|
436
|
+
|
|
437
|
+
# Python Tools for Visual Studio (PTVS)
|
|
438
|
+
__pycache__/
|
|
439
|
+
*.pyc
|
|
440
|
+
|
|
441
|
+
# Cake - Uncomment if you are using it
|
|
442
|
+
# tools/**
|
|
443
|
+
# !tools/packages.config
|
|
444
|
+
|
|
445
|
+
# Tabs Studio
|
|
446
|
+
*.tss
|
|
447
|
+
|
|
448
|
+
# Telerik's JustMock configuration file
|
|
449
|
+
*.jmconfig
|
|
450
|
+
|
|
451
|
+
# BizTalk build output
|
|
452
|
+
*.btp.cs
|
|
453
|
+
*.btm.cs
|
|
454
|
+
*.odx.cs
|
|
455
|
+
*.xsd.cs
|
|
456
|
+
|
|
457
|
+
# OpenCover UI analysis results
|
|
458
|
+
OpenCover/
|
|
459
|
+
|
|
460
|
+
# Azure Stream Analytics local run output
|
|
461
|
+
ASALocalRun/
|
|
462
|
+
|
|
463
|
+
# MSBuild Binary and Structured Log
|
|
464
|
+
*.binlog
|
|
465
|
+
|
|
466
|
+
# NVidia Nsight GPU debugger configuration file
|
|
467
|
+
*.nvuser
|
|
468
|
+
|
|
469
|
+
# MFractors (Xamarin productivity tool) working folder
|
|
470
|
+
.mfractor/
|
|
471
|
+
|
|
472
|
+
# Local History for Visual Studio
|
|
473
|
+
.localhistory/
|
|
474
|
+
|
|
475
|
+
# Visual Studio History (VSHistory) files
|
|
476
|
+
.vshistory/
|
|
477
|
+
|
|
478
|
+
# BeatPulse healthcheck temp database
|
|
479
|
+
healthchecksdb
|
|
480
|
+
|
|
481
|
+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
|
|
482
|
+
MigrationBackup/
|
|
483
|
+
|
|
484
|
+
# Ionide (cross platform F# VS Code tools) working folder
|
|
485
|
+
.ionide/
|
|
486
|
+
|
|
487
|
+
# Fody - auto-generated XML schema
|
|
488
|
+
FodyWeavers.xsd
|
|
489
|
+
|
|
490
|
+
*.code-workspace
|
|
491
|
+
|
|
492
|
+
# Windows Installer files from build outputs
|
|
493
|
+
*.cab
|
|
494
|
+
*.msi
|
|
495
|
+
*.msix
|
|
496
|
+
*.msm
|
|
497
|
+
*.msp
|
|
498
|
+
|
|
499
|
+
# JetBrains Rider
|
|
500
|
+
*.sln.iml
|
|
501
|
+
|
|
502
|
+
### Vim template
|
|
503
|
+
# Swap
|
|
504
|
+
[._]*.s[a-v][a-z]
|
|
505
|
+
!*.svg # comment out if you don't need vector files
|
|
506
|
+
[._]*.sw[a-p]
|
|
507
|
+
[._]s[a-rt-v][a-z]
|
|
508
|
+
[._]ss[a-gi-z]
|
|
509
|
+
[._]sw[a-p]
|
|
510
|
+
|
|
511
|
+
# Session
|
|
512
|
+
Session.vim
|
|
513
|
+
Sessionx.vim
|
|
514
|
+
|
|
515
|
+
# Temporary
|
|
516
|
+
.netrwhist
|
|
517
|
+
*~
|
|
518
|
+
# Auto-generated tag files
|
|
519
|
+
tags
|
|
520
|
+
# Persistent undo
|
|
521
|
+
[._]*.un~
|
|
522
|
+
|
|
523
|
+
### macOS template
|
|
524
|
+
# General
|
|
525
|
+
.DS_Store
|
|
526
|
+
.AppleDouble
|
|
527
|
+
.LSOverride
|
|
528
|
+
|
|
529
|
+
# Icon must end with two \r
|
|
530
|
+
Icon
|
|
531
|
+
|
|
532
|
+
# Thumbnails
|
|
533
|
+
._*
|
|
534
|
+
|
|
535
|
+
# Files that might appear in the root of a volume
|
|
536
|
+
.DocumentRevisions-V100
|
|
537
|
+
.fseventsd
|
|
538
|
+
.Spotlight-V100
|
|
539
|
+
.TemporaryItems
|
|
540
|
+
.Trashes
|
|
541
|
+
.VolumeIcon.icns
|
|
542
|
+
.com.apple.timemachine.donotpresent
|
|
543
|
+
|
|
544
|
+
# Directories potentially created on remote AFP share
|
|
545
|
+
.AppleDB
|
|
546
|
+
.AppleDesktop
|
|
547
|
+
Network Trash Folder
|
|
548
|
+
Temporary Items
|
|
549
|
+
.apdisk
|
|
550
|
+
|
|
551
|
+
### Python template
|
|
552
|
+
# Byte-compiled / optimized / DLL files
|
|
553
|
+
__pycache__/
|
|
554
|
+
*.py[cod]
|
|
555
|
+
*$py.class
|
|
556
|
+
|
|
557
|
+
# C extensions
|
|
558
|
+
*.so
|
|
559
|
+
|
|
560
|
+
# Distribution / packaging
|
|
561
|
+
.Python
|
|
562
|
+
build/
|
|
563
|
+
develop-eggs/
|
|
564
|
+
dist/
|
|
565
|
+
downloads/
|
|
566
|
+
eggs/
|
|
567
|
+
.eggs/
|
|
568
|
+
lib/
|
|
569
|
+
lib64/
|
|
570
|
+
parts/
|
|
571
|
+
sdist/
|
|
572
|
+
var/
|
|
573
|
+
wheels/
|
|
574
|
+
share/python-wheels/
|
|
575
|
+
*.egg-info/
|
|
576
|
+
.installed.cfg
|
|
577
|
+
*.egg
|
|
578
|
+
MANIFEST
|
|
579
|
+
|
|
580
|
+
# PyInstaller
|
|
581
|
+
# Usually these files are written by a python script from a template
|
|
582
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
583
|
+
*.manifest
|
|
584
|
+
*.spec
|
|
585
|
+
|
|
586
|
+
# Installer logs
|
|
587
|
+
pip-log.txt
|
|
588
|
+
pip-delete-this-directory.txt
|
|
589
|
+
|
|
590
|
+
# Unit test / coverage reports
|
|
591
|
+
htmlcov/
|
|
592
|
+
.tox/
|
|
593
|
+
.nox/
|
|
594
|
+
.coverage
|
|
595
|
+
.coverage.*
|
|
596
|
+
.cache
|
|
597
|
+
nosetests.xml
|
|
598
|
+
coverage.xml
|
|
599
|
+
*.cover
|
|
600
|
+
*.py,cover
|
|
601
|
+
.hypothesis/
|
|
602
|
+
.pytest_cache/
|
|
603
|
+
cover/
|
|
604
|
+
|
|
605
|
+
# Translations
|
|
606
|
+
*.mo
|
|
607
|
+
*.pot
|
|
608
|
+
|
|
609
|
+
# Django stuff:
|
|
610
|
+
*.log
|
|
611
|
+
local_settings.py
|
|
612
|
+
db.sqlite3
|
|
613
|
+
db.sqlite3-journal
|
|
614
|
+
|
|
615
|
+
# Flask stuff:
|
|
616
|
+
instance/
|
|
617
|
+
.webassets-cache
|
|
618
|
+
|
|
619
|
+
# Scrapy stuff:
|
|
620
|
+
.scrapy
|
|
621
|
+
|
|
622
|
+
# Sphinx documentation
|
|
623
|
+
docs/_build/
|
|
624
|
+
|
|
625
|
+
# PyBuilder
|
|
626
|
+
.pybuilder/
|
|
627
|
+
target/
|
|
628
|
+
|
|
629
|
+
# Jupyter Notebook
|
|
630
|
+
.ipynb_checkpoints
|
|
631
|
+
|
|
632
|
+
# IPython
|
|
633
|
+
profile_default/
|
|
634
|
+
ipython_config.py
|
|
635
|
+
|
|
636
|
+
# pyenv
|
|
637
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
638
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
639
|
+
.python-version
|
|
640
|
+
|
|
641
|
+
# pipenv
|
|
642
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
643
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
644
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
645
|
+
# install all needed dependencies.
|
|
646
|
+
#Pipfile.lock
|
|
647
|
+
|
|
648
|
+
# poetry
|
|
649
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
650
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
651
|
+
# commonly ignored for libraries.
|
|
652
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
653
|
+
#poetry.lock
|
|
654
|
+
|
|
655
|
+
# pdm
|
|
656
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
657
|
+
#pdm.lock
|
|
658
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
659
|
+
# in version control.
|
|
660
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
661
|
+
.pdm.toml
|
|
662
|
+
|
|
663
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
664
|
+
__pypackages__/
|
|
665
|
+
|
|
666
|
+
# Celery stuff
|
|
667
|
+
celerybeat-schedule
|
|
668
|
+
celerybeat.pid
|
|
669
|
+
|
|
670
|
+
# SageMath parsed files
|
|
671
|
+
*.sage.py
|
|
672
|
+
|
|
673
|
+
# Environments
|
|
674
|
+
.env
|
|
675
|
+
.venv
|
|
676
|
+
env/
|
|
677
|
+
venv/
|
|
678
|
+
ENV/
|
|
679
|
+
env.bak/
|
|
680
|
+
venv.bak/
|
|
681
|
+
|
|
682
|
+
# Spyder project settings
|
|
683
|
+
.spyderproject
|
|
684
|
+
.spyproject
|
|
685
|
+
|
|
686
|
+
# Rope project settings
|
|
687
|
+
.ropeproject
|
|
688
|
+
|
|
689
|
+
# mkdocs documentation
|
|
690
|
+
/site
|
|
691
|
+
|
|
692
|
+
# mypy
|
|
693
|
+
.mypy_cache/
|
|
694
|
+
.dmypy.json
|
|
695
|
+
dmypy.json
|
|
696
|
+
|
|
697
|
+
# Pyre type checker
|
|
698
|
+
.pyre/
|
|
699
|
+
|
|
700
|
+
# pytype static type analyzer
|
|
701
|
+
.pytype/
|
|
702
|
+
|
|
703
|
+
# Cython debug symbols
|
|
704
|
+
cython_debug/
|
|
705
|
+
|
|
706
|
+
setup.sh
|