AI Analysis
Final verdict: SAFE
The package shows minimal risks across all assessed categories and appears to be designed for legitimate use with Microsoft Dataverse API.
- Low network, shell, obfuscation, and credential risks.
- No signs of supply-chain attack.
Per-check LLM notes
- Network: The observed network calls are typical for interacting with Microsoft Dataverse API, suggesting legitimate API usage.
- Shell: No shell execution patterns detected, indicating no immediate risk related to shell command execution.
- Obfuscation: No obfuscation patterns detected, indicating low risk of malicious intent.
- Credentials: No credential harvesting patterns detected, suggesting secure handling of sensitive information.
- Metadata: The author has only one package, which might indicate a new or less active account, but no other suspicious elements were found.
Package Quality Overall: Medium (5.0/10)
○ Low
Test Suite
1.0
No test suite detected
No test files or test-runner configuration detected
◈ Medium
Documentation
7.0
Some documentation present
Documentation URL: "Documentation" -> https://docs.airbyte.com/integrations/sources/microsoft-dataBrief PyPI description (480 chars)
○ Low
Contributing Guide
2.0
No contributing guide or governance files found
No CONTRIBUTING, CODE_OF_CONDUCT, or governance files found
◈ Medium
Type Annotations
5.0
Partial type annotation coverage
17 type-annotated function signatures detected in source
✦ High
Multiple Contributors
10.0
Active multi-contributor project
14 unique contributor(s) across 100 commits in airbytehq/airbyteActive community — 5 or more distinct contributors
Heuristic Checks
Outbound Network Calls
score 3.0
Found 2 network call pattern(s)
the access token. return requests.get( config["url"] + "/api/data/v9.2/" + path, hndary}--\r\n" response = requests.post( config["url"] + "/api/data/v9.2/$batch", he
Code Obfuscation
No obfuscation patterns detected
Shell / Subprocess Execution
No shell execution patterns detected
Credential Harvesting
No credential harvesting patterns detected
Typosquatting
No typosquatting candidates detected
Registered Email Domain
Email domain looks legitimate: airbyte.io
Suspicious Page Links
All external links appear legitimate
Git Repository History
Repository airbytehq/airbyte appears legitimate
Maintainer History
score 2.0
1 maintainer concern(s) found
Author "Airbyte" appears to have only 1 package on PyPI (new or inactive account)
Known CVE Vulnerabilities
No known vulnerabilities found in OSV database.
AI App Starter Prompt
Use this prompt to build a project with airbyte-source-microsoft-dataverse
Create a data migration tool using Python that leverages the 'airbyte-source-microsoft-dataverse' package to extract data from Microsoft Dataverse. Your goal is to develop a simple yet powerful utility that can help users migrate their data seamlessly from Microsoft Dataverse to another database system of their choice (e.g., PostgreSQL, MySQL). This tool should allow users to select specific tables or entities within Microsoft Dataverse to export, define the target database schema, and perform the migration with minimal configuration. ### Key Features: - **Data Extraction:** Utilize the 'airbyte-source-microsoft-dataverse' package to connect to a specified Microsoft Dataverse environment and extract data from chosen tables/entities. - **Schema Definition:** Allow users to define the target database schema, including table names, column types, and relationships, ensuring compatibility with the target database system. - **Data Transformation:** Implement basic data transformation capabilities, such as renaming columns, adding computed fields, or converting data types, to adapt the extracted data to fit the target schema. - **Data Migration:** Execute the data migration process, handling bulk data transfer efficiently and ensuring data integrity during the transition. - **Error Handling & Logging:** Provide robust error handling mechanisms to manage any issues encountered during the extraction or migration processes, and log these events for later review. - **User Interface:** Develop a user-friendly interface (CLI or GUI) that guides users through the setup and execution of the data migration task. ### Steps to Completion: 1. **Setup Environment:** Install necessary Python packages, including 'airbyte-source-microsoft-dataverse', and set up your development environment. 2. **Connect to Microsoft Dataverse:** Use the 'airbyte-source-microsoft-dataverse' package to establish a connection to the source Microsoft Dataverse environment and explore available entities/tables. 3. **Define Target Schema:** Create a configuration module allowing users to specify details about the target database schema. 4. **Implement Data Transformation Logic:** Develop functions to transform extracted data according to user-defined rules, ensuring it aligns with the target schema requirements. 5. **Develop Data Migration Functionality:** Write code to migrate transformed data from Microsoft Dataverse to the target database system. 6. **Build User Interface:** Construct either a command-line interface (CLI) or graphical user interface (GUI) for interacting with the data migration tool. 7. **Test and Debug:** Thoroughly test the application under various scenarios, fixing any bugs or issues that arise. 8. **Documentation:** Prepare comprehensive documentation explaining how to install, configure, and use the data migration tool effectively.