Name | infrahub-sync JSON |
Version |
1.0.2
JSON |
| download |
home_page | https://opsmill.com |
Summary | Infrahub-Sync is a versatile Python package that synchronizes data between a source and a destination system |
upload_time | 2025-01-23 08:40:19 |
maintainer | None |
docs_url | None |
author | OpsMill |
requires_python | <3.13,>=3.9 |
license | Apache-2.0 |
keywords |
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<!-- markdownlint-disable -->

<!-- markdownlint-restore -->
# Infrahub Sync
[Infrahub](https://github.com/opsmill/infrahub) by [OpsMill](https://opsmill.com) acts as a central hub to manage the data, templates and playbooks that powers your infrastructure. At its heart, Infrahub is built on 3 fundamental pillars:
- **A Flexible Schema**: A model of the infrastructure and the relation between the objects in the model, that's easily extensible.
- **Version Control**: Natively integrated into the graph database which opens up some new capabilities like branching, diffing, and merging data directly in the database.
- **Unified Storage**: By combining a graph database and git, Infrahub stores data and code needed to manage the infrastructure.
## Introduction
Infrahub Sync is a versatile Python package that synchronizes data between a source and a destination system. It builds on the robust capabilities of `diffsync` to offer flexible and efficient data synchronization across different platforms, including Netbox, Nautobot, and Infrahub. This package features a Typer-based CLI for ease of use, supporting operations such as listing available sync projects, generating diffs, and executing sync processes.
### Features
- **Multiple Systems Support**: Synchronize data between Netbox, Nautobot, and Infrahub.
- **Flexible Configuration**: Define synchronization tasks with YAML configuration files.
- **CLI Interface**: Manage sync tasks directly from the command line.
- **Custom Sync Logic**: Generate Python code for custom sync adapters and models using provided Jinja templates.
### Requirements
Requirements
- The two latest Infrahub releases
- Python >=3.9, <3.13
- Python modules:
- infrahub-sdk >= 0.12.0
## Documentation
Please refer to the [Infrahub Sync](https://docs.infrahub.app/integrations/sync/) documentation.
## Project Structure
```bash
.
├── LICENSE.txt
├── README.md
├── examples
│ ├── infrahub_to_peering-manager
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── peeringmanager
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ ├── ipfabric_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── ipfabricsync
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ ├── librenms_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── librenms
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ ├── nautobot-v1_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── nautobot
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ ├── nautobot-v2_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── nautobot
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ ├── netbox_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── netbox
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ ├── observium_to_infrahub
│ │ ├── config.yml
│ │ ├── infrahub
│ │ │ ├── __init__.py
│ │ │ ├── sync_adapter.py
│ │ │ └── sync_models.py
│ │ │
│ │ └── observium
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ └── peering-manager_to_infrahub
│ ├── config.yml
│ ├── infrahub
│ │ ├── __init__.py
│ │ ├── sync_adapter.py
│ │ └── sync_models.py
│ │
│ └── peeringmanager
│ ├── __init__.py
│ ├── sync_adapter.py
│ └── sync_models.py
│
├── infrahub-sync
│ ├── infrahub_sync
│ │ ├── __init__.py
│ │ ├── adapters
│ │ │ ├── infrahub.py
│ │ │ ├── ipfabricsync.py
│ │ │ ├── librenms.py
│ │ │ ├── nautobot.py
│ │ │ ├── netbox.py
│ │ │ ├── observium.py
│ │ │ ├── peeringmanager.py
│ │ │ ├── rest_api_client.py
│ │ │ └── utils.py
│ │ │
│ │ ├── cli.py
│ │ ├── generator
│ │ │ ├── __init__.py
│ │ │ └── templates
│ │ │ ├── diffsync_adapter.j2
│ │ │ └── diffsync_models.j2
│ │ │
│ │ └── utils.py
│ │
│ └── tests
│ └── __init__.py
│
├── poetry.lock
├── potenda
│ └── potenda
│ └── __init__.py
│
└── pyproject.toml
```
Raw data
{
"_id": null,
"home_page": "https://opsmill.com",
"name": "infrahub-sync",
"maintainer": null,
"docs_url": null,
"requires_python": "<3.13,>=3.9",
"maintainer_email": null,
"keywords": null,
"author": "OpsMill",
"author_email": "info@opsmill.com",
"download_url": "https://files.pythonhosted.org/packages/58/ad/93c2d8da23e074852f4bb5b650857026f88accf2b7eff5898841bc987371/infrahub_sync-1.0.2.tar.gz",
"platform": null,
"description": "<!-- markdownlint-disable -->\n\n<!-- markdownlint-restore -->\n\n# Infrahub Sync\n\n[Infrahub](https://github.com/opsmill/infrahub) by [OpsMill](https://opsmill.com) acts as a central hub to manage the data, templates and playbooks that powers your infrastructure. At its heart, Infrahub is built on 3 fundamental pillars:\n\n- **A Flexible Schema**: A model of the infrastructure and the relation between the objects in the model, that's easily extensible.\n- **Version Control**: Natively integrated into the graph database which opens up some new capabilities like branching, diffing, and merging data directly in the database.\n- **Unified Storage**: By combining a graph database and git, Infrahub stores data and code needed to manage the infrastructure.\n\n## Introduction\n\nInfrahub Sync is a versatile Python package that synchronizes data between a source and a destination system. It builds on the robust capabilities of `diffsync` to offer flexible and efficient data synchronization across different platforms, including Netbox, Nautobot, and Infrahub. This package features a Typer-based CLI for ease of use, supporting operations such as listing available sync projects, generating diffs, and executing sync processes.\n\n### Features\n\n- **Multiple Systems Support**: Synchronize data between Netbox, Nautobot, and Infrahub.\n- **Flexible Configuration**: Define synchronization tasks with YAML configuration files.\n- **CLI Interface**: Manage sync tasks directly from the command line.\n- **Custom Sync Logic**: Generate Python code for custom sync adapters and models using provided Jinja templates.\n\n### Requirements\n\nRequirements\n\n- The two latest Infrahub releases\n- Python >=3.9, <3.13\n- Python modules:\n - infrahub-sdk >= 0.12.0\n\n## Documentation\n\nPlease refer to the [Infrahub Sync](https://docs.infrahub.app/integrations/sync/) documentation.\n\n## Project Structure\n\n```bash\n.\n\u251c\u2500\u2500 LICENSE.txt\n\u251c\u2500\u2500 README.md\n\u251c\u2500\u2500 examples\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub_to_peering-manager\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 peeringmanager\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 ipfabric_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 ipfabricsync\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 librenms_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 librenms\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nautobot-v1_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 nautobot\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 nautobot-v2_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 nautobot\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 netbox_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 netbox\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 observium_to_infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 observium\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 peering-manager_to_infrahub\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 config.yml\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 peeringmanager\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 sync_adapter.py\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 sync_models.py\n\u2502\n\u251c\u2500\u2500 infrahub-sync\n\u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub_sync\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 adapters\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 infrahub.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 ipfabricsync.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 librenms.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 nautobot.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 netbox.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 observium.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 peeringmanager.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 rest_api_client.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 utils.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 cli.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 generator\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 __init__.py\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 templates\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u251c\u2500\u2500 diffsync_adapter.j2\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 diffsync_models.j2\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2502\u00a0\u00a0 \u2514\u2500\u2500 utils.py\n\u2502\u00a0\u00a0 \u2502\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 tests\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 __init__.py\n\u2502\n\u251c\u2500\u2500 poetry.lock\n\u251c\u2500\u2500 potenda\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 potenda\n\u2502\u00a0\u00a0 \u2514\u2500\u2500 __init__.py\n\u2502\n\u2514\u2500\u2500 pyproject.toml\n```\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Infrahub-Sync is a versatile Python package that synchronizes data between a source and a destination system",
"version": "1.0.2",
"project_urls": {
"Documentation": "https://docs.infrahub.app/integrations/sync/",
"Homepage": "https://opsmill.com",
"Repository": "https://github.com/opsmill/infrahub"
},
"split_keywords": [],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "4fbf08fb682aedec40c57f46e83fcfdedea2a7ea115605dff7f5e5a8970c49e8",
"md5": "776860063f80dae5f560bee4c0fd76e2",
"sha256": "74eb899fad78eb18302ebdd6bf6aafc93be9b343346fe92cee37ce1d7fdb843d"
},
"downloads": -1,
"filename": "infrahub_sync-1.0.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "776860063f80dae5f560bee4c0fd76e2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<3.13,>=3.9",
"size": 39945,
"upload_time": "2025-01-23T08:40:16",
"upload_time_iso_8601": "2025-01-23T08:40:16.311630Z",
"url": "https://files.pythonhosted.org/packages/4f/bf/08fb682aedec40c57f46e83fcfdedea2a7ea115605dff7f5e5a8970c49e8/infrahub_sync-1.0.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "58ad93c2d8da23e074852f4bb5b650857026f88accf2b7eff5898841bc987371",
"md5": "bf80274a94f6d1591c847552e35313bb",
"sha256": "da732d13ea80e1b4d39ea4992b69480b72bec0f96de56522b03532a252abb2f2"
},
"downloads": -1,
"filename": "infrahub_sync-1.0.2.tar.gz",
"has_sig": false,
"md5_digest": "bf80274a94f6d1591c847552e35313bb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<3.13,>=3.9",
"size": 28715,
"upload_time": "2025-01-23T08:40:19",
"upload_time_iso_8601": "2025-01-23T08:40:19.671232Z",
"url": "https://files.pythonhosted.org/packages/58/ad/93c2d8da23e074852f4bb5b650857026f88accf2b7eff5898841bc987371/infrahub_sync-1.0.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-01-23 08:40:19",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "opsmill",
"github_project": "infrahub",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "infrahub-sync"
}