dagster-community-components 0.1.0__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.
- dagster_community_components-0.1.0/.gitignore +30 -0
- dagster_community_components-0.1.0/LICENSE +21 -0
- dagster_community_components-0.1.0/PKG-INFO +294 -0
- dagster_community_components-0.1.0/README.md +269 -0
- dagster_community_components-0.1.0/asset_checks/acceldata_check/README.md +52 -0
- dagster_community_components-0.1.0/asset_checks/acceldata_check/component.py +146 -0
- dagster_community_components-0.1.0/asset_checks/acceldata_check/example.yaml +9 -0
- dagster_community_components-0.1.0/asset_checks/acceldata_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/acceldata_check/schema.json +65 -0
- dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/README.md +619 -0
- dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/component.py +8023 -0
- dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/example.yaml +214 -0
- dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/requirements.txt +3 -0
- dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/schema.json +613 -0
- dagster_community_components-0.1.0/asset_checks/freshness_check/README.md +61 -0
- dagster_community_components-0.1.0/asset_checks/freshness_check/component.py +113 -0
- dagster_community_components-0.1.0/asset_checks/freshness_check/example.yaml +18 -0
- dagster_community_components-0.1.0/asset_checks/freshness_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/freshness_check/schema.json +60 -0
- dagster_community_components-0.1.0/asset_checks/great_expectations_check/README.md +49 -0
- dagster_community_components-0.1.0/asset_checks/great_expectations_check/component.py +75 -0
- dagster_community_components-0.1.0/asset_checks/great_expectations_check/example.yaml +7 -0
- dagster_community_components-0.1.0/asset_checks/great_expectations_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/great_expectations_check/schema.json +58 -0
- dagster_community_components-0.1.0/asset_checks/monte_carlo_check/README.md +40 -0
- dagster_community_components-0.1.0/asset_checks/monte_carlo_check/component.py +138 -0
- dagster_community_components-0.1.0/asset_checks/monte_carlo_check/example.yaml +8 -0
- dagster_community_components-0.1.0/asset_checks/monte_carlo_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/monte_carlo_check/schema.json +65 -0
- dagster_community_components-0.1.0/asset_checks/sifflet_check/README.md +40 -0
- dagster_community_components-0.1.0/asset_checks/sifflet_check/component.py +142 -0
- dagster_community_components-0.1.0/asset_checks/sifflet_check/example.yaml +8 -0
- dagster_community_components-0.1.0/asset_checks/sifflet_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/sifflet_check/schema.json +65 -0
- dagster_community_components-0.1.0/asset_checks/soda_check/README.md +47 -0
- dagster_community_components-0.1.0/asset_checks/soda_check/component.py +76 -0
- dagster_community_components-0.1.0/asset_checks/soda_check/example.yaml +6 -0
- dagster_community_components-0.1.0/asset_checks/soda_check/requirements.txt +1 -0
- dagster_community_components-0.1.0/asset_checks/soda_check/schema.json +51 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/README.md +417 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/component.py +684 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/example.yaml +33 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/anthropic_llm/schema.json +304 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/README.md +27 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/component.py +270 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/audio_transcriber/schema.json +187 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/README.md +73 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/component.py +334 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/example.yaml +30 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/README.md +95 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/component.py +334 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/example.yaml +30 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/contract_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/README.md +352 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/component.py +314 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ai/conversation_memory/schema.json +196 -0
- dagster_community_components-0.1.0/assets/ai/cross_encoder/schema.json +80 -0
- dagster_community_components-0.1.0/assets/ai/data_enricher/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/data_enricher/component.py +300 -0
- dagster_community_components-0.1.0/assets/ai/data_enricher/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/ai/data_enricher/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/data_enricher/schema.json +191 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/README.md +395 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/component.py +690 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/example.yaml +28 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/document_chunker/schema.json +253 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/README.md +69 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/component.py +346 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/example.yaml +23 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/README.md +177 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/component.py +348 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/document_summarizer/schema.json +221 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/README.md +338 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/component.py +500 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/example.yaml +34 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/requirements.txt +7 -0
- dagster_community_components-0.1.0/assets/ai/document_text_extractor/schema.json +214 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/README.md +42 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/component.py +307 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/dspy_program/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/README.md +393 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/component.py +631 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/example.yaml +39 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/embeddings_generator/schema.json +266 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/README.md +589 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/component.py +824 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/example.yaml +50 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/ai/entity_extractor/schema.json +304 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/README.md +73 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/component.py +336 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/expense_report_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/README.md +74 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/component.py +374 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/example.yaml +19 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/face_detector/schema.json +191 -0
- dagster_community_components-0.1.0/assets/ai/haystack_pipeline/schema.json +105 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/README.md +30 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/component.py +284 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/image_captioner/schema.json +188 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/README.md +78 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/component.py +392 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/example.yaml +28 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/image_classifier/schema.json +209 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/README.md +82 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/component.py +355 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/example.yaml +27 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/image_llm_extractor/schema.json +200 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/README.md +90 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/component.py +373 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/schema.json +179 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/README.md +74 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/component.py +325 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/example.yaml +25 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/image_object_detector/schema.json +202 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/README.md +74 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/component.py +332 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/schema.json +192 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/README.md +44 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/component.py +317 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/example.yaml +26 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/instructor_extractor/schema.json +188 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/README.md +73 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/component.py +336 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/README.md +110 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/component.py +337 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/example.yaml +28 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/invoice_extractor/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/README.md +73 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/component.py +338 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/example.yaml +34 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/job_posting_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/README.md +29 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/component.py +298 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/keyword_extractor/schema.json +199 -0
- dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/README.md +184 -0
- dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/component.py +202 -0
- dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/schema.json +245 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/README.md +28 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/component.py +304 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/language_detector/schema.json +184 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/README.md +97 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/component.py +337 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/legal_document_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/README.md +40 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/component.py +273 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/schema.json +181 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/README.md +50 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/component.py +315 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/schema.json +219 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/README.md +42 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/component.py +279 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/schema.json +196 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/README.md +49 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/component.py +304 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/example.yaml +42 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_function_calling/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/README.md +43 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/component.py +284 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_image_generation/schema.json +213 -0
- dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/README.md +185 -0
- dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/component.py +174 -0
- dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/schema.json +244 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/README.md +45 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/component.py +306 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/litellm_structured_output/schema.json +202 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/README.md +307 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/component.py +322 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/llm_chain_executor/schema.json +198 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/README.md +47 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/component.py +329 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/llm_judge/schema.json +203 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/README.md +370 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/component.py +349 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/llm_output_parser/schema.json +210 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/README.md +644 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/component.py +516 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/example.yaml +23 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/schema.json +237 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/README.md +98 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/component.py +336 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/medical_record_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/README.md +96 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/component.py +163 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ai/moderation_scorer/schema.json +45 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/README.md +76 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/component.py +312 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/example.yaml +21 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/ocr_extractor/schema.json +185 -0
- dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/README.md +200 -0
- dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/component.py +170 -0
- dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/schema.json +230 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/README.md +378 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/component.py +659 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/example.yaml +30 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/openai_llm/schema.json +310 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/README.md +103 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/component.py +327 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/schema.json +180 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/README.md +36 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/component.py +275 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/pii_detector/schema.json +190 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/README.md +36 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/component.py +294 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/pii_redactor/schema.json +198 -0
- dagster_community_components-0.1.0/assets/ai/precision_match/README.md +61 -0
- dagster_community_components-0.1.0/assets/ai/precision_match/component.py +291 -0
- dagster_community_components-0.1.0/assets/ai/precision_match/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/precision_match/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/precision_match/schema.json +209 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/README.md +99 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/component.py +337 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/example.yaml +33 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/README.md +609 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/component.py +394 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/ai/rag_pipeline/schema.json +254 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/README.md +97 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/component.py +336 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/receipt_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/reranker/README.md +444 -0
- dagster_community_components-0.1.0/assets/ai/reranker/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/reranker/component.py +645 -0
- dagster_community_components-0.1.0/assets/ai/reranker/example.yaml +40 -0
- dagster_community_components-0.1.0/assets/ai/reranker/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/reranker/schema.json +281 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/README.md +98 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/component.py +335 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/example.yaml +31 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/resume_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/README.md +93 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/component.py +347 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/example.yaml +23 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/schema_fit/schema.json +178 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/README.md +99 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/component.py +337 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/example.yaml +33 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/README.md +402 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/component.py +637 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/example.yaml +41 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/schema.json +281 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/README.md +73 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/component.py +336 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/example.yaml +32 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/schema.json +195 -0
- dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/README.md +154 -0
- dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/component.py +251 -0
- dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/schema.json +25 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/README.md +31 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/component.py +303 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/sql_generator/schema.json +205 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data/README.md +63 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data/component.py +262 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data/schema.json +187 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/README.md +177 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/component.py +615 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/schema.json +175 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/README.md +174 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/component.py +527 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ai/text_chunker/schema.json +225 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/README.md +210 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/component.py +342 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ai/text_classifier/schema.json +227 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/README.md +605 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/component.py +878 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/example.yaml +56 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/requirements.txt +8 -0
- dagster_community_components-0.1.0/assets/ai/text_moderator/schema.json +288 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/README.md +35 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/component.py +306 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/text_similarity/schema.json +194 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/README.md +597 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/component.py +839 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/example.yaml +50 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/ai/ticket_classifier/schema.json +319 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/README.md +29 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/component.py +274 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ai/topic_modeler/schema.json +199 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/README.md +148 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/component.py +375 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_query/schema.json +215 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/README.md +155 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/component.py +375 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/ai/vector_store_writer/schema.json +219 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/README.md +531 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/component.py +674 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/example.yaml +39 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/ai/vision_model/schema.json +270 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/README.md +94 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/component.py +329 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/word_cloud/schema.json +196 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/README.md +116 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/component.py +307 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/example.yaml +27 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/schema.json +198 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/README.md +133 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/component.py +562 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/schema.json +222 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/README.md +92 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/component.py +631 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/schema.json +204 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/README.md +203 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/component.py +528 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/anomaly_detection/schema.json +208 -0
- dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/README.md +53 -0
- dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/component.py +275 -0
- dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/schema.json +190 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/README.md +109 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/component.py +547 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/campaign_performance/schema.json +237 -0
- dagster_community_components-0.1.0/assets/analytics/chromadb_asset/README.md +97 -0
- dagster_community_components-0.1.0/assets/analytics/chromadb_asset/component.py +279 -0
- dagster_community_components-0.1.0/assets/analytics/chromadb_asset/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/analytics/chromadb_asset/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/chromadb_asset/schema.json +211 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/README.md +255 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/component.py +563 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/example.yaml +23 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/churn_prediction/schema.json +216 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/README.md +199 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/component.py +505 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/cohort_analysis/schema.json +202 -0
- dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/README.md +52 -0
- dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/component.py +274 -0
- dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/schema.json +183 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/README.md +270 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/component.py +609 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/schema.json +196 -0
- dagster_community_components-0.1.0/assets/analytics/cross_validation/README.md +64 -0
- dagster_community_components-0.1.0/assets/analytics/cross_validation/component.py +296 -0
- dagster_community_components-0.1.0/assets/analytics/cross_validation/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/analytics/cross_validation/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/cross_validation/schema.json +194 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/README.md +292 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/component.py +520 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/customer_360/schema.json +202 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/README.md +568 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/component.py +619 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/customer_health_score/schema.json +261 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/README.md +109 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/component.py +511 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/schema.json +218 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/README.md +567 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/component.py +443 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/customer_segmentation/schema.json +225 -0
- dagster_community_components-0.1.0/assets/analytics/dataiku_asset/README.md +156 -0
- dagster_community_components-0.1.0/assets/analytics/dataiku_asset/component.py +509 -0
- dagster_community_components-0.1.0/assets/analytics/dataiku_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/dataiku_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/analytics/dataiku_asset/schema.json +24 -0
- dagster_community_components-0.1.0/assets/analytics/decision_tree_model/README.md +59 -0
- dagster_community_components-0.1.0/assets/analytics/decision_tree_model/component.py +259 -0
- dagster_community_components-0.1.0/assets/analytics/decision_tree_model/example.yaml +19 -0
- dagster_community_components-0.1.0/assets/analytics/decision_tree_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/decision_tree_model/schema.json +202 -0
- dagster_community_components-0.1.0/assets/analytics/distance_calculator/README.md +54 -0
- dagster_community_components-0.1.0/assets/analytics/distance_calculator/component.py +300 -0
- dagster_community_components-0.1.0/assets/analytics/distance_calculator/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/analytics/distance_calculator/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/distance_calculator/schema.json +189 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/README.md +299 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/component.py +697 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/schema.json +195 -0
- dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/README.md +86 -0
- dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/component.py +286 -0
- dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/schema.json +212 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/README.md +223 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/component.py +627 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/example.yaml +24 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/schema.json +217 -0
- dagster_community_components-0.1.0/assets/analytics/feast_asset/README.md +64 -0
- dagster_community_components-0.1.0/assets/analytics/feast_asset/component.py +165 -0
- dagster_community_components-0.1.0/assets/analytics/feast_asset/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/analytics/feast_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/feast_asset/schema.json +181 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/README.md +522 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/component.py +624 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/funnel_analysis/schema.json +318 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/README.md +75 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/component.py +355 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/geocoder/schema.json +204 -0
- dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/README.md +56 -0
- dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/component.py +292 -0
- dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/schema.json +209 -0
- dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/README.md +175 -0
- dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/component.py +265 -0
- dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/schema.json +212 -0
- dagster_community_components-0.1.0/assets/analytics/k_means_clustering/README.md +55 -0
- dagster_community_components-0.1.0/assets/analytics/k_means_clustering/component.py +261 -0
- dagster_community_components-0.1.0/assets/analytics/k_means_clustering/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/analytics/k_means_clustering/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/k_means_clustering/schema.json +197 -0
- dagster_community_components-0.1.0/assets/analytics/lakefs_asset/README.md +117 -0
- dagster_community_components-0.1.0/assets/analytics/lakefs_asset/component.py +175 -0
- dagster_community_components-0.1.0/assets/analytics/lakefs_asset/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/analytics/lakefs_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/lakefs_asset/schema.json +216 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/README.md +678 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/component.py +631 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/lead_scoring/schema.json +316 -0
- dagster_community_components-0.1.0/assets/analytics/lift_chart/README.md +51 -0
- dagster_community_components-0.1.0/assets/analytics/lift_chart/component.py +265 -0
- dagster_community_components-0.1.0/assets/analytics/lift_chart/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/lift_chart/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/lift_chart/schema.json +162 -0
- dagster_community_components-0.1.0/assets/analytics/linear_regression_model/README.md +61 -0
- dagster_community_components-0.1.0/assets/analytics/linear_regression_model/component.py +282 -0
- dagster_community_components-0.1.0/assets/analytics/linear_regression_model/example.yaml +19 -0
- dagster_community_components-0.1.0/assets/analytics/linear_regression_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/linear_regression_model/schema.json +196 -0
- dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/README.md +61 -0
- dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/component.py +279 -0
- dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/example.yaml +19 -0
- dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/schema.json +205 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/README.md +451 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/component.py +568 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/ltv_prediction/schema.json +210 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/README.md +239 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/component.py +561 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/example.yaml +26 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/schema.json +217 -0
- dagster_community_components-0.1.0/assets/analytics/model_comparison/README.md +62 -0
- dagster_community_components-0.1.0/assets/analytics/model_comparison/component.py +322 -0
- dagster_community_components-0.1.0/assets/analytics/model_comparison/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/model_comparison/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/model_comparison/schema.json +197 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/README.md +522 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/component.py +605 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/schema.json +232 -0
- dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/README.md +59 -0
- dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/component.py +275 -0
- dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/schema.json +197 -0
- dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/README.md +59 -0
- dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/component.py +262 -0
- dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/schema.json +198 -0
- dagster_community_components-0.1.0/assets/analytics/neural_network_model/README.md +59 -0
- dagster_community_components-0.1.0/assets/analytics/neural_network_model/component.py +311 -0
- dagster_community_components-0.1.0/assets/analytics/neural_network_model/example.yaml +24 -0
- dagster_community_components-0.1.0/assets/analytics/neural_network_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/neural_network_model/schema.json +227 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/README.md +70 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/component.py +322 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/optimization/schema.json +195 -0
- dagster_community_components-0.1.0/assets/analytics/oversample_field/README.md +58 -0
- dagster_community_components-0.1.0/assets/analytics/oversample_field/component.py +273 -0
- dagster_community_components-0.1.0/assets/analytics/oversample_field/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/analytics/oversample_field/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/oversample_field/schema.json +181 -0
- dagster_community_components-0.1.0/assets/analytics/pca/README.md +60 -0
- dagster_community_components-0.1.0/assets/analytics/pca/component.py +269 -0
- dagster_community_components-0.1.0/assets/analytics/pca/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/analytics/pca/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/pca/schema.json +190 -0
- dagster_community_components-0.1.0/assets/analytics/pgvector_asset/README.md +86 -0
- dagster_community_components-0.1.0/assets/analytics/pgvector_asset/component.py +270 -0
- dagster_community_components-0.1.0/assets/analytics/pgvector_asset/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/analytics/pgvector_asset/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/analytics/pgvector_asset/schema.json +203 -0
- dagster_community_components-0.1.0/assets/analytics/pinecone_asset/README.md +204 -0
- dagster_community_components-0.1.0/assets/analytics/pinecone_asset/component.py +353 -0
- dagster_community_components-0.1.0/assets/analytics/pinecone_asset/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/analytics/pinecone_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/pinecone_asset/schema.json +233 -0
- dagster_community_components-0.1.0/assets/analytics/point_in_polygon/README.md +52 -0
- dagster_community_components-0.1.0/assets/analytics/point_in_polygon/component.py +311 -0
- dagster_community_components-0.1.0/assets/analytics/point_in_polygon/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/analytics/point_in_polygon/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/point_in_polygon/schema.json +192 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/README.md +489 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/component.py +888 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/example.yaml +52 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/analytics/priority_scorer/schema.json +317 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/README.md +283 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/component.py +554 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/schema.json +202 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/README.md +317 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/component.py +639 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/product_recommendations/schema.json +236 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/README.md +426 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/component.py +330 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/schema.json +211 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/README.md +114 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/component.py +549 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/propensity_scoring/schema.json +215 -0
- dagster_community_components-0.1.0/assets/analytics/random_forest_model/README.md +60 -0
- dagster_community_components-0.1.0/assets/analytics/random_forest_model/component.py +264 -0
- dagster_community_components-0.1.0/assets/analytics/random_forest_model/example.yaml +21 -0
- dagster_community_components-0.1.0/assets/analytics/random_forest_model/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/random_forest_model/schema.json +209 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/README.md +378 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/component.py +422 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/revenue_attribution/schema.json +188 -0
- dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/README.md +55 -0
- dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/component.py +329 -0
- dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/schema.json +213 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/README.md +155 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/component.py +534 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/example.yaml +21 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/schema.json +195 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/README.md +73 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/component.py +340 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/simulation_sampling/schema.json +188 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_cluster/README.md +55 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_cluster/component.py +333 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_cluster/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_cluster/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_cluster/schema.json +200 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_join/README.md +52 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_join/component.py +294 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_join/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_join/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/spatial_join/schema.json +177 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/README.md +441 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/component.py +507 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/subscription_metrics/schema.json +174 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/README.md +239 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/component.py +618 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/schema.json +203 -0
- dagster_community_components-0.1.0/assets/analytics/survival_analysis/README.md +69 -0
- dagster_community_components-0.1.0/assets/analytics/survival_analysis/component.py +272 -0
- dagster_community_components-0.1.0/assets/analytics/survival_analysis/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/analytics/survival_analysis/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/survival_analysis/schema.json +191 -0
- dagster_community_components-0.1.0/assets/analytics/tecton_asset/README.md +83 -0
- dagster_community_components-0.1.0/assets/analytics/tecton_asset/component.py +167 -0
- dagster_community_components-0.1.0/assets/analytics/tecton_asset/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/analytics/tecton_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/tecton_asset/schema.json +188 -0
- dagster_community_components-0.1.0/assets/analytics/text_preprocessing/README.md +57 -0
- dagster_community_components-0.1.0/assets/analytics/text_preprocessing/component.py +288 -0
- dagster_community_components-0.1.0/assets/analytics/text_preprocessing/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/analytics/text_preprocessing/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/text_preprocessing/schema.json +227 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/README.md +214 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/component.py +462 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/analytics/time_series_generator/schema.json +201 -0
- dagster_community_components-0.1.0/assets/analytics/topic_modeling/README.md +58 -0
- dagster_community_components-0.1.0/assets/analytics/topic_modeling/component.py +281 -0
- dagster_community_components-0.1.0/assets/analytics/topic_modeling/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/analytics/topic_modeling/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/topic_modeling/schema.json +199 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/README.md +82 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/component.py +339 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/analytics/ts_compare/schema.json +193 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/README.md +103 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/component.py +334 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/example.yaml +26 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/ts_forecast/schema.json +207 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/README.md +90 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/__init__.py +0 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/component.py +319 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/example.yaml +24 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/ts_model_factory/schema.json +207 -0
- dagster_community_components-0.1.0/assets/analytics/wandb_asset/README.md +124 -0
- dagster_community_components-0.1.0/assets/analytics/wandb_asset/component.py +229 -0
- dagster_community_components-0.1.0/assets/analytics/wandb_asset/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/analytics/wandb_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/analytics/wandb_asset/schema.json +219 -0
- dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/README.md +223 -0
- dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/component.py +244 -0
- dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/schema.json +25 -0
- dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/README.md +357 -0
- dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/component.py +326 -0
- dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/schema.json +20 -0
- dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/README.md +102 -0
- dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/component.py +253 -0
- dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/example.yaml +24 -0
- dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/schema.json +159 -0
- dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/README.md +179 -0
- dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/component.py +334 -0
- dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/schema.json +221 -0
- dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/README.md +277 -0
- dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/component.py +1235 -0
- dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/example.yaml +55 -0
- dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/schema.json +19 -0
- dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/README.md +191 -0
- dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/component.py +287 -0
- dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/schema.json +193 -0
- dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/README.md +133 -0
- dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/component.py +352 -0
- dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/schema.json +176 -0
- dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/README.md +35 -0
- dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/component.py +333 -0
- dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/example.yaml +27 -0
- dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/schema.json +20 -0
- dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/README.md +100 -0
- dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/component.py +403 -0
- dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/schema.json +61 -0
- dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/README.md +181 -0
- dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/component.py +360 -0
- dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/schema.json +154 -0
- dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/README.md +222 -0
- dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/component.py +309 -0
- dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/schema.json +221 -0
- dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/README.md +76 -0
- dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/component.py +198 -0
- dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/schema.json +172 -0
- dagster_community_components-0.1.0/assets/infrastructure/modal_asset/README.md +169 -0
- dagster_community_components-0.1.0/assets/infrastructure/modal_asset/component.py +272 -0
- dagster_community_components-0.1.0/assets/infrastructure/modal_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/infrastructure/modal_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/infrastructure/modal_asset/schema.json +154 -0
- dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/README.md +68 -0
- dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/component.py +173 -0
- dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/schema.json +146 -0
- dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/README.md +172 -0
- dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/component.py +271 -0
- dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/schema.json +162 -0
- dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/README.md +65 -0
- dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/component.py +152 -0
- dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/schema.json +132 -0
- dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/README.md +111 -0
- dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/component.py +448 -0
- dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/schema.json +20 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/README.md +148 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/component.py +272 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/schema.json +178 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/README.md +110 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/component.py +577 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/schema.json +20 -0
- dagster_community_components-0.1.0/assets/ingestion/DESTINATIONS.md +269 -0
- dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/README.md +55 -0
- dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/component.py +125 -0
- dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/schema.json +158 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/README.md +101 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/component.py +321 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/schema.json +140 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/README.md +98 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/component.py +321 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/schema.json +136 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/README.md +79 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/component.py +125 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/example.yaml +6 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ingestion/content_ingestion/schema.json +40 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/README.md +277 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/component.py +304 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/schema.json +168 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/README.md +86 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/component.py +199 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/ingestion/document_ingestion/schema.json +47 -0
- dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/README.md +64 -0
- dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/component.py +148 -0
- dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/schema.json +171 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/README.md +109 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/component.py +365 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/example.yaml +30 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/component.py +325 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/schema.json +141 -0
- dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/README.md +54 -0
- dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/component.py +130 -0
- dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/schema.json +159 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/README.md +95 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/component.py +349 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/github_ingestion/schema.json +152 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/README.md +116 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/component.py +371 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/example.yaml +31 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/schema.json +209 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/README.md +115 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/component.py +387 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/schema.json +219 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/component.py +316 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/schema.json +142 -0
- dagster_community_components-0.1.0/assets/ingestion/graphql_asset/README.md +153 -0
- dagster_community_components-0.1.0/assets/ingestion/graphql_asset/component.py +287 -0
- dagster_community_components-0.1.0/assets/ingestion/graphql_asset/example.yaml +26 -0
- dagster_community_components-0.1.0/assets/ingestion/graphql_asset/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ingestion/graphql_asset/schema.json +19 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/component.py +328 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/schema.json +151 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/README.md +103 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/component.py +330 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/schema.json +148 -0
- dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/README.md +56 -0
- dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/component.py +169 -0
- dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/schema.json +200 -0
- dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/README.md +60 -0
- dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/component.py +176 -0
- dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/schema.json +180 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/README.md +103 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/component.py +515 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/example.yaml +23 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/schema.json +167 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/README.md +103 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/component.py +322 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/example.yaml +20 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/schema.json +148 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/component.py +315 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/schema.json +140 -0
- dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/README.md +64 -0
- dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/component.py +160 -0
- dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/schema.json +201 -0
- dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/README.md +65 -0
- dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/component.py +192 -0
- dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/schema.json +193 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/README.md +97 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/component.py +311 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/schema.json +134 -0
- dagster_community_components-0.1.0/assets/ingestion/openapi_asset/README.md +163 -0
- dagster_community_components-0.1.0/assets/ingestion/openapi_asset/component.py +342 -0
- dagster_community_components-0.1.0/assets/ingestion/openapi_asset/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ingestion/openapi_asset/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ingestion/openapi_asset/schema.json +19 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/component.py +325 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/schema.json +142 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/README.md +106 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/component.py +549 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/example.yaml +28 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/README.md +97 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/component.py +319 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/schema.json +136 -0
- dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/README.md +59 -0
- dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/component.py +151 -0
- dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/schema.json +172 -0
- dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/README.md +62 -0
- dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/component.py +171 -0
- dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/schema.json +187 -0
- dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/README.md +58 -0
- dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/component.py +142 -0
- dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/schema.json +164 -0
- dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/README.md +60 -0
- dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/component.py +155 -0
- dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/schema.json +179 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/README.md +381 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/component.py +418 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/schema.json +206 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/README.md +444 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/component.py +328 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/schema.json +157 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/README.md +104 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/component.py +336 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/example.yaml +22 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/schema.json +149 -0
- dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/README.md +60 -0
- dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/component.py +154 -0
- dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/schema.json +180 -0
- dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/README.md +56 -0
- dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/component.py +146 -0
- dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/schema.json +186 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/README.md +105 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/component.py +334 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/example.yaml +21 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/schema.json +598 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/README.md +97 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/component.py +320 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/schema.json +136 -0
- dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/README.md +65 -0
- dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/component.py +144 -0
- dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/schema.json +187 -0
- dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/README.md +55 -0
- dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/component.py +157 -0
- dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/schema.json +187 -0
- dagster_community_components-0.1.0/assets/ingestion/ssh_asset/README.md +195 -0
- dagster_community_components-0.1.0/assets/ingestion/ssh_asset/component.py +288 -0
- dagster_community_components-0.1.0/assets/ingestion/ssh_asset/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/ingestion/ssh_asset/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/ssh_asset/schema.json +190 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/README.md +103 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/component.py +334 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/example.yaml +21 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/schema.json +153 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/README.md +94 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/component.py +353 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/schema.json +47 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/README.md +105 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/component.py +548 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/example.yaml +28 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/schema.json +189 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/README.md +116 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/component.py +588 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/example.yaml +30 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/schema.json +201 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/README.md +100 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/component.py +324 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/schema.json +142 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/README.md +103 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/component.py +332 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/schema.json +148 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/README.md +64 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/component.py +294 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/cassandra_writer/schema.json +197 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/README.md +58 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/component.py +254 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/schema.json +181 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/README.md +58 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/component.py +277 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/couchdb_writer/schema.json +173 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/README.md +81 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/component.py +254 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/schema.json +183 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/README.md +73 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/component.py +230 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/schema.json +170 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/README.md +62 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/component.py +210 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/schema.json +176 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/README.md +71 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/component.py +249 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/schema.json +191 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/README.md +69 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/component.py +227 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/schema.json +180 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/README.md +77 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/component.py +248 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/schema.json +177 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/README.md +67 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/component.py +232 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/schema.json +172 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/README.md +59 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/component.py +223 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/schema.json +169 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/README.md +77 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/component.py +231 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/schema.json +199 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/README.md +78 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/component.py +262 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/requirements.txt +5 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/schema.json +196 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/README.md +81 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/component.py +255 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/schema.json +206 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/README.md +59 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/component.py +227 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/schema.json +170 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/README.md +257 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/component.py +561 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/schema.json +615 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/README.md +196 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/component.py +316 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/schema.json +159 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/README.md +59 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/component.py +258 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/schema.json +164 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/README.md +69 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/component.py +271 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/firestore_writer/schema.json +175 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/README.md +65 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/component.py +263 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/mongodb_writer/schema.json +169 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/README.md +64 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/component.py +275 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/neo4j_writer/schema.json +189 -0
- dagster_community_components-0.1.0/assets/sinks/polytomic_asset/README.md +100 -0
- dagster_community_components-0.1.0/assets/sinks/polytomic_asset/component.py +519 -0
- dagster_community_components-0.1.0/assets/sinks/polytomic_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/assets/sinks/polytomic_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/assets/sinks/polytomic_asset/schema.json +24 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/README.md +72 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/component.py +285 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sinks/redis_writer/schema.json +194 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/README.md +62 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/component.py +283 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/cassandra_reader/schema.json +189 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/README.md +64 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/component.py +323 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/chromadb_reader/schema.json +207 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/README.md +54 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/component.py +283 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/schema.json +184 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/README.md +64 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/component.py +280 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/couchdb_reader/schema.json +182 -0
- dagster_community_components-0.1.0/assets/sources/database_query/README.md +153 -0
- dagster_community_components-0.1.0/assets/sources/database_query/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/sources/database_query/component.py +319 -0
- dagster_community_components-0.1.0/assets/sources/database_query/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/sources/database_query/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/database_query/schema.json +183 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/README.md +57 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/component.py +247 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/schema.json +187 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/README.md +61 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/component.py +242 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/example.yaml +18 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/schema.json +169 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_table/README.md +60 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_table/component.py +255 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_table/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_table/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/dataframe_from_table/schema.json +182 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/README.md +299 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/component.py +299 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/schema.json +170 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/README.md +67 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/component.py +296 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/dynamodb_reader/schema.json +193 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/README.md +79 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/component.py +322 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/schema.json +208 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/README.md +75 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/component.py +294 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/firestore_reader/schema.json +188 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/README.md +75 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/component.py +295 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/mongodb_reader/schema.json +199 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/README.md +68 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/component.py +277 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/neo4j_reader/schema.json +179 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/README.md +68 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/component.py +328 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/requirements.txt +6 -0
- dagster_community_components-0.1.0/assets/sources/pgvector_reader/schema.json +210 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/README.md +62 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/component.py +346 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/sources/pinecone_reader/schema.json +234 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/README.md +71 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/component.py +317 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/redis_reader/schema.json +193 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/README.md +61 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/__init__.py +5 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/component.py +309 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/sources/wandb_reader/schema.json +186 -0
- dagster_community_components-0.1.0/assets/transforms/address_parser/schema.json +87 -0
- dagster_community_components-0.1.0/assets/transforms/address_standardizer/schema.json +95 -0
- dagster_community_components-0.1.0/assets/transforms/append_fields/README.md +51 -0
- dagster_community_components-0.1.0/assets/transforms/append_fields/component.py +234 -0
- dagster_community_components-0.1.0/assets/transforms/append_fields/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/append_fields/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/append_fields/schema.json +160 -0
- dagster_community_components-0.1.0/assets/transforms/arima_forecast/README.md +59 -0
- dagster_community_components-0.1.0/assets/transforms/arima_forecast/component.py +283 -0
- dagster_community_components-0.1.0/assets/transforms/arima_forecast/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/transforms/arima_forecast/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/arima_forecast/schema.json +197 -0
- dagster_community_components-0.1.0/assets/transforms/arrange/README.md +84 -0
- dagster_community_components-0.1.0/assets/transforms/arrange/component.py +264 -0
- dagster_community_components-0.1.0/assets/transforms/arrange/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/transforms/arrange/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/arrange/schema.json +183 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/README.md +25 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/component.py +223 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/array_exploder/schema.json +165 -0
- dagster_community_components-0.1.0/assets/transforms/auto_field/README.md +71 -0
- dagster_community_components-0.1.0/assets/transforms/auto_field/component.py +284 -0
- dagster_community_components-0.1.0/assets/transforms/auto_field/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/auto_field/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/auto_field/schema.json +193 -0
- dagster_community_components-0.1.0/assets/transforms/count_records/README.md +76 -0
- dagster_community_components-0.1.0/assets/transforms/count_records/component.py +259 -0
- dagster_community_components-0.1.0/assets/transforms/count_records/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/count_records/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/count_records/schema.json +169 -0
- dagster_community_components-0.1.0/assets/transforms/create_samples/README.md +68 -0
- dagster_community_components-0.1.0/assets/transforms/create_samples/component.py +270 -0
- dagster_community_components-0.1.0/assets/transforms/create_samples/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/create_samples/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/create_samples/schema.json +178 -0
- dagster_community_components-0.1.0/assets/transforms/cross_tab/README.md +53 -0
- dagster_community_components-0.1.0/assets/transforms/cross_tab/component.py +254 -0
- dagster_community_components-0.1.0/assets/transforms/cross_tab/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/cross_tab/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/cross_tab/schema.json +175 -0
- dagster_community_components-0.1.0/assets/transforms/data_cleansing/README.md +66 -0
- dagster_community_components-0.1.0/assets/transforms/data_cleansing/component.py +286 -0
- dagster_community_components-0.1.0/assets/transforms/data_cleansing/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/transforms/data_cleansing/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/data_cleansing/schema.json +191 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_join/README.md +47 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_join/component.py +238 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_join/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_join/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_join/schema.json +200 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/README.md +153 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/component.py +706 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/dataframe_transformer.py +521 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/schema.json +283 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_union/README.md +41 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_union/component.py +224 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_union/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_union/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/dataframe_union/schema.json +162 -0
- dagster_community_components-0.1.0/assets/transforms/datetime_parser/README.md +50 -0
- dagster_community_components-0.1.0/assets/transforms/datetime_parser/component.py +262 -0
- dagster_community_components-0.1.0/assets/transforms/datetime_parser/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/datetime_parser/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/datetime_parser/schema.json +185 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/README.md +29 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/component.py +270 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/document_merger/schema.json +192 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/README.md +27 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/component.py +277 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/email_parser/schema.json +182 -0
- dagster_community_components-0.1.0/assets/transforms/ets_forecast/README.md +62 -0
- dagster_community_components-0.1.0/assets/transforms/ets_forecast/component.py +275 -0
- dagster_community_components-0.1.0/assets/transforms/ets_forecast/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/ets_forecast/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/ets_forecast/schema.json +198 -0
- dagster_community_components-0.1.0/assets/transforms/feature_scaler/README.md +52 -0
- dagster_community_components-0.1.0/assets/transforms/feature_scaler/component.py +251 -0
- dagster_community_components-0.1.0/assets/transforms/feature_scaler/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/feature_scaler/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/feature_scaler/schema.json +187 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/README.md +28 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/component.py +233 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/field_mapper/schema.json +170 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/README.md +148 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/__init__.py +3 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/component.py +444 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/file_transformer/schema.json +243 -0
- dagster_community_components-0.1.0/assets/transforms/filter/README.md +78 -0
- dagster_community_components-0.1.0/assets/transforms/filter/component.py +238 -0
- dagster_community_components-0.1.0/assets/transforms/filter/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/transforms/filter/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/filter/schema.json +157 -0
- dagster_community_components-0.1.0/assets/transforms/find_replace/README.md +44 -0
- dagster_community_components-0.1.0/assets/transforms/find_replace/component.py +246 -0
- dagster_community_components-0.1.0/assets/transforms/find_replace/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/find_replace/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/find_replace/schema.json +181 -0
- dagster_community_components-0.1.0/assets/transforms/formula/README.md +56 -0
- dagster_community_components-0.1.0/assets/transforms/formula/component.py +253 -0
- dagster_community_components-0.1.0/assets/transforms/formula/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/formula/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/formula/schema.json +160 -0
- dagster_community_components-0.1.0/assets/transforms/fuzzy_match/README.md +45 -0
- dagster_community_components-0.1.0/assets/transforms/fuzzy_match/component.py +293 -0
- dagster_community_components-0.1.0/assets/transforms/fuzzy_match/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/fuzzy_match/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/fuzzy_match/schema.json +177 -0
- dagster_community_components-0.1.0/assets/transforms/generate_rows/README.md +78 -0
- dagster_community_components-0.1.0/assets/transforms/generate_rows/component.py +262 -0
- dagster_community_components-0.1.0/assets/transforms/generate_rows/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/generate_rows/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/generate_rows/schema.json +176 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/README.md +27 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/component.py +271 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/html_parser/schema.json +189 -0
- dagster_community_components-0.1.0/assets/transforms/imputation/README.md +61 -0
- dagster_community_components-0.1.0/assets/transforms/imputation/component.py +295 -0
- dagster_community_components-0.1.0/assets/transforms/imputation/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/imputation/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/imputation/schema.json +174 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/README.md +27 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/component.py +256 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/json_flatten/schema.json +173 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/README.md +28 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/component.py +256 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/json_path_extractor/schema.json +166 -0
- dagster_community_components-0.1.0/assets/transforms/label_encoder/README.md +53 -0
- dagster_community_components-0.1.0/assets/transforms/label_encoder/component.py +233 -0
- dagster_community_components-0.1.0/assets/transforms/label_encoder/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/label_encoder/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/label_encoder/schema.json +104 -0
- dagster_community_components-0.1.0/assets/transforms/make_columns/README.md +87 -0
- dagster_community_components-0.1.0/assets/transforms/make_columns/component.py +255 -0
- dagster_community_components-0.1.0/assets/transforms/make_columns/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/transforms/make_columns/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/make_columns/schema.json +170 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/README.md +25 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/component.py +294 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/requirements.txt +4 -0
- dagster_community_components-0.1.0/assets/transforms/markdown_stripper/schema.json +175 -0
- dagster_community_components-0.1.0/assets/transforms/multi_field_formula/README.md +77 -0
- dagster_community_components-0.1.0/assets/transforms/multi_field_formula/component.py +261 -0
- dagster_community_components-0.1.0/assets/transforms/multi_field_formula/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/multi_field_formula/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/multi_field_formula/schema.json +175 -0
- dagster_community_components-0.1.0/assets/transforms/multi_row_formula/README.md +79 -0
- dagster_community_components-0.1.0/assets/transforms/multi_row_formula/component.py +299 -0
- dagster_community_components-0.1.0/assets/transforms/multi_row_formula/example.yaml +25 -0
- dagster_community_components-0.1.0/assets/transforms/multi_row_formula/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/multi_row_formula/schema.json +172 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/README.md +29 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/component.py +256 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/schema.json +173 -0
- dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/README.md +72 -0
- dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/component.py +319 -0
- dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/schema.json +209 -0
- dagster_community_components-0.1.0/assets/transforms/outlier_clipper/README.md +70 -0
- dagster_community_components-0.1.0/assets/transforms/outlier_clipper/component.py +270 -0
- dagster_community_components-0.1.0/assets/transforms/outlier_clipper/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/outlier_clipper/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/outlier_clipper/schema.json +80 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/README.md +27 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/component.py +289 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/example.yaml +9 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/schema.json +172 -0
- dagster_community_components-0.1.0/assets/transforms/rank/README.md +60 -0
- dagster_community_components-0.1.0/assets/transforms/rank/component.py +277 -0
- dagster_community_components-0.1.0/assets/transforms/rank/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/rank/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/rank/schema.json +189 -0
- dagster_community_components-0.1.0/assets/transforms/record_id/README.md +54 -0
- dagster_community_components-0.1.0/assets/transforms/record_id/component.py +275 -0
- dagster_community_components-0.1.0/assets/transforms/record_id/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/record_id/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/record_id/schema.json +196 -0
- dagster_community_components-0.1.0/assets/transforms/regex_parser/README.md +49 -0
- dagster_community_components-0.1.0/assets/transforms/regex_parser/component.py +257 -0
- dagster_community_components-0.1.0/assets/transforms/regex_parser/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/transforms/regex_parser/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/regex_parser/schema.json +194 -0
- dagster_community_components-0.1.0/assets/transforms/running_total/README.md +56 -0
- dagster_community_components-0.1.0/assets/transforms/running_total/component.py +295 -0
- dagster_community_components-0.1.0/assets/transforms/running_total/example.yaml +12 -0
- dagster_community_components-0.1.0/assets/transforms/running_total/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/running_total/schema.json +189 -0
- dagster_community_components-0.1.0/assets/transforms/sample/README.md +70 -0
- dagster_community_components-0.1.0/assets/transforms/sample/component.py +256 -0
- dagster_community_components-0.1.0/assets/transforms/sample/example.yaml +8 -0
- dagster_community_components-0.1.0/assets/transforms/sample/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/sample/schema.json +178 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/README.md +32 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/component.py +272 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/example.yaml +25 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/schema_validator/schema.json +183 -0
- dagster_community_components-0.1.0/assets/transforms/select_columns/README.md +70 -0
- dagster_community_components-0.1.0/assets/transforms/select_columns/component.py +256 -0
- dagster_community_components-0.1.0/assets/transforms/select_columns/example.yaml +17 -0
- dagster_community_components-0.1.0/assets/transforms/select_columns/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/select_columns/schema.json +181 -0
- dagster_community_components-0.1.0/assets/transforms/sort/README.md +72 -0
- dagster_community_components-0.1.0/assets/transforms/sort/component.py +239 -0
- dagster_community_components-0.1.0/assets/transforms/sort/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/sort/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/sort/schema.json +186 -0
- dagster_community_components-0.1.0/assets/transforms/summarize/README.md +61 -0
- dagster_community_components-0.1.0/assets/transforms/summarize/component.py +248 -0
- dagster_community_components-0.1.0/assets/transforms/summarize/example.yaml +14 -0
- dagster_community_components-0.1.0/assets/transforms/summarize/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/summarize/schema.json +159 -0
- dagster_community_components-0.1.0/assets/transforms/text_to_columns/README.md +47 -0
- dagster_community_components-0.1.0/assets/transforms/text_to_columns/component.py +260 -0
- dagster_community_components-0.1.0/assets/transforms/text_to_columns/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/transforms/text_to_columns/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/text_to_columns/schema.json +190 -0
- dagster_community_components-0.1.0/assets/transforms/tile_binning/README.md +63 -0
- dagster_community_components-0.1.0/assets/transforms/tile_binning/component.py +279 -0
- dagster_community_components-0.1.0/assets/transforms/tile_binning/example.yaml +16 -0
- dagster_community_components-0.1.0/assets/transforms/tile_binning/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/tile_binning/schema.json +200 -0
- dagster_community_components-0.1.0/assets/transforms/train_test_splitter/README.md +95 -0
- dagster_community_components-0.1.0/assets/transforms/train_test_splitter/component.py +254 -0
- dagster_community_components-0.1.0/assets/transforms/train_test_splitter/example.yaml +10 -0
- dagster_community_components-0.1.0/assets/transforms/train_test_splitter/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/train_test_splitter/schema.json +61 -0
- dagster_community_components-0.1.0/assets/transforms/transpose/README.md +47 -0
- dagster_community_components-0.1.0/assets/transforms/transpose/component.py +250 -0
- dagster_community_components-0.1.0/assets/transforms/transpose/example.yaml +7 -0
- dagster_community_components-0.1.0/assets/transforms/transpose/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/transpose/schema.json +156 -0
- dagster_community_components-0.1.0/assets/transforms/ts_filler/README.md +62 -0
- dagster_community_components-0.1.0/assets/transforms/ts_filler/component.py +261 -0
- dagster_community_components-0.1.0/assets/transforms/ts_filler/example.yaml +15 -0
- dagster_community_components-0.1.0/assets/transforms/ts_filler/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/ts_filler/schema.json +184 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/README.md +29 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/__init__.py +1 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/component.py +288 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/example.yaml +13 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/type_coercer/schema.json +172 -0
- dagster_community_components-0.1.0/assets/transforms/unique_dedup/README.md +64 -0
- dagster_community_components-0.1.0/assets/transforms/unique_dedup/component.py +275 -0
- dagster_community_components-0.1.0/assets/transforms/unique_dedup/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/unique_dedup/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/unique_dedup/schema.json +175 -0
- dagster_community_components-0.1.0/assets/transforms/weighted_average/README.md +58 -0
- dagster_community_components-0.1.0/assets/transforms/weighted_average/component.py +260 -0
- dagster_community_components-0.1.0/assets/transforms/weighted_average/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/weighted_average/requirements.txt +2 -0
- dagster_community_components-0.1.0/assets/transforms/weighted_average/schema.json +173 -0
- dagster_community_components-0.1.0/assets/transforms/xml_parser/README.md +51 -0
- dagster_community_components-0.1.0/assets/transforms/xml_parser/component.py +245 -0
- dagster_community_components-0.1.0/assets/transforms/xml_parser/example.yaml +11 -0
- dagster_community_components-0.1.0/assets/transforms/xml_parser/requirements.txt +3 -0
- dagster_community_components-0.1.0/assets/transforms/xml_parser/schema.json +164 -0
- dagster_community_components-0.1.0/dagster_community_components/__init__.py +582 -0
- dagster_community_components-0.1.0/external_assets/external_adls_asset/README.md +63 -0
- dagster_community_components-0.1.0/external_assets/external_adls_asset/component.py +28 -0
- dagster_community_components-0.1.0/external_assets/external_adls_asset/example.yaml +7 -0
- dagster_community_components-0.1.0/external_assets/external_adls_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_adls_asset/schema.json +60 -0
- dagster_community_components-0.1.0/external_assets/external_bigquery_table/README.md +63 -0
- dagster_community_components-0.1.0/external_assets/external_bigquery_table/component.py +29 -0
- dagster_community_components-0.1.0/external_assets/external_bigquery_table/example.yaml +7 -0
- dagster_community_components-0.1.0/external_assets/external_bigquery_table/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_bigquery_table/schema.json +59 -0
- dagster_community_components-0.1.0/external_assets/external_clickhouse_table/README.md +37 -0
- dagster_community_components-0.1.0/external_assets/external_clickhouse_table/component.py +90 -0
- dagster_community_components-0.1.0/external_assets/external_clickhouse_table/example.yaml +8 -0
- dagster_community_components-0.1.0/external_assets/external_clickhouse_table/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_clickhouse_table/schema.json +117 -0
- dagster_community_components-0.1.0/external_assets/external_databricks_table/README.md +65 -0
- dagster_community_components-0.1.0/external_assets/external_databricks_table/component.py +32 -0
- dagster_community_components-0.1.0/external_assets/external_databricks_table/example.yaml +8 -0
- dagster_community_components-0.1.0/external_assets/external_databricks_table/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_databricks_table/schema.json +66 -0
- dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_gcs_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_gcs_asset/component.py +28 -0
- dagster_community_components-0.1.0/external_assets/external_gcs_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/external_assets/external_gcs_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_gcs_asset/schema.json +61 -0
- dagster_community_components-0.1.0/external_assets/external_kafka_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_kafka_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_kafka_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/external_assets/external_kafka_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_kafka_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_kinesis_asset/README.md +59 -0
- dagster_community_components-0.1.0/external_assets/external_kinesis_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_kinesis_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_kinesis_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_kinesis_asset/schema.json +54 -0
- dagster_community_components-0.1.0/external_assets/external_mqtt_asset/README.md +63 -0
- dagster_community_components-0.1.0/external_assets/external_mqtt_asset/component.py +27 -0
- dagster_community_components-0.1.0/external_assets/external_mqtt_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_mqtt_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_mqtt_asset/schema.json +60 -0
- dagster_community_components-0.1.0/external_assets/external_nats_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_nats_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_nats_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_nats_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_nats_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_pubsub_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_pubsub_asset/component.py +26 -0
- dagster_community_components-0.1.0/external_assets/external_pubsub_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/external_assets/external_pubsub_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_pubsub_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_pulsar_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_pulsar_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_pulsar_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_pulsar_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_pulsar_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/README.md +63 -0
- dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/component.py +27 -0
- dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/schema.json +60 -0
- dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/component.py +27 -0
- dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/schema.json +62 -0
- dagster_community_components-0.1.0/external_assets/external_s3_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_s3_asset/component.py +28 -0
- dagster_community_components-0.1.0/external_assets/external_s3_asset/example.yaml +7 -0
- dagster_community_components-0.1.0/external_assets/external_s3_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_s3_asset/schema.json +60 -0
- dagster_community_components-0.1.0/external_assets/external_servicebus_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_servicebus_asset/component.py +28 -0
- dagster_community_components-0.1.0/external_assets/external_servicebus_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_servicebus_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_servicebus_asset/schema.json +61 -0
- dagster_community_components-0.1.0/external_assets/external_sftp_path/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_sftp_path/component.py +27 -0
- dagster_community_components-0.1.0/external_assets/external_sftp_path/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_sftp_path/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_sftp_path/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_sharepoint_library/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_sharepoint_library/component.py +26 -0
- dagster_community_components-0.1.0/external_assets/external_sharepoint_library/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_sharepoint_library/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_sharepoint_library/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_snowflake_table/README.md +65 -0
- dagster_community_components-0.1.0/external_assets/external_snowflake_table/component.py +44 -0
- dagster_community_components-0.1.0/external_assets/external_snowflake_table/example.yaml +8 -0
- dagster_community_components-0.1.0/external_assets/external_snowflake_table/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_snowflake_table/schema.json +65 -0
- dagster_community_components-0.1.0/external_assets/external_sql_asset/README.md +61 -0
- dagster_community_components-0.1.0/external_assets/external_sql_asset/component.py +25 -0
- dagster_community_components-0.1.0/external_assets/external_sql_asset/example.yaml +6 -0
- dagster_community_components-0.1.0/external_assets/external_sql_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_sql_asset/schema.json +53 -0
- dagster_community_components-0.1.0/external_assets/external_sqs_asset/README.md +59 -0
- dagster_community_components-0.1.0/external_assets/external_sqs_asset/component.py +26 -0
- dagster_community_components-0.1.0/external_assets/external_sqs_asset/example.yaml +5 -0
- dagster_community_components-0.1.0/external_assets/external_sqs_asset/requirements.txt +1 -0
- dagster_community_components-0.1.0/external_assets/external_sqs_asset/schema.json +54 -0
- dagster_community_components-0.1.0/integrations/aws_dms/README.md +209 -0
- dagster_community_components-0.1.0/integrations/aws_dms/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/aws_dms/component.py +459 -0
- dagster_community_components-0.1.0/integrations/aws_dms/example.yaml +58 -0
- dagster_community_components-0.1.0/integrations/aws_dms/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/aws_dms/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/aws_dms/schema.json +123 -0
- dagster_community_components-0.1.0/integrations/aws_glue/README.md +181 -0
- dagster_community_components-0.1.0/integrations/aws_glue/__init__.py +3 -0
- dagster_community_components-0.1.0/integrations/aws_glue/component.py +1062 -0
- dagster_community_components-0.1.0/integrations/aws_glue/example.yaml +60 -0
- dagster_community_components-0.1.0/integrations/aws_glue/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/aws_glue/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/aws_glue/schema.json +19 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/README.md +57 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/component.py +436 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/example.yaml +20 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/aws_kinesis/schema.json +116 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/README.md +61 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/component.py +423 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/example.yaml +23 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/aws_redshift/schema.json +136 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/README.md +59 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/component.py +536 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/example.yaml +22 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/aws_sagemaker/schema.json +132 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/README.md +173 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/component.py +777 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/example.yaml +75 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/requirements.txt +3 -0
- dagster_community_components-0.1.0/integrations/azure_data_factory/schema.json +20 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/README.md +123 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/component.py +317 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/example.yaml +37 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/requirements.txt +3 -0
- dagster_community_components-0.1.0/integrations/azure_stream_analytics/schema.json +115 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/README.md +147 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/component.py +442 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/example.yaml +40 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/requirements.txt +4 -0
- dagster_community_components-0.1.0/integrations/azure_synapse/schema.json +136 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/README.md +292 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/component.py +343 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/example.yaml +17 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/requirements.txt +3 -0
- dagster_community_components-0.1.0/integrations/databricks_asset_bundle/schema.json +67 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/README.md +161 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/__init__.py +3 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/component.py +556 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/example.yaml +56 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/databricks_workspace/schema.json +131 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/README.md +164 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/__init__.py +3 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/component.py +610 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/example.yaml +36 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/requirements.txt +3 -0
- dagster_community_components-0.1.0/integrations/google_bigquery/schema.json +146 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/README.md +51 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/component.py +164 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/example.yaml +8 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_cloud_functions/schema.json +78 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/README.md +50 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/component.py +171 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/example.yaml +8 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/schema.json +79 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/README.md +54 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/component.py +318 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/example.yaml +20 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_dataflow/schema.json +100 -0
- dagster_community_components-0.1.0/integrations/google_datastream/README.md +54 -0
- dagster_community_components-0.1.0/integrations/google_datastream/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_datastream/component.py +373 -0
- dagster_community_components-0.1.0/integrations/google_datastream/example.yaml +20 -0
- dagster_community_components-0.1.0/integrations/google_datastream/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_datastream/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_datastream/schema.json +100 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/README.md +53 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/component.py +217 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/example.yaml +8 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_pubsub/schema.json +93 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/README.md +59 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/__init__.py +5 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/component.py +435 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/example.yaml +22 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/manifest.yaml +3 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/google_vertex_ai/schema.json +123 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/README.md +414 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/__init__.py +3 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/component.py +1254 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/example.yaml +59 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/manifest.yaml +5 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/requirements.txt +2 -0
- dagster_community_components-0.1.0/integrations/snowflake_workspace/schema.json +196 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/README.md +63 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/component.py +66 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/example.yaml +7 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/io_manager.py +150 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/athena_io_manager/schema.json +69 -0
- dagster_community_components-0.1.0/io_managers/bigquery_io_manager/README.md +28 -0
- dagster_community_components-0.1.0/io_managers/bigquery_io_manager/component.py +35 -0
- dagster_community_components-0.1.0/io_managers/bigquery_io_manager/example.yaml +6 -0
- dagster_community_components-0.1.0/io_managers/bigquery_io_manager/requirements.txt +1 -0
- dagster_community_components-0.1.0/io_managers/bigquery_io_manager/schema.json +61 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/README.md +59 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/component.py +57 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/example.yaml +8 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/io_manager.py +186 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/requirements.txt +2 -0
- dagster_community_components-0.1.0/io_managers/databricks_io_manager/schema.json +67 -0
- dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/README.md +34 -0
- dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/component.py +46 -0
- dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/example.yaml +7 -0
- dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/requirements.txt +1 -0
- dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/schema.json +87 -0
- dagster_community_components-0.1.0/io_managers/duckdb_io_manager/README.md +21 -0
- dagster_community_components-0.1.0/io_managers/duckdb_io_manager/component.py +22 -0
- dagster_community_components-0.1.0/io_managers/duckdb_io_manager/example.yaml +5 -0
- dagster_community_components-0.1.0/io_managers/duckdb_io_manager/requirements.txt +1 -0
- dagster_community_components-0.1.0/io_managers/duckdb_io_manager/schema.json +41 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/README.md +51 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/component.py +50 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/example.yaml +6 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/io_manager.py +84 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/schema.json +56 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/README.md +72 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/component.py +72 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/example.yaml +11 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/io_manager.py +143 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/requirements.txt +4 -0
- dagster_community_components-0.1.0/io_managers/lakefs_io_manager/schema.json +82 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/README.md +53 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/component.py +62 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/example.yaml +5 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/io_manager.py +92 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/lance_io_manager/schema.json +65 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/README.md +57 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/component.py +62 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/example.yaml +8 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/io_manager.py +115 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/requirements.txt +2 -0
- dagster_community_components-0.1.0/io_managers/minio_io_manager/schema.json +64 -0
- dagster_community_components-0.1.0/io_managers/motherduck_io_manager/README.md +28 -0
- dagster_community_components-0.1.0/io_managers/motherduck_io_manager/component.py +28 -0
- dagster_community_components-0.1.0/io_managers/motherduck_io_manager/example.yaml +6 -0
- dagster_community_components-0.1.0/io_managers/motherduck_io_manager/requirements.txt +2 -0
- dagster_community_components-0.1.0/io_managers/motherduck_io_manager/schema.json +49 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/README.md +57 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/component.py +59 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/example.yaml +10 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/io_manager.py +134 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/postgres_io_manager/schema.json +80 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/README.md +57 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/component.py +58 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/example.yaml +8 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/io_manager.py +121 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/redshift_io_manager/schema.json +72 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/README.md +54 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/component.py +60 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/example.yaml +8 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/io_manager.py +91 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/requirements.txt +3 -0
- dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/schema.json +70 -0
- dagster_community_components-0.1.0/io_managers/snowflake_io_manager/README.md +29 -0
- dagster_community_components-0.1.0/io_managers/snowflake_io_manager/component.py +33 -0
- dagster_community_components-0.1.0/io_managers/snowflake_io_manager/example.yaml +9 -0
- dagster_community_components-0.1.0/io_managers/snowflake_io_manager/requirements.txt +1 -0
- dagster_community_components-0.1.0/io_managers/snowflake_io_manager/schema.json +72 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/README.md +57 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/__init__.py +4 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/component.py +55 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/example.yaml +8 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/io_manager.py +166 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/requirements.txt +2 -0
- dagster_community_components-0.1.0/io_managers/trino_io_manager/schema.json +70 -0
- dagster_community_components-0.1.0/manifest.json +11246 -0
- dagster_community_components-0.1.0/observations/adls_observation_sensor/README.md +66 -0
- dagster_community_components-0.1.0/observations/adls_observation_sensor/component.py +76 -0
- dagster_community_components-0.1.0/observations/adls_observation_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/observations/adls_observation_sensor/requirements.txt +2 -0
- dagster_community_components-0.1.0/observations/adls_observation_sensor/schema.json +73 -0
- dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/component.py +57 -0
- dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/README.md +53 -0
- dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/component.py +133 -0
- dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/example.yaml +10 -0
- dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/schema.json +96 -0
- dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/README.md +69 -0
- dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/component.py +73 -0
- dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/example.yaml +11 -0
- dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/schema.json +85 -0
- dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/README.md +64 -0
- dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/component.py +79 -0
- dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/requirements.txt +2 -0
- dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/observations/gcs_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/gcs_observation_sensor/component.py +67 -0
- dagster_community_components-0.1.0/observations/gcs_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/gcs_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/gcs_observation_sensor/schema.json +67 -0
- dagster_community_components-0.1.0/observations/kafka_observation_sensor/README.md +61 -0
- dagster_community_components-0.1.0/observations/kafka_observation_sensor/component.py +68 -0
- dagster_community_components-0.1.0/observations/kafka_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/kafka_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/kafka_observation_sensor/schema.json +59 -0
- dagster_community_components-0.1.0/observations/kinesis_observation_sensor/README.md +61 -0
- dagster_community_components-0.1.0/observations/kinesis_observation_sensor/component.py +59 -0
- dagster_community_components-0.1.0/observations/kinesis_observation_sensor/example.yaml +6 -0
- dagster_community_components-0.1.0/observations/kinesis_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/kinesis_observation_sensor/schema.json +60 -0
- dagster_community_components-0.1.0/observations/mqtt_observation_sensor/README.md +65 -0
- dagster_community_components-0.1.0/observations/mqtt_observation_sensor/component.py +71 -0
- dagster_community_components-0.1.0/observations/mqtt_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/mqtt_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/mqtt_observation_sensor/schema.json +73 -0
- dagster_community_components-0.1.0/observations/nats_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/nats_observation_sensor/component.py +69 -0
- dagster_community_components-0.1.0/observations/nats_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/nats_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/nats_observation_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/observations/pubsub_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/pubsub_observation_sensor/component.py +66 -0
- dagster_community_components-0.1.0/observations/pubsub_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/pubsub_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/pubsub_observation_sensor/schema.json +67 -0
- dagster_community_components-0.1.0/observations/pulsar_observation_sensor/README.md +65 -0
- dagster_community_components-0.1.0/observations/pulsar_observation_sensor/component.py +74 -0
- dagster_community_components-0.1.0/observations/pulsar_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/pulsar_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/pulsar_observation_sensor/schema.json +73 -0
- dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/README.md +69 -0
- dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/component.py +75 -0
- dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/schema.json +88 -0
- dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/README.md +67 -0
- dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/component.py +67 -0
- dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/example.yaml +6 -0
- dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/schema.json +83 -0
- dagster_community_components-0.1.0/observations/s3_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/s3_observation_sensor/component.py +55 -0
- dagster_community_components-0.1.0/observations/s3_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/s3_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/s3_observation_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/observations/servicebus_observation_sensor/README.md +68 -0
- dagster_community_components-0.1.0/observations/servicebus_observation_sensor/component.py +73 -0
- dagster_community_components-0.1.0/observations/servicebus_observation_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/observations/servicebus_observation_sensor/requirements.txt +2 -0
- dagster_community_components-0.1.0/observations/servicebus_observation_sensor/schema.json +82 -0
- dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/README.md +69 -0
- dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/component.py +72 -0
- dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/example.yaml +9 -0
- dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/schema.json +88 -0
- dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/README.md +71 -0
- dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/component.py +84 -0
- dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/example.yaml +11 -0
- dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/schema.json +93 -0
- dagster_community_components-0.1.0/observations/sql_observation_sensor/README.md +63 -0
- dagster_community_components-0.1.0/observations/sql_observation_sensor/component.py +68 -0
- dagster_community_components-0.1.0/observations/sql_observation_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/observations/sql_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/sql_observation_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/observations/sqs_observation_sensor/README.md +61 -0
- dagster_community_components-0.1.0/observations/sqs_observation_sensor/component.py +62 -0
- dagster_community_components-0.1.0/observations/sqs_observation_sensor/example.yaml +6 -0
- dagster_community_components-0.1.0/observations/sqs_observation_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/observations/sqs_observation_sensor/schema.json +60 -0
- dagster_community_components-0.1.0/pyproject.toml +80 -0
- dagster_community_components-0.1.0/resources/airtable_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/airtable_resource/component.py +34 -0
- dagster_community_components-0.1.0/resources/airtable_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/airtable_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/airtable_resource/schema.json +33 -0
- dagster_community_components-0.1.0/resources/anthropic_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/anthropic_resource/component.py +17 -0
- dagster_community_components-0.1.0/resources/anthropic_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/anthropic_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/anthropic_resource/schema.json +34 -0
- dagster_community_components-0.1.0/resources/asana_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/asana_resource/component.py +49 -0
- dagster_community_components-0.1.0/resources/asana_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/asana_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/asana_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/aws_s3_resource/README.md +35 -0
- dagster_community_components-0.1.0/resources/aws_s3_resource/component.py +30 -0
- dagster_community_components-0.1.0/resources/aws_s3_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/aws_s3_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/aws_s3_resource/schema.json +54 -0
- dagster_community_components-0.1.0/resources/bigquery_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/bigquery_resource/component.py +27 -0
- dagster_community_components-0.1.0/resources/bigquery_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/bigquery_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/bigquery_resource/schema.json +53 -0
- dagster_community_components-0.1.0/resources/cassandra_resource/README.md +28 -0
- dagster_community_components-0.1.0/resources/cassandra_resource/component.py +60 -0
- dagster_community_components-0.1.0/resources/cassandra_resource/example.yaml +8 -0
- dagster_community_components-0.1.0/resources/cassandra_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/cassandra_resource/schema.json +56 -0
- dagster_community_components-0.1.0/resources/chroma_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/chroma_resource/component.py +27 -0
- dagster_community_components-0.1.0/resources/chroma_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/chroma_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/chroma_resource/schema.json +55 -0
- dagster_community_components-0.1.0/resources/cosmosdb_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/cosmosdb_resource/component.py +39 -0
- dagster_community_components-0.1.0/resources/cosmosdb_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/cosmosdb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/cosmosdb_resource/schema.json +43 -0
- dagster_community_components-0.1.0/resources/couchdb_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/couchdb_resource/component.py +39 -0
- dagster_community_components-0.1.0/resources/couchdb_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/couchdb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/couchdb_resource/schema.json +41 -0
- dagster_community_components-0.1.0/resources/databricks_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/databricks_resource/component.py +24 -0
- dagster_community_components-0.1.0/resources/databricks_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/databricks_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/databricks_resource/schema.json +45 -0
- dagster_community_components-0.1.0/resources/datadog_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/datadog_resource/component.py +22 -0
- dagster_community_components-0.1.0/resources/datadog_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/datadog_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/datadog_resource/schema.json +41 -0
- dagster_community_components-0.1.0/resources/dbt_cloud_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/dbt_cloud_resource/component.py +21 -0
- dagster_community_components-0.1.0/resources/dbt_cloud_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/dbt_cloud_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/dbt_cloud_resource/schema.json +38 -0
- dagster_community_components-0.1.0/resources/duckdb_resource/README.md +25 -0
- dagster_community_components-0.1.0/resources/duckdb_resource/component.py +17 -0
- dagster_community_components-0.1.0/resources/duckdb_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/duckdb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/duckdb_resource/schema.json +30 -0
- dagster_community_components-0.1.0/resources/dynamodb_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/dynamodb_resource/component.py +57 -0
- dagster_community_components-0.1.0/resources/dynamodb_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/dynamodb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/dynamodb_resource/schema.json +47 -0
- dagster_community_components-0.1.0/resources/elasticsearch_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/elasticsearch_resource/component.py +51 -0
- dagster_community_components-0.1.0/resources/elasticsearch_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/elasticsearch_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/elasticsearch_resource/schema.json +51 -0
- dagster_community_components-0.1.0/resources/facebook_ads_resource/README.md +43 -0
- dagster_community_components-0.1.0/resources/facebook_ads_resource/component.py +56 -0
- dagster_community_components-0.1.0/resources/facebook_ads_resource/example.yaml +7 -0
- dagster_community_components-0.1.0/resources/facebook_ads_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/facebook_ads_resource/schema.json +53 -0
- dagster_community_components-0.1.0/resources/firestore_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/firestore_resource/component.py +50 -0
- dagster_community_components-0.1.0/resources/firestore_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/firestore_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/firestore_resource/schema.json +42 -0
- dagster_community_components-0.1.0/resources/freshdesk_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/freshdesk_resource/component.py +47 -0
- dagster_community_components-0.1.0/resources/freshdesk_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/freshdesk_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/freshdesk_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/gcs_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/gcs_resource/component.py +20 -0
- dagster_community_components-0.1.0/resources/gcs_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/gcs_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/gcs_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/gemini_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/gemini_resource/component.py +17 -0
- dagster_community_components-0.1.0/resources/gemini_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/gemini_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/gemini_resource/schema.json +35 -0
- dagster_community_components-0.1.0/resources/github_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/github_resource/component.py +23 -0
- dagster_community_components-0.1.0/resources/github_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/github_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/github_resource/schema.json +45 -0
- dagster_community_components-0.1.0/resources/google_analytics_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/google_analytics_resource/component.py +49 -0
- dagster_community_components-0.1.0/resources/google_analytics_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/google_analytics_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/google_analytics_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/google_sheets_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/google_sheets_resource/component.py +48 -0
- dagster_community_components-0.1.0/resources/google_sheets_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/google_sheets_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/google_sheets_resource/schema.json +40 -0
- dagster_community_components-0.1.0/resources/http_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/http_resource/component.py +44 -0
- dagster_community_components-0.1.0/resources/http_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/http_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/http_resource/schema.json +46 -0
- dagster_community_components-0.1.0/resources/hubspot_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/hubspot_resource/component.py +34 -0
- dagster_community_components-0.1.0/resources/hubspot_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/hubspot_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/hubspot_resource/schema.json +33 -0
- dagster_community_components-0.1.0/resources/jira_resource/README.md +40 -0
- dagster_community_components-0.1.0/resources/jira_resource/component.py +47 -0
- dagster_community_components-0.1.0/resources/jira_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/jira_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/jira_resource/schema.json +45 -0
- dagster_community_components-0.1.0/resources/kafka_resource/README.md +31 -0
- dagster_community_components-0.1.0/resources/kafka_resource/component.py +55 -0
- dagster_community_components-0.1.0/resources/kafka_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/kafka_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/kafka_resource/schema.json +61 -0
- dagster_community_components-0.1.0/resources/linkedin_ads_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/linkedin_ads_resource/component.py +49 -0
- dagster_community_components-0.1.0/resources/linkedin_ads_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/linkedin_ads_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/linkedin_ads_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/minio_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/minio_resource/component.py +45 -0
- dagster_community_components-0.1.0/resources/minio_resource/example.yaml +8 -0
- dagster_community_components-0.1.0/resources/minio_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/minio_resource/schema.json +65 -0
- dagster_community_components-0.1.0/resources/mlflow_resource/README.md +30 -0
- dagster_community_components-0.1.0/resources/mlflow_resource/component.py +48 -0
- dagster_community_components-0.1.0/resources/mlflow_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/mlflow_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/mlflow_resource/schema.json +54 -0
- dagster_community_components-0.1.0/resources/mongodb_resource/README.md +26 -0
- dagster_community_components-0.1.0/resources/mongodb_resource/component.py +35 -0
- dagster_community_components-0.1.0/resources/mongodb_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/mongodb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/mongodb_resource/schema.json +42 -0
- dagster_community_components-0.1.0/resources/mysql_resource/README.md +29 -0
- dagster_community_components-0.1.0/resources/mysql_resource/component.py +52 -0
- dagster_community_components-0.1.0/resources/mysql_resource/example.yaml +9 -0
- dagster_community_components-0.1.0/resources/mysql_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/mysql_resource/schema.json +57 -0
- dagster_community_components-0.1.0/resources/neo4j_resource/README.md +27 -0
- dagster_community_components-0.1.0/resources/neo4j_resource/component.py +38 -0
- dagster_community_components-0.1.0/resources/neo4j_resource/example.yaml +7 -0
- dagster_community_components-0.1.0/resources/neo4j_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/neo4j_resource/schema.json +47 -0
- dagster_community_components-0.1.0/resources/notion_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/notion_resource/component.py +34 -0
- dagster_community_components-0.1.0/resources/notion_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/notion_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/notion_resource/schema.json +33 -0
- dagster_community_components-0.1.0/resources/openai_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/openai_resource/component.py +17 -0
- dagster_community_components-0.1.0/resources/openai_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/openai_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/openai_resource/schema.json +34 -0
- dagster_community_components-0.1.0/resources/pagerduty_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/pagerduty_resource/component.py +19 -0
- dagster_community_components-0.1.0/resources/pagerduty_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/pagerduty_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/pagerduty_resource/schema.json +33 -0
- dagster_community_components-0.1.0/resources/personio_resource/README.md +40 -0
- dagster_community_components-0.1.0/resources/personio_resource/component.py +45 -0
- dagster_community_components-0.1.0/resources/personio_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/personio_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/personio_resource/schema.json +40 -0
- dagster_community_components-0.1.0/resources/pipedrive_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/pipedrive_resource/component.py +54 -0
- dagster_community_components-0.1.0/resources/pipedrive_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/pipedrive_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/pipedrive_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/postgres_resource/README.md +42 -0
- dagster_community_components-0.1.0/resources/postgres_resource/component.py +48 -0
- dagster_community_components-0.1.0/resources/postgres_resource/example.yaml +7 -0
- dagster_community_components-0.1.0/resources/postgres_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/postgres_resource/schema.json +64 -0
- dagster_community_components-0.1.0/resources/pyspark_resource/README.md +32 -0
- dagster_community_components-0.1.0/resources/pyspark_resource/component.py +23 -0
- dagster_community_components-0.1.0/resources/pyspark_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/pyspark_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/pyspark_resource/schema.json +48 -0
- dagster_community_components-0.1.0/resources/qdrant_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/qdrant_resource/component.py +27 -0
- dagster_community_components-0.1.0/resources/qdrant_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/qdrant_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/qdrant_resource/schema.json +55 -0
- dagster_community_components-0.1.0/resources/redis_resource/README.md +28 -0
- dagster_community_components-0.1.0/resources/redis_resource/component.py +54 -0
- dagster_community_components-0.1.0/resources/redis_resource/example.yaml +7 -0
- dagster_community_components-0.1.0/resources/redis_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/redis_resource/schema.json +55 -0
- dagster_community_components-0.1.0/resources/redshift_resource/README.md +42 -0
- dagster_community_components-0.1.0/resources/redshift_resource/component.py +32 -0
- dagster_community_components-0.1.0/resources/redshift_resource/example.yaml +7 -0
- dagster_community_components-0.1.0/resources/redshift_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/redshift_resource/schema.json +72 -0
- dagster_community_components-0.1.0/resources/salesforce_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/salesforce_resource/component.py +30 -0
- dagster_community_components-0.1.0/resources/salesforce_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/salesforce_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/salesforce_resource/schema.json +69 -0
- dagster_community_components-0.1.0/resources/sftp_resource/README.md +33 -0
- dagster_community_components-0.1.0/resources/sftp_resource/component.py +73 -0
- dagster_community_components-0.1.0/resources/sftp_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/sftp_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/sftp_resource/schema.json +68 -0
- dagster_community_components-0.1.0/resources/shopify_resource/README.md +40 -0
- dagster_community_components-0.1.0/resources/shopify_resource/component.py +48 -0
- dagster_community_components-0.1.0/resources/shopify_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/shopify_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/shopify_resource/schema.json +46 -0
- dagster_community_components-0.1.0/resources/slack_resource/README.md +36 -0
- dagster_community_components-0.1.0/resources/slack_resource/component.py +17 -0
- dagster_community_components-0.1.0/resources/slack_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/slack_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/slack_resource/schema.json +32 -0
- dagster_community_components-0.1.0/resources/smtp_resource/README.md +41 -0
- dagster_community_components-0.1.0/resources/smtp_resource/component.py +49 -0
- dagster_community_components-0.1.0/resources/smtp_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/smtp_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/smtp_resource/schema.json +59 -0
- dagster_community_components-0.1.0/resources/snowflake_resource/README.md +39 -0
- dagster_community_components-0.1.0/resources/snowflake_resource/component.py +32 -0
- dagster_community_components-0.1.0/resources/snowflake_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/snowflake_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/snowflake_resource/schema.json +72 -0
- dagster_community_components-0.1.0/resources/stripe_resource/README.md +38 -0
- dagster_community_components-0.1.0/resources/stripe_resource/component.py +35 -0
- dagster_community_components-0.1.0/resources/stripe_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/stripe_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/stripe_resource/schema.json +33 -0
- dagster_community_components-0.1.0/resources/trino_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/trino_resource/component.py +63 -0
- dagster_community_components-0.1.0/resources/trino_resource/example.yaml +8 -0
- dagster_community_components-0.1.0/resources/trino_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/trino_resource/schema.json +70 -0
- dagster_community_components-0.1.0/resources/twilio_resource/README.md +37 -0
- dagster_community_components-0.1.0/resources/twilio_resource/component.py +21 -0
- dagster_community_components-0.1.0/resources/twilio_resource/example.yaml +5 -0
- dagster_community_components-0.1.0/resources/twilio_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/twilio_resource/schema.json +39 -0
- dagster_community_components-0.1.0/resources/wandb_resource/README.md +28 -0
- dagster_community_components-0.1.0/resources/wandb_resource/component.py +43 -0
- dagster_community_components-0.1.0/resources/wandb_resource/example.yaml +4 -0
- dagster_community_components-0.1.0/resources/wandb_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/wandb_resource/schema.json +47 -0
- dagster_community_components-0.1.0/resources/weaviate_resource/README.md +35 -0
- dagster_community_components-0.1.0/resources/weaviate_resource/component.py +24 -0
- dagster_community_components-0.1.0/resources/weaviate_resource/example.yaml +3 -0
- dagster_community_components-0.1.0/resources/weaviate_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/weaviate_resource/schema.json +41 -0
- dagster_community_components-0.1.0/resources/zendesk_resource/README.md +40 -0
- dagster_community_components-0.1.0/resources/zendesk_resource/component.py +48 -0
- dagster_community_components-0.1.0/resources/zendesk_resource/example.yaml +6 -0
- dagster_community_components-0.1.0/resources/zendesk_resource/requirements.txt +1 -0
- dagster_community_components-0.1.0/resources/zendesk_resource/schema.json +45 -0
- dagster_community_components-0.1.0/sensors/abinitio_job_sensor/README.md +57 -0
- dagster_community_components-0.1.0/sensors/abinitio_job_sensor/component.py +199 -0
- dagster_community_components-0.1.0/sensors/abinitio_job_sensor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/abinitio_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/abinitio_job_sensor/schema.json +101 -0
- dagster_community_components-0.1.0/sensors/adls_monitor/README.md +299 -0
- dagster_community_components-0.1.0/sensors/adls_monitor/component.py +254 -0
- dagster_community_components-0.1.0/sensors/adls_monitor/example.yaml +11 -0
- dagster_community_components-0.1.0/sensors/adls_monitor/requirements.txt +2 -0
- dagster_community_components-0.1.0/sensors/adls_monitor/schema.json +95 -0
- dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/README.md +51 -0
- dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/component.py +104 -0
- dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/example.yaml +6 -0
- dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/schema.json +82 -0
- dagster_community_components-0.1.0/sensors/coalesce_job_sensor/README.md +36 -0
- dagster_community_components-0.1.0/sensors/coalesce_job_sensor/component.py +108 -0
- dagster_community_components-0.1.0/sensors/coalesce_job_sensor/example.yaml +9 -0
- dagster_community_components-0.1.0/sensors/coalesce_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/coalesce_job_sensor/schema.json +73 -0
- dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/README.md +49 -0
- dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/component.py +101 -0
- dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/schema.json +74 -0
- dagster_community_components-0.1.0/sensors/eventhubs_monitor/README.md +80 -0
- dagster_community_components-0.1.0/sensors/eventhubs_monitor/component.py +243 -0
- dagster_community_components-0.1.0/sensors/eventhubs_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/eventhubs_monitor/requirements.txt +2 -0
- dagster_community_components-0.1.0/sensors/eventhubs_monitor/schema.json +88 -0
- dagster_community_components-0.1.0/sensors/filesystem_monitor/README.md +363 -0
- dagster_community_components-0.1.0/sensors/filesystem_monitor/component.py +188 -0
- dagster_community_components-0.1.0/sensors/filesystem_monitor/example.yaml +9 -0
- dagster_community_components-0.1.0/sensors/filesystem_monitor/requirements.txt +2 -0
- dagster_community_components-0.1.0/sensors/filesystem_monitor/schema.json +67 -0
- dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/README.md +49 -0
- dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/component.py +95 -0
- dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/schema.json +73 -0
- dagster_community_components-0.1.0/sensors/gcs_monitor/README.md +284 -0
- dagster_community_components-0.1.0/sensors/gcs_monitor/component.py +215 -0
- dagster_community_components-0.1.0/sensors/gcs_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/gcs_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/gcs_monitor/schema.json +81 -0
- dagster_community_components-0.1.0/sensors/kafka_monitor/README.md +325 -0
- dagster_community_components-0.1.0/sensors/kafka_monitor/component.py +272 -0
- dagster_community_components-0.1.0/sensors/kafka_monitor/example.yaml +12 -0
- dagster_community_components-0.1.0/sensors/kafka_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/kafka_monitor/schema.json +115 -0
- dagster_community_components-0.1.0/sensors/kinesis_monitor/README.md +90 -0
- dagster_community_components-0.1.0/sensors/kinesis_monitor/component.py +218 -0
- dagster_community_components-0.1.0/sensors/kinesis_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/kinesis_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/kinesis_monitor/schema.json +81 -0
- dagster_community_components-0.1.0/sensors/matillion_job_sensor/README.md +55 -0
- dagster_community_components-0.1.0/sensors/matillion_job_sensor/component.py +116 -0
- dagster_community_components-0.1.0/sensors/matillion_job_sensor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/matillion_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/matillion_job_sensor/schema.json +95 -0
- dagster_community_components-0.1.0/sensors/mlflow_model_sensor/README.md +170 -0
- dagster_community_components-0.1.0/sensors/mlflow_model_sensor/component.py +201 -0
- dagster_community_components-0.1.0/sensors/mlflow_model_sensor/example.yaml +8 -0
- dagster_community_components-0.1.0/sensors/mlflow_model_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/mlflow_model_sensor/schema.json +66 -0
- dagster_community_components-0.1.0/sensors/mqtt_monitor/README.md +105 -0
- dagster_community_components-0.1.0/sensors/mqtt_monitor/component.py +231 -0
- dagster_community_components-0.1.0/sensors/mqtt_monitor/example.yaml +13 -0
- dagster_community_components-0.1.0/sensors/mqtt_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/mqtt_monitor/schema.json +124 -0
- dagster_community_components-0.1.0/sensors/nats_monitor/README.md +81 -0
- dagster_community_components-0.1.0/sensors/nats_monitor/component.py +227 -0
- dagster_community_components-0.1.0/sensors/nats_monitor/example.yaml +11 -0
- dagster_community_components-0.1.0/sensors/nats_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/nats_monitor/schema.json +114 -0
- dagster_community_components-0.1.0/sensors/precisely_job_sensor/README.md +49 -0
- dagster_community_components-0.1.0/sensors/precisely_job_sensor/component.py +106 -0
- dagster_community_components-0.1.0/sensors/precisely_job_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/sensors/precisely_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/precisely_job_sensor/schema.json +75 -0
- dagster_community_components-0.1.0/sensors/pubsub_monitor/README.md +99 -0
- dagster_community_components-0.1.0/sensors/pubsub_monitor/component.py +179 -0
- dagster_community_components-0.1.0/sensors/pubsub_monitor/example.yaml +9 -0
- dagster_community_components-0.1.0/sensors/pubsub_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/pubsub_monitor/schema.json +74 -0
- dagster_community_components-0.1.0/sensors/pulsar_monitor/README.md +77 -0
- dagster_community_components-0.1.0/sensors/pulsar_monitor/component.py +218 -0
- dagster_community_components-0.1.0/sensors/pulsar_monitor/example.yaml +12 -0
- dagster_community_components-0.1.0/sensors/pulsar_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/pulsar_monitor/schema.json +102 -0
- dagster_community_components-0.1.0/sensors/rabbitmq_monitor/README.md +85 -0
- dagster_community_components-0.1.0/sensors/rabbitmq_monitor/component.py +200 -0
- dagster_community_components-0.1.0/sensors/rabbitmq_monitor/example.yaml +14 -0
- dagster_community_components-0.1.0/sensors/rabbitmq_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/rabbitmq_monitor/schema.json +110 -0
- dagster_community_components-0.1.0/sensors/redis_streams_monitor/README.md +96 -0
- dagster_community_components-0.1.0/sensors/redis_streams_monitor/component.py +192 -0
- dagster_community_components-0.1.0/sensors/redis_streams_monitor/example.yaml +13 -0
- dagster_community_components-0.1.0/sensors/redis_streams_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/redis_streams_monitor/schema.json +113 -0
- dagster_community_components-0.1.0/sensors/rivery_job_sensor/README.md +49 -0
- dagster_community_components-0.1.0/sensors/rivery_job_sensor/component.py +99 -0
- dagster_community_components-0.1.0/sensors/rivery_job_sensor/example.yaml +7 -0
- dagster_community_components-0.1.0/sensors/rivery_job_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/rivery_job_sensor/schema.json +75 -0
- dagster_community_components-0.1.0/sensors/s3_monitor/README.md +317 -0
- dagster_community_components-0.1.0/sensors/s3_monitor/component.py +204 -0
- dagster_community_components-0.1.0/sensors/s3_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/s3_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/s3_monitor/schema.json +80 -0
- dagster_community_components-0.1.0/sensors/servicebus_monitor/README.md +76 -0
- dagster_community_components-0.1.0/sensors/servicebus_monitor/component.py +228 -0
- dagster_community_components-0.1.0/sensors/servicebus_monitor/example.yaml +9 -0
- dagster_community_components-0.1.0/sensors/servicebus_monitor/requirements.txt +2 -0
- dagster_community_components-0.1.0/sensors/servicebus_monitor/schema.json +97 -0
- dagster_community_components-0.1.0/sensors/servicenow_sensor/README.md +55 -0
- dagster_community_components-0.1.0/sensors/servicenow_sensor/component.py +120 -0
- dagster_community_components-0.1.0/sensors/servicenow_sensor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/servicenow_sensor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/servicenow_sensor/schema.json +92 -0
- dagster_community_components-0.1.0/sensors/sftp_monitor/README.md +57 -0
- dagster_community_components-0.1.0/sensors/sftp_monitor/component.py +124 -0
- dagster_community_components-0.1.0/sensors/sftp_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/sftp_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/sftp_monitor/schema.json +101 -0
- dagster_community_components-0.1.0/sensors/sharepoint_monitor/README.md +57 -0
- dagster_community_components-0.1.0/sensors/sharepoint_monitor/component.py +155 -0
- dagster_community_components-0.1.0/sensors/sharepoint_monitor/example.yaml +11 -0
- dagster_community_components-0.1.0/sensors/sharepoint_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/sharepoint_monitor/schema.json +99 -0
- dagster_community_components-0.1.0/sensors/slack_notification/README.md +209 -0
- dagster_community_components-0.1.0/sensors/slack_notification/component.py +161 -0
- dagster_community_components-0.1.0/sensors/slack_notification/example.yaml +9 -0
- dagster_community_components-0.1.0/sensors/slack_notification/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/slack_notification/schema.json +73 -0
- dagster_community_components-0.1.0/sensors/sql_monitor/README.md +166 -0
- dagster_community_components-0.1.0/sensors/sql_monitor/component.py +229 -0
- dagster_community_components-0.1.0/sensors/sql_monitor/example.yaml +11 -0
- dagster_community_components-0.1.0/sensors/sql_monitor/requirements.txt +9 -0
- dagster_community_components-0.1.0/sensors/sql_monitor/schema.json +86 -0
- dagster_community_components-0.1.0/sensors/sqs_monitor/README.md +99 -0
- dagster_community_components-0.1.0/sensors/sqs_monitor/component.py +181 -0
- dagster_community_components-0.1.0/sensors/sqs_monitor/example.yaml +10 -0
- dagster_community_components-0.1.0/sensors/sqs_monitor/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/sqs_monitor/schema.json +81 -0
- dagster_community_components-0.1.0/sensors/twilio_notification/README.md +177 -0
- dagster_community_components-0.1.0/sensors/twilio_notification/component.py +306 -0
- dagster_community_components-0.1.0/sensors/twilio_notification/example.yaml +11 -0
- dagster_community_components-0.1.0/sensors/twilio_notification/requirements.txt +1 -0
- dagster_community_components-0.1.0/sensors/twilio_notification/schema.json +104 -0
- dagster_community_components-0.1.0/tools/README.md +55 -0
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*.pyo
|
|
5
|
+
.Python
|
|
6
|
+
*.egg-info/
|
|
7
|
+
dist/
|
|
8
|
+
build/
|
|
9
|
+
|
|
10
|
+
# macOS
|
|
11
|
+
.DS_Store
|
|
12
|
+
.AppleDouble
|
|
13
|
+
.LSOverride
|
|
14
|
+
|
|
15
|
+
# IDEs
|
|
16
|
+
.vscode/
|
|
17
|
+
.idea/
|
|
18
|
+
*.swp
|
|
19
|
+
*.swo
|
|
20
|
+
|
|
21
|
+
# Generation scripts (one-off tooling, not part of the library)
|
|
22
|
+
add_*.py
|
|
23
|
+
update_*.py
|
|
24
|
+
create_*.py
|
|
25
|
+
fix_*.py
|
|
26
|
+
generate_*.py
|
|
27
|
+
create_*.sh
|
|
28
|
+
|
|
29
|
+
# Dagster
|
|
30
|
+
.dagster/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Eric Thomas
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,294 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dagster-community-components
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Community-maintained Dagster components — ingestion, transforms, IO managers, sensors, sinks, resources, and more.
|
|
5
|
+
Project-URL: Homepage, https://dagster-component-ui.vercel.app/
|
|
6
|
+
Project-URL: Registry, https://github.com/eric-thomas-dagster/dagster-component-templates
|
|
7
|
+
Project-URL: CLI, https://github.com/eric-thomas-dagster/dagster-community-components-cli
|
|
8
|
+
Project-URL: Issues, https://github.com/eric-thomas-dagster/dagster-component-templates/issues
|
|
9
|
+
Author-email: Eric Thomas <eric.thomas@dagsterlabs.com>
|
|
10
|
+
License: MIT
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: components,dagster,data-engineering,etl
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
20
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Requires-Dist: dagster>=1.10.0
|
|
23
|
+
Requires-Dist: pandas>=1.5.0
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# Dagster Component Templates
|
|
27
|
+
|
|
28
|
+
A community library of 195+ reusable [Dagster component](https://docs.dagster.io/guides/components) templates covering data ingestion, AI/LLM enrichment, orchestration, infrastructure provisioning, reverse ETL, observability, sensors, and enterprise tool integrations — all configurable via YAML with no Python required.
|
|
29
|
+
|
|
30
|
+
## What are Dagster Components?
|
|
31
|
+
|
|
32
|
+
Components are reusable, YAML-configurable building blocks that package common data engineering patterns. Drop one into your project's `defs/` folder and configure it in YAML — no boilerplate Python needed.
|
|
33
|
+
|
|
34
|
+
```yaml
|
|
35
|
+
# defs/components/sqs_ingest.yaml
|
|
36
|
+
type: dagster_component_templates.SQSToDatabaseAssetComponent
|
|
37
|
+
attributes:
|
|
38
|
+
asset_name: raw_events
|
|
39
|
+
queue_url_env_var: SQS_QUEUE_URL
|
|
40
|
+
database_url_env_var: DATABASE_URL
|
|
41
|
+
table_name: raw_events
|
|
42
|
+
partition_type: daily
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Component Library
|
|
46
|
+
|
|
47
|
+
### Assets (143)
|
|
48
|
+
|
|
49
|
+
**Ingestion — cloud storage**
|
|
50
|
+
`s3_to_database_asset` · `gcs_to_database_asset` · `adls_to_database_asset`
|
|
51
|
+
|
|
52
|
+
**Ingestion — messaging & streaming**
|
|
53
|
+
`kafka_to_database_asset` · `sqs_to_database_asset` · `kinesis_to_database_asset` · `eventhubs_to_database_asset` · `servicebus_to_database_asset` · `rabbitmq_to_database_asset` · `pubsub_to_database_asset` · `redis_streams_to_database_asset` · `nats_to_database_asset` · `pulsar_to_database_asset` · `mqtt_to_database_asset`
|
|
54
|
+
|
|
55
|
+
**Ingestion — files & databases**
|
|
56
|
+
`sftp_to_database_asset` · `sql_to_database_asset` · `csv_file_ingestion` · `rest_api_fetcher` · `openapi_asset` · `graphql_asset`
|
|
57
|
+
|
|
58
|
+
**AI / LLM enrichment**
|
|
59
|
+
`litellm_inference_asset` · `ollama_inference_asset` · `langchain_chain_asset` · `llm_prompt_executor` · `llm_chain_executor` · `document_summarizer` · `entity_extractor` · `embeddings_generator` · `moderation_scorer` · `anthropic_llm` · `conversation_memory` · `snowflake_cortex_asset`
|
|
60
|
+
|
|
61
|
+
**dbt**
|
|
62
|
+
`dbt_docs_enriched_project` — extends `DbtProjectComponent` with exposures, metrics, semantic models, contracts, source freshness, and clickable dbt docs links on every asset
|
|
63
|
+
|
|
64
|
+
**Enterprise orchestration**
|
|
65
|
+
`coalesce_run_asset` · `abinitio_run_asset` · `matillion_run_asset` · `rivery_run_asset` · `precisely_run_asset` · `step_functions_asset` · `dataiku_asset` · `autosys_asset`
|
|
66
|
+
|
|
67
|
+
**Infrastructure as Code** *(provision resources before pipeline runs)*
|
|
68
|
+
`terraform_asset` · `terraform_cloud_asset` · `cloudformation_asset` · `ansible_asset` · `pulumi_asset` · `helm_deploy` · `aws_cdk_asset`
|
|
69
|
+
|
|
70
|
+
**Secrets & remote execution**
|
|
71
|
+
`ssh_asset` · `hashicorp_vault`
|
|
72
|
+
|
|
73
|
+
**Notebooks & ML compute**
|
|
74
|
+
`jupyter_notebook_asset` · `modal_asset`
|
|
75
|
+
|
|
76
|
+
**Vector stores**
|
|
77
|
+
`pinecone_asset` · `pgvector_asset` · `chromadb_asset` · `elasticsearch_asset`
|
|
78
|
+
|
|
79
|
+
**Feature stores**
|
|
80
|
+
`feast_asset` · `tecton_asset`
|
|
81
|
+
|
|
82
|
+
**ML experiment tracking**
|
|
83
|
+
`wandb_asset`
|
|
84
|
+
|
|
85
|
+
**Data versioning**
|
|
86
|
+
`lakefs_asset`
|
|
87
|
+
|
|
88
|
+
**Reverse ETL**
|
|
89
|
+
`polytomic_asset`
|
|
90
|
+
|
|
91
|
+
**Schema discovery**
|
|
92
|
+
`warehouse_schema_assets` — introspects a warehouse at prepare time, creates one external AssetSpec per table with full column metadata
|
|
93
|
+
|
|
94
|
+
**Analytics & ML**
|
|
95
|
+
`anomaly_detection` · `customer_segmentation` · `ltv_prediction` · `lead_scoring` · `propensity_scoring` · `customer_health_score` · `cohort_analysis` · `funnel_analysis` · `ab_test_analysis` · `campaign_performance` · `multi_touch_attribution` · `product_recommendations` · and more
|
|
96
|
+
|
|
97
|
+
---
|
|
98
|
+
|
|
99
|
+
### Sensors (30)
|
|
100
|
+
|
|
101
|
+
**Cloud storage**
|
|
102
|
+
`s3_monitor` · `gcs_monitor` · `adls_monitor`
|
|
103
|
+
|
|
104
|
+
**Messaging & streaming**
|
|
105
|
+
`kafka_monitor` · `sqs_monitor` · `kinesis_monitor` · `eventhubs_monitor` · `servicebus_monitor` · `rabbitmq_monitor` · `pubsub_monitor` · `redis_streams_monitor` · `nats_monitor` · `pulsar_monitor` · `mqtt_monitor`
|
|
106
|
+
|
|
107
|
+
**Files**
|
|
108
|
+
`sftp_monitor` · `sql_monitor`
|
|
109
|
+
|
|
110
|
+
**Enterprise tools**
|
|
111
|
+
`coalesce_job_sensor` · `abinitio_job_sensor` · `matillion_job_sensor` · `rivery_job_sensor` · `precisely_job_sensor`
|
|
112
|
+
|
|
113
|
+
**Notifications**
|
|
114
|
+
`slack_notification` · `pagerduty_alert` · `teams_notification` · `opsgenie_alert` · `twilio_notification`
|
|
115
|
+
|
|
116
|
+
**ML triggers**
|
|
117
|
+
`mlflow_model_sensor`
|
|
118
|
+
|
|
119
|
+
---
|
|
120
|
+
|
|
121
|
+
### Asset Checks (7)
|
|
122
|
+
|
|
123
|
+
`dq_check` · `great_expectations_check` · `soda_check` · `monte_carlo_check` · `sifflet_check` · `acceldata_check` · `freshness_check`
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
### Observations (20)
|
|
128
|
+
|
|
129
|
+
`clickhouse_table_observation_sensor` · `snowflake_table_observation` · `bigquery_table_observation` · `postgres_table_observation` · `redshift_table_observation` and more
|
|
130
|
+
|
|
131
|
+
---
|
|
132
|
+
|
|
133
|
+
### External Assets (21)
|
|
134
|
+
|
|
135
|
+
`external_clickhouse_table` · `external_snowflake_table` · `external_bigquery_table` · `external_postgres_table` · `external_s3_object` · `external_kafka_topic` and more
|
|
136
|
+
|
|
137
|
+
---
|
|
138
|
+
|
|
139
|
+
### Integrations (18)
|
|
140
|
+
|
|
141
|
+
`aws_glue` · `aws_dms` · `aws_kinesis` · `aws_redshift` · `aws_sagemaker` · `azure_data_factory` · `azure_stream_analytics` · `azure_synapse` · `databricks_asset_bundle` · `databricks_workspace` · `google_bigquery` · `google_cloud_functions` · `google_cloud_run_jobs` · `google_dataflow` · `google_datastream` · `google_pubsub` · `google_vertex_ai` · `snowflake_workspace`
|
|
142
|
+
|
|
143
|
+
---
|
|
144
|
+
|
|
145
|
+
## Component Structure
|
|
146
|
+
|
|
147
|
+
Every component follows the same layout:
|
|
148
|
+
|
|
149
|
+
```
|
|
150
|
+
component_name/
|
|
151
|
+
├── component.py # Dagster component class
|
|
152
|
+
├── example.yaml # Working YAML configuration example
|
|
153
|
+
├── README.md # Documentation and field reference
|
|
154
|
+
├── requirements.txt # pip dependencies
|
|
155
|
+
└── schema.json # Component registry metadata
|
|
156
|
+
```
|
|
157
|
+
|
|
158
|
+
---
|
|
159
|
+
|
|
160
|
+
## StateBackedComponent
|
|
161
|
+
|
|
162
|
+
Several components that discover resources from external APIs use Dagster's `StateBackedComponent` pattern. The API call happens **once at prepare time** and is cached to disk — code-server reloads are instant with zero network calls.
|
|
163
|
+
|
|
164
|
+
Components using this pattern: `coalesce_run_asset`, `azure_data_factory`, `aws_glue`, `databricks_workspace`, `openapi_asset`, `warehouse_schema_assets`, `step_functions_asset`, `dataiku_asset`, `polytomic_asset`, `autosys_asset`, `terraform_cloud_asset`
|
|
165
|
+
|
|
166
|
+
To refresh the cached state after adding pipelines/jobs in the external system:
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
dg utils refresh-defs-state
|
|
170
|
+
# or simply restart: dagster dev
|
|
171
|
+
```
|
|
172
|
+
|
|
173
|
+
---
|
|
174
|
+
|
|
175
|
+
## Asset Dependencies & Lineage
|
|
176
|
+
|
|
177
|
+
Every asset component supports a `deps` field for declaring upstream dependencies in the asset graph:
|
|
178
|
+
|
|
179
|
+
```yaml
|
|
180
|
+
type: dagster_component_templates.LiteLLMInferenceAssetComponent
|
|
181
|
+
attributes:
|
|
182
|
+
asset_name: enriched_tickets
|
|
183
|
+
upstream_asset_key: raw_tickets # loads data + draws lineage edge
|
|
184
|
+
deps: # additional lineage-only edges
|
|
185
|
+
- support_schema/tickets_raw
|
|
186
|
+
- raw/other_table
|
|
187
|
+
model: claude-3-5-sonnet-20241022
|
|
188
|
+
prompt_template: "Classify: {body}"
|
|
189
|
+
database_url_env_var: DATABASE_URL
|
|
190
|
+
table_name: enriched_tickets
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
**`upstream_asset_key`** — for components that *load* upstream data (LiteLLM, Ollama, LangChain, SQL): draws a lineage edge **and** loads the asset value at runtime.
|
|
194
|
+
|
|
195
|
+
**`deps`** — for all components: draws additional lineage-only edges without loading data. Use this to express that an asset *depends on* another without consuming it directly.
|
|
196
|
+
|
|
197
|
+
Dependencies can also be wired externally via `map_resolved_asset_specs()` in `definitions.py` — the same approach used by [Dagster Designer](https://github.com/eric-thomas-dagster/dagster_designer).
|
|
198
|
+
|
|
199
|
+
---
|
|
200
|
+
|
|
201
|
+
## Partitioning
|
|
202
|
+
|
|
203
|
+
All ingestion assets support time-based partitioning out of the box:
|
|
204
|
+
|
|
205
|
+
```yaml
|
|
206
|
+
attributes:
|
|
207
|
+
partition_type: daily # none | daily | weekly | monthly
|
|
208
|
+
partition_start_date: "2024-01-01"
|
|
209
|
+
table_name: events_{partition_key} # {partition_key} is substituted at runtime
|
|
210
|
+
```
|
|
211
|
+
|
|
212
|
+
---
|
|
213
|
+
|
|
214
|
+
## Sensor → Asset Pairing
|
|
215
|
+
|
|
216
|
+
Most sensors are designed to trigger a companion ingestion asset. The sensor detects new data and fires a `RunRequest` with source info in `run_config`; the asset reads and ingests it.
|
|
217
|
+
|
|
218
|
+
| Sensor | Companion Asset |
|
|
219
|
+
|--------|----------------|
|
|
220
|
+
| `s3_monitor` | `s3_to_database_asset` |
|
|
221
|
+
| `kafka_monitor` | `kafka_to_database_asset` |
|
|
222
|
+
| `sqs_monitor` | `sqs_to_database_asset` |
|
|
223
|
+
| `kinesis_monitor` | `kinesis_to_database_asset` |
|
|
224
|
+
| `eventhubs_monitor` | `eventhubs_to_database_asset` |
|
|
225
|
+
| `rabbitmq_monitor` | `rabbitmq_to_database_asset` |
|
|
226
|
+
| `sftp_monitor` | `sftp_to_database_asset` |
|
|
227
|
+
| … | … (all 15 pairs complete) |
|
|
228
|
+
|
|
229
|
+
---
|
|
230
|
+
|
|
231
|
+
## dbt Docs Enrichment
|
|
232
|
+
|
|
233
|
+
The `dbt_docs_enriched_project` component is a drop-in replacement for `DbtProjectComponent` that adds rich metadata from the dbt manifest to every asset in the Dagster UI:
|
|
234
|
+
|
|
235
|
+
```yaml
|
|
236
|
+
type: dagster_component_templates.DbtDocsEnrichedProjectComponent
|
|
237
|
+
attributes:
|
|
238
|
+
project: "{{ project_root }}/dbt_project"
|
|
239
|
+
dbt_docs_url: "https://dbt-docs.internal.mycompany.com"
|
|
240
|
+
include_exposures: true
|
|
241
|
+
include_metrics: true
|
|
242
|
+
include_semantic_models: true
|
|
243
|
+
include_contracts: true
|
|
244
|
+
include_source_freshness: true
|
|
245
|
+
```
|
|
246
|
+
|
|
247
|
+
Each dbt model asset then shows: a clickable link to the dbt docs page, downstream BI exposures, metrics, semantic models, contract status, and source freshness SLAs — all visible in the Dagster Asset Catalog. All `include_*` flags default to `false` — opt in to only what you need.
|
|
248
|
+
|
|
249
|
+
---
|
|
250
|
+
|
|
251
|
+
## Quick Start
|
|
252
|
+
|
|
253
|
+
### 1. Install dagster
|
|
254
|
+
|
|
255
|
+
```bash
|
|
256
|
+
pip install dagster
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
### 2. Copy a component into your project
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
cp -r assets/s3_to_database_asset/ my_project/defs/components/
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
### 3. Configure in YAML
|
|
266
|
+
|
|
267
|
+
```yaml
|
|
268
|
+
# defs/components/my_s3_ingest.yaml
|
|
269
|
+
type: dagster_component_templates.S3ToDatabaseAssetComponent
|
|
270
|
+
attributes:
|
|
271
|
+
asset_name: raw_orders
|
|
272
|
+
bucket_env_var: DATA_BUCKET
|
|
273
|
+
database_url_env_var: DATABASE_URL
|
|
274
|
+
table_name: raw_orders
|
|
275
|
+
```
|
|
276
|
+
|
|
277
|
+
### 4. Load in definitions.py
|
|
278
|
+
|
|
279
|
+
```python
|
|
280
|
+
import dagster as dg
|
|
281
|
+
from pathlib import Path
|
|
282
|
+
|
|
283
|
+
defs = dg.load_from_defs_folder(project_root=Path(__file__).parent)
|
|
284
|
+
```
|
|
285
|
+
|
|
286
|
+
---
|
|
287
|
+
|
|
288
|
+
## Contributing
|
|
289
|
+
|
|
290
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for how to add new components.
|
|
291
|
+
|
|
292
|
+
## License
|
|
293
|
+
|
|
294
|
+
MIT License
|
|
@@ -0,0 +1,269 @@
|
|
|
1
|
+
# Dagster Component Templates
|
|
2
|
+
|
|
3
|
+
A community library of 195+ reusable [Dagster component](https://docs.dagster.io/guides/components) templates covering data ingestion, AI/LLM enrichment, orchestration, infrastructure provisioning, reverse ETL, observability, sensors, and enterprise tool integrations — all configurable via YAML with no Python required.
|
|
4
|
+
|
|
5
|
+
## What are Dagster Components?
|
|
6
|
+
|
|
7
|
+
Components are reusable, YAML-configurable building blocks that package common data engineering patterns. Drop one into your project's `defs/` folder and configure it in YAML — no boilerplate Python needed.
|
|
8
|
+
|
|
9
|
+
```yaml
|
|
10
|
+
# defs/components/sqs_ingest.yaml
|
|
11
|
+
type: dagster_component_templates.SQSToDatabaseAssetComponent
|
|
12
|
+
attributes:
|
|
13
|
+
asset_name: raw_events
|
|
14
|
+
queue_url_env_var: SQS_QUEUE_URL
|
|
15
|
+
database_url_env_var: DATABASE_URL
|
|
16
|
+
table_name: raw_events
|
|
17
|
+
partition_type: daily
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Component Library
|
|
21
|
+
|
|
22
|
+
### Assets (143)
|
|
23
|
+
|
|
24
|
+
**Ingestion — cloud storage**
|
|
25
|
+
`s3_to_database_asset` · `gcs_to_database_asset` · `adls_to_database_asset`
|
|
26
|
+
|
|
27
|
+
**Ingestion — messaging & streaming**
|
|
28
|
+
`kafka_to_database_asset` · `sqs_to_database_asset` · `kinesis_to_database_asset` · `eventhubs_to_database_asset` · `servicebus_to_database_asset` · `rabbitmq_to_database_asset` · `pubsub_to_database_asset` · `redis_streams_to_database_asset` · `nats_to_database_asset` · `pulsar_to_database_asset` · `mqtt_to_database_asset`
|
|
29
|
+
|
|
30
|
+
**Ingestion — files & databases**
|
|
31
|
+
`sftp_to_database_asset` · `sql_to_database_asset` · `csv_file_ingestion` · `rest_api_fetcher` · `openapi_asset` · `graphql_asset`
|
|
32
|
+
|
|
33
|
+
**AI / LLM enrichment**
|
|
34
|
+
`litellm_inference_asset` · `ollama_inference_asset` · `langchain_chain_asset` · `llm_prompt_executor` · `llm_chain_executor` · `document_summarizer` · `entity_extractor` · `embeddings_generator` · `moderation_scorer` · `anthropic_llm` · `conversation_memory` · `snowflake_cortex_asset`
|
|
35
|
+
|
|
36
|
+
**dbt**
|
|
37
|
+
`dbt_docs_enriched_project` — extends `DbtProjectComponent` with exposures, metrics, semantic models, contracts, source freshness, and clickable dbt docs links on every asset
|
|
38
|
+
|
|
39
|
+
**Enterprise orchestration**
|
|
40
|
+
`coalesce_run_asset` · `abinitio_run_asset` · `matillion_run_asset` · `rivery_run_asset` · `precisely_run_asset` · `step_functions_asset` · `dataiku_asset` · `autosys_asset`
|
|
41
|
+
|
|
42
|
+
**Infrastructure as Code** *(provision resources before pipeline runs)*
|
|
43
|
+
`terraform_asset` · `terraform_cloud_asset` · `cloudformation_asset` · `ansible_asset` · `pulumi_asset` · `helm_deploy` · `aws_cdk_asset`
|
|
44
|
+
|
|
45
|
+
**Secrets & remote execution**
|
|
46
|
+
`ssh_asset` · `hashicorp_vault`
|
|
47
|
+
|
|
48
|
+
**Notebooks & ML compute**
|
|
49
|
+
`jupyter_notebook_asset` · `modal_asset`
|
|
50
|
+
|
|
51
|
+
**Vector stores**
|
|
52
|
+
`pinecone_asset` · `pgvector_asset` · `chromadb_asset` · `elasticsearch_asset`
|
|
53
|
+
|
|
54
|
+
**Feature stores**
|
|
55
|
+
`feast_asset` · `tecton_asset`
|
|
56
|
+
|
|
57
|
+
**ML experiment tracking**
|
|
58
|
+
`wandb_asset`
|
|
59
|
+
|
|
60
|
+
**Data versioning**
|
|
61
|
+
`lakefs_asset`
|
|
62
|
+
|
|
63
|
+
**Reverse ETL**
|
|
64
|
+
`polytomic_asset`
|
|
65
|
+
|
|
66
|
+
**Schema discovery**
|
|
67
|
+
`warehouse_schema_assets` — introspects a warehouse at prepare time, creates one external AssetSpec per table with full column metadata
|
|
68
|
+
|
|
69
|
+
**Analytics & ML**
|
|
70
|
+
`anomaly_detection` · `customer_segmentation` · `ltv_prediction` · `lead_scoring` · `propensity_scoring` · `customer_health_score` · `cohort_analysis` · `funnel_analysis` · `ab_test_analysis` · `campaign_performance` · `multi_touch_attribution` · `product_recommendations` · and more
|
|
71
|
+
|
|
72
|
+
---
|
|
73
|
+
|
|
74
|
+
### Sensors (30)
|
|
75
|
+
|
|
76
|
+
**Cloud storage**
|
|
77
|
+
`s3_monitor` · `gcs_monitor` · `adls_monitor`
|
|
78
|
+
|
|
79
|
+
**Messaging & streaming**
|
|
80
|
+
`kafka_monitor` · `sqs_monitor` · `kinesis_monitor` · `eventhubs_monitor` · `servicebus_monitor` · `rabbitmq_monitor` · `pubsub_monitor` · `redis_streams_monitor` · `nats_monitor` · `pulsar_monitor` · `mqtt_monitor`
|
|
81
|
+
|
|
82
|
+
**Files**
|
|
83
|
+
`sftp_monitor` · `sql_monitor`
|
|
84
|
+
|
|
85
|
+
**Enterprise tools**
|
|
86
|
+
`coalesce_job_sensor` · `abinitio_job_sensor` · `matillion_job_sensor` · `rivery_job_sensor` · `precisely_job_sensor`
|
|
87
|
+
|
|
88
|
+
**Notifications**
|
|
89
|
+
`slack_notification` · `pagerduty_alert` · `teams_notification` · `opsgenie_alert` · `twilio_notification`
|
|
90
|
+
|
|
91
|
+
**ML triggers**
|
|
92
|
+
`mlflow_model_sensor`
|
|
93
|
+
|
|
94
|
+
---
|
|
95
|
+
|
|
96
|
+
### Asset Checks (7)
|
|
97
|
+
|
|
98
|
+
`dq_check` · `great_expectations_check` · `soda_check` · `monte_carlo_check` · `sifflet_check` · `acceldata_check` · `freshness_check`
|
|
99
|
+
|
|
100
|
+
---
|
|
101
|
+
|
|
102
|
+
### Observations (20)
|
|
103
|
+
|
|
104
|
+
`clickhouse_table_observation_sensor` · `snowflake_table_observation` · `bigquery_table_observation` · `postgres_table_observation` · `redshift_table_observation` and more
|
|
105
|
+
|
|
106
|
+
---
|
|
107
|
+
|
|
108
|
+
### External Assets (21)
|
|
109
|
+
|
|
110
|
+
`external_clickhouse_table` · `external_snowflake_table` · `external_bigquery_table` · `external_postgres_table` · `external_s3_object` · `external_kafka_topic` and more
|
|
111
|
+
|
|
112
|
+
---
|
|
113
|
+
|
|
114
|
+
### Integrations (18)
|
|
115
|
+
|
|
116
|
+
`aws_glue` · `aws_dms` · `aws_kinesis` · `aws_redshift` · `aws_sagemaker` · `azure_data_factory` · `azure_stream_analytics` · `azure_synapse` · `databricks_asset_bundle` · `databricks_workspace` · `google_bigquery` · `google_cloud_functions` · `google_cloud_run_jobs` · `google_dataflow` · `google_datastream` · `google_pubsub` · `google_vertex_ai` · `snowflake_workspace`
|
|
117
|
+
|
|
118
|
+
---
|
|
119
|
+
|
|
120
|
+
## Component Structure
|
|
121
|
+
|
|
122
|
+
Every component follows the same layout:
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
component_name/
|
|
126
|
+
├── component.py # Dagster component class
|
|
127
|
+
├── example.yaml # Working YAML configuration example
|
|
128
|
+
├── README.md # Documentation and field reference
|
|
129
|
+
├── requirements.txt # pip dependencies
|
|
130
|
+
└── schema.json # Component registry metadata
|
|
131
|
+
```
|
|
132
|
+
|
|
133
|
+
---
|
|
134
|
+
|
|
135
|
+
## StateBackedComponent
|
|
136
|
+
|
|
137
|
+
Several components that discover resources from external APIs use Dagster's `StateBackedComponent` pattern. The API call happens **once at prepare time** and is cached to disk — code-server reloads are instant with zero network calls.
|
|
138
|
+
|
|
139
|
+
Components using this pattern: `coalesce_run_asset`, `azure_data_factory`, `aws_glue`, `databricks_workspace`, `openapi_asset`, `warehouse_schema_assets`, `step_functions_asset`, `dataiku_asset`, `polytomic_asset`, `autosys_asset`, `terraform_cloud_asset`
|
|
140
|
+
|
|
141
|
+
To refresh the cached state after adding pipelines/jobs in the external system:
|
|
142
|
+
|
|
143
|
+
```bash
|
|
144
|
+
dg utils refresh-defs-state
|
|
145
|
+
# or simply restart: dagster dev
|
|
146
|
+
```
|
|
147
|
+
|
|
148
|
+
---
|
|
149
|
+
|
|
150
|
+
## Asset Dependencies & Lineage
|
|
151
|
+
|
|
152
|
+
Every asset component supports a `deps` field for declaring upstream dependencies in the asset graph:
|
|
153
|
+
|
|
154
|
+
```yaml
|
|
155
|
+
type: dagster_component_templates.LiteLLMInferenceAssetComponent
|
|
156
|
+
attributes:
|
|
157
|
+
asset_name: enriched_tickets
|
|
158
|
+
upstream_asset_key: raw_tickets # loads data + draws lineage edge
|
|
159
|
+
deps: # additional lineage-only edges
|
|
160
|
+
- support_schema/tickets_raw
|
|
161
|
+
- raw/other_table
|
|
162
|
+
model: claude-3-5-sonnet-20241022
|
|
163
|
+
prompt_template: "Classify: {body}"
|
|
164
|
+
database_url_env_var: DATABASE_URL
|
|
165
|
+
table_name: enriched_tickets
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
**`upstream_asset_key`** — for components that *load* upstream data (LiteLLM, Ollama, LangChain, SQL): draws a lineage edge **and** loads the asset value at runtime.
|
|
169
|
+
|
|
170
|
+
**`deps`** — for all components: draws additional lineage-only edges without loading data. Use this to express that an asset *depends on* another without consuming it directly.
|
|
171
|
+
|
|
172
|
+
Dependencies can also be wired externally via `map_resolved_asset_specs()` in `definitions.py` — the same approach used by [Dagster Designer](https://github.com/eric-thomas-dagster/dagster_designer).
|
|
173
|
+
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## Partitioning
|
|
177
|
+
|
|
178
|
+
All ingestion assets support time-based partitioning out of the box:
|
|
179
|
+
|
|
180
|
+
```yaml
|
|
181
|
+
attributes:
|
|
182
|
+
partition_type: daily # none | daily | weekly | monthly
|
|
183
|
+
partition_start_date: "2024-01-01"
|
|
184
|
+
table_name: events_{partition_key} # {partition_key} is substituted at runtime
|
|
185
|
+
```
|
|
186
|
+
|
|
187
|
+
---
|
|
188
|
+
|
|
189
|
+
## Sensor → Asset Pairing
|
|
190
|
+
|
|
191
|
+
Most sensors are designed to trigger a companion ingestion asset. The sensor detects new data and fires a `RunRequest` with source info in `run_config`; the asset reads and ingests it.
|
|
192
|
+
|
|
193
|
+
| Sensor | Companion Asset |
|
|
194
|
+
|--------|----------------|
|
|
195
|
+
| `s3_monitor` | `s3_to_database_asset` |
|
|
196
|
+
| `kafka_monitor` | `kafka_to_database_asset` |
|
|
197
|
+
| `sqs_monitor` | `sqs_to_database_asset` |
|
|
198
|
+
| `kinesis_monitor` | `kinesis_to_database_asset` |
|
|
199
|
+
| `eventhubs_monitor` | `eventhubs_to_database_asset` |
|
|
200
|
+
| `rabbitmq_monitor` | `rabbitmq_to_database_asset` |
|
|
201
|
+
| `sftp_monitor` | `sftp_to_database_asset` |
|
|
202
|
+
| … | … (all 15 pairs complete) |
|
|
203
|
+
|
|
204
|
+
---
|
|
205
|
+
|
|
206
|
+
## dbt Docs Enrichment
|
|
207
|
+
|
|
208
|
+
The `dbt_docs_enriched_project` component is a drop-in replacement for `DbtProjectComponent` that adds rich metadata from the dbt manifest to every asset in the Dagster UI:
|
|
209
|
+
|
|
210
|
+
```yaml
|
|
211
|
+
type: dagster_component_templates.DbtDocsEnrichedProjectComponent
|
|
212
|
+
attributes:
|
|
213
|
+
project: "{{ project_root }}/dbt_project"
|
|
214
|
+
dbt_docs_url: "https://dbt-docs.internal.mycompany.com"
|
|
215
|
+
include_exposures: true
|
|
216
|
+
include_metrics: true
|
|
217
|
+
include_semantic_models: true
|
|
218
|
+
include_contracts: true
|
|
219
|
+
include_source_freshness: true
|
|
220
|
+
```
|
|
221
|
+
|
|
222
|
+
Each dbt model asset then shows: a clickable link to the dbt docs page, downstream BI exposures, metrics, semantic models, contract status, and source freshness SLAs — all visible in the Dagster Asset Catalog. All `include_*` flags default to `false` — opt in to only what you need.
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
## Quick Start
|
|
227
|
+
|
|
228
|
+
### 1. Install dagster
|
|
229
|
+
|
|
230
|
+
```bash
|
|
231
|
+
pip install dagster
|
|
232
|
+
```
|
|
233
|
+
|
|
234
|
+
### 2. Copy a component into your project
|
|
235
|
+
|
|
236
|
+
```bash
|
|
237
|
+
cp -r assets/s3_to_database_asset/ my_project/defs/components/
|
|
238
|
+
```
|
|
239
|
+
|
|
240
|
+
### 3. Configure in YAML
|
|
241
|
+
|
|
242
|
+
```yaml
|
|
243
|
+
# defs/components/my_s3_ingest.yaml
|
|
244
|
+
type: dagster_component_templates.S3ToDatabaseAssetComponent
|
|
245
|
+
attributes:
|
|
246
|
+
asset_name: raw_orders
|
|
247
|
+
bucket_env_var: DATA_BUCKET
|
|
248
|
+
database_url_env_var: DATABASE_URL
|
|
249
|
+
table_name: raw_orders
|
|
250
|
+
```
|
|
251
|
+
|
|
252
|
+
### 4. Load in definitions.py
|
|
253
|
+
|
|
254
|
+
```python
|
|
255
|
+
import dagster as dg
|
|
256
|
+
from pathlib import Path
|
|
257
|
+
|
|
258
|
+
defs = dg.load_from_defs_folder(project_root=Path(__file__).parent)
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
---
|
|
262
|
+
|
|
263
|
+
## Contributing
|
|
264
|
+
|
|
265
|
+
See [CONTRIBUTING.md](CONTRIBUTING.md) for how to add new components.
|
|
266
|
+
|
|
267
|
+
## License
|
|
268
|
+
|
|
269
|
+
MIT License
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
# Acceldata Check
|
|
2
|
+
|
|
3
|
+
Triggers an Acceldata data quality rule execution on demand and surfaces the result as a Dagster asset check.
|
|
4
|
+
|
|
5
|
+
Acceldata owns the rule logic — Dagster triggers execution and surfaces pass/fail/warn, exactly like the Soda, Great Expectations, Monte Carlo, and Sifflet integrations.
|
|
6
|
+
|
|
7
|
+
## How It Works
|
|
8
|
+
|
|
9
|
+
1. `POST /api/v1/rules/{rule_id}/execute` — triggers the rule run, returns an `executionId`
|
|
10
|
+
2. Polls `GET /api/v1/rules/{rule_id}/executions/{executionId}` until `status` is terminal
|
|
11
|
+
3. Returns `AssetCheckResult(passed=True/False, metadata={...})`
|
|
12
|
+
|
|
13
|
+
## Configuration
|
|
14
|
+
|
|
15
|
+
| Field | Required | Description |
|
|
16
|
+
|-------|----------|-------------|
|
|
17
|
+
| `asset_key` | Yes | Dagster asset key to attach this check to (e.g. `warehouse/orders`) |
|
|
18
|
+
| `api_url_env_var` | Yes | Env var with Acceldata API base URL (e.g. `https://mycompany.acceldata.io`) |
|
|
19
|
+
| `api_token_env_var` | Yes | Env var with Acceldata API token |
|
|
20
|
+
| `rule_id` | Yes | ID of the Acceldata DQ rule to execute |
|
|
21
|
+
| `poll_interval_seconds` | No | Seconds between status polls (default: 5.0) |
|
|
22
|
+
| `timeout_seconds` | No | Max seconds to wait for execution (default: 300) |
|
|
23
|
+
| `severity` | No | `ERROR` or `WARN` (default: `ERROR`) |
|
|
24
|
+
|
|
25
|
+
## Finding Your Rule ID
|
|
26
|
+
|
|
27
|
+
In the Acceldata UI: **Rules → Select Rule → Rule Details → ID**
|
|
28
|
+
|
|
29
|
+
## Example
|
|
30
|
+
|
|
31
|
+
```yaml
|
|
32
|
+
type: dagster_component_templates.AcceldataCheckComponent
|
|
33
|
+
attributes:
|
|
34
|
+
asset_key: warehouse/orders
|
|
35
|
+
api_url_env_var: ACCELDATA_API_URL
|
|
36
|
+
api_token_env_var: ACCELDATA_API_TOKEN
|
|
37
|
+
rule_id: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
|
|
38
|
+
severity: ERROR
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Environment Variables
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
export ACCELDATA_API_URL=https://mycompany.acceldata.io
|
|
45
|
+
export ACCELDATA_API_TOKEN=your-api-token
|
|
46
|
+
```
|
|
47
|
+
|
|
48
|
+
## Dependencies
|
|
49
|
+
|
|
50
|
+
```
|
|
51
|
+
requests>=2.28.0
|
|
52
|
+
```
|