flowtask 5.11.11__tar.gz → 5.12.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 (959) hide show
  1. flowtask-5.12.0/PKG-INFO +229 -0
  2. flowtask-5.12.0/flowtask/components/ASPX.py +159 -0
  3. flowtask-5.12.0/flowtask/components/ATT.py +1007 -0
  4. flowtask-5.12.0/flowtask/components/AddDataset.py +440 -0
  5. flowtask-5.12.0/flowtask/components/AutoTask.py +312 -0
  6. flowtask-5.12.0/flowtask/components/Azure.py +4 -0
  7. flowtask-5.12.0/flowtask/components/AzureUsers.py +176 -0
  8. flowtask-5.12.0/flowtask/components/BaseAction.py +4 -0
  9. flowtask-5.12.0/flowtask/components/BaseLoop.py +4 -0
  10. flowtask-5.12.0/flowtask/components/BestBuy.py +2024 -0
  11. flowtask-5.12.0/flowtask/components/CSVToGCS.py +139 -0
  12. flowtask-5.12.0/flowtask/components/CallAnalysis.py +1006 -0
  13. flowtask-5.12.0/flowtask/components/CallSummary.py +166 -0
  14. flowtask-5.12.0/flowtask/components/CensusData.py +582 -0
  15. flowtask-5.12.0/flowtask/components/CensusVariables.py +208 -0
  16. flowtask-5.12.0/flowtask/components/CompanyScraper/scrapper.py +1067 -0
  17. flowtask-5.12.0/flowtask/components/CopyFromBase.py +4 -0
  18. flowtask-5.12.0/flowtask/components/CopyFromS3.py +202 -0
  19. flowtask-5.12.0/flowtask/components/CopyFromSharepoint.py +246 -0
  20. flowtask-5.12.0/flowtask/components/CopyTo.py +4 -0
  21. flowtask-5.12.0/flowtask/components/CopyToBigQuery.py +767 -0
  22. flowtask-5.12.0/flowtask/components/CopyToFileBase.py +4 -0
  23. flowtask-5.12.0/flowtask/components/CopyToMongoDB.py +295 -0
  24. flowtask-5.12.0/flowtask/components/CopyToPg.py +635 -0
  25. flowtask-5.12.0/flowtask/components/CopyToRethink.py +210 -0
  26. flowtask-5.12.0/flowtask/components/CopyToS3.py +200 -0
  27. flowtask-5.12.0/flowtask/components/CopyToSharepoint.py +201 -0
  28. flowtask-5.12.0/flowtask/components/CreateGCSBucket.py +121 -0
  29. flowtask-5.12.0/flowtask/components/CreateReport/CreateReport.py +262 -0
  30. flowtask-5.12.0/flowtask/components/CustomerSatisfaction.py +139 -0
  31. flowtask-5.12.0/flowtask/components/DataInput.py +204 -0
  32. flowtask-5.12.0/flowtask/components/DbClient.py +4 -0
  33. flowtask-5.12.0/flowtask/components/DialPad.py +155 -0
  34. flowtask-5.12.0/flowtask/components/DispatchMe.py +359 -0
  35. flowtask-5.12.0/flowtask/components/DocumentDBQuery.py +251 -0
  36. flowtask-5.12.0/flowtask/components/DownloadFrom.py +4 -0
  37. flowtask-5.12.0/flowtask/components/DownloadFromD2L.py +115 -0
  38. flowtask-5.12.0/flowtask/components/DownloadFromFTP.py +222 -0
  39. flowtask-5.12.0/flowtask/components/DownloadFromIMAP.py +342 -0
  40. flowtask-5.12.0/flowtask/components/DownloadFromS3.py +199 -0
  41. flowtask-5.12.0/flowtask/components/DownloadFromSFTP.py +274 -0
  42. flowtask-5.12.0/flowtask/components/DownloadFromSharepoint.py +199 -0
  43. flowtask-5.12.0/flowtask/components/DownloadFromSmartSheet.py +126 -0
  44. flowtask-5.12.0/flowtask/components/DownloadFromSmartsheet.py +334 -0
  45. flowtask-5.12.0/flowtask/components/DownloadS3File.py +253 -0
  46. flowtask-5.12.0/flowtask/components/Dummy.py +81 -0
  47. flowtask-5.12.0/flowtask/components/DuplicatePhoto.py +528 -0
  48. flowtask-5.12.0/flowtask/components/EmployeeEvaluation.py +250 -0
  49. flowtask-5.12.0/flowtask/components/ExecuteSQL.py +327 -0
  50. flowtask-5.12.0/flowtask/components/ExtractHTML.py +191 -0
  51. flowtask-5.12.0/flowtask/components/ExtractTranscript.py +1274 -0
  52. flowtask-5.12.0/flowtask/components/FileBase.py +4 -0
  53. flowtask-5.12.0/flowtask/components/FileCopy.py +191 -0
  54. flowtask-5.12.0/flowtask/components/FileDelete.py +86 -0
  55. flowtask-5.12.0/flowtask/components/FileExists.py +148 -0
  56. flowtask-5.12.0/flowtask/components/FileOpen.py +85 -0
  57. flowtask-5.12.0/flowtask/components/FileRead.py +125 -0
  58. flowtask-5.12.0/flowtask/components/FileRename.py +111 -0
  59. flowtask-5.12.0/flowtask/components/FilterIf.py +297 -0
  60. flowtask-5.12.0/flowtask/components/FilterRows/FilterRows.py +205 -0
  61. flowtask-5.12.0/flowtask/components/GCSToBigQuery.py +122 -0
  62. flowtask-5.12.0/flowtask/components/GenData.py +238 -0
  63. flowtask-5.12.0/flowtask/components/GoogleA4.py +153 -0
  64. flowtask-5.12.0/flowtask/components/GooglePlaces.py +959 -0
  65. flowtask-5.12.0/flowtask/components/GoogleSearch.py +550 -0
  66. flowtask-5.12.0/flowtask/components/HTTPClient.py +301 -0
  67. flowtask-5.12.0/flowtask/components/ICIMS.py +153 -0
  68. flowtask-5.12.0/flowtask/components/IF.py +198 -0
  69. flowtask-5.12.0/flowtask/components/IcimsFolderCopy.py +189 -0
  70. flowtask-5.12.0/flowtask/components/ImageFeatures/process.py +296 -0
  71. flowtask-5.12.0/flowtask/components/IteratorBase.py +266 -0
  72. flowtask-5.12.0/flowtask/components/LeadIQ.py +662 -0
  73. flowtask-5.12.0/flowtask/components/Loop.py +272 -0
  74. flowtask-5.12.0/flowtask/components/MS365Usage.py +154 -0
  75. flowtask-5.12.0/flowtask/components/MSTeamsMessages.py +352 -0
  76. flowtask-5.12.0/flowtask/components/MarkdownMaker.py +174 -0
  77. flowtask-5.12.0/flowtask/components/MarketClustering.py +2381 -0
  78. flowtask-5.12.0/flowtask/components/MergeFiles.py +366 -0
  79. flowtask-5.12.0/flowtask/components/MilvusOutput.py +100 -0
  80. flowtask-5.12.0/flowtask/components/NearByStores.py +189 -0
  81. flowtask-5.12.0/flowtask/components/NextStopAgent.py +202 -0
  82. flowtask-5.12.0/flowtask/components/Odoo.py +177 -0
  83. flowtask-5.12.0/flowtask/components/OdooInjector.py +218 -0
  84. flowtask-5.12.0/flowtask/components/OpenStreetMap.py +582 -0
  85. flowtask-5.12.0/flowtask/components/OpenWeather.py +63 -0
  86. flowtask-5.12.0/flowtask/components/OpenWithBase.py +615 -0
  87. flowtask-5.12.0/flowtask/components/OpenWithPandas.py +589 -0
  88. flowtask-5.12.0/flowtask/components/PDFGenerator.py +151 -0
  89. flowtask-5.12.0/flowtask/components/PGPDecrypt.py +205 -0
  90. flowtask-5.12.0/flowtask/components/PandasToFile.py +262 -0
  91. flowtask-5.12.0/flowtask/components/PandasToPowerPoint.py +530 -0
  92. flowtask-5.12.0/flowtask/components/Paradox.py +353 -0
  93. flowtask-5.12.0/flowtask/components/ParrotLoader/loader.py +719 -0
  94. flowtask-5.12.0/flowtask/components/ParseHTML.py +98 -0
  95. flowtask-5.12.0/flowtask/components/PgVectorOutput.py +299 -0
  96. flowtask-5.12.0/flowtask/components/PlacerStores.py +262 -0
  97. flowtask-5.12.0/flowtask/components/PlanogramCompliance.py +654 -0
  98. flowtask-5.12.0/flowtask/components/PodcastMaker.py +371 -0
  99. flowtask-5.12.0/flowtask/components/Pokemon.py +524 -0
  100. flowtask-5.12.0/flowtask/components/PositiveBot.py +76 -0
  101. flowtask-5.12.0/flowtask/components/PowerPointSlide.py +450 -0
  102. flowtask-5.12.0/flowtask/components/PrintMessage.py +130 -0
  103. flowtask-5.12.0/flowtask/components/ProductCompetitors/scrapper.py +175 -0
  104. flowtask-5.12.0/flowtask/components/ProductCompliant.py +76 -0
  105. flowtask-5.12.0/flowtask/components/ProductInfo/scraper.py +338 -0
  106. flowtask-5.12.0/flowtask/components/ProductPricing.py +131 -0
  107. flowtask-5.12.0/flowtask/components/ProductReportBot.py +1011 -0
  108. flowtask-5.12.0/flowtask/components/QS.py +292 -0
  109. flowtask-5.12.0/flowtask/components/QSBase.py +4 -0
  110. flowtask-5.12.0/flowtask/components/QueryToInsert.py +330 -0
  111. flowtask-5.12.0/flowtask/components/QueryToPandas.py +525 -0
  112. flowtask-5.12.0/flowtask/components/RethinkDBQuery.py +202 -0
  113. flowtask-5.12.0/flowtask/components/RunSSH.py +78 -0
  114. flowtask-5.12.0/flowtask/components/RunShell.py +80 -0
  115. flowtask-5.12.0/flowtask/components/SAPExtraction.py +405 -0
  116. flowtask-5.12.0/flowtask/components/SalesForce.py +41 -0
  117. flowtask-5.12.0/flowtask/components/Sassie.py +332 -0
  118. flowtask-5.12.0/flowtask/components/SaveImageBank/__init__.py +276 -0
  119. flowtask-5.12.0/flowtask/components/SchedulingVisits.py +1423 -0
  120. flowtask-5.12.0/flowtask/components/ScrapPage.py +251 -0
  121. flowtask-5.12.0/flowtask/components/ScrapTool.py +869 -0
  122. flowtask-5.12.0/flowtask/components/SendEmail.py +329 -0
  123. flowtask-5.12.0/flowtask/components/SendNotify/component.py +403 -0
  124. flowtask-5.12.0/flowtask/components/SentimentAnalysis.py +708 -0
  125. flowtask-5.12.0/flowtask/components/ServiceScrapper/scrapper.py +429 -0
  126. flowtask-5.12.0/flowtask/components/SetVariables.py +164 -0
  127. flowtask-5.12.0/flowtask/components/SplitPDF.py +393 -0
  128. flowtask-5.12.0/flowtask/components/Staples.py +1224 -0
  129. flowtask-5.12.0/flowtask/components/SubTask.py +187 -0
  130. flowtask-5.12.0/flowtask/components/SuiteCRM.py +58 -0
  131. flowtask-5.12.0/flowtask/components/Switch.py +193 -0
  132. flowtask-5.12.0/flowtask/components/TableBase.py +4 -0
  133. flowtask-5.12.0/flowtask/components/TableDelete.py +321 -0
  134. flowtask-5.12.0/flowtask/components/TableInput.py +144 -0
  135. flowtask-5.12.0/flowtask/components/TableOutput/TableOutput.py +422 -0
  136. flowtask-5.12.0/flowtask/components/TableSchema.py +540 -0
  137. flowtask-5.12.0/flowtask/components/ThumbnailGenerator.py +356 -0
  138. flowtask-5.12.0/flowtask/components/ToPandas.py +87 -0
  139. flowtask-5.12.0/flowtask/components/TransformRows/TransformRows.py +519 -0
  140. flowtask-5.12.0/flowtask/components/TransposeRows.py +181 -0
  141. flowtask-5.12.0/flowtask/components/Uncompress.py +176 -0
  142. flowtask-5.12.0/flowtask/components/UniqueRows.py +131 -0
  143. flowtask-5.12.0/flowtask/components/UpdateOperationalVars.py +176 -0
  144. flowtask-5.12.0/flowtask/components/UploadTo.py +4 -0
  145. flowtask-5.12.0/flowtask/components/UploadToS3.py +377 -0
  146. flowtask-5.12.0/flowtask/components/UploadToSFTP.py +164 -0
  147. flowtask-5.12.0/flowtask/components/UploadToSharepoint.py +232 -0
  148. flowtask-5.12.0/flowtask/components/UserFunc.py +129 -0
  149. flowtask-5.12.0/flowtask/components/VideoUnderstanding.py +125 -0
  150. flowtask-5.12.0/flowtask/components/WSDLClient.py +142 -0
  151. flowtask-5.12.0/flowtask/components/Wait.py +40 -0
  152. flowtask-5.12.0/flowtask/components/Workday/workday.py +961 -0
  153. flowtask-5.12.0/flowtask/components/WorkdayReport.py +728 -0
  154. flowtask-5.12.0/flowtask/components/Workplace.py +148 -0
  155. flowtask-5.12.0/flowtask/components/XMLToPandas.py +286 -0
  156. flowtask-5.12.0/flowtask/components/Zammad/__init__.py +55 -0
  157. flowtask-5.12.0/flowtask/components/Zoom.py +1963 -0
  158. flowtask-5.12.0/flowtask/components/ZoomInfoScraper.py +413 -0
  159. flowtask-5.12.0/flowtask/components/ZoomUs.py +1873 -0
  160. flowtask-5.12.0/flowtask/components/__init__.py +106 -0
  161. flowtask-5.12.0/flowtask/components/_census/__init__.py +68 -0
  162. flowtask-5.12.0/flowtask/components/_census/cache.py +162 -0
  163. flowtask-5.12.0/flowtask/components/_census/fetch.py +272 -0
  164. flowtask-5.12.0/flowtask/components/_census/resolver.py +211 -0
  165. flowtask-5.12.0/flowtask/components/_census/transform.py +268 -0
  166. flowtask-5.12.0/flowtask/components/abstract.py +4 -0
  167. flowtask-5.12.0/flowtask/components/flow.py +5 -0
  168. flowtask-5.12.0/flowtask/components/google.py +4 -0
  169. flowtask-5.12.0/flowtask/components/group.py +4 -0
  170. flowtask-5.12.0/flowtask/components/pandas_io.py +536 -0
  171. flowtask-5.12.0/flowtask/components/reviewscrap.py +133 -0
  172. flowtask-5.12.0/flowtask/components/tAddTotalRow.py +118 -0
  173. flowtask-5.12.0/flowtask/components/tAutoincrement.py +123 -0
  174. flowtask-5.12.0/flowtask/components/tConcat.py +115 -0
  175. flowtask-5.12.0/flowtask/components/tConditionalMultiply.py +159 -0
  176. flowtask-5.12.0/flowtask/components/tCrosstab.py +173 -0
  177. flowtask-5.12.0/flowtask/components/tExplode.py +198 -0
  178. flowtask-5.12.0/flowtask/components/tFilter.py +188 -0
  179. flowtask-5.12.0/flowtask/components/tFilterCommonValues.py +134 -0
  180. flowtask-5.12.0/flowtask/components/tFrequencyWeights.py +156 -0
  181. flowtask-5.12.0/flowtask/components/tGroup.py +260 -0
  182. flowtask-5.12.0/flowtask/components/tJoin.py +271 -0
  183. flowtask-5.12.0/flowtask/components/tMap/tMap.py +448 -0
  184. flowtask-5.12.0/flowtask/components/tMelt.py +117 -0
  185. flowtask-5.12.0/flowtask/components/tMerge.py +373 -0
  186. flowtask-5.12.0/flowtask/components/tOrder.py +100 -0
  187. flowtask-5.12.0/flowtask/components/tPandas.py +4 -0
  188. flowtask-5.12.0/flowtask/components/tPivot.py +112 -0
  189. flowtask-5.12.0/flowtask/components/tPluckCols.py +84 -0
  190. flowtask-5.12.0/flowtask/components/tUnnest.py +87 -0
  191. flowtask-5.12.0/flowtask/components/user.py +4 -0
  192. flowtask-5.12.0/flowtask/conf.py +545 -0
  193. flowtask-5.12.0/flowtask/documentation/categories.json +169 -0
  194. flowtask-5.12.0/flowtask/documentation/cli.py +324 -0
  195. flowtask-5.12.0/flowtask/documentation/generated/components/ASPX.doc.json +36 -0
  196. flowtask-5.12.0/flowtask/documentation/generated/components/AddDataset.doc.json +101 -0
  197. flowtask-5.12.0/flowtask/documentation/generated/components/AutoTask.doc.json +69 -0
  198. flowtask-5.12.0/flowtask/documentation/generated/components/AzureUsers.doc.json +29 -0
  199. flowtask-5.12.0/flowtask/documentation/generated/components/CallAnalysis.doc.json +81 -0
  200. flowtask-5.12.0/flowtask/documentation/generated/components/CallSummary.doc.json +25 -0
  201. flowtask-5.12.0/flowtask/documentation/generated/components/CompanyScraper.doc.json +25 -0
  202. flowtask-5.12.0/flowtask/documentation/generated/components/CopyFromS3.doc.json +23 -0
  203. flowtask-5.12.0/flowtask/documentation/generated/components/CopyFromSharepoint.doc.json +23 -0
  204. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToBigQuery.doc.json +45 -0
  205. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToMongoDB.doc.json +41 -0
  206. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToPg.doc.json +61 -0
  207. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToRethink.doc.json +45 -0
  208. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToS3.doc.json +23 -0
  209. flowtask-5.12.0/flowtask/documentation/generated/components/CopyToSharepoint.doc.json +23 -0
  210. flowtask-5.12.0/flowtask/documentation/generated/components/CustomerSatisfaction.doc.json +33 -0
  211. flowtask-5.12.0/flowtask/documentation/generated/components/DataInput.doc.json +45 -0
  212. flowtask-5.12.0/flowtask/documentation/generated/components/DateList.doc.json +43 -0
  213. flowtask-5.12.0/flowtask/documentation/generated/components/DialPad.doc.json +44 -0
  214. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromD2L.doc.json +49 -0
  215. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromFTP.doc.json +37 -0
  216. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromIMAP.doc.json +52 -0
  217. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromS3.doc.json +56 -0
  218. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromSFTP.doc.json +80 -0
  219. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromSharepoint.doc.json +49 -0
  220. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromSmartSheet.doc.json +49 -0
  221. flowtask-5.12.0/flowtask/documentation/generated/components/DownloadFromSmartsheet.doc.json +61 -0
  222. flowtask-5.12.0/flowtask/documentation/generated/components/EmployeeEvaluation.doc.json +28 -0
  223. flowtask-5.12.0/flowtask/documentation/generated/components/ExecuteSQL.doc.json +49 -0
  224. flowtask-5.12.0/flowtask/documentation/generated/components/ExtractTranscript.doc.json +81 -0
  225. flowtask-5.12.0/flowtask/documentation/generated/components/FileCopy.doc.json +45 -0
  226. flowtask-5.12.0/flowtask/documentation/generated/components/FileDelete.doc.json +48 -0
  227. flowtask-5.12.0/flowtask/documentation/generated/components/FileExists.doc.json +63 -0
  228. flowtask-5.12.0/flowtask/documentation/generated/components/FileIteratorDelete.doc.json +37 -0
  229. flowtask-5.12.0/flowtask/documentation/generated/components/FileList.doc.json +29 -0
  230. flowtask-5.12.0/flowtask/documentation/generated/components/FileOpen.doc.json +25 -0
  231. flowtask-5.12.0/flowtask/documentation/generated/components/FileRead.doc.json +25 -0
  232. flowtask-5.12.0/flowtask/documentation/generated/components/FileRename.doc.json +25 -0
  233. flowtask-5.12.0/flowtask/documentation/generated/components/FilterIf.doc.json +45 -0
  234. flowtask-5.12.0/flowtask/documentation/generated/components/FilterRows.doc.json +37 -0
  235. flowtask-5.12.0/flowtask/documentation/generated/components/GoogleA4.doc.json +49 -0
  236. flowtask-5.12.0/flowtask/documentation/generated/components/GoogleGeoCoding.doc.json +25 -0
  237. flowtask-5.12.0/flowtask/documentation/generated/components/GoogleSearch.doc.json +25 -0
  238. flowtask-5.12.0/flowtask/documentation/generated/components/HTTPClient.doc.json +38 -0
  239. flowtask-5.12.0/flowtask/documentation/generated/components/ICIMS.doc.json +29 -0
  240. flowtask-5.12.0/flowtask/documentation/generated/components/IteratorBase.doc.json +25 -0
  241. flowtask-5.12.0/flowtask/documentation/generated/components/LeadIQ.doc.json +36 -0
  242. flowtask-5.12.0/flowtask/documentation/generated/components/MS365Usage.doc.json +68 -0
  243. flowtask-5.12.0/flowtask/documentation/generated/components/MSTeamsMessages.doc.json +57 -0
  244. flowtask-5.12.0/flowtask/documentation/generated/components/MergeFileList.doc.json +29 -0
  245. flowtask-5.12.0/flowtask/documentation/generated/components/MergeFiles.doc.json +41 -0
  246. flowtask-5.12.0/flowtask/documentation/generated/components/NetworkNinjaClaims.doc.json +49 -0
  247. flowtask-5.12.0/flowtask/documentation/generated/components/Odoo.doc.json +52 -0
  248. flowtask-5.12.0/flowtask/documentation/generated/components/OdooInjector.doc.json +40 -0
  249. flowtask-5.12.0/flowtask/documentation/generated/components/OpenFromXML.doc.json +40 -0
  250. flowtask-5.12.0/flowtask/documentation/generated/components/OpenWithBase.doc.json +85 -0
  251. flowtask-5.12.0/flowtask/documentation/generated/components/OpenWithPandas.doc.json +52 -0
  252. flowtask-5.12.0/flowtask/documentation/generated/components/PGPDecrypt.doc.json +38 -0
  253. flowtask-5.12.0/flowtask/documentation/generated/components/PandasIterator.doc.json +40 -0
  254. flowtask-5.12.0/flowtask/documentation/generated/components/PandasToFile.doc.json +64 -0
  255. flowtask-5.12.0/flowtask/documentation/generated/components/Paradox.doc.json +29 -0
  256. flowtask-5.12.0/flowtask/documentation/generated/components/ParamIterator.doc.json +48 -0
  257. flowtask-5.12.0/flowtask/documentation/generated/components/PlacerStores.doc.json +28 -0
  258. flowtask-5.12.0/flowtask/documentation/generated/components/Pokemon.doc.json +37 -0
  259. flowtask-5.12.0/flowtask/documentation/generated/components/PositiveBot.doc.json +25 -0
  260. flowtask-5.12.0/flowtask/documentation/generated/components/PowerPointSlide.doc.json +37 -0
  261. flowtask-5.12.0/flowtask/documentation/generated/components/PrintMessage.doc.json +49 -0
  262. flowtask-5.12.0/flowtask/documentation/generated/components/ProductCompliant.doc.json +25 -0
  263. flowtask-5.12.0/flowtask/documentation/generated/components/ProductPricing.doc.json +29 -0
  264. flowtask-5.12.0/flowtask/documentation/generated/components/ProductReportBot.doc.json +45 -0
  265. flowtask-5.12.0/flowtask/documentation/generated/components/QS.doc.json +49 -0
  266. flowtask-5.12.0/flowtask/documentation/generated/components/QueryIterator.doc.json +53 -0
  267. flowtask-5.12.0/flowtask/documentation/generated/components/QueryToInsert.doc.json +48 -0
  268. flowtask-5.12.0/flowtask/documentation/generated/components/QueryToPandas.doc.json +115 -0
  269. flowtask-5.12.0/flowtask/documentation/generated/components/RESTClient.doc.json +37 -0
  270. flowtask-5.12.0/flowtask/documentation/generated/components/RunShell.doc.json +53 -0
  271. flowtask-5.12.0/flowtask/documentation/generated/components/SAPExtraction.doc.json +37 -0
  272. flowtask-5.12.0/flowtask/documentation/generated/components/Sassie.doc.json +65 -0
  273. flowtask-5.12.0/flowtask/documentation/generated/components/ScrapTool.doc.json +83 -0
  274. flowtask-5.12.0/flowtask/documentation/generated/components/SendNotify.doc.json +56 -0
  275. flowtask-5.12.0/flowtask/documentation/generated/components/SentimentAnalysis.doc.json +53 -0
  276. flowtask-5.12.0/flowtask/documentation/generated/components/ServiceScrapper.doc.json +18 -0
  277. flowtask-5.12.0/flowtask/documentation/generated/components/SetVariables.doc.json +28 -0
  278. flowtask-5.12.0/flowtask/documentation/generated/components/SplitPDF.doc.json +41 -0
  279. flowtask-5.12.0/flowtask/documentation/generated/components/SubTask.doc.json +41 -0
  280. flowtask-5.12.0/flowtask/documentation/generated/components/SuiteCRM.doc.json +47 -0
  281. flowtask-5.12.0/flowtask/documentation/generated/components/TableDelete.doc.json +53 -0
  282. flowtask-5.12.0/flowtask/documentation/generated/components/TableInput.doc.json +56 -0
  283. flowtask-5.12.0/flowtask/documentation/generated/components/TableOutput.doc.json +61 -0
  284. flowtask-5.12.0/flowtask/documentation/generated/components/TableSchema.doc.json +49 -0
  285. flowtask-5.12.0/flowtask/documentation/generated/components/ThumbnailGenerator.doc.json +65 -0
  286. flowtask-5.12.0/flowtask/documentation/generated/components/TransformRows.doc.json +49 -0
  287. flowtask-5.12.0/flowtask/documentation/generated/components/TransposeRows.doc.json +41 -0
  288. flowtask-5.12.0/flowtask/documentation/generated/components/UnGzip.doc.json +41 -0
  289. flowtask-5.12.0/flowtask/documentation/generated/components/Uncompress.doc.json +41 -0
  290. flowtask-5.12.0/flowtask/documentation/generated/components/UniqueRows.doc.json +37 -0
  291. flowtask-5.12.0/flowtask/documentation/generated/components/Unzip.doc.json +45 -0
  292. flowtask-5.12.0/flowtask/documentation/generated/components/UploadToS3.doc.json +65 -0
  293. flowtask-5.12.0/flowtask/documentation/generated/components/UploadToSFTP.doc.json +45 -0
  294. flowtask-5.12.0/flowtask/documentation/generated/components/UploadToSharepoint.doc.json +45 -0
  295. flowtask-5.12.0/flowtask/documentation/generated/components/UserFunc.doc.json +41 -0
  296. flowtask-5.12.0/flowtask/documentation/generated/components/Zoom.doc.json +97 -0
  297. flowtask-5.12.0/flowtask/documentation/generated/components/ZoomInfoScraper.doc.json +25 -0
  298. flowtask-5.12.0/flowtask/documentation/generated/components/tAutoincrement.doc.json +33 -0
  299. flowtask-5.12.0/flowtask/documentation/generated/components/tConcat.doc.json +33 -0
  300. flowtask-5.12.0/flowtask/documentation/generated/components/tConditionalMultiply.doc.json +45 -0
  301. flowtask-5.12.0/flowtask/documentation/generated/components/tCrosstab.doc.json +53 -0
  302. flowtask-5.12.0/flowtask/documentation/generated/components/tExplode.doc.json +41 -0
  303. flowtask-5.12.0/flowtask/documentation/generated/components/tFilter.doc.json +29 -0
  304. flowtask-5.12.0/flowtask/documentation/generated/components/tFilterCommonValues.doc.json +33 -0
  305. flowtask-5.12.0/flowtask/documentation/generated/components/tFrequencyWeights.doc.json +41 -0
  306. flowtask-5.12.0/flowtask/documentation/generated/components/tGroup.doc.json +36 -0
  307. flowtask-5.12.0/flowtask/documentation/generated/components/tJoin.doc.json +56 -0
  308. flowtask-5.12.0/flowtask/documentation/generated/components/tMap.doc.json +69 -0
  309. flowtask-5.12.0/flowtask/documentation/generated/components/tMelt.doc.json +40 -0
  310. flowtask-5.12.0/flowtask/documentation/generated/components/tOrder.doc.json +32 -0
  311. flowtask-5.12.0/flowtask/documentation/generated/components/tPivot.doc.json +37 -0
  312. flowtask-5.12.0/flowtask/documentation/generated/components/tPluckCols.doc.json +25 -0
  313. flowtask-5.12.0/flowtask/documentation/generated/components/tUnnest.doc.json +37 -0
  314. flowtask-5.12.0/flowtask/documentation/generated/index.json +665 -0
  315. flowtask-5.12.0/flowtask/documentation/generator.py +600 -0
  316. flowtask-5.12.0/flowtask/documentation/models.py +133 -0
  317. flowtask-5.12.0/flowtask/documentation/parser.py +271 -0
  318. flowtask-5.12.0/flowtask/documentation/schema.py +109 -0
  319. flowtask-5.12.0/flowtask/documentation/toolkit.py +584 -0
  320. flowtask-5.12.0/flowtask/executors/__init__.py +66 -0
  321. flowtask-5.12.0/flowtask/executors/base.py +87 -0
  322. flowtask-5.12.0/flowtask/executors/docker.py +447 -0
  323. flowtask-5.12.0/flowtask/executors/events.py +96 -0
  324. flowtask-5.12.0/flowtask/executors/exceptions.py +26 -0
  325. flowtask-5.12.0/flowtask/executors/k8s.py +507 -0
  326. flowtask-5.12.0/flowtask/executors/local.py +197 -0
  327. flowtask-5.12.0/flowtask/executors/models.py +97 -0
  328. flowtask-5.12.0/flowtask/executors/publish.py +288 -0
  329. flowtask-5.12.0/flowtask/executors/qworker.py +282 -0
  330. flowtask-5.12.0/flowtask/executors/registry.py +74 -0
  331. flowtask-5.12.0/flowtask/executors/resolver.py +197 -0
  332. flowtask-5.12.0/flowtask/factory/__init__.py +74 -0
  333. flowtask-5.12.0/flowtask/factory/agent.py +218 -0
  334. flowtask-5.12.0/flowtask/factory/composer.py +363 -0
  335. flowtask-5.12.0/flowtask/factory/parser.py +211 -0
  336. flowtask-5.12.0/flowtask/factory/validator.py +350 -0
  337. flowtask-5.12.0/flowtask/handlers/component.py +351 -0
  338. flowtask-5.12.0/flowtask/hooks/step.py +91 -0
  339. flowtask-5.12.0/flowtask/interfaces/__init__.py +116 -0
  340. flowtask-5.12.0/flowtask/interfaces/abstract.py +24 -0
  341. flowtask-5.12.0/flowtask/interfaces/azure_component.py +96 -0
  342. flowtask-5.12.0/flowtask/interfaces/base_action.py +102 -0
  343. flowtask-5.12.0/flowtask/interfaces/base_loop.py +218 -0
  344. flowtask-5.12.0/flowtask/interfaces/copy_from_base.py +221 -0
  345. flowtask-5.12.0/flowtask/interfaces/copy_to.py +199 -0
  346. flowtask-5.12.0/flowtask/interfaces/copy_to_file_base.py +213 -0
  347. flowtask-5.12.0/flowtask/interfaces/db_client.py +165 -0
  348. flowtask-5.12.0/flowtask/interfaces/download_from.py +384 -0
  349. flowtask-5.12.0/flowtask/interfaces/file_base.py +191 -0
  350. flowtask-5.12.0/flowtask/interfaces/flow.py +591 -0
  351. flowtask-5.12.0/flowtask/interfaces/google_base.py +415 -0
  352. flowtask-5.12.0/flowtask/interfaces/group.py +234 -0
  353. flowtask-5.12.0/flowtask/interfaces/http.py +1800 -0
  354. flowtask-5.12.0/flowtask/interfaces/qs.py +385 -0
  355. flowtask-5.12.0/flowtask/interfaces/qs_base.py +213 -0
  356. flowtask-5.12.0/flowtask/interfaces/sassie.py +297 -0
  357. flowtask-5.12.0/flowtask/interfaces/selenium/options.py +75 -0
  358. flowtask-5.12.0/flowtask/interfaces/selenium/service.py +1016 -0
  359. flowtask-5.12.0/flowtask/interfaces/selenium_service.py +1149 -0
  360. flowtask-5.12.0/flowtask/interfaces/t_pandas.py +115 -0
  361. flowtask-5.12.0/flowtask/interfaces/table_base.py +169 -0
  362. flowtask-5.12.0/flowtask/interfaces/task.py +93 -0
  363. flowtask-5.12.0/flowtask/interfaces/upload_to.py +282 -0
  364. flowtask-5.12.0/flowtask/interfaces/user.py +403 -0
  365. flowtask-5.12.0/flowtask/parsers/argparser.py +334 -0
  366. flowtask-5.12.0/flowtask/parsers/syntax/registry.py +132 -0
  367. flowtask-5.12.0/flowtask/runner.py +276 -0
  368. flowtask-5.12.0/flowtask/scheduler/functions.py +538 -0
  369. flowtask-5.12.0/flowtask/services/tasks/tasks.py +137 -0
  370. flowtask-5.12.0/flowtask/storages/tasks/github.py +131 -0
  371. flowtask-5.12.0/flowtask/tests.py +257 -0
  372. flowtask-5.12.0/flowtask/version.py +12 -0
  373. flowtask-5.12.0/flowtask.egg-info/PKG-INFO +229 -0
  374. flowtask-5.12.0/flowtask.egg-info/SOURCES.txt +751 -0
  375. flowtask-5.12.0/flowtask.egg-info/entry_points.txt +4 -0
  376. flowtask-5.12.0/flowtask.egg-info/requires.txt +119 -0
  377. flowtask-5.12.0/pyproject.toml +253 -0
  378. flowtask-5.11.11/PKG-INFO +0 -222
  379. flowtask-5.11.11/flowtask/components/ASPX.py +0 -159
  380. flowtask-5.11.11/flowtask/components/ATT.py +0 -1007
  381. flowtask-5.11.11/flowtask/components/AddDataset.py +0 -440
  382. flowtask-5.11.11/flowtask/components/AutoTask.py +0 -312
  383. flowtask-5.11.11/flowtask/components/Azure.py +0 -93
  384. flowtask-5.11.11/flowtask/components/AzureUsers.py +0 -176
  385. flowtask-5.11.11/flowtask/components/BaseAction.py +0 -100
  386. flowtask-5.11.11/flowtask/components/BaseLoop.py +0 -216
  387. flowtask-5.11.11/flowtask/components/BestBuy.py +0 -1944
  388. flowtask-5.11.11/flowtask/components/CSVToGCS.py +0 -139
  389. flowtask-5.11.11/flowtask/components/CallAnalysis.py +0 -1006
  390. flowtask-5.11.11/flowtask/components/CallSummary.py +0 -166
  391. flowtask-5.11.11/flowtask/components/CompanyScraper/scrapper.py +0 -1067
  392. flowtask-5.11.11/flowtask/components/CopyTo.py +0 -197
  393. flowtask-5.11.11/flowtask/components/CopyToBigQuery.py +0 -767
  394. flowtask-5.11.11/flowtask/components/CopyToMongoDB.py +0 -295
  395. flowtask-5.11.11/flowtask/components/CopyToPg.py +0 -623
  396. flowtask-5.11.11/flowtask/components/CopyToRethink.py +0 -210
  397. flowtask-5.11.11/flowtask/components/CreateGCSBucket.py +0 -121
  398. flowtask-5.11.11/flowtask/components/CreateReport/CreateReport.py +0 -262
  399. flowtask-5.11.11/flowtask/components/CustomerSatisfaction.py +0 -139
  400. flowtask-5.11.11/flowtask/components/DataInput.py +0 -204
  401. flowtask-5.11.11/flowtask/components/DbClient.py +0 -163
  402. flowtask-5.11.11/flowtask/components/DialPad.py +0 -155
  403. flowtask-5.11.11/flowtask/components/DispatchMe.py +0 -359
  404. flowtask-5.11.11/flowtask/components/DocumentDBQuery.py +0 -251
  405. flowtask-5.11.11/flowtask/components/DownloadFrom.py +0 -382
  406. flowtask-5.11.11/flowtask/components/DownloadFromD2L.py +0 -115
  407. flowtask-5.11.11/flowtask/components/DownloadFromFTP.py +0 -222
  408. flowtask-5.11.11/flowtask/components/DownloadFromIMAP.py +0 -342
  409. flowtask-5.11.11/flowtask/components/DownloadFromS3.py +0 -199
  410. flowtask-5.11.11/flowtask/components/DownloadFromSFTP.py +0 -274
  411. flowtask-5.11.11/flowtask/components/DownloadFromSharepoint.py +0 -199
  412. flowtask-5.11.11/flowtask/components/DownloadFromSmartSheet.py +0 -126
  413. flowtask-5.11.11/flowtask/components/DownloadFromSmartsheet.py +0 -334
  414. flowtask-5.11.11/flowtask/components/DownloadS3File.py +0 -253
  415. flowtask-5.11.11/flowtask/components/Dummy.py +0 -81
  416. flowtask-5.11.11/flowtask/components/DuplicatePhoto.py +0 -528
  417. flowtask-5.11.11/flowtask/components/EmployeeEvaluation.py +0 -250
  418. flowtask-5.11.11/flowtask/components/ExecuteSQL.py +0 -327
  419. flowtask-5.11.11/flowtask/components/ExtractHTML.py +0 -191
  420. flowtask-5.11.11/flowtask/components/ExtractTranscript.py +0 -1140
  421. flowtask-5.11.11/flowtask/components/FileBase.py +0 -189
  422. flowtask-5.11.11/flowtask/components/FileCopy.py +0 -191
  423. flowtask-5.11.11/flowtask/components/FileDelete.py +0 -86
  424. flowtask-5.11.11/flowtask/components/FileExists.py +0 -148
  425. flowtask-5.11.11/flowtask/components/FileOpen.py +0 -85
  426. flowtask-5.11.11/flowtask/components/FileRead.py +0 -125
  427. flowtask-5.11.11/flowtask/components/FileRename.py +0 -111
  428. flowtask-5.11.11/flowtask/components/FilterIf.py +0 -300
  429. flowtask-5.11.11/flowtask/components/FilterRows/FilterRows.py +0 -205
  430. flowtask-5.11.11/flowtask/components/GCSToBigQuery.py +0 -122
  431. flowtask-5.11.11/flowtask/components/GenData.py +0 -238
  432. flowtask-5.11.11/flowtask/components/GoogleA4.py +0 -153
  433. flowtask-5.11.11/flowtask/components/GooglePlaces.py +0 -959
  434. flowtask-5.11.11/flowtask/components/GoogleSearch.py +0 -550
  435. flowtask-5.11.11/flowtask/components/HTTPClient.py +0 -301
  436. flowtask-5.11.11/flowtask/components/ICIMS.py +0 -153
  437. flowtask-5.11.11/flowtask/components/IF.py +0 -198
  438. flowtask-5.11.11/flowtask/components/IcimsFolderCopy.py +0 -189
  439. flowtask-5.11.11/flowtask/components/ImageFeatures/process.py +0 -295
  440. flowtask-5.11.11/flowtask/components/IteratorBase.py +0 -264
  441. flowtask-5.11.11/flowtask/components/LeadIQ.py +0 -662
  442. flowtask-5.11.11/flowtask/components/Loop.py +0 -272
  443. flowtask-5.11.11/flowtask/components/MS365Usage.py +0 -154
  444. flowtask-5.11.11/flowtask/components/MSTeamsMessages.py +0 -342
  445. flowtask-5.11.11/flowtask/components/MarkdownMaker.py +0 -174
  446. flowtask-5.11.11/flowtask/components/MarketClustering.py +0 -2381
  447. flowtask-5.11.11/flowtask/components/MergeFiles.py +0 -366
  448. flowtask-5.11.11/flowtask/components/MilvusOutput.py +0 -100
  449. flowtask-5.11.11/flowtask/components/NearByStores.py +0 -189
  450. flowtask-5.11.11/flowtask/components/NextStopAgent.py +0 -202
  451. flowtask-5.11.11/flowtask/components/Odoo.py +0 -177
  452. flowtask-5.11.11/flowtask/components/OdooInjector.py +0 -218
  453. flowtask-5.11.11/flowtask/components/OpenWeather.py +0 -63
  454. flowtask-5.11.11/flowtask/components/OpenWithBase.py +0 -615
  455. flowtask-5.11.11/flowtask/components/OpenWithPandas.py +0 -761
  456. flowtask-5.11.11/flowtask/components/PDFGenerator.py +0 -151
  457. flowtask-5.11.11/flowtask/components/PGPDecrypt.py +0 -205
  458. flowtask-5.11.11/flowtask/components/PandasToFile.py +0 -262
  459. flowtask-5.11.11/flowtask/components/PandasToPowerPoint.py +0 -530
  460. flowtask-5.11.11/flowtask/components/Paradox.py +0 -353
  461. flowtask-5.11.11/flowtask/components/ParrotLoader/loader.py +0 -719
  462. flowtask-5.11.11/flowtask/components/ParseHTML.py +0 -98
  463. flowtask-5.11.11/flowtask/components/PgVectorOutput.py +0 -299
  464. flowtask-5.11.11/flowtask/components/PlacerStores.py +0 -262
  465. flowtask-5.11.11/flowtask/components/PlanogramCompliance.py +0 -654
  466. flowtask-5.11.11/flowtask/components/PodcastMaker.py +0 -371
  467. flowtask-5.11.11/flowtask/components/Pokemon.py +0 -524
  468. flowtask-5.11.11/flowtask/components/PositiveBot.py +0 -76
  469. flowtask-5.11.11/flowtask/components/PowerPointSlide.py +0 -450
  470. flowtask-5.11.11/flowtask/components/PrintMessage.py +0 -130
  471. flowtask-5.11.11/flowtask/components/ProductCompetitors/scrapper.py +0 -174
  472. flowtask-5.11.11/flowtask/components/ProductCompliant.py +0 -76
  473. flowtask-5.11.11/flowtask/components/ProductInfo/scraper.py +0 -338
  474. flowtask-5.11.11/flowtask/components/ProductPricing.py +0 -131
  475. flowtask-5.11.11/flowtask/components/ProductReportBot.py +0 -1011
  476. flowtask-5.11.11/flowtask/components/QS.py +0 -292
  477. flowtask-5.11.11/flowtask/components/QSBase.py +0 -210
  478. flowtask-5.11.11/flowtask/components/QueryToInsert.py +0 -330
  479. flowtask-5.11.11/flowtask/components/QueryToPandas.py +0 -521
  480. flowtask-5.11.11/flowtask/components/RethinkDBQuery.py +0 -202
  481. flowtask-5.11.11/flowtask/components/RunSSH.py +0 -78
  482. flowtask-5.11.11/flowtask/components/RunShell.py +0 -80
  483. flowtask-5.11.11/flowtask/components/SAPExtraction.py +0 -405
  484. flowtask-5.11.11/flowtask/components/SalesForce.py +0 -41
  485. flowtask-5.11.11/flowtask/components/Sassie.py +0 -316
  486. flowtask-5.11.11/flowtask/components/SaveImageBank/__init__.py +0 -276
  487. flowtask-5.11.11/flowtask/components/SchedulingVisits.py +0 -1423
  488. flowtask-5.11.11/flowtask/components/ScrapPage.py +0 -251
  489. flowtask-5.11.11/flowtask/components/ScrapTool.py +0 -869
  490. flowtask-5.11.11/flowtask/components/SendEmail.py +0 -329
  491. flowtask-5.11.11/flowtask/components/SendNotify/component.py +0 -256
  492. flowtask-5.11.11/flowtask/components/SentimentAnalysis.py +0 -730
  493. flowtask-5.11.11/flowtask/components/ServiceScrapper/scrapper.py +0 -429
  494. flowtask-5.11.11/flowtask/components/SetVariables.py +0 -164
  495. flowtask-5.11.11/flowtask/components/SplitPDF.py +0 -393
  496. flowtask-5.11.11/flowtask/components/Staples.py +0 -1224
  497. flowtask-5.11.11/flowtask/components/SubTask.py +0 -187
  498. flowtask-5.11.11/flowtask/components/SuiteCRM.py +0 -58
  499. flowtask-5.11.11/flowtask/components/Switch.py +0 -193
  500. flowtask-5.11.11/flowtask/components/TableBase.py +0 -167
  501. flowtask-5.11.11/flowtask/components/TableDelete.py +0 -321
  502. flowtask-5.11.11/flowtask/components/TableInput.py +0 -144
  503. flowtask-5.11.11/flowtask/components/TableOutput/TableOutput.py +0 -422
  504. flowtask-5.11.11/flowtask/components/TableSchema.py +0 -540
  505. flowtask-5.11.11/flowtask/components/ThumbnailGenerator.py +0 -356
  506. flowtask-5.11.11/flowtask/components/ToPandas.py +0 -87
  507. flowtask-5.11.11/flowtask/components/TransformRows/TransformRows.py +0 -519
  508. flowtask-5.11.11/flowtask/components/TransposeRows.py +0 -181
  509. flowtask-5.11.11/flowtask/components/Uncompress.py +0 -176
  510. flowtask-5.11.11/flowtask/components/UniqueRows.py +0 -131
  511. flowtask-5.11.11/flowtask/components/UpdateOperationalVars.py +0 -176
  512. flowtask-5.11.11/flowtask/components/UploadTo.py +0 -280
  513. flowtask-5.11.11/flowtask/components/UploadToS3.py +0 -377
  514. flowtask-5.11.11/flowtask/components/UploadToSFTP.py +0 -164
  515. flowtask-5.11.11/flowtask/components/UploadToSharepoint.py +0 -232
  516. flowtask-5.11.11/flowtask/components/UserFunc.py +0 -129
  517. flowtask-5.11.11/flowtask/components/VideoUnderstanding.py +0 -116
  518. flowtask-5.11.11/flowtask/components/WSDLClient.py +0 -142
  519. flowtask-5.11.11/flowtask/components/Wait.py +0 -40
  520. flowtask-5.11.11/flowtask/components/Workday/workday.py +0 -961
  521. flowtask-5.11.11/flowtask/components/WorkdayReport.py +0 -728
  522. flowtask-5.11.11/flowtask/components/Workplace.py +0 -148
  523. flowtask-5.11.11/flowtask/components/XMLToPandas.py +0 -286
  524. flowtask-5.11.11/flowtask/components/Zammad/__init__.py +0 -55
  525. flowtask-5.11.11/flowtask/components/Zoom.py +0 -1963
  526. flowtask-5.11.11/flowtask/components/ZoomInfoScraper.py +0 -413
  527. flowtask-5.11.11/flowtask/components/ZoomUs.py +0 -1715
  528. flowtask-5.11.11/flowtask/components/__init__.py +0 -104
  529. flowtask-5.11.11/flowtask/components/abstract.py +0 -22
  530. flowtask-5.11.11/flowtask/components/flow.py +0 -592
  531. flowtask-5.11.11/flowtask/components/google.py +0 -413
  532. flowtask-5.11.11/flowtask/components/group.py +0 -232
  533. flowtask-5.11.11/flowtask/components/reviewscrap.py +0 -133
  534. flowtask-5.11.11/flowtask/components/tAddTotalRow.py +0 -118
  535. flowtask-5.11.11/flowtask/components/tAutoincrement.py +0 -123
  536. flowtask-5.11.11/flowtask/components/tConcat.py +0 -115
  537. flowtask-5.11.11/flowtask/components/tConditionalMultiply.py +0 -159
  538. flowtask-5.11.11/flowtask/components/tCrosstab.py +0 -173
  539. flowtask-5.11.11/flowtask/components/tExplode.py +0 -198
  540. flowtask-5.11.11/flowtask/components/tFilter.py +0 -191
  541. flowtask-5.11.11/flowtask/components/tFilterCommonValues.py +0 -134
  542. flowtask-5.11.11/flowtask/components/tFrequencyWeights.py +0 -156
  543. flowtask-5.11.11/flowtask/components/tGroup.py +0 -260
  544. flowtask-5.11.11/flowtask/components/tJoin.py +0 -271
  545. flowtask-5.11.11/flowtask/components/tMap/tMap.py +0 -448
  546. flowtask-5.11.11/flowtask/components/tMelt.py +0 -117
  547. flowtask-5.11.11/flowtask/components/tMerge.py +0 -373
  548. flowtask-5.11.11/flowtask/components/tOrder.py +0 -100
  549. flowtask-5.11.11/flowtask/components/tPandas.py +0 -113
  550. flowtask-5.11.11/flowtask/components/tPivot.py +0 -112
  551. flowtask-5.11.11/flowtask/components/tPluckCols.py +0 -84
  552. flowtask-5.11.11/flowtask/components/tUnnest.py +0 -87
  553. flowtask-5.11.11/flowtask/components/user.py +0 -401
  554. flowtask-5.11.11/flowtask/conf.py +0 -539
  555. flowtask-5.11.11/flowtask/documentation/categories.json +0 -150
  556. flowtask-5.11.11/flowtask/documentation/cli.py +0 -191
  557. flowtask-5.11.11/flowtask/documentation/generator.py +0 -442
  558. flowtask-5.11.11/flowtask/documentation/models.py +0 -88
  559. flowtask-5.11.11/flowtask/documentation/parser.py +0 -238
  560. flowtask-5.11.11/flowtask/documentation/schema.py +0 -120
  561. flowtask-5.11.11/flowtask/handlers/component.py +0 -252
  562. flowtask-5.11.11/flowtask/hooks/step.py +0 -91
  563. flowtask-5.11.11/flowtask/interfaces/__init__.py +0 -61
  564. flowtask-5.11.11/flowtask/interfaces/http.py +0 -1808
  565. flowtask-5.11.11/flowtask/interfaces/qs.py +0 -376
  566. flowtask-5.11.11/flowtask/interfaces/sassie.py +0 -228
  567. flowtask-5.11.11/flowtask/interfaces/selenium/options.py +0 -85
  568. flowtask-5.11.11/flowtask/interfaces/selenium/service.py +0 -1012
  569. flowtask-5.11.11/flowtask/interfaces/selenium_service.py +0 -1096
  570. flowtask-5.11.11/flowtask/interfaces/task.py +0 -96
  571. flowtask-5.11.11/flowtask/parsers/argparser.py +0 -299
  572. flowtask-5.11.11/flowtask/parsers/syntax/registry.py +0 -122
  573. flowtask-5.11.11/flowtask/runner.py +0 -285
  574. flowtask-5.11.11/flowtask/scheduler/functions.py +0 -517
  575. flowtask-5.11.11/flowtask/services/tasks/tasks.py +0 -173
  576. flowtask-5.11.11/flowtask/storages/tasks/github.py +0 -125
  577. flowtask-5.11.11/flowtask/tests.py +0 -257
  578. flowtask-5.11.11/flowtask/version.py +0 -12
  579. flowtask-5.11.11/flowtask.egg-info/PKG-INFO +0 -222
  580. flowtask-5.11.11/flowtask.egg-info/SOURCES.txt +0 -580
  581. flowtask-5.11.11/flowtask.egg-info/entry_points.txt +0 -3
  582. flowtask-5.11.11/flowtask.egg-info/requires.txt +0 -109
  583. flowtask-5.11.11/pyproject.toml +0 -223
  584. {flowtask-5.11.11 → flowtask-5.12.0}/CONTRIBUTING.md +0 -0
  585. {flowtask-5.11.11 → flowtask-5.12.0}/INSTALL +0 -0
  586. {flowtask-5.11.11 → flowtask-5.12.0}/LICENSE +0 -0
  587. {flowtask-5.11.11 → flowtask-5.12.0}/MANIFEST.in +0 -0
  588. {flowtask-5.11.11 → flowtask-5.12.0}/README.md +0 -0
  589. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/__init__.py +0 -0
  590. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/__main__.py +0 -0
  591. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/bots/__init__.py +0 -0
  592. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/bots/check.py +0 -0
  593. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/bots/codebot.py +0 -0
  594. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Amazon.py +0 -0
  595. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/__init__.py +0 -0
  596. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/__init__.py +0 -0
  597. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/base.py +0 -0
  598. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/explorium.py +0 -0
  599. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/leadiq.py +0 -0
  600. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/rocket.py +0 -0
  601. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/siccode.py +0 -0
  602. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/visualvisitor.py +0 -0
  603. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CompanyScraper/parsers/zoominfo.py +0 -0
  604. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Costco.py +0 -0
  605. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/__init__.py +0 -0
  606. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/charts/__init__.py +0 -0
  607. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/charts/bar.py +0 -0
  608. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/charts/base.py +0 -0
  609. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/charts/pie.py +0 -0
  610. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/CreateReport/utils.py +0 -0
  611. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/DateList.py +0 -0
  612. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/FileIteratorDelete.py +0 -0
  613. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/FileList.py +0 -0
  614. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/FilterRows/__init__.py +0 -0
  615. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/FilterRows/functions.py +0 -0
  616. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/GoogleGeoCoding.py +0 -0
  617. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ImageFeatures/__init__.py +0 -0
  618. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Lowes.py +0 -0
  619. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/MergeFileList.py +0 -0
  620. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/__init__.py +0 -0
  621. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/__init__.py +0 -0
  622. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/abstract.py +0 -0
  623. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/account.py +0 -0
  624. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/client.py +0 -0
  625. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/district.py +0 -0
  626. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/events.py +0 -0
  627. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/forms.py +0 -0
  628. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/market.py +0 -0
  629. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/organization.py +0 -0
  630. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/photos.py +0 -0
  631. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/project.py +0 -0
  632. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/region.py +0 -0
  633. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/store.py +0 -0
  634. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/models/user.py +0 -0
  635. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinja/router.py +0 -0
  636. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/NetworkNinjaClaims.py +0 -0
  637. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/OpenFromXML.py +0 -0
  638. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/PandasIterator.py +0 -0
  639. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ParamIterator.py +0 -0
  640. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ParrotLoader/__init__.py +0 -0
  641. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductCompetitors/__init__.py +0 -0
  642. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductCompetitors/parsers/__init__.py +0 -0
  643. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductCompetitors/parsers/base.py +0 -0
  644. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductCompetitors/parsers/bestbuy.py +0 -0
  645. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductCompetitors/parsers/lowes.py +0 -0
  646. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/__init__.py +0 -0
  647. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/__init__.py +0 -0
  648. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/base.py +0 -0
  649. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/brother.py +0 -0
  650. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/canon.py +0 -0
  651. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/epson.py +0 -0
  652. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/hp.py +0 -0
  653. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ProductInfo/parsers/samsung.py +0 -0
  654. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/QueryIterator.py +0 -0
  655. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/RESTClient.py +0 -0
  656. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Rsync.py +0 -0
  657. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SMSAnalysis.py +0 -0
  658. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SMSSummary.py +0 -0
  659. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ScrapSearch.py +0 -0
  660. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SendNotify/__init__.py +0 -0
  661. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SendNotify/models/__init__.py +0 -0
  662. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SendNotify/models/abstract.py +0 -0
  663. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/SendNotify/models/zoom.py +0 -0
  664. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ServiceScrapper/__init__.py +0 -0
  665. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ServiceScrapper/parsers/__init__.py +0 -0
  666. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ServiceScrapper/parsers/base.py +0 -0
  667. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/ServiceScrapper/parsers/costco.py +0 -0
  668. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/TableOutput/__init__.py +0 -0
  669. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Target.py +0 -0
  670. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/TransformRows/__init__.py +0 -0
  671. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/TransformRows/functions.py +0 -0
  672. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/UPCDatabase.py +0 -0
  673. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/UnGzip.py +0 -0
  674. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Unzip.py +0 -0
  675. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/VivaTracker.py +0 -0
  676. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Walmart.py +0 -0
  677. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/__init__.py +0 -0
  678. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/__init__.py +0 -0
  679. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/applicant.py +0 -0
  680. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/candidate.py +0 -0
  681. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/cost_center.py +0 -0
  682. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/custom_punch_field_report.py +0 -0
  683. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/job_posting.py +0 -0
  684. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/job_posting_site.py +0 -0
  685. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/job_requisition.py +0 -0
  686. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/location.py +0 -0
  687. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/location_hierarchy_assignments.py +0 -0
  688. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/organizations.py +0 -0
  689. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/reference.py +0 -0
  690. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/time_block.py +0 -0
  691. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/time_off_balance.py +0 -0
  692. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/time_request.py +0 -0
  693. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/models/worker.py +0 -0
  694. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/__init__.py +0 -0
  695. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/applicant_parsers.py +0 -0
  696. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/candidate_parsers.py +0 -0
  697. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/cost_center_parsers.py +0 -0
  698. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/custom_punch_field_report_parsers.py +0 -0
  699. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/job_posting_parsers.py +0 -0
  700. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/job_posting_site_parsers.py +0 -0
  701. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/job_requisition_parsers.py +0 -0
  702. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers.py +0 -0
  703. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/location_parsers.py +0 -0
  704. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/organization_parsers.py +0 -0
  705. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/reference_parsers.py +0 -0
  706. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/time_block_parsers.py +0 -0
  707. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/time_off_balance_parsers.py +0 -0
  708. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/time_request_parsers.py +0 -0
  709. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/parsers/worker_parsers.py +0 -0
  710. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/__init__.py +0 -0
  711. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/applicants.py +0 -0
  712. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/base.py +0 -0
  713. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/candidates.py +0 -0
  714. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/cost_centers.py +0 -0
  715. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/custom_punch_field_report.py +0 -0
  716. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/custom_punch_field_report_rest.py +0 -0
  717. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/custom_report.py +0 -0
  718. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/job_posting_sites.py +0 -0
  719. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/job_postings.py +0 -0
  720. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/job_requisitions.py +0 -0
  721. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/location_hierarchy_assignments.py +0 -0
  722. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/locations.py +0 -0
  723. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/organization_single.py +0 -0
  724. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/organizations.py +0 -0
  725. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/recruiting_agency_users.py +0 -0
  726. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/references.py +0 -0
  727. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/time_block_report.py +0 -0
  728. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/time_blocks.py +0 -0
  729. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/time_off_balances.py +0 -0
  730. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/time_requests.py +0 -0
  731. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/types/workers.py +0 -0
  732. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/utils/__init__.py +0 -0
  733. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Workday/utils/utils.py +0 -0
  734. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/Zammad/models.py +0 -0
  735. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/gendata/__init__.py +0 -0
  736. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/gendata/date_sequence.py +0 -0
  737. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/gendata/static_list.py +0 -0
  738. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/py.typed +0 -0
  739. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/tMap/__init__.py +0 -0
  740. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/components/tMap/functions.py +0 -0
  741. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/documentation/__init__.py +0 -0
  742. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/download.py +0 -0
  743. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/__init__.py +0 -0
  744. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/__init__.py +0 -0
  745. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/abstract.py +0 -0
  746. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/alerts/__init__.py +0 -0
  747. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/alerts/colfunctions.py +0 -0
  748. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/alerts/functions.py +0 -0
  749. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/dummy.py +0 -0
  750. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/exec.py +0 -0
  751. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/file/__init__.py +0 -0
  752. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/file/base.py +0 -0
  753. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/file/copy.py +0 -0
  754. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/file/delete.py +0 -0
  755. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/interfaces/__init__.py +0 -0
  756. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/interfaces/client.py +0 -0
  757. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/interfaces/credentials.py +0 -0
  758. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/interfaces/notifications.py +0 -0
  759. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/jira.py +0 -0
  760. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/log.py +0 -0
  761. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/logerr.py +0 -0
  762. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/notify.py +0 -0
  763. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/notify_event.py +0 -0
  764. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/publish.py +0 -0
  765. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/sendfile.py +0 -0
  766. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/task.py +0 -0
  767. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/teams.py +0 -0
  768. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/events/webhook.py +0 -0
  769. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/events/manager.py +0 -0
  770. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/exceptions.py +0 -0
  771. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/extensions/__init__.py +0 -0
  772. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/extensions/abstract.py +0 -0
  773. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/extensions/component_docs.py +0 -0
  774. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/extensions/logging/__init__.py +0 -0
  775. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/handlers/__init__.py +0 -0
  776. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/__init__.py +0 -0
  777. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/__init__.py +0 -0
  778. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/abstract.py +0 -0
  779. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/dummy.py +0 -0
  780. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/jira.py +0 -0
  781. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/rest.py +0 -0
  782. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/sampledata.py +0 -0
  783. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/sensor.py +0 -0
  784. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/task.py +0 -0
  785. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/ticket.py +0 -0
  786. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/zammad.py +0 -0
  787. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/actions/zoom_event.py +0 -0
  788. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/hook.py +0 -0
  789. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/models.py +0 -0
  790. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/service.py +0 -0
  791. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/__init__.py +0 -0
  792. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/base.py +0 -0
  793. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/__init__.py +0 -0
  794. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/base.py +0 -0
  795. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/mqtt.py +0 -0
  796. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/rabbitmq.py +0 -0
  797. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/redis.py +0 -0
  798. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/brokers/sqs.py +0 -0
  799. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/fs.py +0 -0
  800. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/http.py +0 -0
  801. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/imap.py +0 -0
  802. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/jira.py +0 -0
  803. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/mail.py +0 -0
  804. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/postgres.py +0 -0
  805. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/responses/__init__.py +0 -0
  806. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/responses/base.py +0 -0
  807. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/sharepoint.py +0 -0
  808. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/ssh.py +0 -0
  809. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/tagged.py +0 -0
  810. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/upload.py +0 -0
  811. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/watch.py +0 -0
  812. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/web.py +0 -0
  813. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/hooks/types/zoom.py +0 -0
  814. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/AzureClient.py +0 -0
  815. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/AzureGraph.py +0 -0
  816. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/Boto3Client.py +0 -0
  817. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/DropboxClient.py +0 -0
  818. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/ExcelHandler.py +0 -0
  819. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/FTPClient.py +0 -0
  820. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleCalendar.py +0 -0
  821. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleClient.py +0 -0
  822. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleDrive.py +0 -0
  823. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleGCS.py +0 -0
  824. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleGeocoding.py +0 -0
  825. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleLang.py +0 -0
  826. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GooglePub.py +0 -0
  827. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/GoogleSheet.py +0 -0
  828. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/IMAPClient.py +0 -0
  829. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/LLMClient.py +0 -0
  830. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/O365Calendar.py +0 -0
  831. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/O365Client.py +0 -0
  832. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/OneDrive.py +0 -0
  833. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/Outlook.py +0 -0
  834. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/ParrotBot.py +0 -0
  835. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/ParrotTool.py +0 -0
  836. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/SOAPClient.py +0 -0
  837. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/SSHClient.py +0 -0
  838. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/Sharepoint.py +0 -0
  839. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/azureauth.py +0 -0
  840. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/cache.py +0 -0
  841. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/client.py +0 -0
  842. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/compress.py +0 -0
  843. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/credentials.py +0 -0
  844. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/d2l.py +0 -0
  845. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/databases/__init__.py +0 -0
  846. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/databases/db.py +0 -0
  847. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/databases/documentdb.py +0 -0
  848. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/databases/rethink.py +0 -0
  849. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/__init__.py +0 -0
  850. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/abstract.py +0 -0
  851. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/arrow.py +0 -0
  852. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/dt.py +0 -0
  853. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/pandas.py +0 -0
  854. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/dataframes/polars.py +0 -0
  855. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/db.py +0 -0
  856. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/env.py +0 -0
  857. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/func.py +0 -0
  858. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/locale.py +0 -0
  859. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/log.py +0 -0
  860. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/mask.py +0 -0
  861. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/notification.py +0 -0
  862. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/parrot/__init__.py +0 -0
  863. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/parrot/agent.py +0 -0
  864. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/parrot/client.py +0 -0
  865. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/pipelines/__init__.py +0 -0
  866. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/pipelines/parrot.py +0 -0
  867. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/playwright.py +0 -0
  868. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/powerpoint.py +0 -0
  869. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/ppt.py +0 -0
  870. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/py.typed +0 -0
  871. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/result.py +0 -0
  872. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/selenium/__init__.py +0 -0
  873. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/smartsheet.py +0 -0
  874. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/stat.py +0 -0
  875. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/teams.py +0 -0
  876. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/template.py +0 -0
  877. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/tickets.py +0 -0
  878. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/vectorstores/__init__.py +0 -0
  879. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/vectorstores/abstract.py +0 -0
  880. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/vectorstores/milvus.py +0 -0
  881. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/zammad.py +0 -0
  882. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/interfaces/zoom.py +0 -0
  883. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/models.py +0 -0
  884. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/__init__.py +0 -0
  885. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/_yaml.pyx +0 -0
  886. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/base.pxd +0 -0
  887. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/base.pyx +0 -0
  888. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/json.pyx +0 -0
  889. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/maps.py +0 -0
  890. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/syntax/__init__.py +0 -0
  891. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/syntax/checker.py +0 -0
  892. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/syntax/detector.py +0 -0
  893. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/syntax/report.py +0 -0
  894. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/syntax/schema.py +0 -0
  895. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/parsers/toml.pyx +0 -0
  896. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/plugins/__init__.py +0 -0
  897. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/plugins/components_/__init__.py +0 -0
  898. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/plugins/handler/__init__.py +0 -0
  899. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/plugins/importer.py +0 -0
  900. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/plugins/sources/__init__.py +0 -0
  901. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/__init__.py +0 -0
  902. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/handlers/__init__.py +0 -0
  903. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/handlers/manager.py +0 -0
  904. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/handlers/models.py +0 -0
  905. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/handlers/service.py +0 -0
  906. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/notifications.py +0 -0
  907. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/scheduler/scheduler.py +0 -0
  908. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/__init__.py +0 -0
  909. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/bots/__init__.py +0 -0
  910. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/bots/telegram.py +0 -0
  911. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/files/__init__.py +0 -0
  912. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/files/manager.py +0 -0
  913. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/files/model.py +0 -0
  914. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/files/service.py +0 -0
  915. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/jira/__init__.py +0 -0
  916. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/jira/jira_actions.py +0 -0
  917. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/tasks/__init__.py +0 -0
  918. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/tasks/launcher.py +0 -0
  919. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/tasks/manager.py +0 -0
  920. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/tasks/service.py +0 -0
  921. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/services/tasks/task_manager.py +0 -0
  922. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/__init__.py +0 -0
  923. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/exceptions.py +0 -0
  924. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/files/__init__.py +0 -0
  925. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/files/abstract.py +0 -0
  926. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/files/filesystem.py +0 -0
  927. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/__init__.py +0 -0
  928. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/abstract.py +0 -0
  929. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/database.py +0 -0
  930. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/filesystem.py +0 -0
  931. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/memory.py +0 -0
  932. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/storages/tasks/row.py +0 -0
  933. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/__init__.py +0 -0
  934. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/abstract.py +0 -0
  935. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/command.py +0 -0
  936. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/pile.py +0 -0
  937. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/py.typed +0 -0
  938. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/task.py +0 -0
  939. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/tasks/workers.py +0 -0
  940. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/template/__init__.py +0 -0
  941. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/types/__init__.py +0 -0
  942. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/types/typedefs.pyx +0 -0
  943. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/__init__.py +0 -0
  944. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/constants.py +0 -0
  945. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/encoders.py +0 -0
  946. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/executor.py +0 -0
  947. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/functions.pyx +0 -0
  948. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/json.pxi +0 -0
  949. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/json.pyx +0 -0
  950. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/mail.py +0 -0
  951. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/parseqs.pyx +0 -0
  952. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/stats.py +0 -0
  953. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/transformations.py +0 -0
  954. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/uv.py +0 -0
  955. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask/utils/validators.py +0 -0
  956. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask.egg-info/dependency_links.txt +0 -0
  957. {flowtask-5.11.11 → flowtask-5.12.0}/flowtask.egg-info/top_level.txt +0 -0
  958. {flowtask-5.11.11 → flowtask-5.12.0}/setup.cfg +0 -0
  959. {flowtask-5.11.11 → flowtask-5.12.0}/setup.py +0 -0
