-
Notifications
You must be signed in to change notification settings - Fork 32
Add new example with pynautobot #53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
be0954c
Add exampele3 with pynautobot
dgarros 9b0ffb1
Replace sub region with population, add diff and flags
dgarros 5288b5f
Pylint and pydocstyle
dgarros 144820d
exclude examples and docs from mypy
dgarros 8c2d17e
exclude examples and docs from pylint
dgarros 8a4cbd9
Update examples/example3/main.py
dgarros 23ce5b3
Update examples/example3/diff.py
dgarros 7578196
Update examples/example3/local_adapter.py
dgarros 0685de8
Update examples/example3/local_adapter.py
dgarros f91d5c4
Update examples/example3/local_adapter.py
dgarros db21ce1
Update examples/example3/README.md
dgarros 1eb9b3e
Update examples/example3/README.md
dgarros 29a0995
Update examples/example3/README.md
dgarros 9924b1d
Update examples/example3/local_adapter.py
dgarros f1382c2
Update examples/example3/local_adapter.py
dgarros 1f73b74
Update examples/example3/main.py
dgarros bd43009
Update examples/example3/main.py
dgarros 38e8dd9
Update examples/example3/main.py
dgarros b0e8b54
Update examples/example3/nautobot_adapter.py
dgarros b99649d
Update examples/example3/nautobot_adapter.py
dgarros 06ec2d2
Update examples/example3/nautobot_adapter.py
dgarros b307176
Update examples/example3/nautobot_adapter.py
dgarros c91eeb5
Update format with black
dgarros efd36a7
Reenable pylint on the examples folder
dgarros e47dd69
fix import error for pylint in example3
dgarros File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next
Next commit
Add exampele3 with pynautobot
- Loading branch information
commit be0954c1211b6f7b54f8a2460b7967fc0a853613
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
# Example 3 | ||
|
||
This is a simple example to show how DiffSync can be used to compare and synchronize data with a remote system like via a REST API like Nautobot. | ||
|
||
For this example, we have a shared model for Region and Country defined in `models.py`. | ||
A Country must be associated with a Region and can be part of a Subregion too. | ||
glennmatthews marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
The comparison and synchronization of dataset is done between a local JSON file and the [public instance of Nautobot](https://demo.nautobot.com). | ||
|
||
|
||
## Install the requirements | ||
|
||
to use this example you must have some dependencies installed, please make sure to run | ||
``` | ||
pip install -r requirements.txt | ||
``` | ||
|
||
## Try the example | ||
|
||
The first time a lot of changes should be reported between Nautobot and the local data because by default the demo instance doesn't have the subregion define. | ||
dgarros marked this conversation as resolved.
Show resolved
Hide resolved
|
||
After the first sync, the diff should show no difference. | ||
dgarros marked this conversation as resolved.
Show resolved
Hide resolved
|
||
At this point, Diffsync will be able to identify and fix all changes in Nautobot. You can try to add/update or delete any country in Nautobot and DiffSync will automatically catch it and it will fix it with running in sync mode. | ||
|
||
``` | ||
### DIFF Compare the data between Nautobot and the local JSON file. | ||
main.py --diff | ||
|
||
### SYNC Update the list of country in Nautobot. | ||
main.py --sync | ||
``` | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.