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.
Files changed (2595) hide show
  1. dagster_community_components-0.1.0/.gitignore +30 -0
  2. dagster_community_components-0.1.0/LICENSE +21 -0
  3. dagster_community_components-0.1.0/PKG-INFO +294 -0
  4. dagster_community_components-0.1.0/README.md +269 -0
  5. dagster_community_components-0.1.0/asset_checks/acceldata_check/README.md +52 -0
  6. dagster_community_components-0.1.0/asset_checks/acceldata_check/component.py +146 -0
  7. dagster_community_components-0.1.0/asset_checks/acceldata_check/example.yaml +9 -0
  8. dagster_community_components-0.1.0/asset_checks/acceldata_check/requirements.txt +1 -0
  9. dagster_community_components-0.1.0/asset_checks/acceldata_check/schema.json +65 -0
  10. dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/README.md +619 -0
  11. dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/component.py +8023 -0
  12. dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/example.yaml +214 -0
  13. dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/requirements.txt +3 -0
  14. dagster_community_components-0.1.0/asset_checks/enhanced_data_quality_checks/schema.json +613 -0
  15. dagster_community_components-0.1.0/asset_checks/freshness_check/README.md +61 -0
  16. dagster_community_components-0.1.0/asset_checks/freshness_check/component.py +113 -0
  17. dagster_community_components-0.1.0/asset_checks/freshness_check/example.yaml +18 -0
  18. dagster_community_components-0.1.0/asset_checks/freshness_check/requirements.txt +1 -0
  19. dagster_community_components-0.1.0/asset_checks/freshness_check/schema.json +60 -0
  20. dagster_community_components-0.1.0/asset_checks/great_expectations_check/README.md +49 -0
  21. dagster_community_components-0.1.0/asset_checks/great_expectations_check/component.py +75 -0
  22. dagster_community_components-0.1.0/asset_checks/great_expectations_check/example.yaml +7 -0
  23. dagster_community_components-0.1.0/asset_checks/great_expectations_check/requirements.txt +1 -0
  24. dagster_community_components-0.1.0/asset_checks/great_expectations_check/schema.json +58 -0
  25. dagster_community_components-0.1.0/asset_checks/monte_carlo_check/README.md +40 -0
  26. dagster_community_components-0.1.0/asset_checks/monte_carlo_check/component.py +138 -0
  27. dagster_community_components-0.1.0/asset_checks/monte_carlo_check/example.yaml +8 -0
  28. dagster_community_components-0.1.0/asset_checks/monte_carlo_check/requirements.txt +1 -0
  29. dagster_community_components-0.1.0/asset_checks/monte_carlo_check/schema.json +65 -0
  30. dagster_community_components-0.1.0/asset_checks/sifflet_check/README.md +40 -0
  31. dagster_community_components-0.1.0/asset_checks/sifflet_check/component.py +142 -0
  32. dagster_community_components-0.1.0/asset_checks/sifflet_check/example.yaml +8 -0
  33. dagster_community_components-0.1.0/asset_checks/sifflet_check/requirements.txt +1 -0
  34. dagster_community_components-0.1.0/asset_checks/sifflet_check/schema.json +65 -0
  35. dagster_community_components-0.1.0/asset_checks/soda_check/README.md +47 -0
  36. dagster_community_components-0.1.0/asset_checks/soda_check/component.py +76 -0
  37. dagster_community_components-0.1.0/asset_checks/soda_check/example.yaml +6 -0
  38. dagster_community_components-0.1.0/asset_checks/soda_check/requirements.txt +1 -0
  39. dagster_community_components-0.1.0/asset_checks/soda_check/schema.json +51 -0
  40. dagster_community_components-0.1.0/assets/ai/anthropic_llm/README.md +417 -0
  41. dagster_community_components-0.1.0/assets/ai/anthropic_llm/__init__.py +3 -0
  42. dagster_community_components-0.1.0/assets/ai/anthropic_llm/component.py +684 -0
  43. dagster_community_components-0.1.0/assets/ai/anthropic_llm/example.yaml +33 -0
  44. dagster_community_components-0.1.0/assets/ai/anthropic_llm/requirements.txt +2 -0
  45. dagster_community_components-0.1.0/assets/ai/anthropic_llm/schema.json +304 -0
  46. dagster_community_components-0.1.0/assets/ai/audio_transcriber/README.md +27 -0
  47. dagster_community_components-0.1.0/assets/ai/audio_transcriber/__init__.py +1 -0
  48. dagster_community_components-0.1.0/assets/ai/audio_transcriber/component.py +270 -0
  49. dagster_community_components-0.1.0/assets/ai/audio_transcriber/example.yaml +10 -0
  50. dagster_community_components-0.1.0/assets/ai/audio_transcriber/requirements.txt +3 -0
  51. dagster_community_components-0.1.0/assets/ai/audio_transcriber/schema.json +187 -0
  52. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/README.md +73 -0
  53. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/__init__.py +3 -0
  54. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/component.py +334 -0
  55. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/example.yaml +30 -0
  56. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/requirements.txt +3 -0
  57. dagster_community_components-0.1.0/assets/ai/bank_statement_extractor/schema.json +195 -0
  58. dagster_community_components-0.1.0/assets/ai/contract_extractor/README.md +95 -0
  59. dagster_community_components-0.1.0/assets/ai/contract_extractor/__init__.py +3 -0
  60. dagster_community_components-0.1.0/assets/ai/contract_extractor/component.py +334 -0
  61. dagster_community_components-0.1.0/assets/ai/contract_extractor/example.yaml +30 -0
  62. dagster_community_components-0.1.0/assets/ai/contract_extractor/requirements.txt +3 -0
  63. dagster_community_components-0.1.0/assets/ai/contract_extractor/schema.json +195 -0
  64. dagster_community_components-0.1.0/assets/ai/conversation_memory/README.md +352 -0
  65. dagster_community_components-0.1.0/assets/ai/conversation_memory/__init__.py +3 -0
  66. dagster_community_components-0.1.0/assets/ai/conversation_memory/component.py +314 -0
  67. dagster_community_components-0.1.0/assets/ai/conversation_memory/example.yaml +17 -0
  68. dagster_community_components-0.1.0/assets/ai/conversation_memory/requirements.txt +1 -0
  69. dagster_community_components-0.1.0/assets/ai/conversation_memory/schema.json +196 -0
  70. dagster_community_components-0.1.0/assets/ai/cross_encoder/schema.json +80 -0
  71. dagster_community_components-0.1.0/assets/ai/data_enricher/__init__.py +1 -0
  72. dagster_community_components-0.1.0/assets/ai/data_enricher/component.py +300 -0
  73. dagster_community_components-0.1.0/assets/ai/data_enricher/example.yaml +16 -0
  74. dagster_community_components-0.1.0/assets/ai/data_enricher/requirements.txt +3 -0
  75. dagster_community_components-0.1.0/assets/ai/data_enricher/schema.json +191 -0
  76. dagster_community_components-0.1.0/assets/ai/document_chunker/README.md +395 -0
  77. dagster_community_components-0.1.0/assets/ai/document_chunker/__init__.py +3 -0
  78. dagster_community_components-0.1.0/assets/ai/document_chunker/component.py +690 -0
  79. dagster_community_components-0.1.0/assets/ai/document_chunker/example.yaml +28 -0
  80. dagster_community_components-0.1.0/assets/ai/document_chunker/requirements.txt +2 -0
  81. dagster_community_components-0.1.0/assets/ai/document_chunker/schema.json +253 -0
  82. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/README.md +69 -0
  83. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/__init__.py +1 -0
  84. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/component.py +346 -0
  85. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/example.yaml +23 -0
  86. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/requirements.txt +5 -0
  87. dagster_community_components-0.1.0/assets/ai/document_layout_analyzer/schema.json +189 -0
  88. dagster_community_components-0.1.0/assets/ai/document_summarizer/README.md +177 -0
  89. dagster_community_components-0.1.0/assets/ai/document_summarizer/__init__.py +3 -0
  90. dagster_community_components-0.1.0/assets/ai/document_summarizer/component.py +348 -0
  91. dagster_community_components-0.1.0/assets/ai/document_summarizer/example.yaml +11 -0
  92. dagster_community_components-0.1.0/assets/ai/document_summarizer/requirements.txt +2 -0
  93. dagster_community_components-0.1.0/assets/ai/document_summarizer/schema.json +221 -0
  94. dagster_community_components-0.1.0/assets/ai/document_text_extractor/README.md +338 -0
  95. dagster_community_components-0.1.0/assets/ai/document_text_extractor/__init__.py +3 -0
  96. dagster_community_components-0.1.0/assets/ai/document_text_extractor/component.py +500 -0
  97. dagster_community_components-0.1.0/assets/ai/document_text_extractor/example.yaml +34 -0
  98. dagster_community_components-0.1.0/assets/ai/document_text_extractor/requirements.txt +7 -0
  99. dagster_community_components-0.1.0/assets/ai/document_text_extractor/schema.json +214 -0
  100. dagster_community_components-0.1.0/assets/ai/dspy_program/README.md +42 -0
  101. dagster_community_components-0.1.0/assets/ai/dspy_program/__init__.py +3 -0
  102. dagster_community_components-0.1.0/assets/ai/dspy_program/component.py +307 -0
  103. dagster_community_components-0.1.0/assets/ai/dspy_program/example.yaml +11 -0
  104. dagster_community_components-0.1.0/assets/ai/dspy_program/requirements.txt +2 -0
  105. dagster_community_components-0.1.0/assets/ai/dspy_program/schema.json +195 -0
  106. dagster_community_components-0.1.0/assets/ai/embeddings_generator/README.md +393 -0
  107. dagster_community_components-0.1.0/assets/ai/embeddings_generator/__init__.py +3 -0
  108. dagster_community_components-0.1.0/assets/ai/embeddings_generator/component.py +631 -0
  109. dagster_community_components-0.1.0/assets/ai/embeddings_generator/example.yaml +39 -0
  110. dagster_community_components-0.1.0/assets/ai/embeddings_generator/requirements.txt +4 -0
  111. dagster_community_components-0.1.0/assets/ai/embeddings_generator/schema.json +266 -0
  112. dagster_community_components-0.1.0/assets/ai/entity_extractor/README.md +589 -0
  113. dagster_community_components-0.1.0/assets/ai/entity_extractor/__init__.py +3 -0
  114. dagster_community_components-0.1.0/assets/ai/entity_extractor/component.py +824 -0
  115. dagster_community_components-0.1.0/assets/ai/entity_extractor/example.yaml +50 -0
  116. dagster_community_components-0.1.0/assets/ai/entity_extractor/requirements.txt +6 -0
  117. dagster_community_components-0.1.0/assets/ai/entity_extractor/schema.json +304 -0
  118. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/README.md +73 -0
  119. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/__init__.py +3 -0
  120. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/component.py +336 -0
  121. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/example.yaml +32 -0
  122. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/requirements.txt +3 -0
  123. dagster_community_components-0.1.0/assets/ai/expense_report_extractor/schema.json +195 -0
  124. dagster_community_components-0.1.0/assets/ai/face_detector/README.md +74 -0
  125. dagster_community_components-0.1.0/assets/ai/face_detector/__init__.py +1 -0
  126. dagster_community_components-0.1.0/assets/ai/face_detector/component.py +374 -0
  127. dagster_community_components-0.1.0/assets/ai/face_detector/example.yaml +19 -0
  128. dagster_community_components-0.1.0/assets/ai/face_detector/requirements.txt +3 -0
  129. dagster_community_components-0.1.0/assets/ai/face_detector/schema.json +191 -0
  130. dagster_community_components-0.1.0/assets/ai/haystack_pipeline/schema.json +105 -0
  131. dagster_community_components-0.1.0/assets/ai/image_captioner/README.md +30 -0
  132. dagster_community_components-0.1.0/assets/ai/image_captioner/__init__.py +1 -0
  133. dagster_community_components-0.1.0/assets/ai/image_captioner/component.py +284 -0
  134. dagster_community_components-0.1.0/assets/ai/image_captioner/example.yaml +11 -0
  135. dagster_community_components-0.1.0/assets/ai/image_captioner/requirements.txt +3 -0
  136. dagster_community_components-0.1.0/assets/ai/image_captioner/schema.json +188 -0
  137. dagster_community_components-0.1.0/assets/ai/image_classifier/README.md +78 -0
  138. dagster_community_components-0.1.0/assets/ai/image_classifier/__init__.py +1 -0
  139. dagster_community_components-0.1.0/assets/ai/image_classifier/component.py +392 -0
  140. dagster_community_components-0.1.0/assets/ai/image_classifier/example.yaml +28 -0
  141. dagster_community_components-0.1.0/assets/ai/image_classifier/requirements.txt +5 -0
  142. dagster_community_components-0.1.0/assets/ai/image_classifier/schema.json +209 -0
  143. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/README.md +82 -0
  144. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/__init__.py +1 -0
  145. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/component.py +355 -0
  146. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/example.yaml +27 -0
  147. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/requirements.txt +4 -0
  148. dagster_community_components-0.1.0/assets/ai/image_llm_extractor/schema.json +200 -0
  149. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/README.md +90 -0
  150. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/__init__.py +1 -0
  151. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/component.py +373 -0
  152. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/example.yaml +20 -0
  153. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/requirements.txt +3 -0
  154. dagster_community_components-0.1.0/assets/ai/image_metadata_extractor/schema.json +179 -0
  155. dagster_community_components-0.1.0/assets/ai/image_object_detector/README.md +74 -0
  156. dagster_community_components-0.1.0/assets/ai/image_object_detector/__init__.py +1 -0
  157. dagster_community_components-0.1.0/assets/ai/image_object_detector/component.py +325 -0
  158. dagster_community_components-0.1.0/assets/ai/image_object_detector/example.yaml +25 -0
  159. dagster_community_components-0.1.0/assets/ai/image_object_detector/requirements.txt +5 -0
  160. dagster_community_components-0.1.0/assets/ai/image_object_detector/schema.json +202 -0
  161. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/README.md +74 -0
  162. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/__init__.py +1 -0
  163. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/component.py +332 -0
  164. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/example.yaml +20 -0
  165. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/requirements.txt +5 -0
  166. dagster_community_components-0.1.0/assets/ai/image_similarity_scorer/schema.json +192 -0
  167. dagster_community_components-0.1.0/assets/ai/instructor_extractor/README.md +44 -0
  168. dagster_community_components-0.1.0/assets/ai/instructor_extractor/__init__.py +3 -0
  169. dagster_community_components-0.1.0/assets/ai/instructor_extractor/component.py +317 -0
  170. dagster_community_components-0.1.0/assets/ai/instructor_extractor/example.yaml +26 -0
  171. dagster_community_components-0.1.0/assets/ai/instructor_extractor/requirements.txt +3 -0
  172. dagster_community_components-0.1.0/assets/ai/instructor_extractor/schema.json +188 -0
  173. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/README.md +73 -0
  174. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/__init__.py +3 -0
  175. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/component.py +336 -0
  176. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/example.yaml +32 -0
  177. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/requirements.txt +3 -0
  178. dagster_community_components-0.1.0/assets/ai/insurance_claim_extractor/schema.json +195 -0
  179. dagster_community_components-0.1.0/assets/ai/invoice_extractor/README.md +110 -0
  180. dagster_community_components-0.1.0/assets/ai/invoice_extractor/__init__.py +0 -0
  181. dagster_community_components-0.1.0/assets/ai/invoice_extractor/component.py +337 -0
  182. dagster_community_components-0.1.0/assets/ai/invoice_extractor/example.yaml +28 -0
  183. dagster_community_components-0.1.0/assets/ai/invoice_extractor/requirements.txt +3 -0
  184. dagster_community_components-0.1.0/assets/ai/invoice_extractor/schema.json +189 -0
  185. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/README.md +73 -0
  186. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/__init__.py +3 -0
  187. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/component.py +338 -0
  188. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/example.yaml +34 -0
  189. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/requirements.txt +3 -0
  190. dagster_community_components-0.1.0/assets/ai/job_posting_extractor/schema.json +195 -0
  191. dagster_community_components-0.1.0/assets/ai/keyword_extractor/README.md +29 -0
  192. dagster_community_components-0.1.0/assets/ai/keyword_extractor/__init__.py +1 -0
  193. dagster_community_components-0.1.0/assets/ai/keyword_extractor/component.py +298 -0
  194. dagster_community_components-0.1.0/assets/ai/keyword_extractor/example.yaml +13 -0
  195. dagster_community_components-0.1.0/assets/ai/keyword_extractor/requirements.txt +3 -0
  196. dagster_community_components-0.1.0/assets/ai/keyword_extractor/schema.json +199 -0
  197. dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/README.md +184 -0
  198. dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/component.py +202 -0
  199. dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/example.yaml +14 -0
  200. dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/requirements.txt +6 -0
  201. dagster_community_components-0.1.0/assets/ai/langchain_chain_asset/schema.json +245 -0
  202. dagster_community_components-0.1.0/assets/ai/language_detector/README.md +28 -0
  203. dagster_community_components-0.1.0/assets/ai/language_detector/__init__.py +1 -0
  204. dagster_community_components-0.1.0/assets/ai/language_detector/component.py +304 -0
  205. dagster_community_components-0.1.0/assets/ai/language_detector/example.yaml +10 -0
  206. dagster_community_components-0.1.0/assets/ai/language_detector/requirements.txt +3 -0
  207. dagster_community_components-0.1.0/assets/ai/language_detector/schema.json +184 -0
  208. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/README.md +97 -0
  209. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/__init__.py +3 -0
  210. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/component.py +337 -0
  211. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/example.yaml +32 -0
  212. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/requirements.txt +3 -0
  213. dagster_community_components-0.1.0/assets/ai/legal_document_extractor/schema.json +195 -0
  214. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/README.md +40 -0
  215. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/__init__.py +3 -0
  216. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/component.py +273 -0
  217. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/example.yaml +10 -0
  218. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/requirements.txt +2 -0
  219. dagster_community_components-0.1.0/assets/ai/litellm_audio_transcription/schema.json +181 -0
  220. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/README.md +50 -0
  221. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/__init__.py +3 -0
  222. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/component.py +315 -0
  223. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/example.yaml +14 -0
  224. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/requirements.txt +2 -0
  225. dagster_community_components-0.1.0/assets/ai/litellm_batch_completion/schema.json +219 -0
  226. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/README.md +42 -0
  227. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/__init__.py +3 -0
  228. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/component.py +279 -0
  229. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/example.yaml +13 -0
  230. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/requirements.txt +2 -0
  231. dagster_community_components-0.1.0/assets/ai/litellm_embedding_batch/schema.json +196 -0
  232. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/README.md +49 -0
  233. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/__init__.py +3 -0
  234. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/component.py +304 -0
  235. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/example.yaml +42 -0
  236. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/requirements.txt +2 -0
  237. dagster_community_components-0.1.0/assets/ai/litellm_function_calling/schema.json +189 -0
  238. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/README.md +43 -0
  239. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/__init__.py +3 -0
  240. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/component.py +284 -0
  241. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/example.yaml +12 -0
  242. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/requirements.txt +2 -0
  243. dagster_community_components-0.1.0/assets/ai/litellm_image_generation/schema.json +213 -0
  244. dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/README.md +185 -0
  245. dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/component.py +174 -0
  246. dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/example.yaml +11 -0
  247. dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/requirements.txt +3 -0
  248. dagster_community_components-0.1.0/assets/ai/litellm_inference_asset/schema.json +244 -0
  249. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/README.md +45 -0
  250. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/__init__.py +3 -0
  251. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/component.py +306 -0
  252. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/example.yaml +20 -0
  253. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/requirements.txt +2 -0
  254. dagster_community_components-0.1.0/assets/ai/litellm_structured_output/schema.json +202 -0
  255. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/README.md +307 -0
  256. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/__init__.py +3 -0
  257. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/component.py +322 -0
  258. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/example.yaml +11 -0
  259. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/requirements.txt +2 -0
  260. dagster_community_components-0.1.0/assets/ai/llm_chain_executor/schema.json +198 -0
  261. dagster_community_components-0.1.0/assets/ai/llm_judge/README.md +47 -0
  262. dagster_community_components-0.1.0/assets/ai/llm_judge/__init__.py +3 -0
  263. dagster_community_components-0.1.0/assets/ai/llm_judge/component.py +329 -0
  264. dagster_community_components-0.1.0/assets/ai/llm_judge/example.yaml +22 -0
  265. dagster_community_components-0.1.0/assets/ai/llm_judge/requirements.txt +2 -0
  266. dagster_community_components-0.1.0/assets/ai/llm_judge/schema.json +203 -0
  267. dagster_community_components-0.1.0/assets/ai/llm_output_parser/README.md +370 -0
  268. dagster_community_components-0.1.0/assets/ai/llm_output_parser/__init__.py +3 -0
  269. dagster_community_components-0.1.0/assets/ai/llm_output_parser/component.py +349 -0
  270. dagster_community_components-0.1.0/assets/ai/llm_output_parser/example.yaml +7 -0
  271. dagster_community_components-0.1.0/assets/ai/llm_output_parser/requirements.txt +2 -0
  272. dagster_community_components-0.1.0/assets/ai/llm_output_parser/schema.json +210 -0
  273. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/README.md +644 -0
  274. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/__init__.py +3 -0
  275. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/component.py +516 -0
  276. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/example.yaml +23 -0
  277. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/requirements.txt +4 -0
  278. dagster_community_components-0.1.0/assets/ai/llm_prompt_executor/schema.json +237 -0
  279. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/README.md +98 -0
  280. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/__init__.py +3 -0
  281. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/component.py +336 -0
  282. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/example.yaml +32 -0
  283. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/requirements.txt +3 -0
  284. dagster_community_components-0.1.0/assets/ai/medical_record_extractor/schema.json +195 -0
  285. dagster_community_components-0.1.0/assets/ai/moderation_scorer/README.md +96 -0
  286. dagster_community_components-0.1.0/assets/ai/moderation_scorer/__init__.py +3 -0
  287. dagster_community_components-0.1.0/assets/ai/moderation_scorer/component.py +163 -0
  288. dagster_community_components-0.1.0/assets/ai/moderation_scorer/example.yaml +9 -0
  289. dagster_community_components-0.1.0/assets/ai/moderation_scorer/requirements.txt +1 -0
  290. dagster_community_components-0.1.0/assets/ai/moderation_scorer/schema.json +45 -0
  291. dagster_community_components-0.1.0/assets/ai/ocr_extractor/README.md +76 -0
  292. dagster_community_components-0.1.0/assets/ai/ocr_extractor/__init__.py +1 -0
  293. dagster_community_components-0.1.0/assets/ai/ocr_extractor/component.py +312 -0
  294. dagster_community_components-0.1.0/assets/ai/ocr_extractor/example.yaml +21 -0
  295. dagster_community_components-0.1.0/assets/ai/ocr_extractor/requirements.txt +4 -0
  296. dagster_community_components-0.1.0/assets/ai/ocr_extractor/schema.json +185 -0
  297. dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/README.md +200 -0
  298. dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/component.py +170 -0
  299. dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/example.yaml +11 -0
  300. dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/requirements.txt +3 -0
  301. dagster_community_components-0.1.0/assets/ai/ollama_inference_asset/schema.json +230 -0
  302. dagster_community_components-0.1.0/assets/ai/openai_llm/README.md +378 -0
  303. dagster_community_components-0.1.0/assets/ai/openai_llm/__init__.py +3 -0
  304. dagster_community_components-0.1.0/assets/ai/openai_llm/component.py +659 -0
  305. dagster_community_components-0.1.0/assets/ai/openai_llm/example.yaml +30 -0
  306. dagster_community_components-0.1.0/assets/ai/openai_llm/requirements.txt +2 -0
  307. dagster_community_components-0.1.0/assets/ai/openai_llm/schema.json +310 -0
  308. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/README.md +103 -0
  309. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/__init__.py +0 -0
  310. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/component.py +327 -0
  311. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/example.yaml +18 -0
  312. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/requirements.txt +3 -0
  313. dagster_community_components-0.1.0/assets/ai/part_of_speech_tagger/schema.json +180 -0
  314. dagster_community_components-0.1.0/assets/ai/pii_detector/README.md +36 -0
  315. dagster_community_components-0.1.0/assets/ai/pii_detector/__init__.py +1 -0
  316. dagster_community_components-0.1.0/assets/ai/pii_detector/component.py +275 -0
  317. dagster_community_components-0.1.0/assets/ai/pii_detector/example.yaml +14 -0
  318. dagster_community_components-0.1.0/assets/ai/pii_detector/requirements.txt +3 -0
  319. dagster_community_components-0.1.0/assets/ai/pii_detector/schema.json +190 -0
  320. dagster_community_components-0.1.0/assets/ai/pii_redactor/README.md +36 -0
  321. dagster_community_components-0.1.0/assets/ai/pii_redactor/__init__.py +1 -0
  322. dagster_community_components-0.1.0/assets/ai/pii_redactor/component.py +294 -0
  323. dagster_community_components-0.1.0/assets/ai/pii_redactor/example.yaml +14 -0
  324. dagster_community_components-0.1.0/assets/ai/pii_redactor/requirements.txt +4 -0
  325. dagster_community_components-0.1.0/assets/ai/pii_redactor/schema.json +198 -0
  326. dagster_community_components-0.1.0/assets/ai/precision_match/README.md +61 -0
  327. dagster_community_components-0.1.0/assets/ai/precision_match/component.py +291 -0
  328. dagster_community_components-0.1.0/assets/ai/precision_match/example.yaml +14 -0
  329. dagster_community_components-0.1.0/assets/ai/precision_match/requirements.txt +3 -0
  330. dagster_community_components-0.1.0/assets/ai/precision_match/schema.json +209 -0
  331. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/README.md +99 -0
  332. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/__init__.py +3 -0
  333. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/component.py +337 -0
  334. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/example.yaml +33 -0
  335. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/requirements.txt +3 -0
  336. dagster_community_components-0.1.0/assets/ai/purchase_order_extractor/schema.json +195 -0
  337. dagster_community_components-0.1.0/assets/ai/rag_pipeline/README.md +609 -0
  338. dagster_community_components-0.1.0/assets/ai/rag_pipeline/__init__.py +3 -0
  339. dagster_community_components-0.1.0/assets/ai/rag_pipeline/component.py +394 -0
  340. dagster_community_components-0.1.0/assets/ai/rag_pipeline/example.yaml +17 -0
  341. dagster_community_components-0.1.0/assets/ai/rag_pipeline/requirements.txt +6 -0
  342. dagster_community_components-0.1.0/assets/ai/rag_pipeline/schema.json +254 -0
  343. dagster_community_components-0.1.0/assets/ai/receipt_extractor/README.md +97 -0
  344. dagster_community_components-0.1.0/assets/ai/receipt_extractor/__init__.py +3 -0
  345. dagster_community_components-0.1.0/assets/ai/receipt_extractor/component.py +336 -0
  346. dagster_community_components-0.1.0/assets/ai/receipt_extractor/example.yaml +32 -0
  347. dagster_community_components-0.1.0/assets/ai/receipt_extractor/requirements.txt +3 -0
  348. dagster_community_components-0.1.0/assets/ai/receipt_extractor/schema.json +195 -0
  349. dagster_community_components-0.1.0/assets/ai/reranker/README.md +444 -0
  350. dagster_community_components-0.1.0/assets/ai/reranker/__init__.py +3 -0
  351. dagster_community_components-0.1.0/assets/ai/reranker/component.py +645 -0
  352. dagster_community_components-0.1.0/assets/ai/reranker/example.yaml +40 -0
  353. dagster_community_components-0.1.0/assets/ai/reranker/requirements.txt +5 -0
  354. dagster_community_components-0.1.0/assets/ai/reranker/schema.json +281 -0
  355. dagster_community_components-0.1.0/assets/ai/resume_extractor/README.md +98 -0
  356. dagster_community_components-0.1.0/assets/ai/resume_extractor/__init__.py +3 -0
  357. dagster_community_components-0.1.0/assets/ai/resume_extractor/component.py +335 -0
  358. dagster_community_components-0.1.0/assets/ai/resume_extractor/example.yaml +31 -0
  359. dagster_community_components-0.1.0/assets/ai/resume_extractor/requirements.txt +3 -0
  360. dagster_community_components-0.1.0/assets/ai/resume_extractor/schema.json +195 -0
  361. dagster_community_components-0.1.0/assets/ai/schema_fit/README.md +93 -0
  362. dagster_community_components-0.1.0/assets/ai/schema_fit/__init__.py +0 -0
  363. dagster_community_components-0.1.0/assets/ai/schema_fit/component.py +347 -0
  364. dagster_community_components-0.1.0/assets/ai/schema_fit/example.yaml +23 -0
  365. dagster_community_components-0.1.0/assets/ai/schema_fit/requirements.txt +3 -0
  366. dagster_community_components-0.1.0/assets/ai/schema_fit/schema.json +178 -0
  367. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/README.md +99 -0
  368. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/__init__.py +3 -0
  369. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/component.py +337 -0
  370. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/example.yaml +33 -0
  371. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/requirements.txt +3 -0
  372. dagster_community_components-0.1.0/assets/ai/scientific_paper_extractor/schema.json +195 -0
  373. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/README.md +402 -0
  374. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/__init__.py +3 -0
  375. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/component.py +637 -0
  376. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/example.yaml +41 -0
  377. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/requirements.txt +3 -0
  378. dagster_community_components-0.1.0/assets/ai/sentiment_analyzer/schema.json +281 -0
  379. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/README.md +73 -0
  380. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/__init__.py +3 -0
  381. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/component.py +336 -0
  382. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/example.yaml +32 -0
  383. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/requirements.txt +3 -0
  384. dagster_community_components-0.1.0/assets/ai/shipping_label_extractor/schema.json +195 -0
  385. dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/README.md +154 -0
  386. dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/component.py +251 -0
  387. dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/example.yaml +16 -0
  388. dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/requirements.txt +3 -0
  389. dagster_community_components-0.1.0/assets/ai/snowflake_cortex_asset/schema.json +25 -0
  390. dagster_community_components-0.1.0/assets/ai/sql_generator/README.md +31 -0
  391. dagster_community_components-0.1.0/assets/ai/sql_generator/__init__.py +1 -0
  392. dagster_community_components-0.1.0/assets/ai/sql_generator/component.py +303 -0
  393. dagster_community_components-0.1.0/assets/ai/sql_generator/example.yaml +14 -0
  394. dagster_community_components-0.1.0/assets/ai/sql_generator/requirements.txt +3 -0
  395. dagster_community_components-0.1.0/assets/ai/sql_generator/schema.json +205 -0
  396. dagster_community_components-0.1.0/assets/ai/synthetic_data/README.md +63 -0
  397. dagster_community_components-0.1.0/assets/ai/synthetic_data/component.py +262 -0
  398. dagster_community_components-0.1.0/assets/ai/synthetic_data/example.yaml +20 -0
  399. dagster_community_components-0.1.0/assets/ai/synthetic_data/requirements.txt +3 -0
  400. dagster_community_components-0.1.0/assets/ai/synthetic_data/schema.json +187 -0
  401. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/README.md +177 -0
  402. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/__init__.py +3 -0
  403. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/component.py +615 -0
  404. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/example.yaml +9 -0
  405. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/requirements.txt +1 -0
  406. dagster_community_components-0.1.0/assets/ai/synthetic_data_generator/schema.json +175 -0
  407. dagster_community_components-0.1.0/assets/ai/text_chunker/README.md +174 -0
  408. dagster_community_components-0.1.0/assets/ai/text_chunker/__init__.py +3 -0
  409. dagster_community_components-0.1.0/assets/ai/text_chunker/component.py +527 -0
  410. dagster_community_components-0.1.0/assets/ai/text_chunker/example.yaml +13 -0
  411. dagster_community_components-0.1.0/assets/ai/text_chunker/requirements.txt +1 -0
  412. dagster_community_components-0.1.0/assets/ai/text_chunker/schema.json +225 -0
  413. dagster_community_components-0.1.0/assets/ai/text_classifier/README.md +210 -0
  414. dagster_community_components-0.1.0/assets/ai/text_classifier/__init__.py +3 -0
  415. dagster_community_components-0.1.0/assets/ai/text_classifier/component.py +342 -0
  416. dagster_community_components-0.1.0/assets/ai/text_classifier/example.yaml +10 -0
  417. dagster_community_components-0.1.0/assets/ai/text_classifier/requirements.txt +2 -0
  418. dagster_community_components-0.1.0/assets/ai/text_classifier/schema.json +227 -0
  419. dagster_community_components-0.1.0/assets/ai/text_moderator/README.md +605 -0
  420. dagster_community_components-0.1.0/assets/ai/text_moderator/__init__.py +3 -0
  421. dagster_community_components-0.1.0/assets/ai/text_moderator/component.py +878 -0
  422. dagster_community_components-0.1.0/assets/ai/text_moderator/example.yaml +56 -0
  423. dagster_community_components-0.1.0/assets/ai/text_moderator/requirements.txt +8 -0
  424. dagster_community_components-0.1.0/assets/ai/text_moderator/schema.json +288 -0
  425. dagster_community_components-0.1.0/assets/ai/text_similarity/README.md +35 -0
  426. dagster_community_components-0.1.0/assets/ai/text_similarity/__init__.py +1 -0
  427. dagster_community_components-0.1.0/assets/ai/text_similarity/component.py +306 -0
  428. dagster_community_components-0.1.0/assets/ai/text_similarity/example.yaml +10 -0
  429. dagster_community_components-0.1.0/assets/ai/text_similarity/requirements.txt +3 -0
  430. dagster_community_components-0.1.0/assets/ai/text_similarity/schema.json +194 -0
  431. dagster_community_components-0.1.0/assets/ai/ticket_classifier/README.md +597 -0
  432. dagster_community_components-0.1.0/assets/ai/ticket_classifier/__init__.py +3 -0
  433. dagster_community_components-0.1.0/assets/ai/ticket_classifier/component.py +839 -0
  434. dagster_community_components-0.1.0/assets/ai/ticket_classifier/example.yaml +50 -0
  435. dagster_community_components-0.1.0/assets/ai/ticket_classifier/requirements.txt +6 -0
  436. dagster_community_components-0.1.0/assets/ai/ticket_classifier/schema.json +319 -0
  437. dagster_community_components-0.1.0/assets/ai/topic_modeler/README.md +29 -0
  438. dagster_community_components-0.1.0/assets/ai/topic_modeler/__init__.py +1 -0
  439. dagster_community_components-0.1.0/assets/ai/topic_modeler/component.py +274 -0
  440. dagster_community_components-0.1.0/assets/ai/topic_modeler/example.yaml +12 -0
  441. dagster_community_components-0.1.0/assets/ai/topic_modeler/requirements.txt +3 -0
  442. dagster_community_components-0.1.0/assets/ai/topic_modeler/schema.json +199 -0
  443. dagster_community_components-0.1.0/assets/ai/vector_store_query/README.md +148 -0
  444. dagster_community_components-0.1.0/assets/ai/vector_store_query/__init__.py +3 -0
  445. dagster_community_components-0.1.0/assets/ai/vector_store_query/component.py +375 -0
  446. dagster_community_components-0.1.0/assets/ai/vector_store_query/example.yaml +10 -0
  447. dagster_community_components-0.1.0/assets/ai/vector_store_query/requirements.txt +5 -0
  448. dagster_community_components-0.1.0/assets/ai/vector_store_query/schema.json +215 -0
  449. dagster_community_components-0.1.0/assets/ai/vector_store_writer/README.md +155 -0
  450. dagster_community_components-0.1.0/assets/ai/vector_store_writer/__init__.py +3 -0
  451. dagster_community_components-0.1.0/assets/ai/vector_store_writer/component.py +375 -0
  452. dagster_community_components-0.1.0/assets/ai/vector_store_writer/example.yaml +13 -0
  453. dagster_community_components-0.1.0/assets/ai/vector_store_writer/requirements.txt +6 -0
  454. dagster_community_components-0.1.0/assets/ai/vector_store_writer/schema.json +219 -0
  455. dagster_community_components-0.1.0/assets/ai/vision_model/README.md +531 -0
  456. dagster_community_components-0.1.0/assets/ai/vision_model/__init__.py +3 -0
  457. dagster_community_components-0.1.0/assets/ai/vision_model/component.py +674 -0
  458. dagster_community_components-0.1.0/assets/ai/vision_model/example.yaml +39 -0
  459. dagster_community_components-0.1.0/assets/ai/vision_model/requirements.txt +5 -0
  460. dagster_community_components-0.1.0/assets/ai/vision_model/schema.json +270 -0
  461. dagster_community_components-0.1.0/assets/ai/word_cloud/README.md +94 -0
  462. dagster_community_components-0.1.0/assets/ai/word_cloud/__init__.py +0 -0
  463. dagster_community_components-0.1.0/assets/ai/word_cloud/component.py +329 -0
  464. dagster_community_components-0.1.0/assets/ai/word_cloud/example.yaml +22 -0
  465. dagster_community_components-0.1.0/assets/ai/word_cloud/requirements.txt +4 -0
  466. dagster_community_components-0.1.0/assets/ai/word_cloud/schema.json +196 -0
  467. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/README.md +116 -0
  468. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/__init__.py +0 -0
  469. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/component.py +307 -0
  470. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/example.yaml +27 -0
  471. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/requirements.txt +4 -0
  472. dagster_community_components-0.1.0/assets/ai/zero_shot_classifier/schema.json +198 -0
  473. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/README.md +133 -0
  474. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/__init__.py +5 -0
  475. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/component.py +562 -0
  476. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/example.yaml +8 -0
  477. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/requirements.txt +2 -0
  478. dagster_community_components-0.1.0/assets/analytics/ab_test_analysis/schema.json +222 -0
  479. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/README.md +92 -0
  480. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/__init__.py +5 -0
  481. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/component.py +631 -0
  482. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/example.yaml +9 -0
  483. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/requirements.txt +2 -0
  484. dagster_community_components-0.1.0/assets/analytics/ad_spend_standardizer/schema.json +204 -0
  485. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/README.md +203 -0
  486. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/__init__.py +5 -0
  487. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/component.py +528 -0
  488. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/example.yaml +8 -0
  489. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/requirements.txt +2 -0
  490. dagster_community_components-0.1.0/assets/analytics/anomaly_detection/schema.json +208 -0
  491. dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/README.md +53 -0
  492. dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/component.py +275 -0
  493. dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/example.yaml +13 -0
  494. dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/requirements.txt +2 -0
  495. dagster_community_components-0.1.0/assets/analytics/bounding_box_filter/schema.json +190 -0
  496. dagster_community_components-0.1.0/assets/analytics/campaign_performance/README.md +109 -0
  497. dagster_community_components-0.1.0/assets/analytics/campaign_performance/__init__.py +5 -0
  498. dagster_community_components-0.1.0/assets/analytics/campaign_performance/component.py +547 -0
  499. dagster_community_components-0.1.0/assets/analytics/campaign_performance/example.yaml +8 -0
  500. dagster_community_components-0.1.0/assets/analytics/campaign_performance/requirements.txt +2 -0
  501. dagster_community_components-0.1.0/assets/analytics/campaign_performance/schema.json +237 -0
  502. dagster_community_components-0.1.0/assets/analytics/chromadb_asset/README.md +97 -0
  503. dagster_community_components-0.1.0/assets/analytics/chromadb_asset/component.py +279 -0
  504. dagster_community_components-0.1.0/assets/analytics/chromadb_asset/example.yaml +20 -0
  505. dagster_community_components-0.1.0/assets/analytics/chromadb_asset/requirements.txt +4 -0
  506. dagster_community_components-0.1.0/assets/analytics/chromadb_asset/schema.json +211 -0
  507. dagster_community_components-0.1.0/assets/analytics/churn_prediction/README.md +255 -0
  508. dagster_community_components-0.1.0/assets/analytics/churn_prediction/__init__.py +5 -0
  509. dagster_community_components-0.1.0/assets/analytics/churn_prediction/component.py +563 -0
  510. dagster_community_components-0.1.0/assets/analytics/churn_prediction/example.yaml +23 -0
  511. dagster_community_components-0.1.0/assets/analytics/churn_prediction/requirements.txt +2 -0
  512. dagster_community_components-0.1.0/assets/analytics/churn_prediction/schema.json +216 -0
  513. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/README.md +199 -0
  514. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/__init__.py +5 -0
  515. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/component.py +505 -0
  516. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/example.yaml +22 -0
  517. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/requirements.txt +2 -0
  518. dagster_community_components-0.1.0/assets/analytics/cohort_analysis/schema.json +202 -0
  519. dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/README.md +52 -0
  520. dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/component.py +274 -0
  521. dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/example.yaml +12 -0
  522. dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/requirements.txt +3 -0
  523. dagster_community_components-0.1.0/assets/analytics/coordinate_transformer/schema.json +183 -0
  524. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/README.md +270 -0
  525. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/__init__.py +3 -0
  526. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/component.py +609 -0
  527. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/example.yaml +22 -0
  528. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/requirements.txt +1 -0
  529. dagster_community_components-0.1.0/assets/analytics/crm_data_standardizer/schema.json +196 -0
  530. dagster_community_components-0.1.0/assets/analytics/cross_validation/README.md +64 -0
  531. dagster_community_components-0.1.0/assets/analytics/cross_validation/component.py +296 -0
  532. dagster_community_components-0.1.0/assets/analytics/cross_validation/example.yaml +17 -0
  533. dagster_community_components-0.1.0/assets/analytics/cross_validation/requirements.txt +3 -0
  534. dagster_community_components-0.1.0/assets/analytics/cross_validation/schema.json +194 -0
  535. dagster_community_components-0.1.0/assets/analytics/customer_360/README.md +292 -0
  536. dagster_community_components-0.1.0/assets/analytics/customer_360/__init__.py +3 -0
  537. dagster_community_components-0.1.0/assets/analytics/customer_360/component.py +520 -0
  538. dagster_community_components-0.1.0/assets/analytics/customer_360/example.yaml +14 -0
  539. dagster_community_components-0.1.0/assets/analytics/customer_360/requirements.txt +2 -0
  540. dagster_community_components-0.1.0/assets/analytics/customer_360/schema.json +202 -0
  541. dagster_community_components-0.1.0/assets/analytics/customer_health_score/README.md +568 -0
  542. dagster_community_components-0.1.0/assets/analytics/customer_health_score/__init__.py +5 -0
  543. dagster_community_components-0.1.0/assets/analytics/customer_health_score/component.py +619 -0
  544. dagster_community_components-0.1.0/assets/analytics/customer_health_score/example.yaml +11 -0
  545. dagster_community_components-0.1.0/assets/analytics/customer_health_score/requirements.txt +2 -0
  546. dagster_community_components-0.1.0/assets/analytics/customer_health_score/schema.json +261 -0
  547. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/README.md +109 -0
  548. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/__init__.py +5 -0
  549. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/component.py +511 -0
  550. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/example.yaml +8 -0
  551. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/requirements.txt +2 -0
  552. dagster_community_components-0.1.0/assets/analytics/customer_journey_mapping/schema.json +218 -0
  553. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/README.md +567 -0
  554. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/__init__.py +5 -0
  555. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/component.py +443 -0
  556. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/example.yaml +9 -0
  557. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/requirements.txt +2 -0
  558. dagster_community_components-0.1.0/assets/analytics/customer_segmentation/schema.json +225 -0
  559. dagster_community_components-0.1.0/assets/analytics/dataiku_asset/README.md +156 -0
  560. dagster_community_components-0.1.0/assets/analytics/dataiku_asset/component.py +509 -0
  561. dagster_community_components-0.1.0/assets/analytics/dataiku_asset/example.yaml +9 -0
  562. dagster_community_components-0.1.0/assets/analytics/dataiku_asset/requirements.txt +1 -0
  563. dagster_community_components-0.1.0/assets/analytics/dataiku_asset/schema.json +24 -0
  564. dagster_community_components-0.1.0/assets/analytics/decision_tree_model/README.md +59 -0
  565. dagster_community_components-0.1.0/assets/analytics/decision_tree_model/component.py +259 -0
  566. dagster_community_components-0.1.0/assets/analytics/decision_tree_model/example.yaml +19 -0
  567. dagster_community_components-0.1.0/assets/analytics/decision_tree_model/requirements.txt +3 -0
  568. dagster_community_components-0.1.0/assets/analytics/decision_tree_model/schema.json +202 -0
  569. dagster_community_components-0.1.0/assets/analytics/distance_calculator/README.md +54 -0
  570. dagster_community_components-0.1.0/assets/analytics/distance_calculator/component.py +300 -0
  571. dagster_community_components-0.1.0/assets/analytics/distance_calculator/example.yaml +13 -0
  572. dagster_community_components-0.1.0/assets/analytics/distance_calculator/requirements.txt +3 -0
  573. dagster_community_components-0.1.0/assets/analytics/distance_calculator/schema.json +189 -0
  574. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/README.md +299 -0
  575. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/__init__.py +3 -0
  576. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/component.py +697 -0
  577. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/example.yaml +22 -0
  578. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/requirements.txt +2 -0
  579. dagster_community_components-0.1.0/assets/analytics/ecommerce_standardizer/schema.json +195 -0
  580. dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/README.md +86 -0
  581. dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/component.py +286 -0
  582. dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/example.yaml +12 -0
  583. dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/requirements.txt +4 -0
  584. dagster_community_components-0.1.0/assets/analytics/elasticsearch_asset/schema.json +212 -0
  585. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/README.md +223 -0
  586. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/__init__.py +3 -0
  587. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/component.py +627 -0
  588. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/example.yaml +24 -0
  589. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/requirements.txt +1 -0
  590. dagster_community_components-0.1.0/assets/analytics/event_data_standardizer/schema.json +217 -0
  591. dagster_community_components-0.1.0/assets/analytics/feast_asset/README.md +64 -0
  592. dagster_community_components-0.1.0/assets/analytics/feast_asset/component.py +165 -0
  593. dagster_community_components-0.1.0/assets/analytics/feast_asset/example.yaml +12 -0
  594. dagster_community_components-0.1.0/assets/analytics/feast_asset/requirements.txt +2 -0
  595. dagster_community_components-0.1.0/assets/analytics/feast_asset/schema.json +181 -0
  596. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/README.md +522 -0
  597. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/__init__.py +5 -0
  598. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/component.py +624 -0
  599. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/example.yaml +22 -0
  600. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/requirements.txt +2 -0
  601. dagster_community_components-0.1.0/assets/analytics/funnel_analysis/schema.json +318 -0
  602. dagster_community_components-0.1.0/assets/analytics/geocoder/README.md +75 -0
  603. dagster_community_components-0.1.0/assets/analytics/geocoder/__init__.py +5 -0
  604. dagster_community_components-0.1.0/assets/analytics/geocoder/component.py +355 -0
  605. dagster_community_components-0.1.0/assets/analytics/geocoder/example.yaml +11 -0
  606. dagster_community_components-0.1.0/assets/analytics/geocoder/requirements.txt +3 -0
  607. dagster_community_components-0.1.0/assets/analytics/geocoder/schema.json +204 -0
  608. dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/README.md +56 -0
  609. dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/component.py +292 -0
  610. dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/example.yaml +20 -0
  611. dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/requirements.txt +3 -0
  612. dagster_community_components-0.1.0/assets/analytics/gradient_boosting_model/schema.json +209 -0
  613. dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/README.md +175 -0
  614. dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/component.py +265 -0
  615. dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/example.yaml +11 -0
  616. dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/requirements.txt +3 -0
  617. dagster_community_components-0.1.0/assets/analytics/jupyter_notebook_asset/schema.json +212 -0
  618. dagster_community_components-0.1.0/assets/analytics/k_means_clustering/README.md +55 -0
  619. dagster_community_components-0.1.0/assets/analytics/k_means_clustering/component.py +261 -0
  620. dagster_community_components-0.1.0/assets/analytics/k_means_clustering/example.yaml +18 -0
  621. dagster_community_components-0.1.0/assets/analytics/k_means_clustering/requirements.txt +3 -0
  622. dagster_community_components-0.1.0/assets/analytics/k_means_clustering/schema.json +197 -0
  623. dagster_community_components-0.1.0/assets/analytics/lakefs_asset/README.md +117 -0
  624. dagster_community_components-0.1.0/assets/analytics/lakefs_asset/component.py +175 -0
  625. dagster_community_components-0.1.0/assets/analytics/lakefs_asset/example.yaml +14 -0
  626. dagster_community_components-0.1.0/assets/analytics/lakefs_asset/requirements.txt +2 -0
  627. dagster_community_components-0.1.0/assets/analytics/lakefs_asset/schema.json +216 -0
  628. dagster_community_components-0.1.0/assets/analytics/lead_scoring/README.md +678 -0
  629. dagster_community_components-0.1.0/assets/analytics/lead_scoring/__init__.py +5 -0
  630. dagster_community_components-0.1.0/assets/analytics/lead_scoring/component.py +631 -0
  631. dagster_community_components-0.1.0/assets/analytics/lead_scoring/example.yaml +11 -0
  632. dagster_community_components-0.1.0/assets/analytics/lead_scoring/requirements.txt +2 -0
  633. dagster_community_components-0.1.0/assets/analytics/lead_scoring/schema.json +316 -0
  634. dagster_community_components-0.1.0/assets/analytics/lift_chart/README.md +51 -0
  635. dagster_community_components-0.1.0/assets/analytics/lift_chart/component.py +265 -0
  636. dagster_community_components-0.1.0/assets/analytics/lift_chart/example.yaml +9 -0
  637. dagster_community_components-0.1.0/assets/analytics/lift_chart/requirements.txt +2 -0
  638. dagster_community_components-0.1.0/assets/analytics/lift_chart/schema.json +162 -0
  639. dagster_community_components-0.1.0/assets/analytics/linear_regression_model/README.md +61 -0
  640. dagster_community_components-0.1.0/assets/analytics/linear_regression_model/component.py +282 -0
  641. dagster_community_components-0.1.0/assets/analytics/linear_regression_model/example.yaml +19 -0
  642. dagster_community_components-0.1.0/assets/analytics/linear_regression_model/requirements.txt +3 -0
  643. dagster_community_components-0.1.0/assets/analytics/linear_regression_model/schema.json +196 -0
  644. dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/README.md +61 -0
  645. dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/component.py +279 -0
  646. dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/example.yaml +19 -0
  647. dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/requirements.txt +3 -0
  648. dagster_community_components-0.1.0/assets/analytics/logistic_regression_model/schema.json +205 -0
  649. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/README.md +451 -0
  650. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/__init__.py +5 -0
  651. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/component.py +568 -0
  652. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/example.yaml +9 -0
  653. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/requirements.txt +2 -0
  654. dagster_community_components-0.1.0/assets/analytics/ltv_prediction/schema.json +210 -0
  655. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/README.md +239 -0
  656. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/__init__.py +3 -0
  657. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/component.py +561 -0
  658. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/example.yaml +26 -0
  659. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/requirements.txt +1 -0
  660. dagster_community_components-0.1.0/assets/analytics/marketing_data_standardizer/schema.json +217 -0
  661. dagster_community_components-0.1.0/assets/analytics/model_comparison/README.md +62 -0
  662. dagster_community_components-0.1.0/assets/analytics/model_comparison/component.py +322 -0
  663. dagster_community_components-0.1.0/assets/analytics/model_comparison/example.yaml +22 -0
  664. dagster_community_components-0.1.0/assets/analytics/model_comparison/requirements.txt +3 -0
  665. dagster_community_components-0.1.0/assets/analytics/model_comparison/schema.json +197 -0
  666. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/README.md +522 -0
  667. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/__init__.py +5 -0
  668. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/component.py +605 -0
  669. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/example.yaml +9 -0
  670. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/requirements.txt +2 -0
  671. dagster_community_components-0.1.0/assets/analytics/multi_touch_attribution/schema.json +232 -0
  672. dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/README.md +59 -0
  673. dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/component.py +275 -0
  674. dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/example.yaml +18 -0
  675. dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/requirements.txt +3 -0
  676. dagster_community_components-0.1.0/assets/analytics/naive_bayes_model/schema.json +197 -0
  677. dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/README.md +59 -0
  678. dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/component.py +262 -0
  679. dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/example.yaml +18 -0
  680. dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/requirements.txt +3 -0
  681. dagster_community_components-0.1.0/assets/analytics/nearest_neighbors/schema.json +198 -0
  682. dagster_community_components-0.1.0/assets/analytics/neural_network_model/README.md +59 -0
  683. dagster_community_components-0.1.0/assets/analytics/neural_network_model/component.py +311 -0
  684. dagster_community_components-0.1.0/assets/analytics/neural_network_model/example.yaml +24 -0
  685. dagster_community_components-0.1.0/assets/analytics/neural_network_model/requirements.txt +3 -0
  686. dagster_community_components-0.1.0/assets/analytics/neural_network_model/schema.json +227 -0
  687. dagster_community_components-0.1.0/assets/analytics/optimization/README.md +70 -0
  688. dagster_community_components-0.1.0/assets/analytics/optimization/__init__.py +5 -0
  689. dagster_community_components-0.1.0/assets/analytics/optimization/component.py +322 -0
  690. dagster_community_components-0.1.0/assets/analytics/optimization/example.yaml +9 -0
  691. dagster_community_components-0.1.0/assets/analytics/optimization/requirements.txt +4 -0
  692. dagster_community_components-0.1.0/assets/analytics/optimization/schema.json +195 -0
  693. dagster_community_components-0.1.0/assets/analytics/oversample_field/README.md +58 -0
  694. dagster_community_components-0.1.0/assets/analytics/oversample_field/component.py +273 -0
  695. dagster_community_components-0.1.0/assets/analytics/oversample_field/example.yaml +16 -0
  696. dagster_community_components-0.1.0/assets/analytics/oversample_field/requirements.txt +4 -0
  697. dagster_community_components-0.1.0/assets/analytics/oversample_field/schema.json +181 -0
  698. dagster_community_components-0.1.0/assets/analytics/pca/README.md +60 -0
  699. dagster_community_components-0.1.0/assets/analytics/pca/component.py +269 -0
  700. dagster_community_components-0.1.0/assets/analytics/pca/example.yaml +20 -0
  701. dagster_community_components-0.1.0/assets/analytics/pca/requirements.txt +3 -0
  702. dagster_community_components-0.1.0/assets/analytics/pca/schema.json +190 -0
  703. dagster_community_components-0.1.0/assets/analytics/pgvector_asset/README.md +86 -0
  704. dagster_community_components-0.1.0/assets/analytics/pgvector_asset/component.py +270 -0
  705. dagster_community_components-0.1.0/assets/analytics/pgvector_asset/example.yaml +16 -0
  706. dagster_community_components-0.1.0/assets/analytics/pgvector_asset/requirements.txt +5 -0
  707. dagster_community_components-0.1.0/assets/analytics/pgvector_asset/schema.json +203 -0
  708. dagster_community_components-0.1.0/assets/analytics/pinecone_asset/README.md +204 -0
  709. dagster_community_components-0.1.0/assets/analytics/pinecone_asset/component.py +353 -0
  710. dagster_community_components-0.1.0/assets/analytics/pinecone_asset/example.yaml +13 -0
  711. dagster_community_components-0.1.0/assets/analytics/pinecone_asset/requirements.txt +3 -0
  712. dagster_community_components-0.1.0/assets/analytics/pinecone_asset/schema.json +233 -0
  713. dagster_community_components-0.1.0/assets/analytics/point_in_polygon/README.md +52 -0
  714. dagster_community_components-0.1.0/assets/analytics/point_in_polygon/component.py +311 -0
  715. dagster_community_components-0.1.0/assets/analytics/point_in_polygon/example.yaml +12 -0
  716. dagster_community_components-0.1.0/assets/analytics/point_in_polygon/requirements.txt +3 -0
  717. dagster_community_components-0.1.0/assets/analytics/point_in_polygon/schema.json +192 -0
  718. dagster_community_components-0.1.0/assets/analytics/priority_scorer/README.md +489 -0
  719. dagster_community_components-0.1.0/assets/analytics/priority_scorer/__init__.py +3 -0
  720. dagster_community_components-0.1.0/assets/analytics/priority_scorer/component.py +888 -0
  721. dagster_community_components-0.1.0/assets/analytics/priority_scorer/example.yaml +52 -0
  722. dagster_community_components-0.1.0/assets/analytics/priority_scorer/requirements.txt +6 -0
  723. dagster_community_components-0.1.0/assets/analytics/priority_scorer/schema.json +317 -0
  724. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/README.md +283 -0
  725. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/__init__.py +3 -0
  726. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/component.py +554 -0
  727. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/example.yaml +22 -0
  728. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/requirements.txt +2 -0
  729. dagster_community_components-0.1.0/assets/analytics/product_analytics_standardizer/schema.json +202 -0
  730. dagster_community_components-0.1.0/assets/analytics/product_recommendations/README.md +317 -0
  731. dagster_community_components-0.1.0/assets/analytics/product_recommendations/__init__.py +5 -0
  732. dagster_community_components-0.1.0/assets/analytics/product_recommendations/component.py +639 -0
  733. dagster_community_components-0.1.0/assets/analytics/product_recommendations/example.yaml +8 -0
  734. dagster_community_components-0.1.0/assets/analytics/product_recommendations/requirements.txt +2 -0
  735. dagster_community_components-0.1.0/assets/analytics/product_recommendations/schema.json +236 -0
  736. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/README.md +426 -0
  737. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/__init__.py +5 -0
  738. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/component.py +330 -0
  739. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/example.yaml +9 -0
  740. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/requirements.txt +2 -0
  741. dagster_community_components-0.1.0/assets/analytics/product_usage_analytics/schema.json +211 -0
  742. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/README.md +114 -0
  743. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/__init__.py +5 -0
  744. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/component.py +549 -0
  745. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/example.yaml +9 -0
  746. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/requirements.txt +2 -0
  747. dagster_community_components-0.1.0/assets/analytics/propensity_scoring/schema.json +215 -0
  748. dagster_community_components-0.1.0/assets/analytics/random_forest_model/README.md +60 -0
  749. dagster_community_components-0.1.0/assets/analytics/random_forest_model/component.py +264 -0
  750. dagster_community_components-0.1.0/assets/analytics/random_forest_model/example.yaml +21 -0
  751. dagster_community_components-0.1.0/assets/analytics/random_forest_model/requirements.txt +3 -0
  752. dagster_community_components-0.1.0/assets/analytics/random_forest_model/schema.json +209 -0
  753. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/README.md +378 -0
  754. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/__init__.py +3 -0
  755. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/component.py +422 -0
  756. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/example.yaml +18 -0
  757. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/requirements.txt +2 -0
  758. dagster_community_components-0.1.0/assets/analytics/revenue_attribution/schema.json +188 -0
  759. dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/README.md +55 -0
  760. dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/component.py +329 -0
  761. dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/example.yaml +15 -0
  762. dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/requirements.txt +3 -0
  763. dagster_community_components-0.1.0/assets/analytics/reverse_geocoder/schema.json +213 -0
  764. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/README.md +155 -0
  765. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/__init__.py +5 -0
  766. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/component.py +534 -0
  767. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/example.yaml +21 -0
  768. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/requirements.txt +2 -0
  769. dagster_community_components-0.1.0/assets/analytics/rfm_segmentation/schema.json +195 -0
  770. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/README.md +73 -0
  771. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/__init__.py +5 -0
  772. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/component.py +340 -0
  773. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/example.yaml +12 -0
  774. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/requirements.txt +3 -0
  775. dagster_community_components-0.1.0/assets/analytics/simulation_sampling/schema.json +188 -0
  776. dagster_community_components-0.1.0/assets/analytics/spatial_cluster/README.md +55 -0
  777. dagster_community_components-0.1.0/assets/analytics/spatial_cluster/component.py +333 -0
  778. dagster_community_components-0.1.0/assets/analytics/spatial_cluster/example.yaml +13 -0
  779. dagster_community_components-0.1.0/assets/analytics/spatial_cluster/requirements.txt +4 -0
  780. dagster_community_components-0.1.0/assets/analytics/spatial_cluster/schema.json +200 -0
  781. dagster_community_components-0.1.0/assets/analytics/spatial_join/README.md +52 -0
  782. dagster_community_components-0.1.0/assets/analytics/spatial_join/component.py +294 -0
  783. dagster_community_components-0.1.0/assets/analytics/spatial_join/example.yaml +11 -0
  784. dagster_community_components-0.1.0/assets/analytics/spatial_join/requirements.txt +4 -0
  785. dagster_community_components-0.1.0/assets/analytics/spatial_join/schema.json +177 -0
  786. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/README.md +441 -0
  787. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/__init__.py +3 -0
  788. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/component.py +507 -0
  789. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/example.yaml +17 -0
  790. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/requirements.txt +2 -0
  791. dagster_community_components-0.1.0/assets/analytics/subscription_metrics/schema.json +174 -0
  792. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/README.md +239 -0
  793. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/__init__.py +3 -0
  794. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/component.py +618 -0
  795. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/example.yaml +22 -0
  796. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/requirements.txt +2 -0
  797. dagster_community_components-0.1.0/assets/analytics/support_ticket_standardizer/schema.json +203 -0
  798. dagster_community_components-0.1.0/assets/analytics/survival_analysis/README.md +69 -0
  799. dagster_community_components-0.1.0/assets/analytics/survival_analysis/component.py +272 -0
  800. dagster_community_components-0.1.0/assets/analytics/survival_analysis/example.yaml +10 -0
  801. dagster_community_components-0.1.0/assets/analytics/survival_analysis/requirements.txt +3 -0
  802. dagster_community_components-0.1.0/assets/analytics/survival_analysis/schema.json +191 -0
  803. dagster_community_components-0.1.0/assets/analytics/tecton_asset/README.md +83 -0
  804. dagster_community_components-0.1.0/assets/analytics/tecton_asset/component.py +167 -0
  805. dagster_community_components-0.1.0/assets/analytics/tecton_asset/example.yaml +14 -0
  806. dagster_community_components-0.1.0/assets/analytics/tecton_asset/requirements.txt +2 -0
  807. dagster_community_components-0.1.0/assets/analytics/tecton_asset/schema.json +188 -0
  808. dagster_community_components-0.1.0/assets/analytics/text_preprocessing/README.md +57 -0
  809. dagster_community_components-0.1.0/assets/analytics/text_preprocessing/component.py +288 -0
  810. dagster_community_components-0.1.0/assets/analytics/text_preprocessing/example.yaml +17 -0
  811. dagster_community_components-0.1.0/assets/analytics/text_preprocessing/requirements.txt +3 -0
  812. dagster_community_components-0.1.0/assets/analytics/text_preprocessing/schema.json +227 -0
  813. dagster_community_components-0.1.0/assets/analytics/time_series_generator/README.md +214 -0
  814. dagster_community_components-0.1.0/assets/analytics/time_series_generator/__init__.py +3 -0
  815. dagster_community_components-0.1.0/assets/analytics/time_series_generator/component.py +462 -0
  816. dagster_community_components-0.1.0/assets/analytics/time_series_generator/example.yaml +14 -0
  817. dagster_community_components-0.1.0/assets/analytics/time_series_generator/requirements.txt +2 -0
  818. dagster_community_components-0.1.0/assets/analytics/time_series_generator/schema.json +201 -0
  819. dagster_community_components-0.1.0/assets/analytics/topic_modeling/README.md +58 -0
  820. dagster_community_components-0.1.0/assets/analytics/topic_modeling/component.py +281 -0
  821. dagster_community_components-0.1.0/assets/analytics/topic_modeling/example.yaml +14 -0
  822. dagster_community_components-0.1.0/assets/analytics/topic_modeling/requirements.txt +4 -0
  823. dagster_community_components-0.1.0/assets/analytics/topic_modeling/schema.json +199 -0
  824. dagster_community_components-0.1.0/assets/analytics/ts_compare/README.md +82 -0
  825. dagster_community_components-0.1.0/assets/analytics/ts_compare/__init__.py +0 -0
  826. dagster_community_components-0.1.0/assets/analytics/ts_compare/component.py +339 -0
  827. dagster_community_components-0.1.0/assets/analytics/ts_compare/example.yaml +20 -0
  828. dagster_community_components-0.1.0/assets/analytics/ts_compare/requirements.txt +4 -0
  829. dagster_community_components-0.1.0/assets/analytics/ts_compare/schema.json +193 -0
  830. dagster_community_components-0.1.0/assets/analytics/ts_forecast/README.md +103 -0
  831. dagster_community_components-0.1.0/assets/analytics/ts_forecast/__init__.py +0 -0
  832. dagster_community_components-0.1.0/assets/analytics/ts_forecast/component.py +334 -0
  833. dagster_community_components-0.1.0/assets/analytics/ts_forecast/example.yaml +26 -0
  834. dagster_community_components-0.1.0/assets/analytics/ts_forecast/requirements.txt +3 -0
  835. dagster_community_components-0.1.0/assets/analytics/ts_forecast/schema.json +207 -0
  836. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/README.md +90 -0
  837. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/__init__.py +0 -0
  838. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/component.py +319 -0
  839. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/example.yaml +24 -0
  840. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/requirements.txt +3 -0
  841. dagster_community_components-0.1.0/assets/analytics/ts_model_factory/schema.json +207 -0
  842. dagster_community_components-0.1.0/assets/analytics/wandb_asset/README.md +124 -0
  843. dagster_community_components-0.1.0/assets/analytics/wandb_asset/component.py +229 -0
  844. dagster_community_components-0.1.0/assets/analytics/wandb_asset/example.yaml +20 -0
  845. dagster_community_components-0.1.0/assets/analytics/wandb_asset/requirements.txt +3 -0
  846. dagster_community_components-0.1.0/assets/analytics/wandb_asset/schema.json +219 -0
  847. dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/README.md +223 -0
  848. dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/component.py +244 -0
  849. dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/example.yaml +11 -0
  850. dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/requirements.txt +1 -0
  851. dagster_community_components-0.1.0/assets/analytics/warehouse_schema_assets/schema.json +25 -0
  852. dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/README.md +357 -0
  853. dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/component.py +326 -0
  854. dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/example.yaml +13 -0
  855. dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/requirements.txt +2 -0
  856. dagster_community_components-0.1.0/assets/dbt/dbt_docs_enriched_project/schema.json +20 -0
  857. dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/README.md +102 -0
  858. dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/component.py +253 -0
  859. dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/example.yaml +24 -0
  860. dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/requirements.txt +1 -0
  861. dagster_community_components-0.1.0/assets/infrastructure/abinitio_run_asset/schema.json +159 -0
  862. dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/README.md +179 -0
  863. dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/component.py +334 -0
  864. dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/example.yaml +11 -0
  865. dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/requirements.txt +1 -0
  866. dagster_community_components-0.1.0/assets/infrastructure/ansible_asset/schema.json +221 -0
  867. dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/README.md +277 -0
  868. dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/component.py +1235 -0
  869. dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/example.yaml +55 -0
  870. dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/requirements.txt +1 -0
  871. dagster_community_components-0.1.0/assets/infrastructure/autosys_asset/schema.json +19 -0
  872. dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/README.md +191 -0
  873. dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/component.py +287 -0
  874. dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/example.yaml +13 -0
  875. dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/requirements.txt +1 -0
  876. dagster_community_components-0.1.0/assets/infrastructure/aws_cdk_asset/schema.json +193 -0
  877. dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/README.md +133 -0
  878. dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/component.py +352 -0
  879. dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/example.yaml +11 -0
  880. dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/requirements.txt +1 -0
  881. dagster_community_components-0.1.0/assets/infrastructure/cloudformation_asset/schema.json +176 -0
  882. dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/README.md +35 -0
  883. dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/component.py +333 -0
  884. dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/example.yaml +27 -0
  885. dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/requirements.txt +1 -0
  886. dagster_community_components-0.1.0/assets/infrastructure/coalesce_run_asset/schema.json +20 -0
  887. dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/README.md +100 -0
  888. dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/component.py +403 -0
  889. dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/example.yaml +12 -0
  890. dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/requirements.txt +2 -0
  891. dagster_community_components-0.1.0/assets/infrastructure/community_component_installer/schema.json +61 -0
  892. dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/README.md +181 -0
  893. dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/component.py +360 -0
  894. dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/example.yaml +15 -0
  895. dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/requirements.txt +2 -0
  896. dagster_community_components-0.1.0/assets/infrastructure/hashicorp_vault/schema.json +154 -0
  897. dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/README.md +222 -0
  898. dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/component.py +309 -0
  899. dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/example.yaml +13 -0
  900. dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/requirements.txt +1 -0
  901. dagster_community_components-0.1.0/assets/infrastructure/helm_deploy/schema.json +221 -0
  902. dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/README.md +76 -0
  903. dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/component.py +198 -0
  904. dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/example.yaml +9 -0
  905. dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/requirements.txt +1 -0
  906. dagster_community_components-0.1.0/assets/infrastructure/matillion_run_asset/schema.json +172 -0
  907. dagster_community_components-0.1.0/assets/infrastructure/modal_asset/README.md +169 -0
  908. dagster_community_components-0.1.0/assets/infrastructure/modal_asset/component.py +272 -0
  909. dagster_community_components-0.1.0/assets/infrastructure/modal_asset/example.yaml +11 -0
  910. dagster_community_components-0.1.0/assets/infrastructure/modal_asset/requirements.txt +2 -0
  911. dagster_community_components-0.1.0/assets/infrastructure/modal_asset/schema.json +154 -0
  912. dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/README.md +68 -0
  913. dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/component.py +173 -0
  914. dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/example.yaml +6 -0
  915. dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/requirements.txt +1 -0
  916. dagster_community_components-0.1.0/assets/infrastructure/precisely_run_asset/schema.json +146 -0
  917. dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/README.md +172 -0
  918. dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/component.py +271 -0
  919. dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/example.yaml +8 -0
  920. dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/requirements.txt +1 -0
  921. dagster_community_components-0.1.0/assets/infrastructure/pulumi_asset/schema.json +162 -0
  922. dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/README.md +65 -0
  923. dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/component.py +152 -0
  924. dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/example.yaml +6 -0
  925. dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/requirements.txt +1 -0
  926. dagster_community_components-0.1.0/assets/infrastructure/rivery_run_asset/schema.json +132 -0
  927. dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/README.md +111 -0
  928. dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/component.py +448 -0
  929. dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/example.yaml +7 -0
  930. dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/requirements.txt +1 -0
  931. dagster_community_components-0.1.0/assets/infrastructure/step_functions_asset/schema.json +20 -0
  932. dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/README.md +148 -0
  933. dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/component.py +272 -0
  934. dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/example.yaml +9 -0
  935. dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/requirements.txt +1 -0
  936. dagster_community_components-0.1.0/assets/infrastructure/terraform_asset/schema.json +178 -0
  937. dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/README.md +110 -0
  938. dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/component.py +577 -0
  939. dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/example.yaml +22 -0
  940. dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/requirements.txt +1 -0
  941. dagster_community_components-0.1.0/assets/infrastructure/terraform_cloud_asset/schema.json +20 -0
  942. dagster_community_components-0.1.0/assets/ingestion/DESTINATIONS.md +269 -0
  943. dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/README.md +55 -0
  944. dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/component.py +125 -0
  945. dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/example.yaml +8 -0
  946. dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/requirements.txt +3 -0
  947. dagster_community_components-0.1.0/assets/ingestion/adls_to_database_asset/schema.json +158 -0
  948. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/README.md +101 -0
  949. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/__init__.py +3 -0
  950. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/component.py +321 -0
  951. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/example.yaml +13 -0
  952. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/requirements.txt +2 -0
  953. dagster_community_components-0.1.0/assets/ingestion/airtable_ingestion/schema.json +140 -0
  954. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/README.md +98 -0
  955. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/__init__.py +3 -0
  956. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/component.py +321 -0
  957. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/example.yaml +17 -0
  958. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/requirements.txt +2 -0
  959. dagster_community_components-0.1.0/assets/ingestion/asana_ingestion/schema.json +136 -0
  960. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/README.md +79 -0
  961. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/__init__.py +3 -0
  962. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/component.py +125 -0
  963. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/example.yaml +6 -0
  964. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/requirements.txt +1 -0
  965. dagster_community_components-0.1.0/assets/ingestion/content_ingestion/schema.json +40 -0
  966. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/README.md +277 -0
  967. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/__init__.py +3 -0
  968. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/component.py +304 -0
  969. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/example.yaml +12 -0
  970. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/requirements.txt +2 -0
  971. dagster_community_components-0.1.0/assets/ingestion/csv_file_ingestion/schema.json +168 -0
  972. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/README.md +86 -0
  973. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/__init__.py +3 -0
  974. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/component.py +199 -0
  975. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/example.yaml +9 -0
  976. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/requirements.txt +1 -0
  977. dagster_community_components-0.1.0/assets/ingestion/document_ingestion/schema.json +47 -0
  978. dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/README.md +64 -0
  979. dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/component.py +148 -0
  980. dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/example.yaml +9 -0
  981. dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/requirements.txt +3 -0
  982. dagster_community_components-0.1.0/assets/ingestion/eventhubs_to_database_asset/schema.json +171 -0
  983. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/README.md +109 -0
  984. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/__init__.py +3 -0
  985. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/component.py +365 -0
  986. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/example.yaml +30 -0
  987. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/requirements.txt +2 -0
  988. dagster_community_components-0.1.0/assets/ingestion/facebook_ads_ingestion/schema.json +189 -0
  989. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/README.md +100 -0
  990. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/__init__.py +3 -0
  991. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/component.py +325 -0
  992. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/example.yaml +15 -0
  993. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/requirements.txt +2 -0
  994. dagster_community_components-0.1.0/assets/ingestion/freshdesk_ingestion/schema.json +141 -0
  995. dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/README.md +54 -0
  996. dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/component.py +130 -0
  997. dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/example.yaml +7 -0
  998. dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/requirements.txt +3 -0
  999. dagster_community_components-0.1.0/assets/ingestion/gcs_to_database_asset/schema.json +159 -0
  1000. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/README.md +95 -0
  1001. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/__init__.py +3 -0
  1002. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/component.py +349 -0
  1003. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/example.yaml +22 -0
  1004. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/requirements.txt +2 -0
  1005. dagster_community_components-0.1.0/assets/ingestion/github_ingestion/schema.json +152 -0
  1006. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/README.md +116 -0
  1007. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/__init__.py +3 -0
  1008. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/component.py +371 -0
  1009. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/example.yaml +31 -0
  1010. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/requirements.txt +2 -0
  1011. dagster_community_components-0.1.0/assets/ingestion/google_ads_ingestion/schema.json +209 -0
  1012. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/README.md +115 -0
  1013. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/__init__.py +3 -0
  1014. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/component.py +387 -0
  1015. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/example.yaml +20 -0
  1016. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/requirements.txt +2 -0
  1017. dagster_community_components-0.1.0/assets/ingestion/google_analytics_ingestion/schema.json +219 -0
  1018. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/README.md +100 -0
  1019. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/__init__.py +3 -0
  1020. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/component.py +316 -0
  1021. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/example.yaml +13 -0
  1022. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/requirements.txt +2 -0
  1023. dagster_community_components-0.1.0/assets/ingestion/google_sheets_ingestion/schema.json +142 -0
  1024. dagster_community_components-0.1.0/assets/ingestion/graphql_asset/README.md +153 -0
  1025. dagster_community_components-0.1.0/assets/ingestion/graphql_asset/component.py +287 -0
  1026. dagster_community_components-0.1.0/assets/ingestion/graphql_asset/example.yaml +26 -0
  1027. dagster_community_components-0.1.0/assets/ingestion/graphql_asset/requirements.txt +4 -0
  1028. dagster_community_components-0.1.0/assets/ingestion/graphql_asset/schema.json +19 -0
  1029. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/README.md +100 -0
  1030. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/__init__.py +3 -0
  1031. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/component.py +328 -0
  1032. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/example.yaml +22 -0
  1033. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/requirements.txt +2 -0
  1034. dagster_community_components-0.1.0/assets/ingestion/hubspot_ingestion/schema.json +151 -0
  1035. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/README.md +103 -0
  1036. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/__init__.py +3 -0
  1037. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/component.py +330 -0
  1038. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/example.yaml +18 -0
  1039. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/requirements.txt +2 -0
  1040. dagster_community_components-0.1.0/assets/ingestion/jira_ingestion/schema.json +148 -0
  1041. dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/README.md +56 -0
  1042. dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/component.py +169 -0
  1043. dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/example.yaml +9 -0
  1044. dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/requirements.txt +3 -0
  1045. dagster_community_components-0.1.0/assets/ingestion/kafka_to_database_asset/schema.json +200 -0
  1046. dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/README.md +60 -0
  1047. dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/component.py +176 -0
  1048. dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/example.yaml +8 -0
  1049. dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/requirements.txt +3 -0
  1050. dagster_community_components-0.1.0/assets/ingestion/kinesis_to_database_asset/schema.json +180 -0
  1051. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/README.md +103 -0
  1052. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/__init__.py +3 -0
  1053. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/component.py +515 -0
  1054. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/example.yaml +23 -0
  1055. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/requirements.txt +2 -0
  1056. dagster_community_components-0.1.0/assets/ingestion/linkedin_ads_ingestion/schema.json +167 -0
  1057. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/README.md +103 -0
  1058. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/__init__.py +3 -0
  1059. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/component.py +322 -0
  1060. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/example.yaml +20 -0
  1061. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/requirements.txt +2 -0
  1062. dagster_community_components-0.1.0/assets/ingestion/matomo_ingestion/schema.json +148 -0
  1063. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/README.md +100 -0
  1064. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/__init__.py +3 -0
  1065. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/component.py +315 -0
  1066. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/example.yaml +13 -0
  1067. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/requirements.txt +3 -0
  1068. dagster_community_components-0.1.0/assets/ingestion/mongodb_ingestion/schema.json +140 -0
  1069. dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/README.md +64 -0
  1070. dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/component.py +160 -0
  1071. dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/example.yaml +9 -0
  1072. dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/requirements.txt +3 -0
  1073. dagster_community_components-0.1.0/assets/ingestion/mqtt_to_database_asset/schema.json +201 -0
  1074. dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/README.md +65 -0
  1075. dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/component.py +192 -0
  1076. dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/example.yaml +11 -0
  1077. dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/requirements.txt +3 -0
  1078. dagster_community_components-0.1.0/assets/ingestion/nats_to_database_asset/schema.json +193 -0
  1079. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/README.md +97 -0
  1080. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/__init__.py +3 -0
  1081. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/component.py +311 -0
  1082. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/example.yaml +16 -0
  1083. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/requirements.txt +2 -0
  1084. dagster_community_components-0.1.0/assets/ingestion/notion_ingestion/schema.json +134 -0
  1085. dagster_community_components-0.1.0/assets/ingestion/openapi_asset/README.md +163 -0
  1086. dagster_community_components-0.1.0/assets/ingestion/openapi_asset/component.py +342 -0
  1087. dagster_community_components-0.1.0/assets/ingestion/openapi_asset/example.yaml +12 -0
  1088. dagster_community_components-0.1.0/assets/ingestion/openapi_asset/requirements.txt +4 -0
  1089. dagster_community_components-0.1.0/assets/ingestion/openapi_asset/schema.json +19 -0
  1090. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/README.md +100 -0
  1091. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/__init__.py +3 -0
  1092. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/component.py +325 -0
  1093. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/example.yaml +17 -0
  1094. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/requirements.txt +2 -0
  1095. dagster_community_components-0.1.0/assets/ingestion/personio_ingestion/schema.json +142 -0
  1096. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/README.md +106 -0
  1097. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/__init__.py +3 -0
  1098. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/component.py +549 -0
  1099. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/example.yaml +28 -0
  1100. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/requirements.txt +2 -0
  1101. dagster_community_components-0.1.0/assets/ingestion/pinterest_ads_ingestion/schema.json +189 -0
  1102. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/README.md +97 -0
  1103. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/__init__.py +3 -0
  1104. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/component.py +319 -0
  1105. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/example.yaml +14 -0
  1106. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/requirements.txt +2 -0
  1107. dagster_community_components-0.1.0/assets/ingestion/pipedrive_ingestion/schema.json +136 -0
  1108. dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/README.md +59 -0
  1109. dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/component.py +151 -0
  1110. dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/example.yaml +8 -0
  1111. dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/requirements.txt +3 -0
  1112. dagster_community_components-0.1.0/assets/ingestion/pubsub_to_database_asset/schema.json +172 -0
  1113. dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/README.md +62 -0
  1114. dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/component.py +171 -0
  1115. dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/example.yaml +9 -0
  1116. dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/requirements.txt +3 -0
  1117. dagster_community_components-0.1.0/assets/ingestion/pulsar_to_database_asset/schema.json +187 -0
  1118. dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/README.md +58 -0
  1119. dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/component.py +142 -0
  1120. dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/example.yaml +8 -0
  1121. dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/requirements.txt +3 -0
  1122. dagster_community_components-0.1.0/assets/ingestion/rabbitmq_to_database_asset/schema.json +164 -0
  1123. dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/README.md +60 -0
  1124. dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/component.py +155 -0
  1125. dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/example.yaml +8 -0
  1126. dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/requirements.txt +3 -0
  1127. dagster_community_components-0.1.0/assets/ingestion/redis_streams_to_database_asset/schema.json +179 -0
  1128. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/README.md +381 -0
  1129. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/__init__.py +3 -0
  1130. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/component.py +418 -0
  1131. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/example.yaml +12 -0
  1132. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/requirements.txt +3 -0
  1133. dagster_community_components-0.1.0/assets/ingestion/rest_api_fetcher/schema.json +206 -0
  1134. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/README.md +444 -0
  1135. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/__init__.py +3 -0
  1136. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/component.py +328 -0
  1137. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/example.yaml +16 -0
  1138. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/requirements.txt +4 -0
  1139. dagster_community_components-0.1.0/assets/ingestion/s3_to_database_asset/schema.json +157 -0
  1140. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/README.md +104 -0
  1141. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/__init__.py +3 -0
  1142. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/component.py +336 -0
  1143. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/example.yaml +22 -0
  1144. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/requirements.txt +3 -0
  1145. dagster_community_components-0.1.0/assets/ingestion/salesforce_ingestion/schema.json +149 -0
  1146. dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/README.md +60 -0
  1147. dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/component.py +154 -0
  1148. dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/example.yaml +8 -0
  1149. dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/requirements.txt +3 -0
  1150. dagster_community_components-0.1.0/assets/ingestion/servicebus_to_database_asset/schema.json +180 -0
  1151. dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/README.md +56 -0
  1152. dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/component.py +146 -0
  1153. dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/example.yaml +9 -0
  1154. dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/requirements.txt +3 -0
  1155. dagster_community_components-0.1.0/assets/ingestion/sftp_to_database_asset/schema.json +186 -0
  1156. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/README.md +105 -0
  1157. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/__init__.py +3 -0
  1158. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/component.py +334 -0
  1159. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/example.yaml +21 -0
  1160. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/requirements.txt +2 -0
  1161. dagster_community_components-0.1.0/assets/ingestion/shopify_ingestion/schema.json +598 -0
  1162. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/README.md +97 -0
  1163. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/__init__.py +3 -0
  1164. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/component.py +320 -0
  1165. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/example.yaml +14 -0
  1166. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/requirements.txt +2 -0
  1167. dagster_community_components-0.1.0/assets/ingestion/slack_ingestion/schema.json +136 -0
  1168. dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/README.md +65 -0
  1169. dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/component.py +144 -0
  1170. dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/example.yaml +10 -0
  1171. dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/requirements.txt +2 -0
  1172. dagster_community_components-0.1.0/assets/ingestion/sql_to_database_asset/schema.json +187 -0
  1173. dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/README.md +55 -0
  1174. dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/component.py +157 -0
  1175. dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/example.yaml +8 -0
  1176. dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/requirements.txt +3 -0
  1177. dagster_community_components-0.1.0/assets/ingestion/sqs_to_database_asset/schema.json +187 -0
  1178. dagster_community_components-0.1.0/assets/ingestion/ssh_asset/README.md +195 -0
  1179. dagster_community_components-0.1.0/assets/ingestion/ssh_asset/component.py +288 -0
  1180. dagster_community_components-0.1.0/assets/ingestion/ssh_asset/example.yaml +12 -0
  1181. dagster_community_components-0.1.0/assets/ingestion/ssh_asset/requirements.txt +2 -0
  1182. dagster_community_components-0.1.0/assets/ingestion/ssh_asset/schema.json +190 -0
  1183. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/README.md +103 -0
  1184. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/__init__.py +3 -0
  1185. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/component.py +334 -0
  1186. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/example.yaml +21 -0
  1187. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/requirements.txt +2 -0
  1188. dagster_community_components-0.1.0/assets/ingestion/stripe_ingestion/schema.json +153 -0
  1189. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/README.md +94 -0
  1190. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/__init__.py +3 -0
  1191. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/component.py +353 -0
  1192. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/example.yaml +9 -0
  1193. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/requirements.txt +2 -0
  1194. dagster_community_components-0.1.0/assets/ingestion/support_ticket_ingestion/schema.json +47 -0
  1195. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/README.md +105 -0
  1196. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/__init__.py +3 -0
  1197. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/component.py +548 -0
  1198. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/example.yaml +28 -0
  1199. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/requirements.txt +2 -0
  1200. dagster_community_components-0.1.0/assets/ingestion/tiktok_ads_ingestion/schema.json +189 -0
  1201. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/README.md +116 -0
  1202. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/__init__.py +3 -0
  1203. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/component.py +588 -0
  1204. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/example.yaml +30 -0
  1205. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/requirements.txt +2 -0
  1206. dagster_community_components-0.1.0/assets/ingestion/twitter_ads_ingestion/schema.json +201 -0
  1207. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/README.md +100 -0
  1208. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/__init__.py +3 -0
  1209. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/component.py +324 -0
  1210. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/example.yaml +17 -0
  1211. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/requirements.txt +2 -0
  1212. dagster_community_components-0.1.0/assets/ingestion/workable_ingestion/schema.json +142 -0
  1213. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/README.md +103 -0
  1214. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/__init__.py +3 -0
  1215. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/component.py +332 -0
  1216. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/example.yaml +16 -0
  1217. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/requirements.txt +2 -0
  1218. dagster_community_components-0.1.0/assets/ingestion/zendesk_ingestion/schema.json +148 -0
  1219. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/README.md +64 -0
  1220. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/__init__.py +5 -0
  1221. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/component.py +294 -0
  1222. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/example.yaml +14 -0
  1223. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/requirements.txt +3 -0
  1224. dagster_community_components-0.1.0/assets/sinks/cassandra_writer/schema.json +197 -0
  1225. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/README.md +58 -0
  1226. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/__init__.py +5 -0
  1227. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/component.py +254 -0
  1228. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/example.yaml +10 -0
  1229. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/requirements.txt +3 -0
  1230. dagster_community_components-0.1.0/assets/sinks/cosmosdb_writer/schema.json +181 -0
  1231. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/README.md +58 -0
  1232. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/__init__.py +5 -0
  1233. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/component.py +277 -0
  1234. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/example.yaml +9 -0
  1235. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/requirements.txt +3 -0
  1236. dagster_community_components-0.1.0/assets/sinks/couchdb_writer/schema.json +173 -0
  1237. dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/README.md +81 -0
  1238. dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/component.py +254 -0
  1239. dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/example.yaml +11 -0
  1240. dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/requirements.txt +4 -0
  1241. dagster_community_components-0.1.0/assets/sinks/dataframe_to_adls/schema.json +183 -0
  1242. dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/README.md +73 -0
  1243. dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/component.py +230 -0
  1244. dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/example.yaml +10 -0
  1245. dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/requirements.txt +4 -0
  1246. dagster_community_components-0.1.0/assets/sinks/dataframe_to_bigquery/schema.json +170 -0
  1247. dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/README.md +62 -0
  1248. dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/component.py +210 -0
  1249. dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/example.yaml +13 -0
  1250. dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/requirements.txt +2 -0
  1251. dagster_community_components-0.1.0/assets/sinks/dataframe_to_csv/schema.json +176 -0
  1252. dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/README.md +71 -0
  1253. dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/component.py +249 -0
  1254. dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/example.yaml +13 -0
  1255. dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/requirements.txt +3 -0
  1256. dagster_community_components-0.1.0/assets/sinks/dataframe_to_databricks/schema.json +191 -0
  1257. dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/README.md +69 -0
  1258. dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/component.py +227 -0
  1259. dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/example.yaml +16 -0
  1260. dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/requirements.txt +3 -0
  1261. dagster_community_components-0.1.0/assets/sinks/dataframe_to_excel/schema.json +180 -0
  1262. dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/README.md +77 -0
  1263. dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/component.py +248 -0
  1264. dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/example.yaml +11 -0
  1265. dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/requirements.txt +4 -0
  1266. dagster_community_components-0.1.0/assets/sinks/dataframe_to_gcs/schema.json +177 -0
  1267. dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/README.md +67 -0
  1268. dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/component.py +232 -0
  1269. dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/example.yaml +9 -0
  1270. dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/requirements.txt +2 -0
  1271. dagster_community_components-0.1.0/assets/sinks/dataframe_to_json/schema.json +172 -0
  1272. dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/README.md +59 -0
  1273. dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/component.py +223 -0
  1274. dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/example.yaml +11 -0
  1275. dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/requirements.txt +3 -0
  1276. dagster_community_components-0.1.0/assets/sinks/dataframe_to_parquet/schema.json +169 -0
  1277. dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/README.md +77 -0
  1278. dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/component.py +231 -0
  1279. dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/example.yaml +14 -0
  1280. dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/requirements.txt +4 -0
  1281. dagster_community_components-0.1.0/assets/sinks/dataframe_to_redshift/schema.json +199 -0
  1282. dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/README.md +78 -0
  1283. dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/component.py +262 -0
  1284. dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/example.yaml +14 -0
  1285. dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/requirements.txt +5 -0
  1286. dagster_community_components-0.1.0/assets/sinks/dataframe_to_s3/schema.json +196 -0
  1287. dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/README.md +81 -0
  1288. dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/component.py +255 -0
  1289. dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/example.yaml +15 -0
  1290. dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/requirements.txt +3 -0
  1291. dagster_community_components-0.1.0/assets/sinks/dataframe_to_snowflake/schema.json +206 -0
  1292. dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/README.md +59 -0
  1293. dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/component.py +227 -0
  1294. dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/example.yaml +10 -0
  1295. dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/requirements.txt +3 -0
  1296. dagster_community_components-0.1.0/assets/sinks/dataframe_to_table/schema.json +170 -0
  1297. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/README.md +257 -0
  1298. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/__init__.py +5 -0
  1299. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/component.py +561 -0
  1300. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/example.yaml +13 -0
  1301. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/requirements.txt +2 -0
  1302. dagster_community_components-0.1.0/assets/sinks/dlt_dataframe_writer/schema.json +615 -0
  1303. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/README.md +196 -0
  1304. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/__init__.py +3 -0
  1305. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/component.py +316 -0
  1306. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/example.yaml +9 -0
  1307. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/requirements.txt +2 -0
  1308. dagster_community_components-0.1.0/assets/sinks/duckdb_table_writer/schema.json +159 -0
  1309. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/README.md +59 -0
  1310. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/__init__.py +5 -0
  1311. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/component.py +258 -0
  1312. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/example.yaml +7 -0
  1313. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/requirements.txt +3 -0
  1314. dagster_community_components-0.1.0/assets/sinks/dynamodb_writer/schema.json +164 -0
  1315. dagster_community_components-0.1.0/assets/sinks/firestore_writer/README.md +69 -0
  1316. dagster_community_components-0.1.0/assets/sinks/firestore_writer/__init__.py +5 -0
  1317. dagster_community_components-0.1.0/assets/sinks/firestore_writer/component.py +271 -0
  1318. dagster_community_components-0.1.0/assets/sinks/firestore_writer/example.yaml +10 -0
  1319. dagster_community_components-0.1.0/assets/sinks/firestore_writer/requirements.txt +3 -0
  1320. dagster_community_components-0.1.0/assets/sinks/firestore_writer/schema.json +175 -0
  1321. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/README.md +65 -0
  1322. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/__init__.py +5 -0
  1323. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/component.py +263 -0
  1324. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/example.yaml +9 -0
  1325. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/requirements.txt +3 -0
  1326. dagster_community_components-0.1.0/assets/sinks/mongodb_writer/schema.json +169 -0
  1327. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/README.md +64 -0
  1328. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/__init__.py +5 -0
  1329. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/component.py +275 -0
  1330. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/example.yaml +12 -0
  1331. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/requirements.txt +3 -0
  1332. dagster_community_components-0.1.0/assets/sinks/neo4j_writer/schema.json +189 -0
  1333. dagster_community_components-0.1.0/assets/sinks/polytomic_asset/README.md +100 -0
  1334. dagster_community_components-0.1.0/assets/sinks/polytomic_asset/component.py +519 -0
  1335. dagster_community_components-0.1.0/assets/sinks/polytomic_asset/example.yaml +6 -0
  1336. dagster_community_components-0.1.0/assets/sinks/polytomic_asset/requirements.txt +1 -0
  1337. dagster_community_components-0.1.0/assets/sinks/polytomic_asset/schema.json +24 -0
  1338. dagster_community_components-0.1.0/assets/sinks/redis_writer/README.md +72 -0
  1339. dagster_community_components-0.1.0/assets/sinks/redis_writer/__init__.py +5 -0
  1340. dagster_community_components-0.1.0/assets/sinks/redis_writer/component.py +285 -0
  1341. dagster_community_components-0.1.0/assets/sinks/redis_writer/example.yaml +11 -0
  1342. dagster_community_components-0.1.0/assets/sinks/redis_writer/requirements.txt +3 -0
  1343. dagster_community_components-0.1.0/assets/sinks/redis_writer/schema.json +194 -0
  1344. dagster_community_components-0.1.0/assets/sources/cassandra_reader/README.md +62 -0
  1345. dagster_community_components-0.1.0/assets/sources/cassandra_reader/__init__.py +5 -0
  1346. dagster_community_components-0.1.0/assets/sources/cassandra_reader/component.py +283 -0
  1347. dagster_community_components-0.1.0/assets/sources/cassandra_reader/example.yaml +12 -0
  1348. dagster_community_components-0.1.0/assets/sources/cassandra_reader/requirements.txt +3 -0
  1349. dagster_community_components-0.1.0/assets/sources/cassandra_reader/schema.json +189 -0
  1350. dagster_community_components-0.1.0/assets/sources/chromadb_reader/README.md +64 -0
  1351. dagster_community_components-0.1.0/assets/sources/chromadb_reader/__init__.py +5 -0
  1352. dagster_community_components-0.1.0/assets/sources/chromadb_reader/component.py +323 -0
  1353. dagster_community_components-0.1.0/assets/sources/chromadb_reader/example.yaml +13 -0
  1354. dagster_community_components-0.1.0/assets/sources/chromadb_reader/requirements.txt +3 -0
  1355. dagster_community_components-0.1.0/assets/sources/chromadb_reader/schema.json +207 -0
  1356. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/README.md +54 -0
  1357. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/__init__.py +5 -0
  1358. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/component.py +283 -0
  1359. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/example.yaml +9 -0
  1360. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/requirements.txt +3 -0
  1361. dagster_community_components-0.1.0/assets/sources/cosmosdb_reader/schema.json +184 -0
  1362. dagster_community_components-0.1.0/assets/sources/couchdb_reader/README.md +64 -0
  1363. dagster_community_components-0.1.0/assets/sources/couchdb_reader/__init__.py +5 -0
  1364. dagster_community_components-0.1.0/assets/sources/couchdb_reader/component.py +280 -0
  1365. dagster_community_components-0.1.0/assets/sources/couchdb_reader/example.yaml +14 -0
  1366. dagster_community_components-0.1.0/assets/sources/couchdb_reader/requirements.txt +3 -0
  1367. dagster_community_components-0.1.0/assets/sources/couchdb_reader/schema.json +182 -0
  1368. dagster_community_components-0.1.0/assets/sources/database_query/README.md +153 -0
  1369. dagster_community_components-0.1.0/assets/sources/database_query/__init__.py +3 -0
  1370. dagster_community_components-0.1.0/assets/sources/database_query/component.py +319 -0
  1371. dagster_community_components-0.1.0/assets/sources/database_query/example.yaml +15 -0
  1372. dagster_community_components-0.1.0/assets/sources/database_query/requirements.txt +3 -0
  1373. dagster_community_components-0.1.0/assets/sources/database_query/schema.json +183 -0
  1374. dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/README.md +57 -0
  1375. dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/component.py +247 -0
  1376. dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/example.yaml +15 -0
  1377. dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/requirements.txt +2 -0
  1378. dagster_community_components-0.1.0/assets/sources/dataframe_from_csv/schema.json +187 -0
  1379. dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/README.md +61 -0
  1380. dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/component.py +242 -0
  1381. dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/example.yaml +18 -0
  1382. dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/requirements.txt +3 -0
  1383. dagster_community_components-0.1.0/assets/sources/dataframe_from_sql/schema.json +169 -0
  1384. dagster_community_components-0.1.0/assets/sources/dataframe_from_table/README.md +60 -0
  1385. dagster_community_components-0.1.0/assets/sources/dataframe_from_table/component.py +255 -0
  1386. dagster_community_components-0.1.0/assets/sources/dataframe_from_table/example.yaml +15 -0
  1387. dagster_community_components-0.1.0/assets/sources/dataframe_from_table/requirements.txt +3 -0
  1388. dagster_community_components-0.1.0/assets/sources/dataframe_from_table/schema.json +182 -0
  1389. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/README.md +299 -0
  1390. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/__init__.py +3 -0
  1391. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/component.py +299 -0
  1392. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/example.yaml +13 -0
  1393. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/requirements.txt +2 -0
  1394. dagster_community_components-0.1.0/assets/sources/duckdb_query_reader/schema.json +170 -0
  1395. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/README.md +67 -0
  1396. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/__init__.py +5 -0
  1397. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/component.py +296 -0
  1398. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/example.yaml +7 -0
  1399. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/requirements.txt +3 -0
  1400. dagster_community_components-0.1.0/assets/sources/dynamodb_reader/schema.json +193 -0
  1401. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/README.md +79 -0
  1402. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/__init__.py +5 -0
  1403. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/component.py +322 -0
  1404. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/example.yaml +10 -0
  1405. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/requirements.txt +3 -0
  1406. dagster_community_components-0.1.0/assets/sources/elasticsearch_reader/schema.json +208 -0
  1407. dagster_community_components-0.1.0/assets/sources/firestore_reader/README.md +75 -0
  1408. dagster_community_components-0.1.0/assets/sources/firestore_reader/__init__.py +5 -0
  1409. dagster_community_components-0.1.0/assets/sources/firestore_reader/component.py +294 -0
  1410. dagster_community_components-0.1.0/assets/sources/firestore_reader/example.yaml +13 -0
  1411. dagster_community_components-0.1.0/assets/sources/firestore_reader/requirements.txt +3 -0
  1412. dagster_community_components-0.1.0/assets/sources/firestore_reader/schema.json +188 -0
  1413. dagster_community_components-0.1.0/assets/sources/mongodb_reader/README.md +75 -0
  1414. dagster_community_components-0.1.0/assets/sources/mongodb_reader/__init__.py +5 -0
  1415. dagster_community_components-0.1.0/assets/sources/mongodb_reader/component.py +295 -0
  1416. dagster_community_components-0.1.0/assets/sources/mongodb_reader/example.yaml +12 -0
  1417. dagster_community_components-0.1.0/assets/sources/mongodb_reader/requirements.txt +3 -0
  1418. dagster_community_components-0.1.0/assets/sources/mongodb_reader/schema.json +199 -0
  1419. dagster_community_components-0.1.0/assets/sources/neo4j_reader/README.md +68 -0
  1420. dagster_community_components-0.1.0/assets/sources/neo4j_reader/__init__.py +5 -0
  1421. dagster_community_components-0.1.0/assets/sources/neo4j_reader/component.py +277 -0
  1422. dagster_community_components-0.1.0/assets/sources/neo4j_reader/example.yaml +9 -0
  1423. dagster_community_components-0.1.0/assets/sources/neo4j_reader/requirements.txt +3 -0
  1424. dagster_community_components-0.1.0/assets/sources/neo4j_reader/schema.json +179 -0
  1425. dagster_community_components-0.1.0/assets/sources/pgvector_reader/README.md +68 -0
  1426. dagster_community_components-0.1.0/assets/sources/pgvector_reader/__init__.py +5 -0
  1427. dagster_community_components-0.1.0/assets/sources/pgvector_reader/component.py +328 -0
  1428. dagster_community_components-0.1.0/assets/sources/pgvector_reader/example.yaml +10 -0
  1429. dagster_community_components-0.1.0/assets/sources/pgvector_reader/requirements.txt +6 -0
  1430. dagster_community_components-0.1.0/assets/sources/pgvector_reader/schema.json +210 -0
  1431. dagster_community_components-0.1.0/assets/sources/pinecone_reader/README.md +62 -0
  1432. dagster_community_components-0.1.0/assets/sources/pinecone_reader/__init__.py +5 -0
  1433. dagster_community_components-0.1.0/assets/sources/pinecone_reader/component.py +346 -0
  1434. dagster_community_components-0.1.0/assets/sources/pinecone_reader/example.yaml +8 -0
  1435. dagster_community_components-0.1.0/assets/sources/pinecone_reader/requirements.txt +4 -0
  1436. dagster_community_components-0.1.0/assets/sources/pinecone_reader/schema.json +234 -0
  1437. dagster_community_components-0.1.0/assets/sources/redis_reader/README.md +71 -0
  1438. dagster_community_components-0.1.0/assets/sources/redis_reader/__init__.py +5 -0
  1439. dagster_community_components-0.1.0/assets/sources/redis_reader/component.py +317 -0
  1440. dagster_community_components-0.1.0/assets/sources/redis_reader/example.yaml +10 -0
  1441. dagster_community_components-0.1.0/assets/sources/redis_reader/requirements.txt +3 -0
  1442. dagster_community_components-0.1.0/assets/sources/redis_reader/schema.json +193 -0
  1443. dagster_community_components-0.1.0/assets/sources/wandb_reader/README.md +61 -0
  1444. dagster_community_components-0.1.0/assets/sources/wandb_reader/__init__.py +5 -0
  1445. dagster_community_components-0.1.0/assets/sources/wandb_reader/component.py +309 -0
  1446. dagster_community_components-0.1.0/assets/sources/wandb_reader/example.yaml +10 -0
  1447. dagster_community_components-0.1.0/assets/sources/wandb_reader/requirements.txt +3 -0
  1448. dagster_community_components-0.1.0/assets/sources/wandb_reader/schema.json +186 -0
  1449. dagster_community_components-0.1.0/assets/transforms/address_parser/schema.json +87 -0
  1450. dagster_community_components-0.1.0/assets/transforms/address_standardizer/schema.json +95 -0
  1451. dagster_community_components-0.1.0/assets/transforms/append_fields/README.md +51 -0
  1452. dagster_community_components-0.1.0/assets/transforms/append_fields/component.py +234 -0
  1453. dagster_community_components-0.1.0/assets/transforms/append_fields/example.yaml +10 -0
  1454. dagster_community_components-0.1.0/assets/transforms/append_fields/requirements.txt +2 -0
  1455. dagster_community_components-0.1.0/assets/transforms/append_fields/schema.json +160 -0
  1456. dagster_community_components-0.1.0/assets/transforms/arima_forecast/README.md +59 -0
  1457. dagster_community_components-0.1.0/assets/transforms/arima_forecast/component.py +283 -0
  1458. dagster_community_components-0.1.0/assets/transforms/arima_forecast/example.yaml +13 -0
  1459. dagster_community_components-0.1.0/assets/transforms/arima_forecast/requirements.txt +3 -0
  1460. dagster_community_components-0.1.0/assets/transforms/arima_forecast/schema.json +197 -0
  1461. dagster_community_components-0.1.0/assets/transforms/arrange/README.md +84 -0
  1462. dagster_community_components-0.1.0/assets/transforms/arrange/component.py +264 -0
  1463. dagster_community_components-0.1.0/assets/transforms/arrange/example.yaml +16 -0
  1464. dagster_community_components-0.1.0/assets/transforms/arrange/requirements.txt +2 -0
  1465. dagster_community_components-0.1.0/assets/transforms/arrange/schema.json +183 -0
  1466. dagster_community_components-0.1.0/assets/transforms/array_exploder/README.md +25 -0
  1467. dagster_community_components-0.1.0/assets/transforms/array_exploder/__init__.py +1 -0
  1468. dagster_community_components-0.1.0/assets/transforms/array_exploder/component.py +223 -0
  1469. dagster_community_components-0.1.0/assets/transforms/array_exploder/example.yaml +8 -0
  1470. dagster_community_components-0.1.0/assets/transforms/array_exploder/requirements.txt +2 -0
  1471. dagster_community_components-0.1.0/assets/transforms/array_exploder/schema.json +165 -0
  1472. dagster_community_components-0.1.0/assets/transforms/auto_field/README.md +71 -0
  1473. dagster_community_components-0.1.0/assets/transforms/auto_field/component.py +284 -0
  1474. dagster_community_components-0.1.0/assets/transforms/auto_field/example.yaml +10 -0
  1475. dagster_community_components-0.1.0/assets/transforms/auto_field/requirements.txt +2 -0
  1476. dagster_community_components-0.1.0/assets/transforms/auto_field/schema.json +193 -0
  1477. dagster_community_components-0.1.0/assets/transforms/count_records/README.md +76 -0
  1478. dagster_community_components-0.1.0/assets/transforms/count_records/component.py +259 -0
  1479. dagster_community_components-0.1.0/assets/transforms/count_records/example.yaml +10 -0
  1480. dagster_community_components-0.1.0/assets/transforms/count_records/requirements.txt +2 -0
  1481. dagster_community_components-0.1.0/assets/transforms/count_records/schema.json +169 -0
  1482. dagster_community_components-0.1.0/assets/transforms/create_samples/README.md +68 -0
  1483. dagster_community_components-0.1.0/assets/transforms/create_samples/component.py +270 -0
  1484. dagster_community_components-0.1.0/assets/transforms/create_samples/example.yaml +10 -0
  1485. dagster_community_components-0.1.0/assets/transforms/create_samples/requirements.txt +3 -0
  1486. dagster_community_components-0.1.0/assets/transforms/create_samples/schema.json +178 -0
  1487. dagster_community_components-0.1.0/assets/transforms/cross_tab/README.md +53 -0
  1488. dagster_community_components-0.1.0/assets/transforms/cross_tab/component.py +254 -0
  1489. dagster_community_components-0.1.0/assets/transforms/cross_tab/example.yaml +10 -0
  1490. dagster_community_components-0.1.0/assets/transforms/cross_tab/requirements.txt +2 -0
  1491. dagster_community_components-0.1.0/assets/transforms/cross_tab/schema.json +175 -0
  1492. dagster_community_components-0.1.0/assets/transforms/data_cleansing/README.md +66 -0
  1493. dagster_community_components-0.1.0/assets/transforms/data_cleansing/component.py +286 -0
  1494. dagster_community_components-0.1.0/assets/transforms/data_cleansing/example.yaml +15 -0
  1495. dagster_community_components-0.1.0/assets/transforms/data_cleansing/requirements.txt +2 -0
  1496. dagster_community_components-0.1.0/assets/transforms/data_cleansing/schema.json +191 -0
  1497. dagster_community_components-0.1.0/assets/transforms/dataframe_join/README.md +47 -0
  1498. dagster_community_components-0.1.0/assets/transforms/dataframe_join/component.py +238 -0
  1499. dagster_community_components-0.1.0/assets/transforms/dataframe_join/example.yaml +14 -0
  1500. dagster_community_components-0.1.0/assets/transforms/dataframe_join/requirements.txt +2 -0
  1501. dagster_community_components-0.1.0/assets/transforms/dataframe_join/schema.json +200 -0
  1502. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/README.md +153 -0
  1503. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/__init__.py +3 -0
  1504. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/component.py +706 -0
  1505. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/dataframe_transformer.py +521 -0
  1506. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/example.yaml +15 -0
  1507. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/requirements.txt +2 -0
  1508. dagster_community_components-0.1.0/assets/transforms/dataframe_transformer/schema.json +283 -0
  1509. dagster_community_components-0.1.0/assets/transforms/dataframe_union/README.md +41 -0
  1510. dagster_community_components-0.1.0/assets/transforms/dataframe_union/component.py +224 -0
  1511. dagster_community_components-0.1.0/assets/transforms/dataframe_union/example.yaml +11 -0
  1512. dagster_community_components-0.1.0/assets/transforms/dataframe_union/requirements.txt +2 -0
  1513. dagster_community_components-0.1.0/assets/transforms/dataframe_union/schema.json +162 -0
  1514. dagster_community_components-0.1.0/assets/transforms/datetime_parser/README.md +50 -0
  1515. dagster_community_components-0.1.0/assets/transforms/datetime_parser/component.py +262 -0
  1516. dagster_community_components-0.1.0/assets/transforms/datetime_parser/example.yaml +11 -0
  1517. dagster_community_components-0.1.0/assets/transforms/datetime_parser/requirements.txt +2 -0
  1518. dagster_community_components-0.1.0/assets/transforms/datetime_parser/schema.json +185 -0
  1519. dagster_community_components-0.1.0/assets/transforms/document_merger/README.md +29 -0
  1520. dagster_community_components-0.1.0/assets/transforms/document_merger/__init__.py +1 -0
  1521. dagster_community_components-0.1.0/assets/transforms/document_merger/component.py +270 -0
  1522. dagster_community_components-0.1.0/assets/transforms/document_merger/example.yaml +12 -0
  1523. dagster_community_components-0.1.0/assets/transforms/document_merger/requirements.txt +2 -0
  1524. dagster_community_components-0.1.0/assets/transforms/document_merger/schema.json +192 -0
  1525. dagster_community_components-0.1.0/assets/transforms/email_parser/README.md +27 -0
  1526. dagster_community_components-0.1.0/assets/transforms/email_parser/__init__.py +1 -0
  1527. dagster_community_components-0.1.0/assets/transforms/email_parser/component.py +277 -0
  1528. dagster_community_components-0.1.0/assets/transforms/email_parser/example.yaml +14 -0
  1529. dagster_community_components-0.1.0/assets/transforms/email_parser/requirements.txt +2 -0
  1530. dagster_community_components-0.1.0/assets/transforms/email_parser/schema.json +182 -0
  1531. dagster_community_components-0.1.0/assets/transforms/ets_forecast/README.md +62 -0
  1532. dagster_community_components-0.1.0/assets/transforms/ets_forecast/component.py +275 -0
  1533. dagster_community_components-0.1.0/assets/transforms/ets_forecast/example.yaml +14 -0
  1534. dagster_community_components-0.1.0/assets/transforms/ets_forecast/requirements.txt +3 -0
  1535. dagster_community_components-0.1.0/assets/transforms/ets_forecast/schema.json +198 -0
  1536. dagster_community_components-0.1.0/assets/transforms/feature_scaler/README.md +52 -0
  1537. dagster_community_components-0.1.0/assets/transforms/feature_scaler/component.py +251 -0
  1538. dagster_community_components-0.1.0/assets/transforms/feature_scaler/example.yaml +11 -0
  1539. dagster_community_components-0.1.0/assets/transforms/feature_scaler/requirements.txt +3 -0
  1540. dagster_community_components-0.1.0/assets/transforms/feature_scaler/schema.json +187 -0
  1541. dagster_community_components-0.1.0/assets/transforms/field_mapper/README.md +28 -0
  1542. dagster_community_components-0.1.0/assets/transforms/field_mapper/__init__.py +1 -0
  1543. dagster_community_components-0.1.0/assets/transforms/field_mapper/component.py +233 -0
  1544. dagster_community_components-0.1.0/assets/transforms/field_mapper/example.yaml +14 -0
  1545. dagster_community_components-0.1.0/assets/transforms/field_mapper/requirements.txt +2 -0
  1546. dagster_community_components-0.1.0/assets/transforms/field_mapper/schema.json +170 -0
  1547. dagster_community_components-0.1.0/assets/transforms/file_transformer/README.md +148 -0
  1548. dagster_community_components-0.1.0/assets/transforms/file_transformer/__init__.py +3 -0
  1549. dagster_community_components-0.1.0/assets/transforms/file_transformer/component.py +444 -0
  1550. dagster_community_components-0.1.0/assets/transforms/file_transformer/example.yaml +10 -0
  1551. dagster_community_components-0.1.0/assets/transforms/file_transformer/requirements.txt +3 -0
  1552. dagster_community_components-0.1.0/assets/transforms/file_transformer/schema.json +243 -0
  1553. dagster_community_components-0.1.0/assets/transforms/filter/README.md +78 -0
  1554. dagster_community_components-0.1.0/assets/transforms/filter/component.py +238 -0
  1555. dagster_community_components-0.1.0/assets/transforms/filter/example.yaml +7 -0
  1556. dagster_community_components-0.1.0/assets/transforms/filter/requirements.txt +2 -0
  1557. dagster_community_components-0.1.0/assets/transforms/filter/schema.json +157 -0
  1558. dagster_community_components-0.1.0/assets/transforms/find_replace/README.md +44 -0
  1559. dagster_community_components-0.1.0/assets/transforms/find_replace/component.py +246 -0
  1560. dagster_community_components-0.1.0/assets/transforms/find_replace/example.yaml +11 -0
  1561. dagster_community_components-0.1.0/assets/transforms/find_replace/requirements.txt +2 -0
  1562. dagster_community_components-0.1.0/assets/transforms/find_replace/schema.json +181 -0
  1563. dagster_community_components-0.1.0/assets/transforms/formula/README.md +56 -0
  1564. dagster_community_components-0.1.0/assets/transforms/formula/component.py +253 -0
  1565. dagster_community_components-0.1.0/assets/transforms/formula/example.yaml +11 -0
  1566. dagster_community_components-0.1.0/assets/transforms/formula/requirements.txt +2 -0
  1567. dagster_community_components-0.1.0/assets/transforms/formula/schema.json +160 -0
  1568. dagster_community_components-0.1.0/assets/transforms/fuzzy_match/README.md +45 -0
  1569. dagster_community_components-0.1.0/assets/transforms/fuzzy_match/component.py +293 -0
  1570. dagster_community_components-0.1.0/assets/transforms/fuzzy_match/example.yaml +10 -0
  1571. dagster_community_components-0.1.0/assets/transforms/fuzzy_match/requirements.txt +2 -0
  1572. dagster_community_components-0.1.0/assets/transforms/fuzzy_match/schema.json +177 -0
  1573. dagster_community_components-0.1.0/assets/transforms/generate_rows/README.md +78 -0
  1574. dagster_community_components-0.1.0/assets/transforms/generate_rows/component.py +262 -0
  1575. dagster_community_components-0.1.0/assets/transforms/generate_rows/example.yaml +12 -0
  1576. dagster_community_components-0.1.0/assets/transforms/generate_rows/requirements.txt +2 -0
  1577. dagster_community_components-0.1.0/assets/transforms/generate_rows/schema.json +176 -0
  1578. dagster_community_components-0.1.0/assets/transforms/html_parser/README.md +27 -0
  1579. dagster_community_components-0.1.0/assets/transforms/html_parser/__init__.py +1 -0
  1580. dagster_community_components-0.1.0/assets/transforms/html_parser/component.py +271 -0
  1581. dagster_community_components-0.1.0/assets/transforms/html_parser/example.yaml +11 -0
  1582. dagster_community_components-0.1.0/assets/transforms/html_parser/requirements.txt +3 -0
  1583. dagster_community_components-0.1.0/assets/transforms/html_parser/schema.json +189 -0
  1584. dagster_community_components-0.1.0/assets/transforms/imputation/README.md +61 -0
  1585. dagster_community_components-0.1.0/assets/transforms/imputation/component.py +295 -0
  1586. dagster_community_components-0.1.0/assets/transforms/imputation/example.yaml +11 -0
  1587. dagster_community_components-0.1.0/assets/transforms/imputation/requirements.txt +2 -0
  1588. dagster_community_components-0.1.0/assets/transforms/imputation/schema.json +174 -0
  1589. dagster_community_components-0.1.0/assets/transforms/json_flatten/README.md +27 -0
  1590. dagster_community_components-0.1.0/assets/transforms/json_flatten/__init__.py +1 -0
  1591. dagster_community_components-0.1.0/assets/transforms/json_flatten/component.py +256 -0
  1592. dagster_community_components-0.1.0/assets/transforms/json_flatten/example.yaml +9 -0
  1593. dagster_community_components-0.1.0/assets/transforms/json_flatten/requirements.txt +2 -0
  1594. dagster_community_components-0.1.0/assets/transforms/json_flatten/schema.json +173 -0
  1595. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/README.md +28 -0
  1596. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/__init__.py +1 -0
  1597. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/component.py +256 -0
  1598. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/example.yaml +11 -0
  1599. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/requirements.txt +3 -0
  1600. dagster_community_components-0.1.0/assets/transforms/json_path_extractor/schema.json +166 -0
  1601. dagster_community_components-0.1.0/assets/transforms/label_encoder/README.md +53 -0
  1602. dagster_community_components-0.1.0/assets/transforms/label_encoder/component.py +233 -0
  1603. dagster_community_components-0.1.0/assets/transforms/label_encoder/example.yaml +12 -0
  1604. dagster_community_components-0.1.0/assets/transforms/label_encoder/requirements.txt +2 -0
  1605. dagster_community_components-0.1.0/assets/transforms/label_encoder/schema.json +104 -0
  1606. dagster_community_components-0.1.0/assets/transforms/make_columns/README.md +87 -0
  1607. dagster_community_components-0.1.0/assets/transforms/make_columns/component.py +255 -0
  1608. dagster_community_components-0.1.0/assets/transforms/make_columns/example.yaml +9 -0
  1609. dagster_community_components-0.1.0/assets/transforms/make_columns/requirements.txt +2 -0
  1610. dagster_community_components-0.1.0/assets/transforms/make_columns/schema.json +170 -0
  1611. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/README.md +25 -0
  1612. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/__init__.py +1 -0
  1613. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/component.py +294 -0
  1614. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/example.yaml +10 -0
  1615. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/requirements.txt +4 -0
  1616. dagster_community_components-0.1.0/assets/transforms/markdown_stripper/schema.json +175 -0
  1617. dagster_community_components-0.1.0/assets/transforms/multi_field_formula/README.md +77 -0
  1618. dagster_community_components-0.1.0/assets/transforms/multi_field_formula/component.py +261 -0
  1619. dagster_community_components-0.1.0/assets/transforms/multi_field_formula/example.yaml +11 -0
  1620. dagster_community_components-0.1.0/assets/transforms/multi_field_formula/requirements.txt +3 -0
  1621. dagster_community_components-0.1.0/assets/transforms/multi_field_formula/schema.json +175 -0
  1622. dagster_community_components-0.1.0/assets/transforms/multi_row_formula/README.md +79 -0
  1623. dagster_community_components-0.1.0/assets/transforms/multi_row_formula/component.py +299 -0
  1624. dagster_community_components-0.1.0/assets/transforms/multi_row_formula/example.yaml +25 -0
  1625. dagster_community_components-0.1.0/assets/transforms/multi_row_formula/requirements.txt +2 -0
  1626. dagster_community_components-0.1.0/assets/transforms/multi_row_formula/schema.json +172 -0
  1627. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/README.md +29 -0
  1628. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/__init__.py +1 -0
  1629. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/component.py +256 -0
  1630. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/example.yaml +12 -0
  1631. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/requirements.txt +2 -0
  1632. dagster_community_components-0.1.0/assets/transforms/nested_field_extractor/schema.json +173 -0
  1633. dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/README.md +72 -0
  1634. dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/component.py +319 -0
  1635. dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/example.yaml +14 -0
  1636. dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/requirements.txt +2 -0
  1637. dagster_community_components-0.1.0/assets/transforms/one_hot_encoding/schema.json +209 -0
  1638. dagster_community_components-0.1.0/assets/transforms/outlier_clipper/README.md +70 -0
  1639. dagster_community_components-0.1.0/assets/transforms/outlier_clipper/component.py +270 -0
  1640. dagster_community_components-0.1.0/assets/transforms/outlier_clipper/example.yaml +11 -0
  1641. dagster_community_components-0.1.0/assets/transforms/outlier_clipper/requirements.txt +2 -0
  1642. dagster_community_components-0.1.0/assets/transforms/outlier_clipper/schema.json +80 -0
  1643. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/README.md +27 -0
  1644. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/__init__.py +1 -0
  1645. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/component.py +289 -0
  1646. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/example.yaml +9 -0
  1647. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/requirements.txt +3 -0
  1648. dagster_community_components-0.1.0/assets/transforms/pdf_text_extractor/schema.json +172 -0
  1649. dagster_community_components-0.1.0/assets/transforms/rank/README.md +60 -0
  1650. dagster_community_components-0.1.0/assets/transforms/rank/component.py +277 -0
  1651. dagster_community_components-0.1.0/assets/transforms/rank/example.yaml +12 -0
  1652. dagster_community_components-0.1.0/assets/transforms/rank/requirements.txt +2 -0
  1653. dagster_community_components-0.1.0/assets/transforms/rank/schema.json +189 -0
  1654. dagster_community_components-0.1.0/assets/transforms/record_id/README.md +54 -0
  1655. dagster_community_components-0.1.0/assets/transforms/record_id/component.py +275 -0
  1656. dagster_community_components-0.1.0/assets/transforms/record_id/example.yaml +11 -0
  1657. dagster_community_components-0.1.0/assets/transforms/record_id/requirements.txt +2 -0
  1658. dagster_community_components-0.1.0/assets/transforms/record_id/schema.json +196 -0
  1659. dagster_community_components-0.1.0/assets/transforms/regex_parser/README.md +49 -0
  1660. dagster_community_components-0.1.0/assets/transforms/regex_parser/component.py +257 -0
  1661. dagster_community_components-0.1.0/assets/transforms/regex_parser/example.yaml +15 -0
  1662. dagster_community_components-0.1.0/assets/transforms/regex_parser/requirements.txt +2 -0
  1663. dagster_community_components-0.1.0/assets/transforms/regex_parser/schema.json +194 -0
  1664. dagster_community_components-0.1.0/assets/transforms/running_total/README.md +56 -0
  1665. dagster_community_components-0.1.0/assets/transforms/running_total/component.py +295 -0
  1666. dagster_community_components-0.1.0/assets/transforms/running_total/example.yaml +12 -0
  1667. dagster_community_components-0.1.0/assets/transforms/running_total/requirements.txt +2 -0
  1668. dagster_community_components-0.1.0/assets/transforms/running_total/schema.json +189 -0
  1669. dagster_community_components-0.1.0/assets/transforms/sample/README.md +70 -0
  1670. dagster_community_components-0.1.0/assets/transforms/sample/component.py +256 -0
  1671. dagster_community_components-0.1.0/assets/transforms/sample/example.yaml +8 -0
  1672. dagster_community_components-0.1.0/assets/transforms/sample/requirements.txt +2 -0
  1673. dagster_community_components-0.1.0/assets/transforms/sample/schema.json +178 -0
  1674. dagster_community_components-0.1.0/assets/transforms/schema_validator/README.md +32 -0
  1675. dagster_community_components-0.1.0/assets/transforms/schema_validator/__init__.py +1 -0
  1676. dagster_community_components-0.1.0/assets/transforms/schema_validator/component.py +272 -0
  1677. dagster_community_components-0.1.0/assets/transforms/schema_validator/example.yaml +25 -0
  1678. dagster_community_components-0.1.0/assets/transforms/schema_validator/requirements.txt +3 -0
  1679. dagster_community_components-0.1.0/assets/transforms/schema_validator/schema.json +183 -0
  1680. dagster_community_components-0.1.0/assets/transforms/select_columns/README.md +70 -0
  1681. dagster_community_components-0.1.0/assets/transforms/select_columns/component.py +256 -0
  1682. dagster_community_components-0.1.0/assets/transforms/select_columns/example.yaml +17 -0
  1683. dagster_community_components-0.1.0/assets/transforms/select_columns/requirements.txt +2 -0
  1684. dagster_community_components-0.1.0/assets/transforms/select_columns/schema.json +181 -0
  1685. dagster_community_components-0.1.0/assets/transforms/sort/README.md +72 -0
  1686. dagster_community_components-0.1.0/assets/transforms/sort/component.py +239 -0
  1687. dagster_community_components-0.1.0/assets/transforms/sort/example.yaml +11 -0
  1688. dagster_community_components-0.1.0/assets/transforms/sort/requirements.txt +2 -0
  1689. dagster_community_components-0.1.0/assets/transforms/sort/schema.json +186 -0
  1690. dagster_community_components-0.1.0/assets/transforms/summarize/README.md +61 -0
  1691. dagster_community_components-0.1.0/assets/transforms/summarize/component.py +248 -0
  1692. dagster_community_components-0.1.0/assets/transforms/summarize/example.yaml +14 -0
  1693. dagster_community_components-0.1.0/assets/transforms/summarize/requirements.txt +2 -0
  1694. dagster_community_components-0.1.0/assets/transforms/summarize/schema.json +159 -0
  1695. dagster_community_components-0.1.0/assets/transforms/text_to_columns/README.md +47 -0
  1696. dagster_community_components-0.1.0/assets/transforms/text_to_columns/component.py +260 -0
  1697. dagster_community_components-0.1.0/assets/transforms/text_to_columns/example.yaml +15 -0
  1698. dagster_community_components-0.1.0/assets/transforms/text_to_columns/requirements.txt +2 -0
  1699. dagster_community_components-0.1.0/assets/transforms/text_to_columns/schema.json +190 -0
  1700. dagster_community_components-0.1.0/assets/transforms/tile_binning/README.md +63 -0
  1701. dagster_community_components-0.1.0/assets/transforms/tile_binning/component.py +279 -0
  1702. dagster_community_components-0.1.0/assets/transforms/tile_binning/example.yaml +16 -0
  1703. dagster_community_components-0.1.0/assets/transforms/tile_binning/requirements.txt +2 -0
  1704. dagster_community_components-0.1.0/assets/transforms/tile_binning/schema.json +200 -0
  1705. dagster_community_components-0.1.0/assets/transforms/train_test_splitter/README.md +95 -0
  1706. dagster_community_components-0.1.0/assets/transforms/train_test_splitter/component.py +254 -0
  1707. dagster_community_components-0.1.0/assets/transforms/train_test_splitter/example.yaml +10 -0
  1708. dagster_community_components-0.1.0/assets/transforms/train_test_splitter/requirements.txt +2 -0
  1709. dagster_community_components-0.1.0/assets/transforms/train_test_splitter/schema.json +61 -0
  1710. dagster_community_components-0.1.0/assets/transforms/transpose/README.md +47 -0
  1711. dagster_community_components-0.1.0/assets/transforms/transpose/component.py +250 -0
  1712. dagster_community_components-0.1.0/assets/transforms/transpose/example.yaml +7 -0
  1713. dagster_community_components-0.1.0/assets/transforms/transpose/requirements.txt +2 -0
  1714. dagster_community_components-0.1.0/assets/transforms/transpose/schema.json +156 -0
  1715. dagster_community_components-0.1.0/assets/transforms/ts_filler/README.md +62 -0
  1716. dagster_community_components-0.1.0/assets/transforms/ts_filler/component.py +261 -0
  1717. dagster_community_components-0.1.0/assets/transforms/ts_filler/example.yaml +15 -0
  1718. dagster_community_components-0.1.0/assets/transforms/ts_filler/requirements.txt +2 -0
  1719. dagster_community_components-0.1.0/assets/transforms/ts_filler/schema.json +184 -0
  1720. dagster_community_components-0.1.0/assets/transforms/type_coercer/README.md +29 -0
  1721. dagster_community_components-0.1.0/assets/transforms/type_coercer/__init__.py +1 -0
  1722. dagster_community_components-0.1.0/assets/transforms/type_coercer/component.py +288 -0
  1723. dagster_community_components-0.1.0/assets/transforms/type_coercer/example.yaml +13 -0
  1724. dagster_community_components-0.1.0/assets/transforms/type_coercer/requirements.txt +2 -0
  1725. dagster_community_components-0.1.0/assets/transforms/type_coercer/schema.json +172 -0
  1726. dagster_community_components-0.1.0/assets/transforms/unique_dedup/README.md +64 -0
  1727. dagster_community_components-0.1.0/assets/transforms/unique_dedup/component.py +275 -0
  1728. dagster_community_components-0.1.0/assets/transforms/unique_dedup/example.yaml +11 -0
  1729. dagster_community_components-0.1.0/assets/transforms/unique_dedup/requirements.txt +2 -0
  1730. dagster_community_components-0.1.0/assets/transforms/unique_dedup/schema.json +175 -0
  1731. dagster_community_components-0.1.0/assets/transforms/weighted_average/README.md +58 -0
  1732. dagster_community_components-0.1.0/assets/transforms/weighted_average/component.py +260 -0
  1733. dagster_community_components-0.1.0/assets/transforms/weighted_average/example.yaml +11 -0
  1734. dagster_community_components-0.1.0/assets/transforms/weighted_average/requirements.txt +2 -0
  1735. dagster_community_components-0.1.0/assets/transforms/weighted_average/schema.json +173 -0
  1736. dagster_community_components-0.1.0/assets/transforms/xml_parser/README.md +51 -0
  1737. dagster_community_components-0.1.0/assets/transforms/xml_parser/component.py +245 -0
  1738. dagster_community_components-0.1.0/assets/transforms/xml_parser/example.yaml +11 -0
  1739. dagster_community_components-0.1.0/assets/transforms/xml_parser/requirements.txt +3 -0
  1740. dagster_community_components-0.1.0/assets/transforms/xml_parser/schema.json +164 -0
  1741. dagster_community_components-0.1.0/dagster_community_components/__init__.py +582 -0
  1742. dagster_community_components-0.1.0/external_assets/external_adls_asset/README.md +63 -0
  1743. dagster_community_components-0.1.0/external_assets/external_adls_asset/component.py +28 -0
  1744. dagster_community_components-0.1.0/external_assets/external_adls_asset/example.yaml +7 -0
  1745. dagster_community_components-0.1.0/external_assets/external_adls_asset/requirements.txt +1 -0
  1746. dagster_community_components-0.1.0/external_assets/external_adls_asset/schema.json +60 -0
  1747. dagster_community_components-0.1.0/external_assets/external_bigquery_table/README.md +63 -0
  1748. dagster_community_components-0.1.0/external_assets/external_bigquery_table/component.py +29 -0
  1749. dagster_community_components-0.1.0/external_assets/external_bigquery_table/example.yaml +7 -0
  1750. dagster_community_components-0.1.0/external_assets/external_bigquery_table/requirements.txt +1 -0
  1751. dagster_community_components-0.1.0/external_assets/external_bigquery_table/schema.json +59 -0
  1752. dagster_community_components-0.1.0/external_assets/external_clickhouse_table/README.md +37 -0
  1753. dagster_community_components-0.1.0/external_assets/external_clickhouse_table/component.py +90 -0
  1754. dagster_community_components-0.1.0/external_assets/external_clickhouse_table/example.yaml +8 -0
  1755. dagster_community_components-0.1.0/external_assets/external_clickhouse_table/requirements.txt +1 -0
  1756. dagster_community_components-0.1.0/external_assets/external_clickhouse_table/schema.json +117 -0
  1757. dagster_community_components-0.1.0/external_assets/external_databricks_table/README.md +65 -0
  1758. dagster_community_components-0.1.0/external_assets/external_databricks_table/component.py +32 -0
  1759. dagster_community_components-0.1.0/external_assets/external_databricks_table/example.yaml +8 -0
  1760. dagster_community_components-0.1.0/external_assets/external_databricks_table/requirements.txt +1 -0
  1761. dagster_community_components-0.1.0/external_assets/external_databricks_table/schema.json +66 -0
  1762. dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/README.md +61 -0
  1763. dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/component.py +25 -0
  1764. dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/example.yaml +5 -0
  1765. dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/requirements.txt +1 -0
  1766. dagster_community_components-0.1.0/external_assets/external_eventhubs_asset/schema.json +53 -0
  1767. dagster_community_components-0.1.0/external_assets/external_gcs_asset/README.md +61 -0
  1768. dagster_community_components-0.1.0/external_assets/external_gcs_asset/component.py +28 -0
  1769. dagster_community_components-0.1.0/external_assets/external_gcs_asset/example.yaml +6 -0
  1770. dagster_community_components-0.1.0/external_assets/external_gcs_asset/requirements.txt +1 -0
  1771. dagster_community_components-0.1.0/external_assets/external_gcs_asset/schema.json +61 -0
  1772. dagster_community_components-0.1.0/external_assets/external_kafka_asset/README.md +61 -0
  1773. dagster_community_components-0.1.0/external_assets/external_kafka_asset/component.py +25 -0
  1774. dagster_community_components-0.1.0/external_assets/external_kafka_asset/example.yaml +6 -0
  1775. dagster_community_components-0.1.0/external_assets/external_kafka_asset/requirements.txt +1 -0
  1776. dagster_community_components-0.1.0/external_assets/external_kafka_asset/schema.json +53 -0
  1777. dagster_community_components-0.1.0/external_assets/external_kinesis_asset/README.md +59 -0
  1778. dagster_community_components-0.1.0/external_assets/external_kinesis_asset/component.py +25 -0
  1779. dagster_community_components-0.1.0/external_assets/external_kinesis_asset/example.yaml +5 -0
  1780. dagster_community_components-0.1.0/external_assets/external_kinesis_asset/requirements.txt +1 -0
  1781. dagster_community_components-0.1.0/external_assets/external_kinesis_asset/schema.json +54 -0
  1782. dagster_community_components-0.1.0/external_assets/external_mqtt_asset/README.md +63 -0
  1783. dagster_community_components-0.1.0/external_assets/external_mqtt_asset/component.py +27 -0
  1784. dagster_community_components-0.1.0/external_assets/external_mqtt_asset/example.yaml +5 -0
  1785. dagster_community_components-0.1.0/external_assets/external_mqtt_asset/requirements.txt +1 -0
  1786. dagster_community_components-0.1.0/external_assets/external_mqtt_asset/schema.json +60 -0
  1787. dagster_community_components-0.1.0/external_assets/external_nats_asset/README.md +61 -0
  1788. dagster_community_components-0.1.0/external_assets/external_nats_asset/component.py +25 -0
  1789. dagster_community_components-0.1.0/external_assets/external_nats_asset/example.yaml +5 -0
  1790. dagster_community_components-0.1.0/external_assets/external_nats_asset/requirements.txt +1 -0
  1791. dagster_community_components-0.1.0/external_assets/external_nats_asset/schema.json +53 -0
  1792. dagster_community_components-0.1.0/external_assets/external_pubsub_asset/README.md +61 -0
  1793. dagster_community_components-0.1.0/external_assets/external_pubsub_asset/component.py +26 -0
  1794. dagster_community_components-0.1.0/external_assets/external_pubsub_asset/example.yaml +6 -0
  1795. dagster_community_components-0.1.0/external_assets/external_pubsub_asset/requirements.txt +1 -0
  1796. dagster_community_components-0.1.0/external_assets/external_pubsub_asset/schema.json +53 -0
  1797. dagster_community_components-0.1.0/external_assets/external_pulsar_asset/README.md +61 -0
  1798. dagster_community_components-0.1.0/external_assets/external_pulsar_asset/component.py +25 -0
  1799. dagster_community_components-0.1.0/external_assets/external_pulsar_asset/example.yaml +5 -0
  1800. dagster_community_components-0.1.0/external_assets/external_pulsar_asset/requirements.txt +1 -0
  1801. dagster_community_components-0.1.0/external_assets/external_pulsar_asset/schema.json +53 -0
  1802. dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/README.md +63 -0
  1803. dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/component.py +27 -0
  1804. dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/example.yaml +5 -0
  1805. dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/requirements.txt +1 -0
  1806. dagster_community_components-0.1.0/external_assets/external_rabbitmq_asset/schema.json +60 -0
  1807. dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/README.md +61 -0
  1808. dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/component.py +27 -0
  1809. dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/example.yaml +5 -0
  1810. dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/requirements.txt +1 -0
  1811. dagster_community_components-0.1.0/external_assets/external_redis_stream_asset/schema.json +62 -0
  1812. dagster_community_components-0.1.0/external_assets/external_s3_asset/README.md +61 -0
  1813. dagster_community_components-0.1.0/external_assets/external_s3_asset/component.py +28 -0
  1814. dagster_community_components-0.1.0/external_assets/external_s3_asset/example.yaml +7 -0
  1815. dagster_community_components-0.1.0/external_assets/external_s3_asset/requirements.txt +1 -0
  1816. dagster_community_components-0.1.0/external_assets/external_s3_asset/schema.json +60 -0
  1817. dagster_community_components-0.1.0/external_assets/external_servicebus_asset/README.md +61 -0
  1818. dagster_community_components-0.1.0/external_assets/external_servicebus_asset/component.py +28 -0
  1819. dagster_community_components-0.1.0/external_assets/external_servicebus_asset/example.yaml +5 -0
  1820. dagster_community_components-0.1.0/external_assets/external_servicebus_asset/requirements.txt +1 -0
  1821. dagster_community_components-0.1.0/external_assets/external_servicebus_asset/schema.json +61 -0
  1822. dagster_community_components-0.1.0/external_assets/external_sftp_path/README.md +61 -0
  1823. dagster_community_components-0.1.0/external_assets/external_sftp_path/component.py +27 -0
  1824. dagster_community_components-0.1.0/external_assets/external_sftp_path/example.yaml +5 -0
  1825. dagster_community_components-0.1.0/external_assets/external_sftp_path/requirements.txt +1 -0
  1826. dagster_community_components-0.1.0/external_assets/external_sftp_path/schema.json +53 -0
  1827. dagster_community_components-0.1.0/external_assets/external_sharepoint_library/README.md +61 -0
  1828. dagster_community_components-0.1.0/external_assets/external_sharepoint_library/component.py +26 -0
  1829. dagster_community_components-0.1.0/external_assets/external_sharepoint_library/example.yaml +5 -0
  1830. dagster_community_components-0.1.0/external_assets/external_sharepoint_library/requirements.txt +1 -0
  1831. dagster_community_components-0.1.0/external_assets/external_sharepoint_library/schema.json +53 -0
  1832. dagster_community_components-0.1.0/external_assets/external_snowflake_table/README.md +65 -0
  1833. dagster_community_components-0.1.0/external_assets/external_snowflake_table/component.py +44 -0
  1834. dagster_community_components-0.1.0/external_assets/external_snowflake_table/example.yaml +8 -0
  1835. dagster_community_components-0.1.0/external_assets/external_snowflake_table/requirements.txt +1 -0
  1836. dagster_community_components-0.1.0/external_assets/external_snowflake_table/schema.json +65 -0
  1837. dagster_community_components-0.1.0/external_assets/external_sql_asset/README.md +61 -0
  1838. dagster_community_components-0.1.0/external_assets/external_sql_asset/component.py +25 -0
  1839. dagster_community_components-0.1.0/external_assets/external_sql_asset/example.yaml +6 -0
  1840. dagster_community_components-0.1.0/external_assets/external_sql_asset/requirements.txt +1 -0
  1841. dagster_community_components-0.1.0/external_assets/external_sql_asset/schema.json +53 -0
  1842. dagster_community_components-0.1.0/external_assets/external_sqs_asset/README.md +59 -0
  1843. dagster_community_components-0.1.0/external_assets/external_sqs_asset/component.py +26 -0
  1844. dagster_community_components-0.1.0/external_assets/external_sqs_asset/example.yaml +5 -0
  1845. dagster_community_components-0.1.0/external_assets/external_sqs_asset/requirements.txt +1 -0
  1846. dagster_community_components-0.1.0/external_assets/external_sqs_asset/schema.json +54 -0
  1847. dagster_community_components-0.1.0/integrations/aws_dms/README.md +209 -0
  1848. dagster_community_components-0.1.0/integrations/aws_dms/__init__.py +5 -0
  1849. dagster_community_components-0.1.0/integrations/aws_dms/component.py +459 -0
  1850. dagster_community_components-0.1.0/integrations/aws_dms/example.yaml +58 -0
  1851. dagster_community_components-0.1.0/integrations/aws_dms/manifest.yaml +5 -0
  1852. dagster_community_components-0.1.0/integrations/aws_dms/requirements.txt +2 -0
  1853. dagster_community_components-0.1.0/integrations/aws_dms/schema.json +123 -0
  1854. dagster_community_components-0.1.0/integrations/aws_glue/README.md +181 -0
  1855. dagster_community_components-0.1.0/integrations/aws_glue/__init__.py +3 -0
  1856. dagster_community_components-0.1.0/integrations/aws_glue/component.py +1062 -0
  1857. dagster_community_components-0.1.0/integrations/aws_glue/example.yaml +60 -0
  1858. dagster_community_components-0.1.0/integrations/aws_glue/manifest.yaml +5 -0
  1859. dagster_community_components-0.1.0/integrations/aws_glue/requirements.txt +2 -0
  1860. dagster_community_components-0.1.0/integrations/aws_glue/schema.json +19 -0
  1861. dagster_community_components-0.1.0/integrations/aws_kinesis/README.md +57 -0
  1862. dagster_community_components-0.1.0/integrations/aws_kinesis/__init__.py +5 -0
  1863. dagster_community_components-0.1.0/integrations/aws_kinesis/component.py +436 -0
  1864. dagster_community_components-0.1.0/integrations/aws_kinesis/example.yaml +20 -0
  1865. dagster_community_components-0.1.0/integrations/aws_kinesis/manifest.yaml +3 -0
  1866. dagster_community_components-0.1.0/integrations/aws_kinesis/requirements.txt +2 -0
  1867. dagster_community_components-0.1.0/integrations/aws_kinesis/schema.json +116 -0
  1868. dagster_community_components-0.1.0/integrations/aws_redshift/README.md +61 -0
  1869. dagster_community_components-0.1.0/integrations/aws_redshift/__init__.py +5 -0
  1870. dagster_community_components-0.1.0/integrations/aws_redshift/component.py +423 -0
  1871. dagster_community_components-0.1.0/integrations/aws_redshift/example.yaml +23 -0
  1872. dagster_community_components-0.1.0/integrations/aws_redshift/manifest.yaml +3 -0
  1873. dagster_community_components-0.1.0/integrations/aws_redshift/requirements.txt +2 -0
  1874. dagster_community_components-0.1.0/integrations/aws_redshift/schema.json +136 -0
  1875. dagster_community_components-0.1.0/integrations/aws_sagemaker/README.md +59 -0
  1876. dagster_community_components-0.1.0/integrations/aws_sagemaker/__init__.py +5 -0
  1877. dagster_community_components-0.1.0/integrations/aws_sagemaker/component.py +536 -0
  1878. dagster_community_components-0.1.0/integrations/aws_sagemaker/example.yaml +22 -0
  1879. dagster_community_components-0.1.0/integrations/aws_sagemaker/manifest.yaml +3 -0
  1880. dagster_community_components-0.1.0/integrations/aws_sagemaker/requirements.txt +2 -0
  1881. dagster_community_components-0.1.0/integrations/aws_sagemaker/schema.json +132 -0
  1882. dagster_community_components-0.1.0/integrations/azure_data_factory/README.md +173 -0
  1883. dagster_community_components-0.1.0/integrations/azure_data_factory/__init__.py +5 -0
  1884. dagster_community_components-0.1.0/integrations/azure_data_factory/component.py +777 -0
  1885. dagster_community_components-0.1.0/integrations/azure_data_factory/example.yaml +75 -0
  1886. dagster_community_components-0.1.0/integrations/azure_data_factory/manifest.yaml +5 -0
  1887. dagster_community_components-0.1.0/integrations/azure_data_factory/requirements.txt +3 -0
  1888. dagster_community_components-0.1.0/integrations/azure_data_factory/schema.json +20 -0
  1889. dagster_community_components-0.1.0/integrations/azure_stream_analytics/README.md +123 -0
  1890. dagster_community_components-0.1.0/integrations/azure_stream_analytics/__init__.py +5 -0
  1891. dagster_community_components-0.1.0/integrations/azure_stream_analytics/component.py +317 -0
  1892. dagster_community_components-0.1.0/integrations/azure_stream_analytics/example.yaml +37 -0
  1893. dagster_community_components-0.1.0/integrations/azure_stream_analytics/manifest.yaml +5 -0
  1894. dagster_community_components-0.1.0/integrations/azure_stream_analytics/requirements.txt +3 -0
  1895. dagster_community_components-0.1.0/integrations/azure_stream_analytics/schema.json +115 -0
  1896. dagster_community_components-0.1.0/integrations/azure_synapse/README.md +147 -0
  1897. dagster_community_components-0.1.0/integrations/azure_synapse/__init__.py +5 -0
  1898. dagster_community_components-0.1.0/integrations/azure_synapse/component.py +442 -0
  1899. dagster_community_components-0.1.0/integrations/azure_synapse/example.yaml +40 -0
  1900. dagster_community_components-0.1.0/integrations/azure_synapse/manifest.yaml +5 -0
  1901. dagster_community_components-0.1.0/integrations/azure_synapse/requirements.txt +4 -0
  1902. dagster_community_components-0.1.0/integrations/azure_synapse/schema.json +136 -0
  1903. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/README.md +292 -0
  1904. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/__init__.py +5 -0
  1905. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/component.py +343 -0
  1906. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/example.yaml +17 -0
  1907. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/manifest.yaml +3 -0
  1908. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/requirements.txt +3 -0
  1909. dagster_community_components-0.1.0/integrations/databricks_asset_bundle/schema.json +67 -0
  1910. dagster_community_components-0.1.0/integrations/databricks_workspace/README.md +161 -0
  1911. dagster_community_components-0.1.0/integrations/databricks_workspace/__init__.py +3 -0
  1912. dagster_community_components-0.1.0/integrations/databricks_workspace/component.py +556 -0
  1913. dagster_community_components-0.1.0/integrations/databricks_workspace/example.yaml +56 -0
  1914. dagster_community_components-0.1.0/integrations/databricks_workspace/manifest.yaml +5 -0
  1915. dagster_community_components-0.1.0/integrations/databricks_workspace/requirements.txt +2 -0
  1916. dagster_community_components-0.1.0/integrations/databricks_workspace/schema.json +131 -0
  1917. dagster_community_components-0.1.0/integrations/google_bigquery/README.md +164 -0
  1918. dagster_community_components-0.1.0/integrations/google_bigquery/__init__.py +3 -0
  1919. dagster_community_components-0.1.0/integrations/google_bigquery/component.py +610 -0
  1920. dagster_community_components-0.1.0/integrations/google_bigquery/example.yaml +36 -0
  1921. dagster_community_components-0.1.0/integrations/google_bigquery/manifest.yaml +5 -0
  1922. dagster_community_components-0.1.0/integrations/google_bigquery/requirements.txt +3 -0
  1923. dagster_community_components-0.1.0/integrations/google_bigquery/schema.json +146 -0
  1924. dagster_community_components-0.1.0/integrations/google_cloud_functions/README.md +51 -0
  1925. dagster_community_components-0.1.0/integrations/google_cloud_functions/__init__.py +5 -0
  1926. dagster_community_components-0.1.0/integrations/google_cloud_functions/component.py +164 -0
  1927. dagster_community_components-0.1.0/integrations/google_cloud_functions/example.yaml +8 -0
  1928. dagster_community_components-0.1.0/integrations/google_cloud_functions/manifest.yaml +3 -0
  1929. dagster_community_components-0.1.0/integrations/google_cloud_functions/requirements.txt +2 -0
  1930. dagster_community_components-0.1.0/integrations/google_cloud_functions/schema.json +78 -0
  1931. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/README.md +50 -0
  1932. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/__init__.py +5 -0
  1933. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/component.py +171 -0
  1934. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/example.yaml +8 -0
  1935. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/manifest.yaml +3 -0
  1936. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/requirements.txt +2 -0
  1937. dagster_community_components-0.1.0/integrations/google_cloud_run_jobs/schema.json +79 -0
  1938. dagster_community_components-0.1.0/integrations/google_dataflow/README.md +54 -0
  1939. dagster_community_components-0.1.0/integrations/google_dataflow/__init__.py +5 -0
  1940. dagster_community_components-0.1.0/integrations/google_dataflow/component.py +318 -0
  1941. dagster_community_components-0.1.0/integrations/google_dataflow/example.yaml +20 -0
  1942. dagster_community_components-0.1.0/integrations/google_dataflow/manifest.yaml +3 -0
  1943. dagster_community_components-0.1.0/integrations/google_dataflow/requirements.txt +2 -0
  1944. dagster_community_components-0.1.0/integrations/google_dataflow/schema.json +100 -0
  1945. dagster_community_components-0.1.0/integrations/google_datastream/README.md +54 -0
  1946. dagster_community_components-0.1.0/integrations/google_datastream/__init__.py +5 -0
  1947. dagster_community_components-0.1.0/integrations/google_datastream/component.py +373 -0
  1948. dagster_community_components-0.1.0/integrations/google_datastream/example.yaml +20 -0
  1949. dagster_community_components-0.1.0/integrations/google_datastream/manifest.yaml +3 -0
  1950. dagster_community_components-0.1.0/integrations/google_datastream/requirements.txt +2 -0
  1951. dagster_community_components-0.1.0/integrations/google_datastream/schema.json +100 -0
  1952. dagster_community_components-0.1.0/integrations/google_pubsub/README.md +53 -0
  1953. dagster_community_components-0.1.0/integrations/google_pubsub/__init__.py +5 -0
  1954. dagster_community_components-0.1.0/integrations/google_pubsub/component.py +217 -0
  1955. dagster_community_components-0.1.0/integrations/google_pubsub/example.yaml +8 -0
  1956. dagster_community_components-0.1.0/integrations/google_pubsub/manifest.yaml +3 -0
  1957. dagster_community_components-0.1.0/integrations/google_pubsub/requirements.txt +2 -0
  1958. dagster_community_components-0.1.0/integrations/google_pubsub/schema.json +93 -0
  1959. dagster_community_components-0.1.0/integrations/google_vertex_ai/README.md +59 -0
  1960. dagster_community_components-0.1.0/integrations/google_vertex_ai/__init__.py +5 -0
  1961. dagster_community_components-0.1.0/integrations/google_vertex_ai/component.py +435 -0
  1962. dagster_community_components-0.1.0/integrations/google_vertex_ai/example.yaml +22 -0
  1963. dagster_community_components-0.1.0/integrations/google_vertex_ai/manifest.yaml +3 -0
  1964. dagster_community_components-0.1.0/integrations/google_vertex_ai/requirements.txt +2 -0
  1965. dagster_community_components-0.1.0/integrations/google_vertex_ai/schema.json +123 -0
  1966. dagster_community_components-0.1.0/integrations/snowflake_workspace/README.md +414 -0
  1967. dagster_community_components-0.1.0/integrations/snowflake_workspace/__init__.py +3 -0
  1968. dagster_community_components-0.1.0/integrations/snowflake_workspace/component.py +1254 -0
  1969. dagster_community_components-0.1.0/integrations/snowflake_workspace/example.yaml +59 -0
  1970. dagster_community_components-0.1.0/integrations/snowflake_workspace/manifest.yaml +5 -0
  1971. dagster_community_components-0.1.0/integrations/snowflake_workspace/requirements.txt +2 -0
  1972. dagster_community_components-0.1.0/integrations/snowflake_workspace/schema.json +196 -0
  1973. dagster_community_components-0.1.0/io_managers/athena_io_manager/README.md +63 -0
  1974. dagster_community_components-0.1.0/io_managers/athena_io_manager/__init__.py +4 -0
  1975. dagster_community_components-0.1.0/io_managers/athena_io_manager/component.py +66 -0
  1976. dagster_community_components-0.1.0/io_managers/athena_io_manager/example.yaml +7 -0
  1977. dagster_community_components-0.1.0/io_managers/athena_io_manager/io_manager.py +150 -0
  1978. dagster_community_components-0.1.0/io_managers/athena_io_manager/requirements.txt +3 -0
  1979. dagster_community_components-0.1.0/io_managers/athena_io_manager/schema.json +69 -0
  1980. dagster_community_components-0.1.0/io_managers/bigquery_io_manager/README.md +28 -0
  1981. dagster_community_components-0.1.0/io_managers/bigquery_io_manager/component.py +35 -0
  1982. dagster_community_components-0.1.0/io_managers/bigquery_io_manager/example.yaml +6 -0
  1983. dagster_community_components-0.1.0/io_managers/bigquery_io_manager/requirements.txt +1 -0
  1984. dagster_community_components-0.1.0/io_managers/bigquery_io_manager/schema.json +61 -0
  1985. dagster_community_components-0.1.0/io_managers/databricks_io_manager/README.md +59 -0
  1986. dagster_community_components-0.1.0/io_managers/databricks_io_manager/__init__.py +4 -0
  1987. dagster_community_components-0.1.0/io_managers/databricks_io_manager/component.py +57 -0
  1988. dagster_community_components-0.1.0/io_managers/databricks_io_manager/example.yaml +8 -0
  1989. dagster_community_components-0.1.0/io_managers/databricks_io_manager/io_manager.py +186 -0
  1990. dagster_community_components-0.1.0/io_managers/databricks_io_manager/requirements.txt +2 -0
  1991. dagster_community_components-0.1.0/io_managers/databricks_io_manager/schema.json +67 -0
  1992. dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/README.md +34 -0
  1993. dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/component.py +46 -0
  1994. dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/example.yaml +7 -0
  1995. dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/requirements.txt +1 -0
  1996. dagster_community_components-0.1.0/io_managers/delta_lake_io_manager/schema.json +87 -0
  1997. dagster_community_components-0.1.0/io_managers/duckdb_io_manager/README.md +21 -0
  1998. dagster_community_components-0.1.0/io_managers/duckdb_io_manager/component.py +22 -0
  1999. dagster_community_components-0.1.0/io_managers/duckdb_io_manager/example.yaml +5 -0
  2000. dagster_community_components-0.1.0/io_managers/duckdb_io_manager/requirements.txt +1 -0
  2001. dagster_community_components-0.1.0/io_managers/duckdb_io_manager/schema.json +41 -0
  2002. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/README.md +51 -0
  2003. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/__init__.py +4 -0
  2004. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/component.py +50 -0
  2005. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/example.yaml +6 -0
  2006. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/io_manager.py +84 -0
  2007. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/requirements.txt +3 -0
  2008. dagster_community_components-0.1.0/io_managers/gcs_parquet_io_manager/schema.json +56 -0
  2009. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/README.md +72 -0
  2010. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/__init__.py +4 -0
  2011. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/component.py +72 -0
  2012. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/example.yaml +11 -0
  2013. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/io_manager.py +143 -0
  2014. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/requirements.txt +4 -0
  2015. dagster_community_components-0.1.0/io_managers/lakefs_io_manager/schema.json +82 -0
  2016. dagster_community_components-0.1.0/io_managers/lance_io_manager/README.md +53 -0
  2017. dagster_community_components-0.1.0/io_managers/lance_io_manager/__init__.py +4 -0
  2018. dagster_community_components-0.1.0/io_managers/lance_io_manager/component.py +62 -0
  2019. dagster_community_components-0.1.0/io_managers/lance_io_manager/example.yaml +5 -0
  2020. dagster_community_components-0.1.0/io_managers/lance_io_manager/io_manager.py +92 -0
  2021. dagster_community_components-0.1.0/io_managers/lance_io_manager/requirements.txt +3 -0
  2022. dagster_community_components-0.1.0/io_managers/lance_io_manager/schema.json +65 -0
  2023. dagster_community_components-0.1.0/io_managers/minio_io_manager/README.md +57 -0
  2024. dagster_community_components-0.1.0/io_managers/minio_io_manager/__init__.py +4 -0
  2025. dagster_community_components-0.1.0/io_managers/minio_io_manager/component.py +62 -0
  2026. dagster_community_components-0.1.0/io_managers/minio_io_manager/example.yaml +8 -0
  2027. dagster_community_components-0.1.0/io_managers/minio_io_manager/io_manager.py +115 -0
  2028. dagster_community_components-0.1.0/io_managers/minio_io_manager/requirements.txt +2 -0
  2029. dagster_community_components-0.1.0/io_managers/minio_io_manager/schema.json +64 -0
  2030. dagster_community_components-0.1.0/io_managers/motherduck_io_manager/README.md +28 -0
  2031. dagster_community_components-0.1.0/io_managers/motherduck_io_manager/component.py +28 -0
  2032. dagster_community_components-0.1.0/io_managers/motherduck_io_manager/example.yaml +6 -0
  2033. dagster_community_components-0.1.0/io_managers/motherduck_io_manager/requirements.txt +2 -0
  2034. dagster_community_components-0.1.0/io_managers/motherduck_io_manager/schema.json +49 -0
  2035. dagster_community_components-0.1.0/io_managers/postgres_io_manager/README.md +57 -0
  2036. dagster_community_components-0.1.0/io_managers/postgres_io_manager/__init__.py +4 -0
  2037. dagster_community_components-0.1.0/io_managers/postgres_io_manager/component.py +59 -0
  2038. dagster_community_components-0.1.0/io_managers/postgres_io_manager/example.yaml +10 -0
  2039. dagster_community_components-0.1.0/io_managers/postgres_io_manager/io_manager.py +134 -0
  2040. dagster_community_components-0.1.0/io_managers/postgres_io_manager/requirements.txt +3 -0
  2041. dagster_community_components-0.1.0/io_managers/postgres_io_manager/schema.json +80 -0
  2042. dagster_community_components-0.1.0/io_managers/redshift_io_manager/README.md +57 -0
  2043. dagster_community_components-0.1.0/io_managers/redshift_io_manager/__init__.py +4 -0
  2044. dagster_community_components-0.1.0/io_managers/redshift_io_manager/component.py +58 -0
  2045. dagster_community_components-0.1.0/io_managers/redshift_io_manager/example.yaml +8 -0
  2046. dagster_community_components-0.1.0/io_managers/redshift_io_manager/io_manager.py +121 -0
  2047. dagster_community_components-0.1.0/io_managers/redshift_io_manager/requirements.txt +3 -0
  2048. dagster_community_components-0.1.0/io_managers/redshift_io_manager/schema.json +72 -0
  2049. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/README.md +54 -0
  2050. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/__init__.py +4 -0
  2051. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/component.py +60 -0
  2052. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/example.yaml +8 -0
  2053. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/io_manager.py +91 -0
  2054. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/requirements.txt +3 -0
  2055. dagster_community_components-0.1.0/io_managers/s3_parquet_io_manager/schema.json +70 -0
  2056. dagster_community_components-0.1.0/io_managers/snowflake_io_manager/README.md +29 -0
  2057. dagster_community_components-0.1.0/io_managers/snowflake_io_manager/component.py +33 -0
  2058. dagster_community_components-0.1.0/io_managers/snowflake_io_manager/example.yaml +9 -0
  2059. dagster_community_components-0.1.0/io_managers/snowflake_io_manager/requirements.txt +1 -0
  2060. dagster_community_components-0.1.0/io_managers/snowflake_io_manager/schema.json +72 -0
  2061. dagster_community_components-0.1.0/io_managers/trino_io_manager/README.md +57 -0
  2062. dagster_community_components-0.1.0/io_managers/trino_io_manager/__init__.py +4 -0
  2063. dagster_community_components-0.1.0/io_managers/trino_io_manager/component.py +55 -0
  2064. dagster_community_components-0.1.0/io_managers/trino_io_manager/example.yaml +8 -0
  2065. dagster_community_components-0.1.0/io_managers/trino_io_manager/io_manager.py +166 -0
  2066. dagster_community_components-0.1.0/io_managers/trino_io_manager/requirements.txt +2 -0
  2067. dagster_community_components-0.1.0/io_managers/trino_io_manager/schema.json +70 -0
  2068. dagster_community_components-0.1.0/manifest.json +11246 -0
  2069. dagster_community_components-0.1.0/observations/adls_observation_sensor/README.md +66 -0
  2070. dagster_community_components-0.1.0/observations/adls_observation_sensor/component.py +76 -0
  2071. dagster_community_components-0.1.0/observations/adls_observation_sensor/example.yaml +8 -0
  2072. dagster_community_components-0.1.0/observations/adls_observation_sensor/requirements.txt +2 -0
  2073. dagster_community_components-0.1.0/observations/adls_observation_sensor/schema.json +73 -0
  2074. dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/README.md +63 -0
  2075. dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/component.py +57 -0
  2076. dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/example.yaml +8 -0
  2077. dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/requirements.txt +1 -0
  2078. dagster_community_components-0.1.0/observations/bigquery_table_observation_sensor/schema.json +66 -0
  2079. dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/README.md +53 -0
  2080. dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/component.py +133 -0
  2081. dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/example.yaml +10 -0
  2082. dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/requirements.txt +1 -0
  2083. dagster_community_components-0.1.0/observations/clickhouse_table_observation_sensor/schema.json +96 -0
  2084. dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/README.md +69 -0
  2085. dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/component.py +73 -0
  2086. dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/example.yaml +11 -0
  2087. dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/requirements.txt +1 -0
  2088. dagster_community_components-0.1.0/observations/databricks_table_observation_sensor/schema.json +85 -0
  2089. dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/README.md +64 -0
  2090. dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/component.py +79 -0
  2091. dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/example.yaml +7 -0
  2092. dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/requirements.txt +2 -0
  2093. dagster_community_components-0.1.0/observations/eventhubs_observation_sensor/schema.json +66 -0
  2094. dagster_community_components-0.1.0/observations/gcs_observation_sensor/README.md +63 -0
  2095. dagster_community_components-0.1.0/observations/gcs_observation_sensor/component.py +67 -0
  2096. dagster_community_components-0.1.0/observations/gcs_observation_sensor/example.yaml +7 -0
  2097. dagster_community_components-0.1.0/observations/gcs_observation_sensor/requirements.txt +1 -0
  2098. dagster_community_components-0.1.0/observations/gcs_observation_sensor/schema.json +67 -0
  2099. dagster_community_components-0.1.0/observations/kafka_observation_sensor/README.md +61 -0
  2100. dagster_community_components-0.1.0/observations/kafka_observation_sensor/component.py +68 -0
  2101. dagster_community_components-0.1.0/observations/kafka_observation_sensor/example.yaml +7 -0
  2102. dagster_community_components-0.1.0/observations/kafka_observation_sensor/requirements.txt +1 -0
  2103. dagster_community_components-0.1.0/observations/kafka_observation_sensor/schema.json +59 -0
  2104. dagster_community_components-0.1.0/observations/kinesis_observation_sensor/README.md +61 -0
  2105. dagster_community_components-0.1.0/observations/kinesis_observation_sensor/component.py +59 -0
  2106. dagster_community_components-0.1.0/observations/kinesis_observation_sensor/example.yaml +6 -0
  2107. dagster_community_components-0.1.0/observations/kinesis_observation_sensor/requirements.txt +1 -0
  2108. dagster_community_components-0.1.0/observations/kinesis_observation_sensor/schema.json +60 -0
  2109. dagster_community_components-0.1.0/observations/mqtt_observation_sensor/README.md +65 -0
  2110. dagster_community_components-0.1.0/observations/mqtt_observation_sensor/component.py +71 -0
  2111. dagster_community_components-0.1.0/observations/mqtt_observation_sensor/example.yaml +7 -0
  2112. dagster_community_components-0.1.0/observations/mqtt_observation_sensor/requirements.txt +1 -0
  2113. dagster_community_components-0.1.0/observations/mqtt_observation_sensor/schema.json +73 -0
  2114. dagster_community_components-0.1.0/observations/nats_observation_sensor/README.md +63 -0
  2115. dagster_community_components-0.1.0/observations/nats_observation_sensor/component.py +69 -0
  2116. dagster_community_components-0.1.0/observations/nats_observation_sensor/example.yaml +7 -0
  2117. dagster_community_components-0.1.0/observations/nats_observation_sensor/requirements.txt +1 -0
  2118. dagster_community_components-0.1.0/observations/nats_observation_sensor/schema.json +66 -0
  2119. dagster_community_components-0.1.0/observations/pubsub_observation_sensor/README.md +63 -0
  2120. dagster_community_components-0.1.0/observations/pubsub_observation_sensor/component.py +66 -0
  2121. dagster_community_components-0.1.0/observations/pubsub_observation_sensor/example.yaml +7 -0
  2122. dagster_community_components-0.1.0/observations/pubsub_observation_sensor/requirements.txt +1 -0
  2123. dagster_community_components-0.1.0/observations/pubsub_observation_sensor/schema.json +67 -0
  2124. dagster_community_components-0.1.0/observations/pulsar_observation_sensor/README.md +65 -0
  2125. dagster_community_components-0.1.0/observations/pulsar_observation_sensor/component.py +74 -0
  2126. dagster_community_components-0.1.0/observations/pulsar_observation_sensor/example.yaml +7 -0
  2127. dagster_community_components-0.1.0/observations/pulsar_observation_sensor/requirements.txt +1 -0
  2128. dagster_community_components-0.1.0/observations/pulsar_observation_sensor/schema.json +73 -0
  2129. dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/README.md +69 -0
  2130. dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/component.py +75 -0
  2131. dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/example.yaml +7 -0
  2132. dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/requirements.txt +1 -0
  2133. dagster_community_components-0.1.0/observations/rabbitmq_observation_sensor/schema.json +88 -0
  2134. dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/README.md +67 -0
  2135. dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/component.py +67 -0
  2136. dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/example.yaml +6 -0
  2137. dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/requirements.txt +1 -0
  2138. dagster_community_components-0.1.0/observations/redis_stream_observation_sensor/schema.json +83 -0
  2139. dagster_community_components-0.1.0/observations/s3_observation_sensor/README.md +63 -0
  2140. dagster_community_components-0.1.0/observations/s3_observation_sensor/component.py +55 -0
  2141. dagster_community_components-0.1.0/observations/s3_observation_sensor/example.yaml +7 -0
  2142. dagster_community_components-0.1.0/observations/s3_observation_sensor/requirements.txt +1 -0
  2143. dagster_community_components-0.1.0/observations/s3_observation_sensor/schema.json +66 -0
  2144. dagster_community_components-0.1.0/observations/servicebus_observation_sensor/README.md +68 -0
  2145. dagster_community_components-0.1.0/observations/servicebus_observation_sensor/component.py +73 -0
  2146. dagster_community_components-0.1.0/observations/servicebus_observation_sensor/example.yaml +7 -0
  2147. dagster_community_components-0.1.0/observations/servicebus_observation_sensor/requirements.txt +2 -0
  2148. dagster_community_components-0.1.0/observations/servicebus_observation_sensor/schema.json +82 -0
  2149. dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/README.md +69 -0
  2150. dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/component.py +72 -0
  2151. dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/example.yaml +9 -0
  2152. dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/requirements.txt +1 -0
  2153. dagster_community_components-0.1.0/observations/sftp_path_observation_sensor/schema.json +88 -0
  2154. dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/README.md +71 -0
  2155. dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/component.py +84 -0
  2156. dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/example.yaml +11 -0
  2157. dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/requirements.txt +1 -0
  2158. dagster_community_components-0.1.0/observations/snowflake_table_observation_sensor/schema.json +93 -0
  2159. dagster_community_components-0.1.0/observations/sql_observation_sensor/README.md +63 -0
  2160. dagster_community_components-0.1.0/observations/sql_observation_sensor/component.py +68 -0
  2161. dagster_community_components-0.1.0/observations/sql_observation_sensor/example.yaml +8 -0
  2162. dagster_community_components-0.1.0/observations/sql_observation_sensor/requirements.txt +1 -0
  2163. dagster_community_components-0.1.0/observations/sql_observation_sensor/schema.json +66 -0
  2164. dagster_community_components-0.1.0/observations/sqs_observation_sensor/README.md +61 -0
  2165. dagster_community_components-0.1.0/observations/sqs_observation_sensor/component.py +62 -0
  2166. dagster_community_components-0.1.0/observations/sqs_observation_sensor/example.yaml +6 -0
  2167. dagster_community_components-0.1.0/observations/sqs_observation_sensor/requirements.txt +1 -0
  2168. dagster_community_components-0.1.0/observations/sqs_observation_sensor/schema.json +60 -0
  2169. dagster_community_components-0.1.0/pyproject.toml +80 -0
  2170. dagster_community_components-0.1.0/resources/airtable_resource/README.md +38 -0
  2171. dagster_community_components-0.1.0/resources/airtable_resource/component.py +34 -0
  2172. dagster_community_components-0.1.0/resources/airtable_resource/example.yaml +4 -0
  2173. dagster_community_components-0.1.0/resources/airtable_resource/requirements.txt +1 -0
  2174. dagster_community_components-0.1.0/resources/airtable_resource/schema.json +33 -0
  2175. dagster_community_components-0.1.0/resources/anthropic_resource/README.md +36 -0
  2176. dagster_community_components-0.1.0/resources/anthropic_resource/component.py +17 -0
  2177. dagster_community_components-0.1.0/resources/anthropic_resource/example.yaml +3 -0
  2178. dagster_community_components-0.1.0/resources/anthropic_resource/requirements.txt +1 -0
  2179. dagster_community_components-0.1.0/resources/anthropic_resource/schema.json +34 -0
  2180. dagster_community_components-0.1.0/resources/asana_resource/README.md +39 -0
  2181. dagster_community_components-0.1.0/resources/asana_resource/component.py +49 -0
  2182. dagster_community_components-0.1.0/resources/asana_resource/example.yaml +5 -0
  2183. dagster_community_components-0.1.0/resources/asana_resource/requirements.txt +1 -0
  2184. dagster_community_components-0.1.0/resources/asana_resource/schema.json +39 -0
  2185. dagster_community_components-0.1.0/resources/aws_s3_resource/README.md +35 -0
  2186. dagster_community_components-0.1.0/resources/aws_s3_resource/component.py +30 -0
  2187. dagster_community_components-0.1.0/resources/aws_s3_resource/example.yaml +3 -0
  2188. dagster_community_components-0.1.0/resources/aws_s3_resource/requirements.txt +1 -0
  2189. dagster_community_components-0.1.0/resources/aws_s3_resource/schema.json +54 -0
  2190. dagster_community_components-0.1.0/resources/bigquery_resource/README.md +37 -0
  2191. dagster_community_components-0.1.0/resources/bigquery_resource/component.py +27 -0
  2192. dagster_community_components-0.1.0/resources/bigquery_resource/example.yaml +4 -0
  2193. dagster_community_components-0.1.0/resources/bigquery_resource/requirements.txt +1 -0
  2194. dagster_community_components-0.1.0/resources/bigquery_resource/schema.json +53 -0
  2195. dagster_community_components-0.1.0/resources/cassandra_resource/README.md +28 -0
  2196. dagster_community_components-0.1.0/resources/cassandra_resource/component.py +60 -0
  2197. dagster_community_components-0.1.0/resources/cassandra_resource/example.yaml +8 -0
  2198. dagster_community_components-0.1.0/resources/cassandra_resource/requirements.txt +1 -0
  2199. dagster_community_components-0.1.0/resources/cassandra_resource/schema.json +56 -0
  2200. dagster_community_components-0.1.0/resources/chroma_resource/README.md +36 -0
  2201. dagster_community_components-0.1.0/resources/chroma_resource/component.py +27 -0
  2202. dagster_community_components-0.1.0/resources/chroma_resource/example.yaml +3 -0
  2203. dagster_community_components-0.1.0/resources/chroma_resource/requirements.txt +1 -0
  2204. dagster_community_components-0.1.0/resources/chroma_resource/schema.json +55 -0
  2205. dagster_community_components-0.1.0/resources/cosmosdb_resource/README.md +26 -0
  2206. dagster_community_components-0.1.0/resources/cosmosdb_resource/component.py +39 -0
  2207. dagster_community_components-0.1.0/resources/cosmosdb_resource/example.yaml +6 -0
  2208. dagster_community_components-0.1.0/resources/cosmosdb_resource/requirements.txt +1 -0
  2209. dagster_community_components-0.1.0/resources/cosmosdb_resource/schema.json +43 -0
  2210. dagster_community_components-0.1.0/resources/couchdb_resource/README.md +26 -0
  2211. dagster_community_components-0.1.0/resources/couchdb_resource/component.py +39 -0
  2212. dagster_community_components-0.1.0/resources/couchdb_resource/example.yaml +6 -0
  2213. dagster_community_components-0.1.0/resources/couchdb_resource/requirements.txt +1 -0
  2214. dagster_community_components-0.1.0/resources/couchdb_resource/schema.json +41 -0
  2215. dagster_community_components-0.1.0/resources/databricks_resource/README.md +38 -0
  2216. dagster_community_components-0.1.0/resources/databricks_resource/component.py +24 -0
  2217. dagster_community_components-0.1.0/resources/databricks_resource/example.yaml +5 -0
  2218. dagster_community_components-0.1.0/resources/databricks_resource/requirements.txt +1 -0
  2219. dagster_community_components-0.1.0/resources/databricks_resource/schema.json +45 -0
  2220. dagster_community_components-0.1.0/resources/datadog_resource/README.md +37 -0
  2221. dagster_community_components-0.1.0/resources/datadog_resource/component.py +22 -0
  2222. dagster_community_components-0.1.0/resources/datadog_resource/example.yaml +4 -0
  2223. dagster_community_components-0.1.0/resources/datadog_resource/requirements.txt +1 -0
  2224. dagster_community_components-0.1.0/resources/datadog_resource/schema.json +41 -0
  2225. dagster_community_components-0.1.0/resources/dbt_cloud_resource/README.md +37 -0
  2226. dagster_community_components-0.1.0/resources/dbt_cloud_resource/component.py +21 -0
  2227. dagster_community_components-0.1.0/resources/dbt_cloud_resource/example.yaml +5 -0
  2228. dagster_community_components-0.1.0/resources/dbt_cloud_resource/requirements.txt +1 -0
  2229. dagster_community_components-0.1.0/resources/dbt_cloud_resource/schema.json +38 -0
  2230. dagster_community_components-0.1.0/resources/duckdb_resource/README.md +25 -0
  2231. dagster_community_components-0.1.0/resources/duckdb_resource/component.py +17 -0
  2232. dagster_community_components-0.1.0/resources/duckdb_resource/example.yaml +4 -0
  2233. dagster_community_components-0.1.0/resources/duckdb_resource/requirements.txt +1 -0
  2234. dagster_community_components-0.1.0/resources/duckdb_resource/schema.json +30 -0
  2235. dagster_community_components-0.1.0/resources/dynamodb_resource/README.md +26 -0
  2236. dagster_community_components-0.1.0/resources/dynamodb_resource/component.py +57 -0
  2237. dagster_community_components-0.1.0/resources/dynamodb_resource/example.yaml +6 -0
  2238. dagster_community_components-0.1.0/resources/dynamodb_resource/requirements.txt +1 -0
  2239. dagster_community_components-0.1.0/resources/dynamodb_resource/schema.json +47 -0
  2240. dagster_community_components-0.1.0/resources/elasticsearch_resource/README.md +26 -0
  2241. dagster_community_components-0.1.0/resources/elasticsearch_resource/component.py +51 -0
  2242. dagster_community_components-0.1.0/resources/elasticsearch_resource/example.yaml +6 -0
  2243. dagster_community_components-0.1.0/resources/elasticsearch_resource/requirements.txt +1 -0
  2244. dagster_community_components-0.1.0/resources/elasticsearch_resource/schema.json +51 -0
  2245. dagster_community_components-0.1.0/resources/facebook_ads_resource/README.md +43 -0
  2246. dagster_community_components-0.1.0/resources/facebook_ads_resource/component.py +56 -0
  2247. dagster_community_components-0.1.0/resources/facebook_ads_resource/example.yaml +7 -0
  2248. dagster_community_components-0.1.0/resources/facebook_ads_resource/requirements.txt +1 -0
  2249. dagster_community_components-0.1.0/resources/facebook_ads_resource/schema.json +53 -0
  2250. dagster_community_components-0.1.0/resources/firestore_resource/README.md +26 -0
  2251. dagster_community_components-0.1.0/resources/firestore_resource/component.py +50 -0
  2252. dagster_community_components-0.1.0/resources/firestore_resource/example.yaml +6 -0
  2253. dagster_community_components-0.1.0/resources/firestore_resource/requirements.txt +1 -0
  2254. dagster_community_components-0.1.0/resources/firestore_resource/schema.json +42 -0
  2255. dagster_community_components-0.1.0/resources/freshdesk_resource/README.md +39 -0
  2256. dagster_community_components-0.1.0/resources/freshdesk_resource/component.py +47 -0
  2257. dagster_community_components-0.1.0/resources/freshdesk_resource/example.yaml +5 -0
  2258. dagster_community_components-0.1.0/resources/freshdesk_resource/requirements.txt +1 -0
  2259. dagster_community_components-0.1.0/resources/freshdesk_resource/schema.json +39 -0
  2260. dagster_community_components-0.1.0/resources/gcs_resource/README.md +37 -0
  2261. dagster_community_components-0.1.0/resources/gcs_resource/component.py +20 -0
  2262. dagster_community_components-0.1.0/resources/gcs_resource/example.yaml +4 -0
  2263. dagster_community_components-0.1.0/resources/gcs_resource/requirements.txt +1 -0
  2264. dagster_community_components-0.1.0/resources/gcs_resource/schema.json +39 -0
  2265. dagster_community_components-0.1.0/resources/gemini_resource/README.md +36 -0
  2266. dagster_community_components-0.1.0/resources/gemini_resource/component.py +17 -0
  2267. dagster_community_components-0.1.0/resources/gemini_resource/example.yaml +3 -0
  2268. dagster_community_components-0.1.0/resources/gemini_resource/requirements.txt +1 -0
  2269. dagster_community_components-0.1.0/resources/gemini_resource/schema.json +35 -0
  2270. dagster_community_components-0.1.0/resources/github_resource/README.md +38 -0
  2271. dagster_community_components-0.1.0/resources/github_resource/component.py +23 -0
  2272. dagster_community_components-0.1.0/resources/github_resource/example.yaml +6 -0
  2273. dagster_community_components-0.1.0/resources/github_resource/requirements.txt +1 -0
  2274. dagster_community_components-0.1.0/resources/github_resource/schema.json +45 -0
  2275. dagster_community_components-0.1.0/resources/google_analytics_resource/README.md +39 -0
  2276. dagster_community_components-0.1.0/resources/google_analytics_resource/component.py +49 -0
  2277. dagster_community_components-0.1.0/resources/google_analytics_resource/example.yaml +5 -0
  2278. dagster_community_components-0.1.0/resources/google_analytics_resource/requirements.txt +1 -0
  2279. dagster_community_components-0.1.0/resources/google_analytics_resource/schema.json +39 -0
  2280. dagster_community_components-0.1.0/resources/google_sheets_resource/README.md +39 -0
  2281. dagster_community_components-0.1.0/resources/google_sheets_resource/component.py +48 -0
  2282. dagster_community_components-0.1.0/resources/google_sheets_resource/example.yaml +5 -0
  2283. dagster_community_components-0.1.0/resources/google_sheets_resource/requirements.txt +1 -0
  2284. dagster_community_components-0.1.0/resources/google_sheets_resource/schema.json +40 -0
  2285. dagster_community_components-0.1.0/resources/http_resource/README.md +38 -0
  2286. dagster_community_components-0.1.0/resources/http_resource/component.py +44 -0
  2287. dagster_community_components-0.1.0/resources/http_resource/example.yaml +4 -0
  2288. dagster_community_components-0.1.0/resources/http_resource/requirements.txt +1 -0
  2289. dagster_community_components-0.1.0/resources/http_resource/schema.json +46 -0
  2290. dagster_community_components-0.1.0/resources/hubspot_resource/README.md +38 -0
  2291. dagster_community_components-0.1.0/resources/hubspot_resource/component.py +34 -0
  2292. dagster_community_components-0.1.0/resources/hubspot_resource/example.yaml +4 -0
  2293. dagster_community_components-0.1.0/resources/hubspot_resource/requirements.txt +1 -0
  2294. dagster_community_components-0.1.0/resources/hubspot_resource/schema.json +33 -0
  2295. dagster_community_components-0.1.0/resources/jira_resource/README.md +40 -0
  2296. dagster_community_components-0.1.0/resources/jira_resource/component.py +47 -0
  2297. dagster_community_components-0.1.0/resources/jira_resource/example.yaml +6 -0
  2298. dagster_community_components-0.1.0/resources/jira_resource/requirements.txt +1 -0
  2299. dagster_community_components-0.1.0/resources/jira_resource/schema.json +45 -0
  2300. dagster_community_components-0.1.0/resources/kafka_resource/README.md +31 -0
  2301. dagster_community_components-0.1.0/resources/kafka_resource/component.py +55 -0
  2302. dagster_community_components-0.1.0/resources/kafka_resource/example.yaml +4 -0
  2303. dagster_community_components-0.1.0/resources/kafka_resource/requirements.txt +1 -0
  2304. dagster_community_components-0.1.0/resources/kafka_resource/schema.json +61 -0
  2305. dagster_community_components-0.1.0/resources/linkedin_ads_resource/README.md +39 -0
  2306. dagster_community_components-0.1.0/resources/linkedin_ads_resource/component.py +49 -0
  2307. dagster_community_components-0.1.0/resources/linkedin_ads_resource/example.yaml +5 -0
  2308. dagster_community_components-0.1.0/resources/linkedin_ads_resource/requirements.txt +1 -0
  2309. dagster_community_components-0.1.0/resources/linkedin_ads_resource/schema.json +39 -0
  2310. dagster_community_components-0.1.0/resources/minio_resource/README.md +38 -0
  2311. dagster_community_components-0.1.0/resources/minio_resource/component.py +45 -0
  2312. dagster_community_components-0.1.0/resources/minio_resource/example.yaml +8 -0
  2313. dagster_community_components-0.1.0/resources/minio_resource/requirements.txt +1 -0
  2314. dagster_community_components-0.1.0/resources/minio_resource/schema.json +65 -0
  2315. dagster_community_components-0.1.0/resources/mlflow_resource/README.md +30 -0
  2316. dagster_community_components-0.1.0/resources/mlflow_resource/component.py +48 -0
  2317. dagster_community_components-0.1.0/resources/mlflow_resource/example.yaml +4 -0
  2318. dagster_community_components-0.1.0/resources/mlflow_resource/requirements.txt +1 -0
  2319. dagster_community_components-0.1.0/resources/mlflow_resource/schema.json +54 -0
  2320. dagster_community_components-0.1.0/resources/mongodb_resource/README.md +26 -0
  2321. dagster_community_components-0.1.0/resources/mongodb_resource/component.py +35 -0
  2322. dagster_community_components-0.1.0/resources/mongodb_resource/example.yaml +6 -0
  2323. dagster_community_components-0.1.0/resources/mongodb_resource/requirements.txt +1 -0
  2324. dagster_community_components-0.1.0/resources/mongodb_resource/schema.json +42 -0
  2325. dagster_community_components-0.1.0/resources/mysql_resource/README.md +29 -0
  2326. dagster_community_components-0.1.0/resources/mysql_resource/component.py +52 -0
  2327. dagster_community_components-0.1.0/resources/mysql_resource/example.yaml +9 -0
  2328. dagster_community_components-0.1.0/resources/mysql_resource/requirements.txt +1 -0
  2329. dagster_community_components-0.1.0/resources/mysql_resource/schema.json +57 -0
  2330. dagster_community_components-0.1.0/resources/neo4j_resource/README.md +27 -0
  2331. dagster_community_components-0.1.0/resources/neo4j_resource/component.py +38 -0
  2332. dagster_community_components-0.1.0/resources/neo4j_resource/example.yaml +7 -0
  2333. dagster_community_components-0.1.0/resources/neo4j_resource/requirements.txt +1 -0
  2334. dagster_community_components-0.1.0/resources/neo4j_resource/schema.json +47 -0
  2335. dagster_community_components-0.1.0/resources/notion_resource/README.md +38 -0
  2336. dagster_community_components-0.1.0/resources/notion_resource/component.py +34 -0
  2337. dagster_community_components-0.1.0/resources/notion_resource/example.yaml +4 -0
  2338. dagster_community_components-0.1.0/resources/notion_resource/requirements.txt +1 -0
  2339. dagster_community_components-0.1.0/resources/notion_resource/schema.json +33 -0
  2340. dagster_community_components-0.1.0/resources/openai_resource/README.md +36 -0
  2341. dagster_community_components-0.1.0/resources/openai_resource/component.py +17 -0
  2342. dagster_community_components-0.1.0/resources/openai_resource/example.yaml +3 -0
  2343. dagster_community_components-0.1.0/resources/openai_resource/requirements.txt +1 -0
  2344. dagster_community_components-0.1.0/resources/openai_resource/schema.json +34 -0
  2345. dagster_community_components-0.1.0/resources/pagerduty_resource/README.md +36 -0
  2346. dagster_community_components-0.1.0/resources/pagerduty_resource/component.py +19 -0
  2347. dagster_community_components-0.1.0/resources/pagerduty_resource/example.yaml +4 -0
  2348. dagster_community_components-0.1.0/resources/pagerduty_resource/requirements.txt +1 -0
  2349. dagster_community_components-0.1.0/resources/pagerduty_resource/schema.json +33 -0
  2350. dagster_community_components-0.1.0/resources/personio_resource/README.md +40 -0
  2351. dagster_community_components-0.1.0/resources/personio_resource/component.py +45 -0
  2352. dagster_community_components-0.1.0/resources/personio_resource/example.yaml +5 -0
  2353. dagster_community_components-0.1.0/resources/personio_resource/requirements.txt +1 -0
  2354. dagster_community_components-0.1.0/resources/personio_resource/schema.json +40 -0
  2355. dagster_community_components-0.1.0/resources/pipedrive_resource/README.md +39 -0
  2356. dagster_community_components-0.1.0/resources/pipedrive_resource/component.py +54 -0
  2357. dagster_community_components-0.1.0/resources/pipedrive_resource/example.yaml +5 -0
  2358. dagster_community_components-0.1.0/resources/pipedrive_resource/requirements.txt +1 -0
  2359. dagster_community_components-0.1.0/resources/pipedrive_resource/schema.json +39 -0
  2360. dagster_community_components-0.1.0/resources/postgres_resource/README.md +42 -0
  2361. dagster_community_components-0.1.0/resources/postgres_resource/component.py +48 -0
  2362. dagster_community_components-0.1.0/resources/postgres_resource/example.yaml +7 -0
  2363. dagster_community_components-0.1.0/resources/postgres_resource/requirements.txt +1 -0
  2364. dagster_community_components-0.1.0/resources/postgres_resource/schema.json +64 -0
  2365. dagster_community_components-0.1.0/resources/pyspark_resource/README.md +32 -0
  2366. dagster_community_components-0.1.0/resources/pyspark_resource/component.py +23 -0
  2367. dagster_community_components-0.1.0/resources/pyspark_resource/example.yaml +3 -0
  2368. dagster_community_components-0.1.0/resources/pyspark_resource/requirements.txt +1 -0
  2369. dagster_community_components-0.1.0/resources/pyspark_resource/schema.json +48 -0
  2370. dagster_community_components-0.1.0/resources/qdrant_resource/README.md +36 -0
  2371. dagster_community_components-0.1.0/resources/qdrant_resource/component.py +27 -0
  2372. dagster_community_components-0.1.0/resources/qdrant_resource/example.yaml +3 -0
  2373. dagster_community_components-0.1.0/resources/qdrant_resource/requirements.txt +1 -0
  2374. dagster_community_components-0.1.0/resources/qdrant_resource/schema.json +55 -0
  2375. dagster_community_components-0.1.0/resources/redis_resource/README.md +28 -0
  2376. dagster_community_components-0.1.0/resources/redis_resource/component.py +54 -0
  2377. dagster_community_components-0.1.0/resources/redis_resource/example.yaml +7 -0
  2378. dagster_community_components-0.1.0/resources/redis_resource/requirements.txt +1 -0
  2379. dagster_community_components-0.1.0/resources/redis_resource/schema.json +55 -0
  2380. dagster_community_components-0.1.0/resources/redshift_resource/README.md +42 -0
  2381. dagster_community_components-0.1.0/resources/redshift_resource/component.py +32 -0
  2382. dagster_community_components-0.1.0/resources/redshift_resource/example.yaml +7 -0
  2383. dagster_community_components-0.1.0/resources/redshift_resource/requirements.txt +1 -0
  2384. dagster_community_components-0.1.0/resources/redshift_resource/schema.json +72 -0
  2385. dagster_community_components-0.1.0/resources/salesforce_resource/README.md +38 -0
  2386. dagster_community_components-0.1.0/resources/salesforce_resource/component.py +30 -0
  2387. dagster_community_components-0.1.0/resources/salesforce_resource/example.yaml +5 -0
  2388. dagster_community_components-0.1.0/resources/salesforce_resource/requirements.txt +1 -0
  2389. dagster_community_components-0.1.0/resources/salesforce_resource/schema.json +69 -0
  2390. dagster_community_components-0.1.0/resources/sftp_resource/README.md +33 -0
  2391. dagster_community_components-0.1.0/resources/sftp_resource/component.py +73 -0
  2392. dagster_community_components-0.1.0/resources/sftp_resource/example.yaml +5 -0
  2393. dagster_community_components-0.1.0/resources/sftp_resource/requirements.txt +1 -0
  2394. dagster_community_components-0.1.0/resources/sftp_resource/schema.json +68 -0
  2395. dagster_community_components-0.1.0/resources/shopify_resource/README.md +40 -0
  2396. dagster_community_components-0.1.0/resources/shopify_resource/component.py +48 -0
  2397. dagster_community_components-0.1.0/resources/shopify_resource/example.yaml +6 -0
  2398. dagster_community_components-0.1.0/resources/shopify_resource/requirements.txt +1 -0
  2399. dagster_community_components-0.1.0/resources/shopify_resource/schema.json +46 -0
  2400. dagster_community_components-0.1.0/resources/slack_resource/README.md +36 -0
  2401. dagster_community_components-0.1.0/resources/slack_resource/component.py +17 -0
  2402. dagster_community_components-0.1.0/resources/slack_resource/example.yaml +4 -0
  2403. dagster_community_components-0.1.0/resources/slack_resource/requirements.txt +1 -0
  2404. dagster_community_components-0.1.0/resources/slack_resource/schema.json +32 -0
  2405. dagster_community_components-0.1.0/resources/smtp_resource/README.md +41 -0
  2406. dagster_community_components-0.1.0/resources/smtp_resource/component.py +49 -0
  2407. dagster_community_components-0.1.0/resources/smtp_resource/example.yaml +6 -0
  2408. dagster_community_components-0.1.0/resources/smtp_resource/requirements.txt +1 -0
  2409. dagster_community_components-0.1.0/resources/smtp_resource/schema.json +59 -0
  2410. dagster_community_components-0.1.0/resources/snowflake_resource/README.md +39 -0
  2411. dagster_community_components-0.1.0/resources/snowflake_resource/component.py +32 -0
  2412. dagster_community_components-0.1.0/resources/snowflake_resource/example.yaml +6 -0
  2413. dagster_community_components-0.1.0/resources/snowflake_resource/requirements.txt +1 -0
  2414. dagster_community_components-0.1.0/resources/snowflake_resource/schema.json +72 -0
  2415. dagster_community_components-0.1.0/resources/stripe_resource/README.md +38 -0
  2416. dagster_community_components-0.1.0/resources/stripe_resource/component.py +35 -0
  2417. dagster_community_components-0.1.0/resources/stripe_resource/example.yaml +4 -0
  2418. dagster_community_components-0.1.0/resources/stripe_resource/requirements.txt +1 -0
  2419. dagster_community_components-0.1.0/resources/stripe_resource/schema.json +33 -0
  2420. dagster_community_components-0.1.0/resources/trino_resource/README.md +37 -0
  2421. dagster_community_components-0.1.0/resources/trino_resource/component.py +63 -0
  2422. dagster_community_components-0.1.0/resources/trino_resource/example.yaml +8 -0
  2423. dagster_community_components-0.1.0/resources/trino_resource/requirements.txt +1 -0
  2424. dagster_community_components-0.1.0/resources/trino_resource/schema.json +70 -0
  2425. dagster_community_components-0.1.0/resources/twilio_resource/README.md +37 -0
  2426. dagster_community_components-0.1.0/resources/twilio_resource/component.py +21 -0
  2427. dagster_community_components-0.1.0/resources/twilio_resource/example.yaml +5 -0
  2428. dagster_community_components-0.1.0/resources/twilio_resource/requirements.txt +1 -0
  2429. dagster_community_components-0.1.0/resources/twilio_resource/schema.json +39 -0
  2430. dagster_community_components-0.1.0/resources/wandb_resource/README.md +28 -0
  2431. dagster_community_components-0.1.0/resources/wandb_resource/component.py +43 -0
  2432. dagster_community_components-0.1.0/resources/wandb_resource/example.yaml +4 -0
  2433. dagster_community_components-0.1.0/resources/wandb_resource/requirements.txt +1 -0
  2434. dagster_community_components-0.1.0/resources/wandb_resource/schema.json +47 -0
  2435. dagster_community_components-0.1.0/resources/weaviate_resource/README.md +35 -0
  2436. dagster_community_components-0.1.0/resources/weaviate_resource/component.py +24 -0
  2437. dagster_community_components-0.1.0/resources/weaviate_resource/example.yaml +3 -0
  2438. dagster_community_components-0.1.0/resources/weaviate_resource/requirements.txt +1 -0
  2439. dagster_community_components-0.1.0/resources/weaviate_resource/schema.json +41 -0
  2440. dagster_community_components-0.1.0/resources/zendesk_resource/README.md +40 -0
  2441. dagster_community_components-0.1.0/resources/zendesk_resource/component.py +48 -0
  2442. dagster_community_components-0.1.0/resources/zendesk_resource/example.yaml +6 -0
  2443. dagster_community_components-0.1.0/resources/zendesk_resource/requirements.txt +1 -0
  2444. dagster_community_components-0.1.0/resources/zendesk_resource/schema.json +45 -0
  2445. dagster_community_components-0.1.0/sensors/abinitio_job_sensor/README.md +57 -0
  2446. dagster_community_components-0.1.0/sensors/abinitio_job_sensor/component.py +199 -0
  2447. dagster_community_components-0.1.0/sensors/abinitio_job_sensor/example.yaml +10 -0
  2448. dagster_community_components-0.1.0/sensors/abinitio_job_sensor/requirements.txt +1 -0
  2449. dagster_community_components-0.1.0/sensors/abinitio_job_sensor/schema.json +101 -0
  2450. dagster_community_components-0.1.0/sensors/adls_monitor/README.md +299 -0
  2451. dagster_community_components-0.1.0/sensors/adls_monitor/component.py +254 -0
  2452. dagster_community_components-0.1.0/sensors/adls_monitor/example.yaml +11 -0
  2453. dagster_community_components-0.1.0/sensors/adls_monitor/requirements.txt +2 -0
  2454. dagster_community_components-0.1.0/sensors/adls_monitor/schema.json +95 -0
  2455. dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/README.md +51 -0
  2456. dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/component.py +104 -0
  2457. dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/example.yaml +6 -0
  2458. dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/requirements.txt +1 -0
  2459. dagster_community_components-0.1.0/sensors/airbyte_sync_sensor/schema.json +82 -0
  2460. dagster_community_components-0.1.0/sensors/coalesce_job_sensor/README.md +36 -0
  2461. dagster_community_components-0.1.0/sensors/coalesce_job_sensor/component.py +108 -0
  2462. dagster_community_components-0.1.0/sensors/coalesce_job_sensor/example.yaml +9 -0
  2463. dagster_community_components-0.1.0/sensors/coalesce_job_sensor/requirements.txt +1 -0
  2464. dagster_community_components-0.1.0/sensors/coalesce_job_sensor/schema.json +73 -0
  2465. dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/README.md +49 -0
  2466. dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/component.py +101 -0
  2467. dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/example.yaml +8 -0
  2468. dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/requirements.txt +1 -0
  2469. dagster_community_components-0.1.0/sensors/dbt_cloud_job_sensor/schema.json +74 -0
  2470. dagster_community_components-0.1.0/sensors/eventhubs_monitor/README.md +80 -0
  2471. dagster_community_components-0.1.0/sensors/eventhubs_monitor/component.py +243 -0
  2472. dagster_community_components-0.1.0/sensors/eventhubs_monitor/example.yaml +10 -0
  2473. dagster_community_components-0.1.0/sensors/eventhubs_monitor/requirements.txt +2 -0
  2474. dagster_community_components-0.1.0/sensors/eventhubs_monitor/schema.json +88 -0
  2475. dagster_community_components-0.1.0/sensors/filesystem_monitor/README.md +363 -0
  2476. dagster_community_components-0.1.0/sensors/filesystem_monitor/component.py +188 -0
  2477. dagster_community_components-0.1.0/sensors/filesystem_monitor/example.yaml +9 -0
  2478. dagster_community_components-0.1.0/sensors/filesystem_monitor/requirements.txt +2 -0
  2479. dagster_community_components-0.1.0/sensors/filesystem_monitor/schema.json +67 -0
  2480. dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/README.md +49 -0
  2481. dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/component.py +95 -0
  2482. dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/example.yaml +8 -0
  2483. dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/requirements.txt +1 -0
  2484. dagster_community_components-0.1.0/sensors/fivetran_sync_sensor/schema.json +73 -0
  2485. dagster_community_components-0.1.0/sensors/gcs_monitor/README.md +284 -0
  2486. dagster_community_components-0.1.0/sensors/gcs_monitor/component.py +215 -0
  2487. dagster_community_components-0.1.0/sensors/gcs_monitor/example.yaml +10 -0
  2488. dagster_community_components-0.1.0/sensors/gcs_monitor/requirements.txt +1 -0
  2489. dagster_community_components-0.1.0/sensors/gcs_monitor/schema.json +81 -0
  2490. dagster_community_components-0.1.0/sensors/kafka_monitor/README.md +325 -0
  2491. dagster_community_components-0.1.0/sensors/kafka_monitor/component.py +272 -0
  2492. dagster_community_components-0.1.0/sensors/kafka_monitor/example.yaml +12 -0
  2493. dagster_community_components-0.1.0/sensors/kafka_monitor/requirements.txt +1 -0
  2494. dagster_community_components-0.1.0/sensors/kafka_monitor/schema.json +115 -0
  2495. dagster_community_components-0.1.0/sensors/kinesis_monitor/README.md +90 -0
  2496. dagster_community_components-0.1.0/sensors/kinesis_monitor/component.py +218 -0
  2497. dagster_community_components-0.1.0/sensors/kinesis_monitor/example.yaml +10 -0
  2498. dagster_community_components-0.1.0/sensors/kinesis_monitor/requirements.txt +1 -0
  2499. dagster_community_components-0.1.0/sensors/kinesis_monitor/schema.json +81 -0
  2500. dagster_community_components-0.1.0/sensors/matillion_job_sensor/README.md +55 -0
  2501. dagster_community_components-0.1.0/sensors/matillion_job_sensor/component.py +116 -0
  2502. dagster_community_components-0.1.0/sensors/matillion_job_sensor/example.yaml +10 -0
  2503. dagster_community_components-0.1.0/sensors/matillion_job_sensor/requirements.txt +1 -0
  2504. dagster_community_components-0.1.0/sensors/matillion_job_sensor/schema.json +95 -0
  2505. dagster_community_components-0.1.0/sensors/mlflow_model_sensor/README.md +170 -0
  2506. dagster_community_components-0.1.0/sensors/mlflow_model_sensor/component.py +201 -0
  2507. dagster_community_components-0.1.0/sensors/mlflow_model_sensor/example.yaml +8 -0
  2508. dagster_community_components-0.1.0/sensors/mlflow_model_sensor/requirements.txt +1 -0
  2509. dagster_community_components-0.1.0/sensors/mlflow_model_sensor/schema.json +66 -0
  2510. dagster_community_components-0.1.0/sensors/mqtt_monitor/README.md +105 -0
  2511. dagster_community_components-0.1.0/sensors/mqtt_monitor/component.py +231 -0
  2512. dagster_community_components-0.1.0/sensors/mqtt_monitor/example.yaml +13 -0
  2513. dagster_community_components-0.1.0/sensors/mqtt_monitor/requirements.txt +1 -0
  2514. dagster_community_components-0.1.0/sensors/mqtt_monitor/schema.json +124 -0
  2515. dagster_community_components-0.1.0/sensors/nats_monitor/README.md +81 -0
  2516. dagster_community_components-0.1.0/sensors/nats_monitor/component.py +227 -0
  2517. dagster_community_components-0.1.0/sensors/nats_monitor/example.yaml +11 -0
  2518. dagster_community_components-0.1.0/sensors/nats_monitor/requirements.txt +1 -0
  2519. dagster_community_components-0.1.0/sensors/nats_monitor/schema.json +114 -0
  2520. dagster_community_components-0.1.0/sensors/precisely_job_sensor/README.md +49 -0
  2521. dagster_community_components-0.1.0/sensors/precisely_job_sensor/component.py +106 -0
  2522. dagster_community_components-0.1.0/sensors/precisely_job_sensor/example.yaml +7 -0
  2523. dagster_community_components-0.1.0/sensors/precisely_job_sensor/requirements.txt +1 -0
  2524. dagster_community_components-0.1.0/sensors/precisely_job_sensor/schema.json +75 -0
  2525. dagster_community_components-0.1.0/sensors/pubsub_monitor/README.md +99 -0
  2526. dagster_community_components-0.1.0/sensors/pubsub_monitor/component.py +179 -0
  2527. dagster_community_components-0.1.0/sensors/pubsub_monitor/example.yaml +9 -0
  2528. dagster_community_components-0.1.0/sensors/pubsub_monitor/requirements.txt +1 -0
  2529. dagster_community_components-0.1.0/sensors/pubsub_monitor/schema.json +74 -0
  2530. dagster_community_components-0.1.0/sensors/pulsar_monitor/README.md +77 -0
  2531. dagster_community_components-0.1.0/sensors/pulsar_monitor/component.py +218 -0
  2532. dagster_community_components-0.1.0/sensors/pulsar_monitor/example.yaml +12 -0
  2533. dagster_community_components-0.1.0/sensors/pulsar_monitor/requirements.txt +1 -0
  2534. dagster_community_components-0.1.0/sensors/pulsar_monitor/schema.json +102 -0
  2535. dagster_community_components-0.1.0/sensors/rabbitmq_monitor/README.md +85 -0
  2536. dagster_community_components-0.1.0/sensors/rabbitmq_monitor/component.py +200 -0
  2537. dagster_community_components-0.1.0/sensors/rabbitmq_monitor/example.yaml +14 -0
  2538. dagster_community_components-0.1.0/sensors/rabbitmq_monitor/requirements.txt +1 -0
  2539. dagster_community_components-0.1.0/sensors/rabbitmq_monitor/schema.json +110 -0
  2540. dagster_community_components-0.1.0/sensors/redis_streams_monitor/README.md +96 -0
  2541. dagster_community_components-0.1.0/sensors/redis_streams_monitor/component.py +192 -0
  2542. dagster_community_components-0.1.0/sensors/redis_streams_monitor/example.yaml +13 -0
  2543. dagster_community_components-0.1.0/sensors/redis_streams_monitor/requirements.txt +1 -0
  2544. dagster_community_components-0.1.0/sensors/redis_streams_monitor/schema.json +113 -0
  2545. dagster_community_components-0.1.0/sensors/rivery_job_sensor/README.md +49 -0
  2546. dagster_community_components-0.1.0/sensors/rivery_job_sensor/component.py +99 -0
  2547. dagster_community_components-0.1.0/sensors/rivery_job_sensor/example.yaml +7 -0
  2548. dagster_community_components-0.1.0/sensors/rivery_job_sensor/requirements.txt +1 -0
  2549. dagster_community_components-0.1.0/sensors/rivery_job_sensor/schema.json +75 -0
  2550. dagster_community_components-0.1.0/sensors/s3_monitor/README.md +317 -0
  2551. dagster_community_components-0.1.0/sensors/s3_monitor/component.py +204 -0
  2552. dagster_community_components-0.1.0/sensors/s3_monitor/example.yaml +10 -0
  2553. dagster_community_components-0.1.0/sensors/s3_monitor/requirements.txt +1 -0
  2554. dagster_community_components-0.1.0/sensors/s3_monitor/schema.json +80 -0
  2555. dagster_community_components-0.1.0/sensors/servicebus_monitor/README.md +76 -0
  2556. dagster_community_components-0.1.0/sensors/servicebus_monitor/component.py +228 -0
  2557. dagster_community_components-0.1.0/sensors/servicebus_monitor/example.yaml +9 -0
  2558. dagster_community_components-0.1.0/sensors/servicebus_monitor/requirements.txt +2 -0
  2559. dagster_community_components-0.1.0/sensors/servicebus_monitor/schema.json +97 -0
  2560. dagster_community_components-0.1.0/sensors/servicenow_sensor/README.md +55 -0
  2561. dagster_community_components-0.1.0/sensors/servicenow_sensor/component.py +120 -0
  2562. dagster_community_components-0.1.0/sensors/servicenow_sensor/example.yaml +10 -0
  2563. dagster_community_components-0.1.0/sensors/servicenow_sensor/requirements.txt +1 -0
  2564. dagster_community_components-0.1.0/sensors/servicenow_sensor/schema.json +92 -0
  2565. dagster_community_components-0.1.0/sensors/sftp_monitor/README.md +57 -0
  2566. dagster_community_components-0.1.0/sensors/sftp_monitor/component.py +124 -0
  2567. dagster_community_components-0.1.0/sensors/sftp_monitor/example.yaml +10 -0
  2568. dagster_community_components-0.1.0/sensors/sftp_monitor/requirements.txt +1 -0
  2569. dagster_community_components-0.1.0/sensors/sftp_monitor/schema.json +101 -0
  2570. dagster_community_components-0.1.0/sensors/sharepoint_monitor/README.md +57 -0
  2571. dagster_community_components-0.1.0/sensors/sharepoint_monitor/component.py +155 -0
  2572. dagster_community_components-0.1.0/sensors/sharepoint_monitor/example.yaml +11 -0
  2573. dagster_community_components-0.1.0/sensors/sharepoint_monitor/requirements.txt +1 -0
  2574. dagster_community_components-0.1.0/sensors/sharepoint_monitor/schema.json +99 -0
  2575. dagster_community_components-0.1.0/sensors/slack_notification/README.md +209 -0
  2576. dagster_community_components-0.1.0/sensors/slack_notification/component.py +161 -0
  2577. dagster_community_components-0.1.0/sensors/slack_notification/example.yaml +9 -0
  2578. dagster_community_components-0.1.0/sensors/slack_notification/requirements.txt +1 -0
  2579. dagster_community_components-0.1.0/sensors/slack_notification/schema.json +73 -0
  2580. dagster_community_components-0.1.0/sensors/sql_monitor/README.md +166 -0
  2581. dagster_community_components-0.1.0/sensors/sql_monitor/component.py +229 -0
  2582. dagster_community_components-0.1.0/sensors/sql_monitor/example.yaml +11 -0
  2583. dagster_community_components-0.1.0/sensors/sql_monitor/requirements.txt +9 -0
  2584. dagster_community_components-0.1.0/sensors/sql_monitor/schema.json +86 -0
  2585. dagster_community_components-0.1.0/sensors/sqs_monitor/README.md +99 -0
  2586. dagster_community_components-0.1.0/sensors/sqs_monitor/component.py +181 -0
  2587. dagster_community_components-0.1.0/sensors/sqs_monitor/example.yaml +10 -0
  2588. dagster_community_components-0.1.0/sensors/sqs_monitor/requirements.txt +1 -0
  2589. dagster_community_components-0.1.0/sensors/sqs_monitor/schema.json +81 -0
  2590. dagster_community_components-0.1.0/sensors/twilio_notification/README.md +177 -0
  2591. dagster_community_components-0.1.0/sensors/twilio_notification/component.py +306 -0
  2592. dagster_community_components-0.1.0/sensors/twilio_notification/example.yaml +11 -0
  2593. dagster_community_components-0.1.0/sensors/twilio_notification/requirements.txt +1 -0
  2594. dagster_community_components-0.1.0/sensors/twilio_notification/schema.json +104 -0
  2595. 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
+ ```