@@ -0,0 +1,229 @@
1
+ Metadata-Version: 2.4
2
+ Name: flowtask
3
+ Version: 5.12.0
4
+ Summary: Framework for Task orchestration
5
+ Author-email: Jesus Lara <jesuslarag@gmail.com>
6
+ License: Apache-2.0
7
+ Project-URL: Homepage, https://github.com/phenobarbital/flowtask
8
+ Project-URL: Source, https://github.com/phenobarbital/flowtask
9
+ Project-URL: Funding, https://paypal.me/phenobarbital
10
+ Project-URL: Say Thanks!, https://saythanks.io/to/phenobarbital
11
+ Keywords: Flowtask,Data Integration,Task Orchestration,Task-Runner,Pipelines
12
+ Classifier: Development Status :: 4 - Beta
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Classifier: Topic :: Utilities
18
+ Classifier: Programming Language :: Python :: 3.9
19
+ Classifier: Programming Language :: Python :: 3.10
20
+ Classifier: Programming Language :: Python :: 3.11
21
+ Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
23
+ Classifier: License :: OSI Approved :: Apache Software License
24
+ Classifier: Framework :: AsyncIO
25
+ Requires-Python: <3.14,>=3.11
26
+ Description-Content-Type: text/markdown
27
+ License-File: LICENSE
28
+ Requires-Dist: borax==3.5.0
29
+ Requires-Dist: PyDrive==1.3.1
30
+ Requires-Dist: chardet==5.2.0
31
+ Requires-Dist: aiohttp-jinja2==1.6
32
+ Requires-Dist: asyncssh[bcrypt,fido2,pkcs11,pyopenssl]==2.23.0
33
+ Requires-Dist: pyxlsb==1.0.10
34
+ Requires-Dist: python-calamine==0.2.3
35
+ Requires-Dist: pyecharts==2.0.8
36
+ Requires-Dist: selenium>=4.35.0
37
+ Requires-Dist: snapshot-selenium==0.0.2
38
+ Requires-Dist: httpx[http2,socks]>=0.26.0
39
+ Requires-Dist: urllib3[socks]>=2.3.0
40
+ Requires-Dist: requests==2.32.4
41
+ Requires-Dist: h2>=4.2.0
42
+ Requires-Dist: blinker>=1.9.0
43
+ Requires-Dist: webdriver-manager==4.0.2
44
+ Requires-Dist: aioimaplib==1.1.0
45
+ Requires-Dist: adal==1.2.7
46
+ Requires-Dist: xlrd>=2.0.2
47
+ Requires-Dist: xmltodict<1.0.0,>=0.14.2
48
+ Requires-Dist: zeep[async]==4.3.2
49
+ Requires-Dist: nltk>=3.9.3
50
+ Requires-Dist: jdcal==1.4.1
51
+ Requires-Dist: html5lib==1.1
52
+ Requires-Dist: shapely==2.0.6
53
+ Requires-Dist: tzwhere==3.0.3
54
+ Requires-Dist: tabulate==0.9.0
55
+ Requires-Dist: python-magic==0.4.27
56
+ Requires-Dist: pytomlpp==1.0.13
57
+ Requires-Dist: psutil==6.0.0
58
+ Requires-Dist: networkx>=3.4.1
59
+ Requires-Dist: watchdog>=6.0.0
60
+ Requires-Dist: hachiko==0.4.0
61
+ Requires-Dist: paramiko>=4.0.0
62
+ Requires-Dist: jira==3.10.5
63
+ Requires-Dist: datatable==1.1.0
64
+ Requires-Dist: imageio==2.37.0
65
+ Requires-Dist: decorator>=5.1.1
66
+ Requires-Dist: emoji==2.14.1
67
+ Requires-Dist: caio==0.9.24
68
+ Requires-Dist: Wand==0.6.13
69
+ Requires-Dist: pylibdmtx==0.1.10
70
+ Requires-Dist: aiofile>=3.9.0
71
+ Requires-Dist: filetype==1.2.0
72
+ Requires-Dist: proxylists>=0.14.0
73
+ Requires-Dist: aioftp==0.23.1
74
+ Requires-Dist: py7zr==0.22.0
75
+ Requires-Dist: rarfile==4.2
76
+ Requires-Dist: python-pptx==1.0.2
77
+ Requires-Dist: gspread==6.2.0
78
+ Requires-Dist: oauth2client>=4.1.3
79
+ Requires-Dist: google-auth>=2.35.0
80
+ Requires-Dist: google-cloud-language>=2.15.0
81
+ Requires-Dist: googlemaps==4.10.0
82
+ Requires-Dist: fastavro==1.9.7
83
+ Requires-Dist: pgpy==0.6.0
84
+ Requires-Dist: dropbox==12.0.2
85
+ Requires-Dist: dask-expr==1.1.13
86
+ Requires-Dist: jsonpath_ng==1.7.0
87
+ Requires-Dist: ortools<=9.14.6206,>=9.11.4210
88
+ Requires-Dist: gmqtt==0.7.0
89
+ Requires-Dist: selectorlib==0.16.0
90
+ Requires-Dist: playwright==1.52.0
91
+ Requires-Dist: fuzzywuzzy==0.18.0
92
+ Requires-Dist: praw==7.8.1
93
+ Requires-Dist: prawcore==2.4.0
94
+ Requires-Dist: osmnx==2.0.1
95
+ Requires-Dist: osmium==4.0.2
96
+ Requires-Dist: python-Levenshtein==0.26.1
97
+ Requires-Dist: undetected_chromedriver==3.5.5
98
+ Requires-Dist: duckduckgo-search==8.1.1
99
+ Requires-Dist: numba>=0.62.1
100
+ Requires-Dist: APScheduler<3.12.0,>=3.11.0
101
+ Requires-Dist: google-cloud-bigquery>=3.30.0
102
+ Requires-Dist: pyheif==0.8.0
103
+ Requires-Dist: filetype==1.2.0
104
+ Requires-Dist: exif==1.6.1
105
+ Requires-Dist: pillow-avif-plugin==1.5.2
106
+ Requires-Dist: pillow-heif==0.22.0
107
+ Requires-Dist: pgvector==0.4.1
108
+ Requires-Dist: proxylists>=0.14.0
109
+ Requires-Dist: async-notify[all]>=1.4.0
110
+ Requires-Dist: querysource>=3.17.0
111
+ Requires-Dist: asyncdb[all]>=2.11.7
112
+ Requires-Dist: navconfig[default,uvloop]>=1.7.13
113
+ Requires-Dist: navigator-auth>=0.15.8
114
+ Requires-Dist: navigator-api[locale,uvloop]>=2.12.22
115
+ Requires-Dist: ai-parrot[llms]>=0.17.4
116
+ Requires-Dist: msal>=1.30.0
117
+ Requires-Dist: azure-core==1.38.0
118
+ Requires-Dist: azure-identity==1.20.0
119
+ Requires-Dist: microsoft-kiota-authentication-azure==1.9.6
120
+ Requires-Dist: msgraph-sdk==1.22.0
121
+ Requires-Dist: zendriver>=0.15.2
122
+ Requires-Dist: pyarrow>=14.0
123
+ Provides-Extra: docker
124
+ Requires-Dist: aiodocker>=0.21.0; extra == "docker"
125
+ Provides-Extra: k8s
126
+ Requires-Dist: kr8s>=0.16.0; extra == "k8s"
127
+ Provides-Extra: git
128
+ Requires-Dist: gitpython>=3.1.50; extra == "git"
129
+ Provides-Extra: ai
130
+ Requires-Dist: ai-parrot[agents,embeddings,images,integrations,llms,scheduler]>=0.20.4; extra == "ai"
131
+ Requires-Dist: ai-parrot-loaders[audio,document,ebook,ml,pdf,scraping,video,web,youtube]>=0.1.0; extra == "ai"
132
+ Requires-Dist: ai-parrot-tools[analysis,arxiv,aws,codeinterpreter,db,docker,excel,finance,flowtask,git,google,jira,messaging,pdf,pulumi,sandbox,scraping,sitesearch,slack,weather,wikipedia]>=0.1.0; extra == "ai"
133
+ Requires-Dist: ai-parrot-pipelines>=0.1.0; extra == "ai"
134
+ Provides-Extra: dev
135
+ Requires-Dist: pytest>=5.4.0; extra == "dev"
136
+ Requires-Dist: coverage; extra == "dev"
137
+ Requires-Dist: pytest-asyncio==0.23.8; extra == "dev"
138
+ Requires-Dist: pytest-xdist==3.3.1; extra == "dev"
139
+ Requires-Dist: pytest-assume==2.4.3; extra == "dev"
140
+ Requires-Dist: ruff; extra == "dev"
141
+ Requires-Dist: aioresponses>=0.7.8; extra == "dev"
142
+ Dynamic: license-file
143
+
144
+ # FlowTask #
145
+
146
+ FlowTask is a plugin-based, component-driven task execution framework for create complex Tasks.
147
+
148
+ FlowTask runs Tasks defined in JSON, YAML or TOML files, any Task is a combination of Components,
149
+ and every component in the Task run sequentially or depend of others, like a DAG.
150
+
151
+ Can create a Task combining Commands, Shell scripts and other specific Components (as TableInput: Open a Table using a datasource, DownloadFromIMAP: Download a File from a IMAP Folder, and so on), any Python Callable can be a Component inside a Task, or can extends UserComponent to build your own componets.
152
+
153
+ Every designed Task can run from CLI, programmatically, via RESTful API (using our aioHTTP-based Handler), called by WebHooks or even dispatched to a external Worker using our built-in Scheduler.
154
+
155
+ ## Quickstart ##
156
+
157
+ ```console
158
+ pip install flowtask
159
+ ```
160
+
161
+ Tasks can organizated into directory structure like this:
162
+
163
+ tasks /
164
+ ├── programs /
165
+ ├── test /
166
+ ├── tasks /
167
+
168
+ The main reason of this structure, is maintain organized several tasks by tenant/program, avoiding filling a directory with several task files.
169
+
170
+ FlowTask support "TaskStorage", a Task Storage is the main repository for tasks, main Task Storage is a directory in any filesystem path (optionally you can syncronize that path using git), but Tasks can be saved onto a Database or a S3 bucket.
171
+
172
+ ## Dependencies ##
173
+
174
+ * aiohttp (Asyncio Web Framework and Server) (required by navigator)
175
+ * AsyncDB
176
+ * QuerySource
177
+ * Navigator-api
178
+ * (Optional) Qworker (for distributing asyncio Tasks on distributed workers).
179
+
180
+ ## Features ##
181
+
182
+ * Component-based Task execution framework with several components covering several actions (download files, create pandas dataframes from files, mapping dataframe columns to a json-dictionary, etc)
183
+ * Built-in API for execution of Tasks.
184
+
185
+ ### How I run a Task? ###
186
+
187
+ Can run a Task from CLI:
188
+ ```console
189
+ task --program=test --task=example
190
+ ```
191
+
192
+ on CLI, you can pass an ENV (enviroment) to change the environment file on task execution.
193
+ ```console
194
+ ENV=dev task --program=test --task=example
195
+ ```
196
+
197
+ or Programmatically:
198
+ ```python
199
+ from flowtask import Task
200
+ import asyncio
201
+
202
+ task = Task(program='test', task='example')
203
+ results = asyncio.run(task.run())
204
+ # we can alternatively, using the execution mode of task object:
205
+ results = asyncio.run(task())
206
+ ```
207
+
208
+ ### Requirements ###
209
+
210
+ * Python >= 3.9
211
+ * asyncio (https://pypi.python.org/pypi/asyncio/)
212
+ * aiohttp >= 3.6.2
213
+
214
+ ### Contribution guidelines ###
215
+
216
+ Please have a look at the Contribution Guide
217
+
218
+ * Writing tests
219
+ * Code review
220
+ * Other guidelines
221
+
222
+ ### Who do I talk to? ###
223
+
224
+ * Repo owner or admin
225
+ * Other community or team contact
226
+
227
+ ### License ###
228
+
229
+ Navigator is licensed under Apache 2.0 License. See the LICENSE file for more details.
@@ -0,0 +1,159 @@
1
+ from abc import abstractmethod
2
+ from urllib.parse import urljoin
3
+
4
+ from bs4 import BeautifulSoup
5
+ import httpx
6
+ from ..interfaces.flow import FlowComponent
7
+ from ..interfaces.http import HTTPService
8
+ from ..exceptions import ComponentError
9
+
10
+
11
+ class ASPX(FlowComponent, HTTPService):
12
+ """
13
+ ASPX
14
+
15
+ Overview
16
+
17
+ The ASPX class is designed for interacting with ASPX-based web applications, particularly those requiring authentication.
18
+ It inherits from the DtComponent and HTTPService classes, providing a structured way to manage sessions, handle state views,
19
+ and perform HTTP requests with ASPX web forms. This class is useful for automating interactions with ASPX web pages, including login
20
+ and data retrieval operations.
21
+
22
+ :widths: auto
23
+
24
+ | _credentials | Yes | A dictionary containing username and password for authentication. |
25
+ | _views | No | A dictionary storing state views extracted from ASPX pages. |
26
+ | _client | Yes | An instance of `httpx.AsyncClient` used for making asynchronous HTTP requests. |
27
+
28
+ Return
29
+
30
+ The methods in this class facilitate the interaction with ASPX-based web applications, including login handling,
31
+ session management, and state view management. The class also allows for abstract extension, enabling customization
32
+ for specific ASPX web forms and interactions.
33
+
34
+ |---|---|---|
35
+ | version | No | version of component |
36
+
37
+
38
+ Example:
39
+
40
+ | Name | Required | Summary |
41
+ |---|---|---|
42
+ | version | No | version of component |
43
+
44
+
45
+ Example:
46
+
47
+ ```yaml
48
+ ASPX:
49
+ # attributes here
50
+ ```
51
+ """
52
+ _version = "1.0.0"
53
+ _credentials: dict = {"username": str, "password": str}
54
+
55
+ def _set_views(self, soup: BeautifulSoup):
56
+ """Extract state VIEWS from hidden inputs inside html
57
+
58
+ Args:
59
+ soup (BeautifulSoup): soup object with the html tree
60
+
61
+ Returns:
62
+ dict[str, str]: state VIEWS
63
+ """
64
+ viewstate = soup.find(id="__VIEWSTATE")["value"]
65
+ soup_eventvalidation = soup.find(id="__EVENTVALIDATION")
66
+ eventvalidation = soup_eventvalidation["value"] if soup_eventvalidation else ""
67
+ viewstategenerator = soup.find(id="__VIEWSTATEGENERATOR")["value"]
68
+
69
+ self._views = {
70
+ "__EVENTTARGET": "",
71
+ "__EVENTARGUMENT": "",
72
+ "__VIEWSTATE": viewstate,
73
+ "__VIEWSTATEGENERATOR": viewstategenerator,
74
+ "__EVENTVALIDATION": eventvalidation,
75
+ }
76
+
77
+ def check_keys_exists(self, *args, **kwargs):
78
+ """Validate that specified keys are present in the kwargs dict"""
79
+ for _key in args:
80
+ if _key not in kwargs:
81
+ raise ComponentError(f"{_key} must be set!")
82
+
83
+ def _get_payload_with_views(self, **kwargs):
84
+ payload = {
85
+ **self._views,
86
+ **kwargs,
87
+ }
88
+
89
+ return payload
90
+
91
+ async def start(self, **kwargs):
92
+ # handle login and set initial views
93
+ self._proxies = False
94
+ self._user = None
95
+ self.auth_type = None
96
+ self.auth = ""
97
+ self.download = None
98
+ self.headers = None
99
+ self._views: dict = {}
100
+ self.timeout = 120.0
101
+ self._client = httpx.AsyncClient(timeout=self.timeout)
102
+
103
+ self.processing_credentials()
104
+
105
+ login_url = urljoin(self.base_url, "/Login.aspx")
106
+
107
+ self.accept = "text/html"
108
+ await self.aspx_session(login_url)
109
+
110
+ payload = {
111
+ **self._views,
112
+ self.login_user_payload_key: self.credentials["username"],
113
+ self.login_password_payload_key: self.credentials["password"],
114
+ self.login_button_payload_key: self.login_button_payload_value,
115
+ }
116
+
117
+ await self.aspx_session(
118
+ login_url, method="post", data=payload, follow_redirects=True
119
+ )
120
+
121
+ if ".ASPXAUTH" not in self._client.cookies:
122
+ raise ComponentError("Login Failed. Please, check credentials!")
123
+ self._logger.info("Login successful")
124
+
125
+ return True
126
+
127
+ @abstractmethod
128
+ async def run(self):
129
+ """
130
+ Extend this method: Call super() after your code to make sure
131
+ the client session is closed.
132
+ """
133
+ if hasattr(self, "_client"):
134
+ await self._client.aclose()
135
+
136
+ async def close(self):
137
+ pass
138
+
139
+ async def aspx_session(
140
+ self,
141
+ url: str,
142
+ method: str = "get",
143
+ data: dict = None,
144
+ **kwargs: dict,
145
+ ):
146
+ result, error = await self.session(
147
+ url,
148
+ method=method,
149
+ data=data,
150
+ **kwargs,
151
+ )
152
+
153
+ if error:
154
+ raise ComponentError(error)
155
+
156
+ if "text/html" in self.accept:
157
+ self._set_views(result)
158
+
159
+ return result