flowtask 5.11.11__tar.gz → 5.12.1__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.
- flowtask-5.12.1/PKG-INFO +229 -0
- flowtask-5.12.1/flowtask/components/ASPX.py +159 -0
- flowtask-5.12.1/flowtask/components/ATT.py +1007 -0
- flowtask-5.12.1/flowtask/components/AddDataset.py +440 -0
- flowtask-5.12.1/flowtask/components/AutoTask.py +312 -0
- flowtask-5.12.1/flowtask/components/Azure.py +4 -0
- flowtask-5.12.1/flowtask/components/AzureUsers.py +176 -0
- flowtask-5.12.1/flowtask/components/BaseAction.py +4 -0
- flowtask-5.12.1/flowtask/components/BaseLoop.py +4 -0
- flowtask-5.12.1/flowtask/components/BestBuy.py +2024 -0
- flowtask-5.12.1/flowtask/components/CSVToGCS.py +139 -0
- flowtask-5.12.1/flowtask/components/CallAnalysis.py +1006 -0
- flowtask-5.12.1/flowtask/components/CallSummary.py +166 -0
- flowtask-5.12.1/flowtask/components/CensusData.py +587 -0
- flowtask-5.12.1/flowtask/components/CensusVariables.py +208 -0
- flowtask-5.12.1/flowtask/components/CompanyScraper/scrapper.py +1067 -0
- flowtask-5.12.1/flowtask/components/CopyFromBase.py +4 -0
- flowtask-5.12.1/flowtask/components/CopyFromS3.py +202 -0
- flowtask-5.12.1/flowtask/components/CopyFromSharepoint.py +246 -0
- flowtask-5.12.1/flowtask/components/CopyTo.py +4 -0
- flowtask-5.12.1/flowtask/components/CopyToBigQuery.py +847 -0
- flowtask-5.12.1/flowtask/components/CopyToFileBase.py +4 -0
- flowtask-5.12.1/flowtask/components/CopyToMongoDB.py +295 -0
- flowtask-5.12.1/flowtask/components/CopyToPg.py +635 -0
- flowtask-5.12.1/flowtask/components/CopyToRethink.py +210 -0
- flowtask-5.12.1/flowtask/components/CopyToS3.py +200 -0
- flowtask-5.12.1/flowtask/components/CopyToSharepoint.py +537 -0
- flowtask-5.12.1/flowtask/components/CreateGCSBucket.py +121 -0
- flowtask-5.12.1/flowtask/components/CreateReport/CreateReport.py +262 -0
- flowtask-5.12.1/flowtask/components/CustomerSatisfaction.py +139 -0
- flowtask-5.12.1/flowtask/components/DataInput.py +204 -0
- flowtask-5.12.1/flowtask/components/DbClient.py +4 -0
- flowtask-5.12.1/flowtask/components/DialPad.py +155 -0
- flowtask-5.12.1/flowtask/components/DispatchMe.py +359 -0
- flowtask-5.12.1/flowtask/components/DocumentDBQuery.py +251 -0
- flowtask-5.12.1/flowtask/components/DownloadFrom.py +4 -0
- flowtask-5.12.1/flowtask/components/DownloadFromD2L.py +115 -0
- flowtask-5.12.1/flowtask/components/DownloadFromFTP.py +222 -0
- flowtask-5.12.1/flowtask/components/DownloadFromGamma.py +454 -0
- flowtask-5.12.1/flowtask/components/DownloadFromIMAP.py +342 -0
- flowtask-5.12.1/flowtask/components/DownloadFromS3.py +199 -0
- flowtask-5.12.1/flowtask/components/DownloadFromSFTP.py +274 -0
- flowtask-5.12.1/flowtask/components/DownloadFromSharepoint.py +199 -0
- flowtask-5.12.1/flowtask/components/DownloadFromSmartSheet.py +126 -0
- flowtask-5.12.1/flowtask/components/DownloadFromSmartsheet.py +334 -0
- flowtask-5.12.1/flowtask/components/DownloadS3File.py +253 -0
- flowtask-5.12.1/flowtask/components/Dummy.py +81 -0
- flowtask-5.12.1/flowtask/components/DuplicatePhoto.py +528 -0
- flowtask-5.12.1/flowtask/components/EmployeeEvaluation.py +250 -0
- flowtask-5.12.1/flowtask/components/ExecuteSQL.py +327 -0
- flowtask-5.12.1/flowtask/components/ExtractHTML.py +191 -0
- flowtask-5.12.1/flowtask/components/ExtractTranscript.py +1274 -0
- flowtask-5.12.1/flowtask/components/FileBase.py +4 -0
- flowtask-5.12.1/flowtask/components/FileCopy.py +191 -0
- flowtask-5.12.1/flowtask/components/FileDelete.py +86 -0
- flowtask-5.12.1/flowtask/components/FileExists.py +148 -0
- flowtask-5.12.1/flowtask/components/FileOpen.py +85 -0
- flowtask-5.12.1/flowtask/components/FileRead.py +125 -0
- flowtask-5.12.1/flowtask/components/FileRename.py +111 -0
- flowtask-5.12.1/flowtask/components/FilterIf.py +297 -0
- flowtask-5.12.1/flowtask/components/FilterRows/FilterRows.py +205 -0
- flowtask-5.12.1/flowtask/components/GCSToBigQuery.py +122 -0
- flowtask-5.12.1/flowtask/components/GenData.py +238 -0
- flowtask-5.12.1/flowtask/components/GoogleA4.py +153 -0
- flowtask-5.12.1/flowtask/components/GoogleGeoCoding.py +433 -0
- flowtask-5.12.1/flowtask/components/GooglePlaces.py +959 -0
- flowtask-5.12.1/flowtask/components/GoogleSearch.py +550 -0
- flowtask-5.12.1/flowtask/components/HTTPClient.py +301 -0
- flowtask-5.12.1/flowtask/components/ICIMS.py +153 -0
- flowtask-5.12.1/flowtask/components/IF.py +198 -0
- flowtask-5.12.1/flowtask/components/IcimsFolderCopy.py +189 -0
- flowtask-5.12.1/flowtask/components/ImageFeatures/process.py +296 -0
- flowtask-5.12.1/flowtask/components/IteratorBase.py +266 -0
- flowtask-5.12.1/flowtask/components/LeadIQ.py +662 -0
- flowtask-5.12.1/flowtask/components/Loop.py +272 -0
- flowtask-5.12.1/flowtask/components/MS365Usage.py +154 -0
- flowtask-5.12.1/flowtask/components/MSTeamsMessages.py +352 -0
- flowtask-5.12.1/flowtask/components/MarkdownMaker.py +174 -0
- flowtask-5.12.1/flowtask/components/MarketClustering.py +2381 -0
- flowtask-5.12.1/flowtask/components/MergeFiles.py +366 -0
- flowtask-5.12.1/flowtask/components/MilvusOutput.py +100 -0
- flowtask-5.12.1/flowtask/components/NearByStores.py +189 -0
- flowtask-5.12.1/flowtask/components/NextStopAgent.py +202 -0
- flowtask-5.12.1/flowtask/components/Odoo.py +177 -0
- flowtask-5.12.1/flowtask/components/OdooInjector.py +218 -0
- flowtask-5.12.1/flowtask/components/OpenStreetMap.py +1198 -0
- flowtask-5.12.1/flowtask/components/OpenWeather.py +63 -0
- flowtask-5.12.1/flowtask/components/OpenWithBase.py +615 -0
- flowtask-5.12.1/flowtask/components/OpenWithPandas.py +666 -0
- flowtask-5.12.1/flowtask/components/PDFGenerator.py +151 -0
- flowtask-5.12.1/flowtask/components/PGPDecrypt.py +205 -0
- flowtask-5.12.1/flowtask/components/PandasToFile.py +287 -0
- flowtask-5.12.1/flowtask/components/PandasToPowerPoint.py +530 -0
- flowtask-5.12.1/flowtask/components/Paradox.py +353 -0
- flowtask-5.12.1/flowtask/components/ParrotLoader/loader.py +719 -0
- flowtask-5.12.1/flowtask/components/ParseHTML.py +98 -0
- flowtask-5.12.1/flowtask/components/PgVectorOutput.py +299 -0
- flowtask-5.12.1/flowtask/components/PlacerStores.py +262 -0
- flowtask-5.12.1/flowtask/components/PlanogramCompliance.py +654 -0
- flowtask-5.12.1/flowtask/components/PodcastMaker.py +371 -0
- flowtask-5.12.1/flowtask/components/Pokemon.py +524 -0
- flowtask-5.12.1/flowtask/components/PositiveBot.py +76 -0
- flowtask-5.12.1/flowtask/components/PowerPointSlide.py +450 -0
- flowtask-5.12.1/flowtask/components/PrintMessage.py +130 -0
- flowtask-5.12.1/flowtask/components/ProductCompetitors/scrapper.py +175 -0
- flowtask-5.12.1/flowtask/components/ProductCompliant.py +76 -0
- flowtask-5.12.1/flowtask/components/ProductInfo/scraper.py +338 -0
- flowtask-5.12.1/flowtask/components/ProductPricing.py +131 -0
- flowtask-5.12.1/flowtask/components/ProductReportBot.py +1011 -0
- flowtask-5.12.1/flowtask/components/QS.py +292 -0
- flowtask-5.12.1/flowtask/components/QSBase.py +4 -0
- flowtask-5.12.1/flowtask/components/QueryToInsert.py +330 -0
- flowtask-5.12.1/flowtask/components/QueryToPandas.py +525 -0
- flowtask-5.12.1/flowtask/components/RESTClient.py +275 -0
- flowtask-5.12.1/flowtask/components/RethinkDBQuery.py +202 -0
- flowtask-5.12.1/flowtask/components/RunSSH.py +78 -0
- flowtask-5.12.1/flowtask/components/RunShell.py +80 -0
- flowtask-5.12.1/flowtask/components/SAPExtraction.py +405 -0
- flowtask-5.12.1/flowtask/components/SalesForce.py +41 -0
- flowtask-5.12.1/flowtask/components/Sassie.py +332 -0
- flowtask-5.12.1/flowtask/components/SaveImageBank/__init__.py +276 -0
- flowtask-5.12.1/flowtask/components/SchedulingVisits.py +1423 -0
- flowtask-5.12.1/flowtask/components/ScrapPage.py +251 -0
- flowtask-5.12.1/flowtask/components/ScrapTool.py +869 -0
- flowtask-5.12.1/flowtask/components/SendEmail.py +329 -0
- flowtask-5.12.1/flowtask/components/SendNotify/component.py +403 -0
- flowtask-5.12.1/flowtask/components/SentimentAnalysis.py +708 -0
- flowtask-5.12.1/flowtask/components/ServiceScrapper/scrapper.py +429 -0
- flowtask-5.12.1/flowtask/components/SetVariables.py +164 -0
- flowtask-5.12.1/flowtask/components/SplitPDF.py +393 -0
- flowtask-5.12.1/flowtask/components/Staples.py +1224 -0
- flowtask-5.12.1/flowtask/components/SubTask.py +187 -0
- flowtask-5.12.1/flowtask/components/SuiteCRM.py +58 -0
- flowtask-5.12.1/flowtask/components/Switch.py +193 -0
- flowtask-5.12.1/flowtask/components/TableBase.py +4 -0
- flowtask-5.12.1/flowtask/components/TableDelete.py +321 -0
- flowtask-5.12.1/flowtask/components/TableInput.py +144 -0
- flowtask-5.12.1/flowtask/components/TableOutput/TableOutput.py +422 -0
- flowtask-5.12.1/flowtask/components/TableSchema.py +540 -0
- flowtask-5.12.1/flowtask/components/ThumbnailGenerator.py +356 -0
- flowtask-5.12.1/flowtask/components/ToPandas.py +87 -0
- flowtask-5.12.1/flowtask/components/TransformRows/TransformRows.py +519 -0
- flowtask-5.12.1/flowtask/components/TransposeRows.py +181 -0
- flowtask-5.12.1/flowtask/components/Uncompress.py +176 -0
- flowtask-5.12.1/flowtask/components/UniqueRows.py +131 -0
- flowtask-5.12.1/flowtask/components/UpdateOperationalVars.py +176 -0
- flowtask-5.12.1/flowtask/components/UploadTo.py +4 -0
- flowtask-5.12.1/flowtask/components/UploadToS3.py +377 -0
- flowtask-5.12.1/flowtask/components/UploadToSFTP.py +164 -0
- flowtask-5.12.1/flowtask/components/UploadToSharepoint.py +232 -0
- flowtask-5.12.1/flowtask/components/UserFunc.py +129 -0
- flowtask-5.12.1/flowtask/components/VideoUnderstanding.py +125 -0
- flowtask-5.12.1/flowtask/components/WSDLClient.py +142 -0
- flowtask-5.12.1/flowtask/components/Wait.py +40 -0
- flowtask-5.12.1/flowtask/components/Workday/__init__.py +43 -0
- flowtask-5.12.1/flowtask/components/Workday/models/__init__.py +17 -0
- flowtask-5.12.1/flowtask/components/Workday/models/applicant.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/candidate.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/cost_center.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/custom_punch_field_report.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/job_posting.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/job_posting_site.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/job_requisition.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/location.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/location_hierarchy_assignments.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/organizations.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/reference.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/time_block.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/time_off_balance.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/time_request.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/models/worker.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/__init__.py +3 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/applicant_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/candidate_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/cost_center_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/custom_punch_field_report_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/job_posting_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/job_posting_site_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/job_requisition_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/location_hierarchy_assignments_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/location_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/organization_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/reference_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/time_block_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/time_off_balance_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/time_request_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/parsers/worker_parsers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/__init__.py +19 -0
- flowtask-5.12.1/flowtask/components/Workday/types/applicants.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/base.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/candidates.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/cost_centers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/custom_punch_field_report.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/custom_punch_field_report_rest.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/custom_report.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/job_posting_sites.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/job_postings.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/job_requisitions.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/location_hierarchy_assignments.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/locations.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/organization_single.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/organizations.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/recruiting_agency_users.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/references.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/time_block_report.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/time_blocks.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/time_off_balances.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/time_requests.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/types/workers.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/utils/__init__.py +4 -0
- flowtask-5.12.1/flowtask/components/Workday/utils/utils.py +2 -0
- flowtask-5.12.1/flowtask/components/Workday/workday.py +641 -0
- flowtask-5.12.1/flowtask/components/WorkdayReport.py +728 -0
- flowtask-5.12.1/flowtask/components/Workplace.py +148 -0
- flowtask-5.12.1/flowtask/components/XMLToPandas.py +286 -0
- flowtask-5.12.1/flowtask/components/Zammad/__init__.py +55 -0
- flowtask-5.12.1/flowtask/components/Zoom.py +1963 -0
- flowtask-5.12.1/flowtask/components/ZoomInfoScraper.py +413 -0
- flowtask-5.12.1/flowtask/components/ZoomUs.py +1873 -0
- flowtask-5.12.1/flowtask/components/__init__.py +106 -0
- flowtask-5.12.1/flowtask/components/_census/__init__.py +68 -0
- flowtask-5.12.1/flowtask/components/_census/cache.py +162 -0
- flowtask-5.12.1/flowtask/components/_census/fetch.py +272 -0
- flowtask-5.12.1/flowtask/components/_census/resolver.py +211 -0
- flowtask-5.12.1/flowtask/components/_census/transform.py +268 -0
- flowtask-5.12.1/flowtask/components/abstract.py +4 -0
- flowtask-5.12.1/flowtask/components/flow.py +5 -0
- flowtask-5.12.1/flowtask/components/google.py +4 -0
- flowtask-5.12.1/flowtask/components/group.py +4 -0
- flowtask-5.12.1/flowtask/components/pandas_io.py +548 -0
- flowtask-5.12.1/flowtask/components/reviewscrap.py +133 -0
- flowtask-5.12.1/flowtask/components/tAddTotalRow.py +118 -0
- flowtask-5.12.1/flowtask/components/tAutoincrement.py +123 -0
- flowtask-5.12.1/flowtask/components/tConcat.py +115 -0
- flowtask-5.12.1/flowtask/components/tConditionalMultiply.py +159 -0
- flowtask-5.12.1/flowtask/components/tCrosstab.py +173 -0
- flowtask-5.12.1/flowtask/components/tDictKey.py +115 -0
- flowtask-5.12.1/flowtask/components/tExplode.py +211 -0
- flowtask-5.12.1/flowtask/components/tFilter.py +188 -0
- flowtask-5.12.1/flowtask/components/tFilterCommonValues.py +134 -0
- flowtask-5.12.1/flowtask/components/tFrequencyWeights.py +156 -0
- flowtask-5.12.1/flowtask/components/tGroup.py +260 -0
- flowtask-5.12.1/flowtask/components/tJoin.py +271 -0
- flowtask-5.12.1/flowtask/components/tMap/tMap.py +457 -0
- flowtask-5.12.1/flowtask/components/tMelt.py +117 -0
- flowtask-5.12.1/flowtask/components/tMerge.py +373 -0
- flowtask-5.12.1/flowtask/components/tOrder.py +100 -0
- flowtask-5.12.1/flowtask/components/tPandas.py +4 -0
- flowtask-5.12.1/flowtask/components/tPivot.py +112 -0
- flowtask-5.12.1/flowtask/components/tPluckCols.py +84 -0
- flowtask-5.12.1/flowtask/components/tUnnest.py +87 -0
- flowtask-5.12.1/flowtask/components/user.py +4 -0
- flowtask-5.12.1/flowtask/conf.py +564 -0
- flowtask-5.12.1/flowtask/documentation/categories.json +169 -0
- flowtask-5.12.1/flowtask/documentation/cli.py +324 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ASPX.doc.json +36 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/AddDataset.doc.json +101 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/AutoTask.doc.json +69 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/AzureUsers.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CallAnalysis.doc.json +81 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CallSummary.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CompanyScraper.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyFromS3.doc.json +23 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyFromSharepoint.doc.json +23 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToBigQuery.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToMongoDB.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToPg.doc.json +61 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToRethink.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToS3.doc.json +23 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CopyToSharepoint.doc.json +23 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/CustomerSatisfaction.doc.json +33 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DataInput.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DateList.doc.json +43 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DialPad.doc.json +44 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromD2L.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromFTP.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromIMAP.doc.json +52 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromS3.doc.json +56 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromSFTP.doc.json +80 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromSharepoint.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromSmartSheet.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/DownloadFromSmartsheet.doc.json +61 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/EmployeeEvaluation.doc.json +28 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ExecuteSQL.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ExtractTranscript.doc.json +81 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileCopy.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileDelete.doc.json +48 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileExists.doc.json +63 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileIteratorDelete.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileList.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileOpen.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileRead.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FileRename.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FilterIf.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/FilterRows.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/GoogleA4.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/GoogleGeoCoding.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/GoogleSearch.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/HTTPClient.doc.json +38 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ICIMS.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/IteratorBase.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/LeadIQ.doc.json +36 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/MS365Usage.doc.json +68 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/MSTeamsMessages.doc.json +57 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/MergeFileList.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/MergeFiles.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/NetworkNinjaClaims.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Odoo.doc.json +52 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/OdooInjector.doc.json +40 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/OpenFromXML.doc.json +40 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/OpenWithBase.doc.json +85 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/OpenWithPandas.doc.json +52 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PGPDecrypt.doc.json +38 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PandasIterator.doc.json +40 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PandasToFile.doc.json +64 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Paradox.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ParamIterator.doc.json +48 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PlacerStores.doc.json +28 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Pokemon.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PositiveBot.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PowerPointSlide.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/PrintMessage.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ProductCompliant.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ProductPricing.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ProductReportBot.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/QS.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/QueryIterator.doc.json +53 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/QueryToInsert.doc.json +48 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/QueryToPandas.doc.json +115 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/RESTClient.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/RunShell.doc.json +53 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SAPExtraction.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Sassie.doc.json +65 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ScrapTool.doc.json +83 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SendNotify.doc.json +56 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SentimentAnalysis.doc.json +53 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ServiceScrapper.doc.json +18 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SetVariables.doc.json +28 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SplitPDF.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SubTask.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/SuiteCRM.doc.json +47 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TableDelete.doc.json +53 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TableInput.doc.json +56 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TableOutput.doc.json +61 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TableSchema.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ThumbnailGenerator.doc.json +65 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TransformRows.doc.json +49 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/TransposeRows.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UnGzip.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Uncompress.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UniqueRows.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Unzip.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UploadToS3.doc.json +65 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UploadToSFTP.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UploadToSharepoint.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/UserFunc.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/Zoom.doc.json +97 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/ZoomInfoScraper.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tAutoincrement.doc.json +33 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tConcat.doc.json +33 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tConditionalMultiply.doc.json +45 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tCrosstab.doc.json +53 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tExplode.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tFilter.doc.json +29 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tFilterCommonValues.doc.json +33 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tFrequencyWeights.doc.json +41 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tGroup.doc.json +36 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tJoin.doc.json +56 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tMap.doc.json +69 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tMelt.doc.json +40 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tOrder.doc.json +32 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tPivot.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tPluckCols.doc.json +25 -0
- flowtask-5.12.1/flowtask/documentation/generated/components/tUnnest.doc.json +37 -0
- flowtask-5.12.1/flowtask/documentation/generated/index.json +665 -0
- flowtask-5.12.1/flowtask/documentation/generator.py +600 -0
- flowtask-5.12.1/flowtask/documentation/models.py +133 -0
- flowtask-5.12.1/flowtask/documentation/parser.py +271 -0
- flowtask-5.12.1/flowtask/documentation/schema.py +109 -0
- flowtask-5.12.1/flowtask/documentation/toolkit.py +584 -0
- flowtask-5.12.1/flowtask/events/events/notify_event.py +170 -0
- flowtask-5.12.1/flowtask/events/events/teams.py +112 -0
- flowtask-5.12.1/flowtask/executors/__init__.py +66 -0
- flowtask-5.12.1/flowtask/executors/base.py +87 -0
- flowtask-5.12.1/flowtask/executors/docker.py +447 -0
- flowtask-5.12.1/flowtask/executors/events.py +96 -0
- flowtask-5.12.1/flowtask/executors/exceptions.py +26 -0
- flowtask-5.12.1/flowtask/executors/k8s.py +507 -0
- flowtask-5.12.1/flowtask/executors/local.py +200 -0
- flowtask-5.12.1/flowtask/executors/models.py +97 -0
- flowtask-5.12.1/flowtask/executors/publish.py +288 -0
- flowtask-5.12.1/flowtask/executors/qworker.py +282 -0
- flowtask-5.12.1/flowtask/executors/registry.py +74 -0
- flowtask-5.12.1/flowtask/executors/resolver.py +197 -0
- flowtask-5.12.1/flowtask/factory/__init__.py +74 -0
- flowtask-5.12.1/flowtask/factory/agent.py +218 -0
- flowtask-5.12.1/flowtask/factory/composer.py +363 -0
- flowtask-5.12.1/flowtask/factory/parser.py +211 -0
- flowtask-5.12.1/flowtask/factory/validator.py +350 -0
- flowtask-5.12.1/flowtask/handlers/component.py +351 -0
- flowtask-5.12.1/flowtask/hooks/step.py +91 -0
- flowtask-5.12.1/flowtask/interfaces/Sharepoint.py +1576 -0
- flowtask-5.12.1/flowtask/interfaces/__init__.py +122 -0
- flowtask-5.12.1/flowtask/interfaces/abstract.py +24 -0
- flowtask-5.12.1/flowtask/interfaces/azure_component.py +96 -0
- flowtask-5.12.1/flowtask/interfaces/base_action.py +102 -0
- flowtask-5.12.1/flowtask/interfaces/base_loop.py +218 -0
- flowtask-5.12.1/flowtask/interfaces/copy_from_base.py +221 -0
- flowtask-5.12.1/flowtask/interfaces/copy_to.py +199 -0
- flowtask-5.12.1/flowtask/interfaces/copy_to_file_base.py +213 -0
- flowtask-5.12.1/flowtask/interfaces/db_client.py +165 -0
- flowtask-5.12.1/flowtask/interfaces/download_from.py +384 -0
- flowtask-5.12.1/flowtask/interfaces/file_base.py +191 -0
- flowtask-5.12.1/flowtask/interfaces/flow.py +591 -0
- flowtask-5.12.1/flowtask/interfaces/gamma.py +408 -0
- flowtask-5.12.1/flowtask/interfaces/google_base.py +415 -0
- flowtask-5.12.1/flowtask/interfaces/group.py +234 -0
- flowtask-5.12.1/flowtask/interfaces/http.py +1809 -0
- flowtask-5.12.1/flowtask/interfaces/qs.py +385 -0
- flowtask-5.12.1/flowtask/interfaces/qs_base.py +213 -0
- flowtask-5.12.1/flowtask/interfaces/sassie.py +297 -0
- flowtask-5.12.1/flowtask/interfaces/selenium/options.py +75 -0
- flowtask-5.12.1/flowtask/interfaces/selenium/service.py +1016 -0
- flowtask-5.12.1/flowtask/interfaces/selenium_service.py +1149 -0
- flowtask-5.12.1/flowtask/interfaces/t_pandas.py +115 -0
- flowtask-5.12.1/flowtask/interfaces/table_base.py +169 -0
- flowtask-5.12.1/flowtask/interfaces/task.py +93 -0
- flowtask-5.12.1/flowtask/interfaces/upload_to.py +282 -0
- flowtask-5.12.1/flowtask/interfaces/user.py +403 -0
- flowtask-5.12.1/flowtask/interfaces/workday/__init__.py +15 -0
- flowtask-5.12.1/flowtask/interfaces/workday/config.py +221 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/__init__.py +47 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/applicants.py +337 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/base.py +286 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/candidates.py +362 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/cost_centers.py +308 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/custom_punch_field_report.py +144 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/custom_punch_field_report_rest.py +175 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/custom_report.py +528 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/import_reported_time_blocks.py +170 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/import_time_clock_events.py +199 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/job_posting_sites.py +296 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/job_postings.py +347 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/job_requisitions.py +353 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/location_hierarchy_assignments.py +252 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/locations.py +145 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/organization_single.py +148 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/organizations.py +206 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/put_time_clock_events.py +188 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/recruiting_agency_users.py +310 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/references.py +142 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/time_block_report.py +206 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/time_blocks.py +170 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/time_off_balances.py +187 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/time_requests.py +185 -0
- flowtask-5.12.1/flowtask/interfaces/workday/handlers/workers.py +473 -0
- flowtask-5.12.1/flowtask/interfaces/workday/models/__init__.py +37 -0
- flowtask-5.12.1/flowtask/interfaces/workday/models/clock_event.py +164 -0
- flowtask-5.12.1/flowtask/interfaces/workday/models/time_block.py +52 -0
- flowtask-5.12.1/flowtask/interfaces/workday/parsers/job_requisition_parsers.py +958 -0
- flowtask-5.12.1/flowtask/interfaces/workday/service.py +579 -0
- flowtask-5.12.1/flowtask/parsers/argparser.py +334 -0
- flowtask-5.12.1/flowtask/parsers/syntax/registry.py +132 -0
- flowtask-5.12.1/flowtask/runner.py +312 -0
- flowtask-5.12.1/flowtask/scheduler/functions.py +538 -0
- flowtask-5.12.1/flowtask/services/tasks/tasks.py +137 -0
- flowtask-5.12.1/flowtask/storages/tasks/github.py +131 -0
- flowtask-5.12.1/flowtask/tasks/task.py +823 -0
- flowtask-5.12.1/flowtask/tests.py +257 -0
- flowtask-5.12.1/flowtask/utils/msgraph_patch.py +61 -0
- flowtask-5.12.1/flowtask/version.py +12 -0
- flowtask-5.12.1/flowtask.egg-info/PKG-INFO +229 -0
- flowtask-5.12.1/flowtask.egg-info/SOURCES.txt +818 -0
- flowtask-5.12.1/flowtask.egg-info/entry_points.txt +4 -0
- flowtask-5.12.1/flowtask.egg-info/requires.txt +119 -0
- flowtask-5.12.1/pyproject.toml +255 -0
- flowtask-5.11.11/PKG-INFO +0 -222
- flowtask-5.11.11/flowtask/components/ASPX.py +0 -159
- flowtask-5.11.11/flowtask/components/ATT.py +0 -1007
- flowtask-5.11.11/flowtask/components/AddDataset.py +0 -440
- flowtask-5.11.11/flowtask/components/AutoTask.py +0 -312
- flowtask-5.11.11/flowtask/components/Azure.py +0 -93
- flowtask-5.11.11/flowtask/components/AzureUsers.py +0 -176
- flowtask-5.11.11/flowtask/components/BaseAction.py +0 -100
- flowtask-5.11.11/flowtask/components/BaseLoop.py +0 -216
- flowtask-5.11.11/flowtask/components/BestBuy.py +0 -1944
- flowtask-5.11.11/flowtask/components/CSVToGCS.py +0 -139
- flowtask-5.11.11/flowtask/components/CallAnalysis.py +0 -1006
- flowtask-5.11.11/flowtask/components/CallSummary.py +0 -166
- flowtask-5.11.11/flowtask/components/CompanyScraper/scrapper.py +0 -1067
- flowtask-5.11.11/flowtask/components/CopyTo.py +0 -197
- flowtask-5.11.11/flowtask/components/CopyToBigQuery.py +0 -767
- flowtask-5.11.11/flowtask/components/CopyToMongoDB.py +0 -295
- flowtask-5.11.11/flowtask/components/CopyToPg.py +0 -623
- flowtask-5.11.11/flowtask/components/CopyToRethink.py +0 -210
- flowtask-5.11.11/flowtask/components/CreateGCSBucket.py +0 -121
- flowtask-5.11.11/flowtask/components/CreateReport/CreateReport.py +0 -262
- flowtask-5.11.11/flowtask/components/CustomerSatisfaction.py +0 -139
- flowtask-5.11.11/flowtask/components/DataInput.py +0 -204
- flowtask-5.11.11/flowtask/components/DbClient.py +0 -163
- flowtask-5.11.11/flowtask/components/DialPad.py +0 -155
- flowtask-5.11.11/flowtask/components/DispatchMe.py +0 -359
- flowtask-5.11.11/flowtask/components/DocumentDBQuery.py +0 -251
- flowtask-5.11.11/flowtask/components/DownloadFrom.py +0 -382
- flowtask-5.11.11/flowtask/components/DownloadFromD2L.py +0 -115
- flowtask-5.11.11/flowtask/components/DownloadFromFTP.py +0 -222
- flowtask-5.11.11/flowtask/components/DownloadFromIMAP.py +0 -342
- flowtask-5.11.11/flowtask/components/DownloadFromS3.py +0 -199
- flowtask-5.11.11/flowtask/components/DownloadFromSFTP.py +0 -274
- flowtask-5.11.11/flowtask/components/DownloadFromSharepoint.py +0 -199
- flowtask-5.11.11/flowtask/components/DownloadFromSmartSheet.py +0 -126
- flowtask-5.11.11/flowtask/components/DownloadFromSmartsheet.py +0 -334
- flowtask-5.11.11/flowtask/components/DownloadS3File.py +0 -253
- flowtask-5.11.11/flowtask/components/Dummy.py +0 -81
- flowtask-5.11.11/flowtask/components/DuplicatePhoto.py +0 -528
- flowtask-5.11.11/flowtask/components/EmployeeEvaluation.py +0 -250
- flowtask-5.11.11/flowtask/components/ExecuteSQL.py +0 -327
- flowtask-5.11.11/flowtask/components/ExtractHTML.py +0 -191
- flowtask-5.11.11/flowtask/components/ExtractTranscript.py +0 -1140
- flowtask-5.11.11/flowtask/components/FileBase.py +0 -189
- flowtask-5.11.11/flowtask/components/FileCopy.py +0 -191
- flowtask-5.11.11/flowtask/components/FileDelete.py +0 -86
- flowtask-5.11.11/flowtask/components/FileExists.py +0 -148
- flowtask-5.11.11/flowtask/components/FileOpen.py +0 -85
- flowtask-5.11.11/flowtask/components/FileRead.py +0 -125
- flowtask-5.11.11/flowtask/components/FileRename.py +0 -111
- flowtask-5.11.11/flowtask/components/FilterIf.py +0 -300
- flowtask-5.11.11/flowtask/components/FilterRows/FilterRows.py +0 -205
- flowtask-5.11.11/flowtask/components/GCSToBigQuery.py +0 -122
- flowtask-5.11.11/flowtask/components/GenData.py +0 -238
- flowtask-5.11.11/flowtask/components/GoogleA4.py +0 -153
- flowtask-5.11.11/flowtask/components/GoogleGeoCoding.py +0 -394
- flowtask-5.11.11/flowtask/components/GooglePlaces.py +0 -959
- flowtask-5.11.11/flowtask/components/GoogleSearch.py +0 -550
- flowtask-5.11.11/flowtask/components/HTTPClient.py +0 -301
- flowtask-5.11.11/flowtask/components/ICIMS.py +0 -153
- flowtask-5.11.11/flowtask/components/IF.py +0 -198
- flowtask-5.11.11/flowtask/components/IcimsFolderCopy.py +0 -189
- flowtask-5.11.11/flowtask/components/ImageFeatures/process.py +0 -295
- flowtask-5.11.11/flowtask/components/IteratorBase.py +0 -264
- flowtask-5.11.11/flowtask/components/LeadIQ.py +0 -662
- flowtask-5.11.11/flowtask/components/Loop.py +0 -272
- flowtask-5.11.11/flowtask/components/MS365Usage.py +0 -154
- flowtask-5.11.11/flowtask/components/MSTeamsMessages.py +0 -342
- flowtask-5.11.11/flowtask/components/MarkdownMaker.py +0 -174
- flowtask-5.11.11/flowtask/components/MarketClustering.py +0 -2381
- flowtask-5.11.11/flowtask/components/MergeFiles.py +0 -366
- flowtask-5.11.11/flowtask/components/MilvusOutput.py +0 -100
- flowtask-5.11.11/flowtask/components/NearByStores.py +0 -189
- flowtask-5.11.11/flowtask/components/NextStopAgent.py +0 -202
- flowtask-5.11.11/flowtask/components/Odoo.py +0 -177
- flowtask-5.11.11/flowtask/components/OdooInjector.py +0 -218
- flowtask-5.11.11/flowtask/components/OpenWeather.py +0 -63
- flowtask-5.11.11/flowtask/components/OpenWithBase.py +0 -615
- flowtask-5.11.11/flowtask/components/OpenWithPandas.py +0 -761
- flowtask-5.11.11/flowtask/components/PDFGenerator.py +0 -151
- flowtask-5.11.11/flowtask/components/PGPDecrypt.py +0 -205
- flowtask-5.11.11/flowtask/components/PandasToFile.py +0 -262
- flowtask-5.11.11/flowtask/components/PandasToPowerPoint.py +0 -530
- flowtask-5.11.11/flowtask/components/Paradox.py +0 -353
- flowtask-5.11.11/flowtask/components/ParrotLoader/loader.py +0 -719
- flowtask-5.11.11/flowtask/components/ParseHTML.py +0 -98
- flowtask-5.11.11/flowtask/components/PgVectorOutput.py +0 -299
- flowtask-5.11.11/flowtask/components/PlacerStores.py +0 -262
- flowtask-5.11.11/flowtask/components/PlanogramCompliance.py +0 -654
- flowtask-5.11.11/flowtask/components/PodcastMaker.py +0 -371
- flowtask-5.11.11/flowtask/components/Pokemon.py +0 -524
- flowtask-5.11.11/flowtask/components/PositiveBot.py +0 -76
- flowtask-5.11.11/flowtask/components/PowerPointSlide.py +0 -450
- flowtask-5.11.11/flowtask/components/PrintMessage.py +0 -130
- flowtask-5.11.11/flowtask/components/ProductCompetitors/scrapper.py +0 -174
- flowtask-5.11.11/flowtask/components/ProductCompliant.py +0 -76
- flowtask-5.11.11/flowtask/components/ProductInfo/scraper.py +0 -338
- flowtask-5.11.11/flowtask/components/ProductPricing.py +0 -131
- flowtask-5.11.11/flowtask/components/ProductReportBot.py +0 -1011
- flowtask-5.11.11/flowtask/components/QS.py +0 -292
- flowtask-5.11.11/flowtask/components/QSBase.py +0 -210
- flowtask-5.11.11/flowtask/components/QueryToInsert.py +0 -330
- flowtask-5.11.11/flowtask/components/QueryToPandas.py +0 -521
- flowtask-5.11.11/flowtask/components/RESTClient.py +0 -233
- flowtask-5.11.11/flowtask/components/RethinkDBQuery.py +0 -202
- flowtask-5.11.11/flowtask/components/RunSSH.py +0 -78
- flowtask-5.11.11/flowtask/components/RunShell.py +0 -80
- flowtask-5.11.11/flowtask/components/SAPExtraction.py +0 -405
- flowtask-5.11.11/flowtask/components/SalesForce.py +0 -41
- flowtask-5.11.11/flowtask/components/Sassie.py +0 -316
- flowtask-5.11.11/flowtask/components/SaveImageBank/__init__.py +0 -276
- flowtask-5.11.11/flowtask/components/SchedulingVisits.py +0 -1423
- flowtask-5.11.11/flowtask/components/ScrapPage.py +0 -251
- flowtask-5.11.11/flowtask/components/ScrapTool.py +0 -869
- flowtask-5.11.11/flowtask/components/SendEmail.py +0 -329
- flowtask-5.11.11/flowtask/components/SendNotify/component.py +0 -256
- flowtask-5.11.11/flowtask/components/SentimentAnalysis.py +0 -730
- flowtask-5.11.11/flowtask/components/ServiceScrapper/scrapper.py +0 -429
- flowtask-5.11.11/flowtask/components/SetVariables.py +0 -164
- flowtask-5.11.11/flowtask/components/SplitPDF.py +0 -393
- flowtask-5.11.11/flowtask/components/Staples.py +0 -1224
- flowtask-5.11.11/flowtask/components/SubTask.py +0 -187
- flowtask-5.11.11/flowtask/components/SuiteCRM.py +0 -58
- flowtask-5.11.11/flowtask/components/Switch.py +0 -193
- flowtask-5.11.11/flowtask/components/TableBase.py +0 -167
- flowtask-5.11.11/flowtask/components/TableDelete.py +0 -321
- flowtask-5.11.11/flowtask/components/TableInput.py +0 -144
- flowtask-5.11.11/flowtask/components/TableOutput/TableOutput.py +0 -422
- flowtask-5.11.11/flowtask/components/TableSchema.py +0 -540
- flowtask-5.11.11/flowtask/components/ThumbnailGenerator.py +0 -356
- flowtask-5.11.11/flowtask/components/ToPandas.py +0 -87
- flowtask-5.11.11/flowtask/components/TransformRows/TransformRows.py +0 -519
- flowtask-5.11.11/flowtask/components/TransposeRows.py +0 -181
- flowtask-5.11.11/flowtask/components/Uncompress.py +0 -176
- flowtask-5.11.11/flowtask/components/UniqueRows.py +0 -131
- flowtask-5.11.11/flowtask/components/UpdateOperationalVars.py +0 -176
- flowtask-5.11.11/flowtask/components/UploadTo.py +0 -280
- flowtask-5.11.11/flowtask/components/UploadToS3.py +0 -377
- flowtask-5.11.11/flowtask/components/UploadToSFTP.py +0 -164
- flowtask-5.11.11/flowtask/components/UploadToSharepoint.py +0 -232
- flowtask-5.11.11/flowtask/components/UserFunc.py +0 -129
- flowtask-5.11.11/flowtask/components/VideoUnderstanding.py +0 -116
- flowtask-5.11.11/flowtask/components/WSDLClient.py +0 -142
- flowtask-5.11.11/flowtask/components/Wait.py +0 -40
- flowtask-5.11.11/flowtask/components/Workday/__init__.py +0 -5
- flowtask-5.11.11/flowtask/components/Workday/models/__init__.py +0 -32
- flowtask-5.11.11/flowtask/components/Workday/models/time_block.py +0 -47
- flowtask-5.11.11/flowtask/components/Workday/parsers/job_requisition_parsers.py +0 -958
- flowtask-5.11.11/flowtask/components/Workday/types/__init__.py +0 -39
- flowtask-5.11.11/flowtask/components/Workday/types/applicants.py +0 -337
- flowtask-5.11.11/flowtask/components/Workday/types/base.py +0 -170
- flowtask-5.11.11/flowtask/components/Workday/types/candidates.py +0 -362
- flowtask-5.11.11/flowtask/components/Workday/types/cost_centers.py +0 -308
- flowtask-5.11.11/flowtask/components/Workday/types/custom_punch_field_report.py +0 -144
- flowtask-5.11.11/flowtask/components/Workday/types/custom_punch_field_report_rest.py +0 -175
- flowtask-5.11.11/flowtask/components/Workday/types/custom_report.py +0 -528
- flowtask-5.11.11/flowtask/components/Workday/types/job_posting_sites.py +0 -296
- flowtask-5.11.11/flowtask/components/Workday/types/job_postings.py +0 -347
- flowtask-5.11.11/flowtask/components/Workday/types/job_requisitions.py +0 -353
- flowtask-5.11.11/flowtask/components/Workday/types/location_hierarchy_assignments.py +0 -252
- flowtask-5.11.11/flowtask/components/Workday/types/locations.py +0 -145
- flowtask-5.11.11/flowtask/components/Workday/types/organization_single.py +0 -148
- flowtask-5.11.11/flowtask/components/Workday/types/organizations.py +0 -206
- flowtask-5.11.11/flowtask/components/Workday/types/recruiting_agency_users.py +0 -310
- flowtask-5.11.11/flowtask/components/Workday/types/references.py +0 -142
- flowtask-5.11.11/flowtask/components/Workday/types/time_block_report.py +0 -206
- flowtask-5.11.11/flowtask/components/Workday/types/time_blocks.py +0 -170
- flowtask-5.11.11/flowtask/components/Workday/types/time_off_balances.py +0 -187
- flowtask-5.11.11/flowtask/components/Workday/types/time_requests.py +0 -185
- flowtask-5.11.11/flowtask/components/Workday/types/workers.py +0 -473
- flowtask-5.11.11/flowtask/components/Workday/workday.py +0 -961
- flowtask-5.11.11/flowtask/components/WorkdayReport.py +0 -728
- flowtask-5.11.11/flowtask/components/Workplace.py +0 -148
- flowtask-5.11.11/flowtask/components/XMLToPandas.py +0 -286
- flowtask-5.11.11/flowtask/components/Zammad/__init__.py +0 -55
- flowtask-5.11.11/flowtask/components/Zoom.py +0 -1963
- flowtask-5.11.11/flowtask/components/ZoomInfoScraper.py +0 -413
- flowtask-5.11.11/flowtask/components/ZoomUs.py +0 -1715
- flowtask-5.11.11/flowtask/components/__init__.py +0 -104
- flowtask-5.11.11/flowtask/components/abstract.py +0 -22
- flowtask-5.11.11/flowtask/components/flow.py +0 -592
- flowtask-5.11.11/flowtask/components/google.py +0 -413
- flowtask-5.11.11/flowtask/components/group.py +0 -232
- flowtask-5.11.11/flowtask/components/reviewscrap.py +0 -133
- flowtask-5.11.11/flowtask/components/tAddTotalRow.py +0 -118
- flowtask-5.11.11/flowtask/components/tAutoincrement.py +0 -123
- flowtask-5.11.11/flowtask/components/tConcat.py +0 -115
- flowtask-5.11.11/flowtask/components/tConditionalMultiply.py +0 -159
- flowtask-5.11.11/flowtask/components/tCrosstab.py +0 -173
- flowtask-5.11.11/flowtask/components/tExplode.py +0 -198
- flowtask-5.11.11/flowtask/components/tFilter.py +0 -191
- flowtask-5.11.11/flowtask/components/tFilterCommonValues.py +0 -134
- flowtask-5.11.11/flowtask/components/tFrequencyWeights.py +0 -156
- flowtask-5.11.11/flowtask/components/tGroup.py +0 -260
- flowtask-5.11.11/flowtask/components/tJoin.py +0 -271
- flowtask-5.11.11/flowtask/components/tMap/tMap.py +0 -448
- flowtask-5.11.11/flowtask/components/tMelt.py +0 -117
- flowtask-5.11.11/flowtask/components/tMerge.py +0 -373
- flowtask-5.11.11/flowtask/components/tOrder.py +0 -100
- flowtask-5.11.11/flowtask/components/tPandas.py +0 -113
- flowtask-5.11.11/flowtask/components/tPivot.py +0 -112
- flowtask-5.11.11/flowtask/components/tPluckCols.py +0 -84
- flowtask-5.11.11/flowtask/components/tUnnest.py +0 -87
- flowtask-5.11.11/flowtask/components/user.py +0 -401
- flowtask-5.11.11/flowtask/conf.py +0 -539
- flowtask-5.11.11/flowtask/documentation/categories.json +0 -150
- flowtask-5.11.11/flowtask/documentation/cli.py +0 -191
- flowtask-5.11.11/flowtask/documentation/generator.py +0 -442
- flowtask-5.11.11/flowtask/documentation/models.py +0 -88
- flowtask-5.11.11/flowtask/documentation/parser.py +0 -238
- flowtask-5.11.11/flowtask/documentation/schema.py +0 -120
- flowtask-5.11.11/flowtask/events/events/notify_event.py +0 -164
- flowtask-5.11.11/flowtask/events/events/teams.py +0 -108
- flowtask-5.11.11/flowtask/handlers/component.py +0 -252
- flowtask-5.11.11/flowtask/hooks/step.py +0 -91
- flowtask-5.11.11/flowtask/interfaces/Sharepoint.py +0 -1461
- flowtask-5.11.11/flowtask/interfaces/__init__.py +0 -61
- flowtask-5.11.11/flowtask/interfaces/http.py +0 -1808
- flowtask-5.11.11/flowtask/interfaces/qs.py +0 -376
- flowtask-5.11.11/flowtask/interfaces/sassie.py +0 -228
- flowtask-5.11.11/flowtask/interfaces/selenium/options.py +0 -85
- flowtask-5.11.11/flowtask/interfaces/selenium/service.py +0 -1012
- flowtask-5.11.11/flowtask/interfaces/selenium_service.py +0 -1096
- flowtask-5.11.11/flowtask/interfaces/task.py +0 -96
- flowtask-5.11.11/flowtask/parsers/argparser.py +0 -299
- flowtask-5.11.11/flowtask/parsers/syntax/registry.py +0 -122
- flowtask-5.11.11/flowtask/runner.py +0 -285
- flowtask-5.11.11/flowtask/scheduler/functions.py +0 -517
- flowtask-5.11.11/flowtask/services/tasks/tasks.py +0 -173
- flowtask-5.11.11/flowtask/storages/tasks/github.py +0 -125
- flowtask-5.11.11/flowtask/tasks/task.py +0 -818
- flowtask-5.11.11/flowtask/tests.py +0 -257
- flowtask-5.11.11/flowtask/version.py +0 -12
- flowtask-5.11.11/flowtask.egg-info/PKG-INFO +0 -222
- flowtask-5.11.11/flowtask.egg-info/SOURCES.txt +0 -580
- flowtask-5.11.11/flowtask.egg-info/entry_points.txt +0 -3
- flowtask-5.11.11/flowtask.egg-info/requires.txt +0 -109
- flowtask-5.11.11/pyproject.toml +0 -223
- {flowtask-5.11.11 → flowtask-5.12.1}/CONTRIBUTING.md +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/INSTALL +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/LICENSE +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/MANIFEST.in +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/README.md +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/__main__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/bots/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/bots/check.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/bots/codebot.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Amazon.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/explorium.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/leadiq.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/rocket.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/siccode.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/visualvisitor.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CompanyScraper/parsers/zoominfo.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Costco.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/charts/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/charts/bar.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/charts/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/charts/pie.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/CreateReport/utils.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/DateList.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/FileIteratorDelete.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/FileList.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/FilterRows/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/FilterRows/functions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ImageFeatures/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Lowes.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/MergeFileList.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/account.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/district.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/events.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/forms.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/market.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/organization.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/photos.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/project.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/region.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/store.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/models/user.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinja/router.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/NetworkNinjaClaims.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/OpenFromXML.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/PandasIterator.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ParamIterator.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ParrotLoader/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductCompetitors/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductCompetitors/parsers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductCompetitors/parsers/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductCompetitors/parsers/bestbuy.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductCompetitors/parsers/lowes.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/brother.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/canon.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/epson.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/hp.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ProductInfo/parsers/samsung.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/QueryIterator.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Rsync.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SMSAnalysis.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SMSSummary.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ScrapSearch.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SendNotify/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SendNotify/models/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SendNotify/models/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/SendNotify/models/zoom.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ServiceScrapper/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ServiceScrapper/parsers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ServiceScrapper/parsers/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/ServiceScrapper/parsers/costco.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/TableOutput/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Target.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/TransformRows/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/TransformRows/functions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/UPCDatabase.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/UnGzip.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Unzip.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/VivaTracker.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Walmart.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/Zammad/models.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/gendata/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/gendata/date_sequence.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/gendata/static_list.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/py.typed +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/tMap/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/components/tMap/functions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/documentation/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/download.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/alerts/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/alerts/colfunctions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/alerts/functions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/dummy.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/exec.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/file/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/file/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/file/copy.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/file/delete.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/interfaces/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/interfaces/client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/interfaces/credentials.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/interfaces/notifications.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/jira.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/log.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/logerr.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/notify.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/publish.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/sendfile.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/task.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/events/webhook.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/events/manager.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/exceptions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/extensions/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/extensions/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/extensions/component_docs.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/extensions/logging/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/handlers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/dummy.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/jira.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/rest.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/sampledata.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/sensor.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/task.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/ticket.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/zammad.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/actions/zoom_event.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/hook.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/models.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/service.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/mqtt.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/rabbitmq.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/redis.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/brokers/sqs.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/fs.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/http.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/imap.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/jira.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/mail.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/postgres.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/responses/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/responses/base.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/sharepoint.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/ssh.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/tagged.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/upload.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/watch.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/web.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/hooks/types/zoom.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/AzureClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/AzureGraph.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/Boto3Client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/DropboxClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/ExcelHandler.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/FTPClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleCalendar.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleDrive.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleGCS.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleGeocoding.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleLang.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GooglePub.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/GoogleSheet.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/IMAPClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/LLMClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/O365Calendar.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/O365Client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/OneDrive.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/Outlook.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/ParrotBot.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/ParrotTool.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/SOAPClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/SSHClient.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/azureauth.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/cache.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/compress.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/credentials.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/d2l.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/databases/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/databases/db.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/databases/documentdb.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/databases/rethink.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/arrow.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/dt.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/pandas.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/dataframes/polars.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/db.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/env.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/func.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/locale.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/log.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/mask.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/notification.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/parrot/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/parrot/agent.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/parrot/client.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/pipelines/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/pipelines/parrot.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/playwright.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/powerpoint.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/ppt.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/py.typed +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/result.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/selenium/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/smartsheet.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/stat.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/teams.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/template.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/tickets.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/vectorstores/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/vectorstores/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/vectorstores/milvus.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/applicant.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/candidate.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/cost_center.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/custom_punch_field_report.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/job_posting.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/job_posting_site.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/job_requisition.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/location.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/location_hierarchy_assignments.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/organizations.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/reference.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/time_off_balance.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/time_request.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/models/worker.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/__init__.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/applicant_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/candidate_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/cost_center_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/custom_punch_field_report_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/job_posting_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/job_posting_site_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/location_hierarchy_assignments_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/location_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/organization_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/reference_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/time_block_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/time_off_balance_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/time_request_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/parsers/worker_parsers.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/utils/__init__.py +0 -0
- {flowtask-5.11.11/flowtask/components/Workday → flowtask-5.12.1/flowtask/interfaces/workday}/utils/utils.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/zammad.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/interfaces/zoom.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/models.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/_yaml.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/base.pxd +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/base.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/json.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/maps.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/syntax/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/syntax/checker.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/syntax/detector.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/syntax/report.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/syntax/schema.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/parsers/toml.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/plugins/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/plugins/components_/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/plugins/handler/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/plugins/importer.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/plugins/sources/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/handlers/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/handlers/manager.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/handlers/models.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/handlers/service.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/notifications.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/scheduler/scheduler.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/bots/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/bots/telegram.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/files/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/files/manager.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/files/model.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/files/service.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/jira/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/jira/jira_actions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/tasks/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/tasks/launcher.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/tasks/manager.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/tasks/service.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/services/tasks/task_manager.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/exceptions.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/files/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/files/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/files/filesystem.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/database.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/filesystem.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/memory.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/storages/tasks/row.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/abstract.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/command.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/pile.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/py.typed +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/tasks/workers.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/template/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/types/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/types/typedefs.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/__init__.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/constants.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/encoders.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/executor.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/functions.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/json.pxi +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/json.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/mail.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/parseqs.pyx +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/stats.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/transformations.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/uv.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask/utils/validators.py +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask.egg-info/dependency_links.txt +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/flowtask.egg-info/top_level.txt +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/setup.cfg +0 -0
- {flowtask-5.11.11 → flowtask-5.12.1}/setup.py +0 -0
flowtask-5.12.1/PKG-INFO
ADDED
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: flowtask
|
|
3
|
+
Version: 5.12.1
|
|
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==7.2.2
|
|
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
|