-
Notifications
You must be signed in to change notification settings - Fork 454
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6396 from drew2a/feature/tag_community
Adding tag community, database and REST API endpoints
- Loading branch information
Showing
34 changed files
with
1,266 additions
and
62 deletions.
There are no files selected for viewing
Submodule pyipv8
updated
24 files
+16 −0 | .readthedocs.yaml | |
+2 −2 | README.md | |
+1 −1 | doc/basics/discoverystrategy_tutorial.rst | |
+3 −3 | doc/basics/identity_tutorial.rst | |
+6 −0 | doc/basics/overlay_tutorial.rst | |
+1 −1 | doc/basics/requestcache_tutorial.rst | |
+2 −2 | doc/basics/tasks_tutorial.rst | |
+1 −1 | doc/basics/testbase_tutorial.rst | |
+6 −1 | doc/conf.py | |
+2 −2 | doc/deprecated/attestation_tutorial.rst | |
+1 −1 | doc/further-reading/advanced_identity.rst | |
+1 −0 | doc/index.rst | |
+2 −2 | doc/reference/bootstrapping.rst | |
+30 −4 | doc/reference/configuration.rst | |
+17 −24 | doc/reference/serialization.rst | |
+16 −19 | doc/reference/serialization_1.py | |
+1 −0 | doc/requirements.txt | |
+60 −18 | ipv8/configuration.py | |
+7 −7 | ipv8/lazy_community.py | |
+87 −0 | ipv8/messaging/payload_dataclass.py | |
+16 −1 | ipv8/messaging/serialization.py | |
+378 −0 | ipv8/test/messaging/test_payload_dataclass.py | |
+37 −52 | ipv8/test/test_configuration.py | |
+28 −28 | ipv8_service.py |
This file contains 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,2 @@ | ||
MIN_TAG_LENGTH = 3 | ||
MAX_TAG_LENGTH = 50 |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.