keri 2.0.0.dev5__tar.gz → 2.0.0.dev6__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.
Files changed (278) hide show
  1. {keri-2.0.0.dev5/src/keri.egg-info → keri-2.0.0.dev6}/PKG-INFO +25 -24
  2. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/README.md +4 -4
  3. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/setup.py +31 -36
  4. keri-2.0.0.dev6/src/keri/__init__.py +48 -0
  5. {keri-2.0.0.dev5/src/keri/vc → keri-2.0.0.dev6/src/keri/acdc}/__init__.py +4 -1
  6. keri-2.0.0.dev6/src/keri/acdc/acdcing.py +8 -0
  7. keri-2.0.0.dev6/src/keri/acdc/containing.py +8 -0
  8. keri-2.0.0.dev6/src/keri/acdc/ipexing.py +604 -0
  9. {keri-2.0.0.dev5/src/keri/vc → keri-2.0.0.dev6/src/keri/acdc}/messaging.py +35 -35
  10. keri-2.0.0.dev6/src/keri/acdc/regbasing.py +114 -0
  11. keri-2.0.0.dev6/src/keri/acdc/registering.py +9 -0
  12. keri-2.0.0.dev6/src/keri/acdc/registraring.py +8 -0
  13. keri-2.0.0.dev6/src/keri/acdc/registring.py +8 -0
  14. keri-2.0.0.dev6/src/keri/acdc/scheming.py +8 -0
  15. keri-2.0.0.dev6/src/keri/acdc/webregbasing.py +221 -0
  16. keri-2.0.0.dev6/src/keri/app/__init__.py +46 -0
  17. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/agenting.py +164 -248
  18. keri-2.0.0.dev6/src/keri/app/apping.py +108 -0
  19. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/challenging.py +2 -2
  20. keri-2.0.0.dev6/src/keri/app/configing.py +260 -0
  21. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/delegating.py +70 -50
  22. keri-2.0.0.dev6/src/keri/app/directing.py +611 -0
  23. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/forwarding.py +158 -87
  24. keri-2.0.0.dev6/src/keri/app/grouping.py +1039 -0
  25. keri-2.0.0.dev6/src/keri/app/habbing.py +4014 -0
  26. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/httping.py +26 -27
  27. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/indirecting.py +288 -296
  28. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/keeping.py +198 -156
  29. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/notifying.py +75 -104
  30. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/oobiing.py +201 -194
  31. keri-2.0.0.dev5/src/keri/app/connecting.py → keri-2.0.0.dev6/src/keri/app/organizing.py +99 -34
  32. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/querying.py +53 -21
  33. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/signaling.py +52 -50
  34. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/signing.py +13 -25
  35. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/specing.py +1 -1
  36. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/storing.py +51 -69
  37. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/app/watching.py +4 -9
  38. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/__init__.py +2 -1
  39. keri-2.0.0.dev6/src/keri/cli/commands/__init__.py +32 -0
  40. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/aid.py +7 -7
  41. keri-2.0.0.dev6/src/keri/cli/commands/challenge/__init__.py +10 -0
  42. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/generate.py +4 -3
  43. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/respond.py +31 -19
  44. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/verify.py +34 -24
  45. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/clean.py +9 -9
  46. keri-2.0.0.dev6/src/keri/cli/commands/contacts/__init__.py +15 -0
  47. keri-2.0.0.dev6/src/keri/cli/commands/contacts/add.py +119 -0
  48. keri-2.0.0.dev6/src/keri/cli/commands/contacts/delete.py +93 -0
  49. keri-2.0.0.dev6/src/keri/cli/commands/contacts/find.py +64 -0
  50. keri-2.0.0.dev6/src/keri/cli/commands/contacts/get.py +105 -0
  51. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/list.py +11 -11
  52. keri-2.0.0.dev6/src/keri/cli/commands/contacts/query.py +137 -0
  53. keri-2.0.0.dev6/src/keri/cli/commands/contacts/rename.py +86 -0
  54. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/replace.py +9 -8
  55. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/decrypt.py +10 -9
  56. keri-2.0.0.dev6/src/keri/cli/commands/delegate/__init__.py +9 -0
  57. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/confirm.py +95 -46
  58. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/request.py +27 -20
  59. keri-2.0.0.dev6/src/keri/cli/commands/did/__init__.py +8 -0
  60. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/did/generate.py +16 -15
  61. keri-2.0.0.dev6/src/keri/cli/commands/ends/__init__.py +10 -0
  62. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/add.py +46 -25
  63. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/export.py +17 -14
  64. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/list.py +10 -7
  65. keri-2.0.0.dev6/src/keri/cli/commands/escrow/__init__.py +15 -0
  66. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/escrow/clear.py +6 -5
  67. keri-2.0.0.dev6/src/keri/cli/commands/escrow/list.py +269 -0
  68. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/event.py +8 -7
  69. keri-2.0.0.dev6/src/keri/cli/commands/exn/__init__.py +8 -0
  70. keri-2.0.0.dev6/src/keri/cli/commands/exn/send.py +148 -0
  71. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/export.py +10 -8
  72. keri-2.0.0.dev5/src/keri/app/cli/commands/import.py → keri-2.0.0.dev6/src/keri/cli/commands/import_.py +12 -11
  73. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/incept.py +45 -23
  74. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/init.py +34 -27
  75. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/interact.py +24 -16
  76. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/introduce.py +23 -21
  77. keri-2.0.0.dev6/src/keri/cli/commands/ipex/__init__.py +12 -0
  78. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/admit.py +40 -35
  79. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/agree.py +2 -2
  80. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/apply.py +2 -2
  81. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/grant.py +39 -29
  82. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/join.py +50 -41
  83. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/list.py +42 -39
  84. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/offer.py +3 -2
  85. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/spurn.py +37 -34
  86. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/kevers.py +14 -13
  87. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/list.py +5 -3
  88. keri-2.0.0.dev6/src/keri/cli/commands/local/__init__.py +8 -0
  89. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/local/watch.py +16 -15
  90. keri-2.0.0.dev6/src/keri/cli/commands/location/__init__.py +8 -0
  91. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/location/add.py +39 -25
  92. keri-2.0.0.dev6/src/keri/cli/commands/mailbox/__init__.py +11 -0
  93. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/add.py +21 -17
  94. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/debug.py +17 -13
  95. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/list.py +12 -11
  96. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/update.py +8 -8
  97. keri-2.0.0.dev6/src/keri/cli/commands/migrate/__init__.py +10 -0
  98. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/list.py +6 -6
  99. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/run.py +12 -11
  100. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/show.py +7 -7
  101. keri-2.0.0.dev6/src/keri/cli/commands/multisig/__init__.py +16 -0
  102. keri-2.0.0.dev5/src/keri/app/cli/commands/multisig/continue.py → keri-2.0.0.dev6/src/keri/cli/commands/multisig/continue_.py +28 -19
  103. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/demo.py +5 -4
  104. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/incept.py +75 -38
  105. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/interact.py +50 -30
  106. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/join.py +206 -126
  107. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/notice.py +29 -29
  108. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/rotate.py +75 -55
  109. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/shell.py +14 -11
  110. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/update.py +18 -16
  111. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/nonce.py +3 -3
  112. keri-2.0.0.dev6/src/keri/cli/commands/notifications/__init__.py +11 -0
  113. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/list.py +16 -13
  114. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/mark.py +13 -10
  115. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/rem.py +13 -10
  116. keri-2.0.0.dev6/src/keri/cli/commands/oobi/__init__.py +11 -0
  117. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/clean.py +7 -7
  118. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/generate.py +24 -22
  119. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/resolve.py +20 -16
  120. keri-2.0.0.dev6/src/keri/cli/commands/passcode/__init__.py +11 -0
  121. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/generate.py +1 -0
  122. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/remove.py +7 -6
  123. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/set.py +8 -9
  124. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/query.py +27 -19
  125. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rename.py +7 -6
  126. keri-2.0.0.dev6/src/keri/cli/commands/rollback.py +103 -0
  127. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rotate.py +33 -23
  128. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/saidify.py +6 -5
  129. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/salt.py +3 -2
  130. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/sign.py +6 -7
  131. keri-2.0.0.dev6/src/keri/cli/commands/ssh/__init__.py +9 -0
  132. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ssh/export.py +8 -7
  133. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/status.py +11 -10
  134. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/time.py +2 -1
  135. keri-2.0.0.dev6/src/keri/cli/commands/vc/__init__.py +13 -0
  136. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/create.py +62 -48
  137. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/export.py +21 -19
  138. keri-2.0.0.dev6/src/keri/cli/commands/vc/import_.py +96 -0
  139. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/list.py +27 -19
  140. keri-2.0.0.dev6/src/keri/cli/commands/vc/registry/__init__.py +11 -0
  141. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/incept.py +32 -27
  142. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/list.py +9 -8
  143. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/status.py +16 -14
  144. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/revoke.py +47 -41
  145. keri-2.0.0.dev6/src/keri/cli/commands/vc/schema/__init__.py +8 -0
  146. keri-2.0.0.dev6/src/keri/cli/commands/vc/schema/import_.py +87 -0
  147. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/verify.py +10 -10
  148. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/version.py +6 -5
  149. keri-2.0.0.dev6/src/keri/cli/commands/watcher/__init__.py +10 -0
  150. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/add.py +27 -26
  151. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/adjudicate.py +23 -19
  152. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/list.py +12 -11
  153. keri-2.0.0.dev6/src/keri/cli/commands/witness/__init__.py +12 -0
  154. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/authenticate.py +25 -21
  155. keri-2.0.0.dev6/src/keri/cli/commands/witness/demo.py +104 -0
  156. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/list.py +7 -7
  157. keri-2.0.0.dev6/src/keri/cli/commands/witness/start.py +155 -0
  158. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/submit.py +16 -14
  159. keri-2.0.0.dev6/src/keri/cli/common/__init__.py +13 -0
  160. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/config.py +3 -3
  161. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/displaying.py +18 -22
  162. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/existing.py +17 -13
  163. keri-2.0.0.dev6/src/keri/cli/common/parsing.py +139 -0
  164. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/rotating.py +7 -0
  165. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/terming.py +1 -1
  166. {keri-2.0.0.dev5/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/kli.py +6 -4
  167. keri-2.0.0.dev6/src/keri/core/__init__.py +48 -0
  168. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/annotating.py +6 -24
  169. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/coring.py +619 -793
  170. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/counting.py +310 -273
  171. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/eventing.py +2211 -1818
  172. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/indexing.py +22 -27
  173. keri-2.0.0.dev6/src/keri/core/kraming.py +2182 -0
  174. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/mapping.py +29 -29
  175. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/parsing.py +934 -719
  176. keri-2.0.0.dev6/src/keri/core/routing.py +651 -0
  177. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/scheming.py +64 -24
  178. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/serdering.py +291 -135
  179. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/signing.py +129 -194
  180. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/core/structing.py +341 -334
  181. keri-2.0.0.dev6/src/keri/db/__init__.py +26 -0
  182. keri-2.0.0.dev6/src/keri/db/basing.py +2235 -0
  183. keri-2.0.0.dev6/src/keri/db/dbing.py +3314 -0
  184. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/db/escrowing.py +42 -38
  185. keri-2.0.0.dev6/src/keri/db/koming.py +776 -0
  186. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/db/migrations/add_key_and_reg_state_schemas.py +20 -23
  187. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/db/migrations/hab_data_rename.py +10 -8
  188. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/db/migrations/rekey_habs.py +11 -10
  189. keri-2.0.0.dev6/src/keri/db/subing.py +3613 -0
  190. keri-2.0.0.dev6/src/keri/db/webdbing.py +2308 -0
  191. keri-2.0.0.dev6/src/keri/demo/__init__.py +9 -0
  192. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/demo/demo_bob.py +3 -10
  193. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/demo/demo_eve.py +3 -7
  194. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/demo/demo_kev.py +1 -1
  195. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/demo/demo_sam.py +3 -9
  196. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/demo/demoing.py +52 -38
  197. keri-2.0.0.dev6/src/keri/end/__init__.py +16 -0
  198. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/end/ending.py +125 -142
  199. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/end/priming.py +8 -14
  200. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/help/__init__.py +6 -2
  201. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/help/helping.py +45 -76
  202. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/kering.py +73 -26
  203. keri-2.0.0.dev6/src/keri/peer/__init__.py +9 -0
  204. keri-2.0.0.dev6/src/keri/peer/exchanging.py +849 -0
  205. keri-2.0.0.dev6/src/keri/recording.py +532 -0
  206. keri-2.0.0.dev6/src/keri/spac/__init__.py +6 -0
  207. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/spac/payloading.py +3 -3
  208. keri-2.0.0.dev6/src/keri/vc/__init__.py +10 -0
  209. keri-2.0.0.dev6/src/keri/vc/protocoling.py +483 -0
  210. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/vc/proving.py +11 -20
  211. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/vc/walleting.py +16 -31
  212. keri-2.0.0.dev6/src/keri/vdr/__init__.py +16 -0
  213. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/vdr/credentialing.py +227 -183
  214. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/vdr/eventing.py +878 -398
  215. keri-2.0.0.dev6/src/keri/vdr/vdring.py +86 -0
  216. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri/vdr/verifying.py +172 -60
  217. {keri-2.0.0.dev5 → keri-2.0.0.dev6/src/keri.egg-info}/PKG-INFO +25 -24
  218. keri-2.0.0.dev6/src/keri.egg-info/SOURCES.txt +225 -0
  219. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri.egg-info/entry_points.txt +2 -2
  220. keri-2.0.0.dev6/src/keri.egg-info/requires.txt +23 -0
  221. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/tests/test_kering.py +39 -34
  222. keri-2.0.0.dev5/src/keri/__init__.py +0 -7
  223. keri-2.0.0.dev5/src/keri/app/__init__.py +0 -7
  224. keri-2.0.0.dev5/src/keri/app/apping.py +0 -95
  225. keri-2.0.0.dev5/src/keri/app/cli/commands/challenge/__init__.py +0 -0
  226. keri-2.0.0.dev5/src/keri/app/cli/commands/contacts/__init__.py +0 -0
  227. keri-2.0.0.dev5/src/keri/app/cli/commands/delegate/__init__.py +0 -0
  228. keri-2.0.0.dev5/src/keri/app/cli/commands/did/__init__.py +0 -0
  229. keri-2.0.0.dev5/src/keri/app/cli/commands/ends/__init__.py +0 -0
  230. keri-2.0.0.dev5/src/keri/app/cli/commands/escrow/__init__.py +0 -3
  231. keri-2.0.0.dev5/src/keri/app/cli/commands/escrow/list.py +0 -155
  232. keri-2.0.0.dev5/src/keri/app/cli/commands/ipex/__init__.py +0 -0
  233. keri-2.0.0.dev5/src/keri/app/cli/commands/local/__init__.py +0 -0
  234. keri-2.0.0.dev5/src/keri/app/cli/commands/location/__init__.py +0 -0
  235. keri-2.0.0.dev5/src/keri/app/cli/commands/mailbox/__init__.py +0 -0
  236. keri-2.0.0.dev5/src/keri/app/cli/commands/migrate/__init__.py +0 -0
  237. keri-2.0.0.dev5/src/keri/app/cli/commands/multisig/__init__.py +0 -0
  238. keri-2.0.0.dev5/src/keri/app/cli/commands/notifications/__init__.py +0 -0
  239. keri-2.0.0.dev5/src/keri/app/cli/commands/oobi/__init__.py +0 -0
  240. keri-2.0.0.dev5/src/keri/app/cli/commands/passcode/__init__.py +0 -0
  241. keri-2.0.0.dev5/src/keri/app/cli/commands/rollback.py +0 -103
  242. keri-2.0.0.dev5/src/keri/app/cli/commands/ssh/__init__.py +0 -0
  243. keri-2.0.0.dev5/src/keri/app/cli/commands/vc/__init__.py +0 -0
  244. keri-2.0.0.dev5/src/keri/app/cli/commands/vc/registry/__init__.py +0 -0
  245. keri-2.0.0.dev5/src/keri/app/cli/commands/watcher/__init__.py +0 -6
  246. keri-2.0.0.dev5/src/keri/app/cli/commands/witness/__init__.py +0 -0
  247. keri-2.0.0.dev5/src/keri/app/cli/commands/witness/demo.py +0 -87
  248. keri-2.0.0.dev5/src/keri/app/cli/commands/witness/start.py +0 -112
  249. keri-2.0.0.dev5/src/keri/app/cli/common/__init__.py +0 -0
  250. keri-2.0.0.dev5/src/keri/app/cli/common/parsing.py +0 -41
  251. keri-2.0.0.dev5/src/keri/app/configing.py +0 -235
  252. keri-2.0.0.dev5/src/keri/app/directing.py +0 -668
  253. keri-2.0.0.dev5/src/keri/app/grouping.py +0 -718
  254. keri-2.0.0.dev5/src/keri/app/habbing.py +0 -2903
  255. keri-2.0.0.dev5/src/keri/core/__init__.py +0 -26
  256. keri-2.0.0.dev5/src/keri/core/routing.py +0 -608
  257. keri-2.0.0.dev5/src/keri/db/__init__.py +0 -5
  258. keri-2.0.0.dev5/src/keri/db/basing.py +0 -3195
  259. keri-2.0.0.dev5/src/keri/db/dbing.py +0 -2132
  260. keri-2.0.0.dev5/src/keri/db/koming.py +0 -821
  261. keri-2.0.0.dev5/src/keri/db/migrations/__init__.py +0 -0
  262. keri-2.0.0.dev5/src/keri/db/subing.py +0 -2517
  263. keri-2.0.0.dev5/src/keri/demo/__init__.py +0 -7
  264. keri-2.0.0.dev5/src/keri/end/__init__.py +0 -8
  265. keri-2.0.0.dev5/src/keri/peer/__init__.py +0 -8
  266. keri-2.0.0.dev5/src/keri/peer/exchanging.py +0 -696
  267. keri-2.0.0.dev5/src/keri/spac/__init__.py +0 -6
  268. keri-2.0.0.dev5/src/keri/vc/protocoling.py +0 -332
  269. keri-2.0.0.dev5/src/keri/vdr/__init__.py +0 -7
  270. keri-2.0.0.dev5/src/keri/vdr/viring.py +0 -1044
  271. keri-2.0.0.dev5/src/keri.egg-info/SOURCES.txt +0 -201
  272. keri-2.0.0.dev5/src/keri.egg-info/requires.txt +0 -22
  273. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/LICENSE +0 -0
  274. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/setup.cfg +0 -0
  275. {keri-2.0.0.dev5/src/keri/app/cli/commands → keri-2.0.0.dev6/src/keri/db/migrations}/__init__.py +0 -0
  276. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri.egg-info/dependency_links.txt +0 -0
  277. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri.egg-info/not-zip-safe +0 -0
  278. {keri-2.0.0.dev5 → keri-2.0.0.dev6}/src/keri.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: keri
3
- Version: 2.0.0.dev5
3
+ Version: 2.0.0.dev6
4
4
  Summary: Key Event Receipt Infrastructure
5
5
  Home-page: https://github.com/WebOfTrust/keripy
6
6
  Author: Samuel M. Smith
@@ -15,33 +15,34 @@ Classifier: License :: OSI Approved :: Apache Software License
15
15
  Classifier: Operating System :: Unix
16
16
  Classifier: Operating System :: POSIX
17
17
  Classifier: Operating System :: Microsoft :: Windows
18
- Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
19
  Classifier: Programming Language :: Python :: Implementation :: CPython
20
20
  Classifier: Topic :: Utilities
21
- Requires-Python: >=3.14.2
21
+ Requires-Python: ~=3.14.0
22
22
  License-File: LICENSE
23
- Requires-Dist: lmdb>=1.7.5
24
- Requires-Dist: pysodium>=0.7.18
25
- Requires-Dist: blake3>=1.0.8
26
- Requires-Dist: msgpack>=1.1.2
27
- Requires-Dist: cbor2>=5.8.0
28
- Requires-Dist: multidict>=6.7.0
29
- Requires-Dist: ordered-set>=4.1.0
30
- Requires-Dist: hio>=0.7.18
23
+ Requires-Dist: lmdb==2.1.1
24
+ Requires-Dist: pysodium==0.7.18
25
+ Requires-Dist: blake3==1.0.8
26
+ Requires-Dist: msgpack==1.1.2
27
+ Requires-Dist: cbor2==5.8.0
28
+ Requires-Dist: multidict==6.7.0
29
+ Requires-Dist: ordered-set==4.1.0
30
+ Requires-Dist: hio==0.7.19
31
31
  Requires-Dist: multicommand==1.0.0
32
- Requires-Dist: jsonschema>=4.26.0
33
- Requires-Dist: falcon>=4.2.0
34
- Requires-Dist: hjson>=3.1.0
35
- Requires-Dist: PyYaml>=6.0.3
36
- Requires-Dist: apispec>=6.9.0
37
- Requires-Dist: mnemonic>=0.21
38
- Requires-Dist: PrettyTable>=3.17.0
39
- Requires-Dist: http_sfv>=0.9.9
40
- Requires-Dist: cryptography>=46.0.3
41
- Requires-Dist: semver>=3.0.4
42
- Requires-Dist: qrcode>=8.2
43
- Requires-Dist: setuptools>=80.9.0
44
- Requires-Dist: wheel>=0.45.1
32
+ Requires-Dist: jsonschema==4.26.0
33
+ Requires-Dist: falcon==4.2.0
34
+ Requires-Dist: hjson==3.1.0
35
+ Requires-Dist: PyYaml==6.0.3
36
+ Requires-Dist: apispec==6.9.0
37
+ Requires-Dist: mnemonic==0.21
38
+ Requires-Dist: PrettyTable==3.17.0
39
+ Requires-Dist: http_sfv==0.9.9
40
+ Requires-Dist: cryptography==46.0.3
41
+ Requires-Dist: semver==3.0.4
42
+ Requires-Dist: qrcode==8.2
43
+ Requires-Dist: sortedcontainers==2.4.0
44
+ Requires-Dist: setuptools==80.9.0
45
+ Requires-Dist: wheel==0.45.1
45
46
  Dynamic: author
46
47
  Dynamic: author-email
47
48
  Dynamic: classifier
@@ -34,7 +34,7 @@ We use `--pull=never` to ensure that docker does not implicitly pull a remote im
34
34
  ### Dependencies
35
35
  #### Binaries
36
36
 
37
- python 3.12.1+
37
+ python 3.14.0+ (Ubuntu 24.04's default Python 3.12.3 is too old for keripy's current `hio` dependency)
38
38
  libsodium 1.0.18+
39
39
 
40
40
 
@@ -75,18 +75,18 @@ $ pip3 install -U cbor2
75
75
  ## Development
76
76
 
77
77
  ### Setup
78
- * Ensure Python 3.12.1 is present along with venv and dev header files;
78
+ * Ensure Python 3.14.0+ is present along with venv and dev header files;
79
79
  * Setup virtual environment: `python3 -m venv keripy`
80
80
  * Activate virtual environment: `source keripy/bin/activate`
81
81
  * Setup dependencies: `pip install -r requirements.txt`
82
82
 
83
83
  ### Testing
84
- * Install pytest: `pip install pytest`
84
+ * Install pytest and xdist: `pip install pytest pytest-xdist`
85
85
 
86
86
  * Run the test suites:
87
87
 
88
88
  ```shell
89
- pytest tests/ --ignore tests/demo/
89
+ pytest tests/ --ignore tests/demo/ -n auto
90
90
  pytest tests/demo/
91
91
  ```
92
92
 
@@ -20,12 +20,6 @@ $ git show v0.6.11
20
20
  $ git push --tags # pushes tags to default remote
21
21
  $ git push wot --tags # pushes tags to wot remote
22
22
 
23
- $ git tag -a v0.4.2 -m "bump version"
24
- $ git push --tags
25
- $ git checkout -b release_0.4.2
26
- $ git push --set-upstream origin release_0.4.2
27
- $ git checkout master
28
-
29
23
  Best practices for setup.py and requirements.txt
30
24
  https://caremad.io/posts/2013/07/setup-vs-requirement/
31
25
  """
@@ -37,7 +31,7 @@ from os.path import splitext
37
31
  from setuptools import find_packages, setup
38
32
  setup(
39
33
  name='keri',
40
- version='2.0.0-dev5', # also change in src/keri/__init__.py
34
+ version='2.0.0-dev6', # also change in src/keri/__init__.py
41
35
  license='Apache Software License 2.0',
42
36
  description='Key Event Receipt Infrastructure',
43
37
  long_description="KERI Decentralized Key Management Infrastructure",
@@ -57,7 +51,7 @@ setup(
57
51
  'Operating System :: Unix',
58
52
  'Operating System :: POSIX',
59
53
  'Operating System :: Microsoft :: Windows',
60
- 'Programming Language :: Python :: 3.13',
54
+ 'Programming Language :: Python :: 3.14',
61
55
  'Programming Language :: Python :: Implementation :: CPython',
62
56
  # uncomment if you test on these interpreters:
63
57
  # 'Programming Language :: Python :: Implementation :: PyPy',
@@ -74,37 +68,39 @@ setup(
74
68
  keywords=[
75
69
  # eg: 'keyword1', 'keyword2', 'keyword3',
76
70
  ],
77
- python_requires='>=3.14.2',
71
+ python_requires='~=3.14.0',
78
72
  install_requires=[
79
- 'lmdb>=1.7.5',
80
- 'pysodium>=0.7.18',
81
- 'blake3>=1.0.8',
82
- 'msgpack>=1.1.2',
83
- 'cbor2>=5.8.0',
84
- 'multidict>=6.7.0',
85
- 'ordered-set>=4.1.0',
86
- 'hio>=0.7.18',
73
+ 'lmdb==2.1.1',
74
+ 'pysodium==0.7.18',
75
+ 'blake3==1.0.8',
76
+ 'msgpack==1.1.2',
77
+ 'cbor2==5.8.0',
78
+ 'multidict==6.7.0',
79
+ 'ordered-set==4.1.0',
80
+ 'hio==0.7.19',
87
81
  'multicommand==1.0.0',
88
- 'jsonschema>=4.26.0',
89
- 'falcon>=4.2.0',
90
- 'hjson>=3.1.0',
91
- 'PyYaml>=6.0.3',
92
- 'apispec>=6.9.0',
93
- 'mnemonic>=0.21',
94
- 'PrettyTable>=3.17.0',
95
- 'http_sfv>=0.9.9',
96
- 'cryptography>=46.0.3',
97
- 'semver>=3.0.4',
98
- 'qrcode>=8.2',
99
- 'setuptools>=80.9.0',
100
- 'wheel>=0.45.1',
82
+ 'jsonschema==4.26.0',
83
+ 'falcon==4.2.0',
84
+ 'hjson==3.1.0',
85
+ 'PyYaml==6.0.3',
86
+ 'apispec==6.9.0',
87
+ 'mnemonic==0.21',
88
+ 'PrettyTable==3.17.0',
89
+ 'http_sfv==0.9.9',
90
+ 'cryptography==46.0.3',
91
+ 'semver==3.0.4',
92
+ 'qrcode==8.2',
93
+ 'sortedcontainers==2.4.0',
94
+ 'setuptools==80.9.0',
95
+ 'wheel==0.45.1',
101
96
  ],
102
97
  extras_require={
103
98
  },
104
99
  tests_require=[
105
- 'coverage>=7.13.1',
106
- 'pytest>=9.0.2',
107
- 'pytest-shell>=0.3.2'
100
+ 'coverage==7.13.1',
101
+ 'pytest==9.0.2',
102
+ 'pytest-shell==0.3.2',
103
+ 'pytest-xdist==3.8.0',
108
104
  ],
109
105
  setup_requires=[
110
106
  ],
@@ -113,9 +109,8 @@ setup(
113
109
  'keri_bob = keri.demo.demo_bob:main',
114
110
  'keri_eve = keri.demo.demo_eve:main',
115
111
  'keri_sam = keri.demo.demo_sam:main',
116
- 'kli = keri.app.cli.kli:main',
117
- 'klid = keri.app.cli.klid:main',
112
+ 'kli = keri.cli.kli:main',
113
+ 'klid = keri.cli.klid:main',
118
114
  ]
119
115
  },
120
116
  )
121
-
@@ -0,0 +1,48 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ __version__ = '2.0.0-dev6' # also change in setup.py
4
+
5
+ from .kering import (Vrsn_1_0, Vrsn_2_0, GVC_1_0, GVC_2_0,
6
+ Kinds, Protocols, Schemes, Rever,
7
+ Colds, Ilks, ColdDex, Roles, TraitDex, Version, MaxON,
8
+ VER1FULLSPAN, VER1TERM, VEREX1, VEREX,
9
+ VER2FULLSPAN, VER2TERM, VEREX2, MAXVERFULLSPAN,
10
+ sniff, rematch, versify, deversify, smell,
11
+ Ilkage, ColdCodex, TraitCodex, Smellage,
12
+ Protocolage, KeriError, ClosedError, Kindage,
13
+ ConfigurationError, AuthError, AuthNError,
14
+ AuthZError, DecryptError, DatabaseError,
15
+ MissingEntryError, MaterialError, RawMaterialError,
16
+ SoftMaterialError, EmptyMaterialError, InvalidVersionError,
17
+ InvalidCodeError, InvalidSoftError, InvalidTypeError,
18
+ InvalidValueError, InvalidSizeError, InvalidCodeSizeError,
19
+ InvalidVarIndexError, InvalidVarRawSizeError, InvalidVarSizeError,
20
+ SerializeError, ValidationError, MissingFieldError,
21
+ ExtraFieldError, AlternateFieldError, MissingSignatureError,
22
+ MissingDestinationError, MissingWitnessSignatureError,
23
+ MissingDelegationError, OutOfOrderError, LikelyDuplicitousError,
24
+ UnverifiedWitnessReceiptError, UnverifiedReceiptError,
25
+ UnverifiedTransferableReceiptError, DerivationError,
26
+ UnverifiedReplyError, EmptyListError, MissingAnchorError,
27
+ MissingRegistryError, MissingIssuerError,
28
+ InvalidCredentialStateError, UnverifiedProofError,
29
+ OutOfOrderKeyStateError, OutOfOrderTxnStateError,
30
+ MisfitEventSourceError, MissingDelegableApprovalError,
31
+ ExtractionError, ShortageError, ColdStartError, ElementError,
32
+ SizedGroupError, TopLevelStreamError, VersionError,
33
+ ProtocolError, KindError, IlkError, ConversionError,
34
+ DeserializeError, FieldError, QueryNotFoundError,
35
+ DerivationCodeError, UnexpectedCodeError, UnexpectedCountCodeError,
36
+ UnexpectedOpCodeError, ExchangeError, InvalidEventTypeError,
37
+ MissingAidError, InvalidGroupError, GroupFormationError,
38
+ MissingChainError, RevokedChainError, MissingSchemaError,
39
+ FailedSchemaValidationError, UntrustedKeyStateSource, Versionage,
40
+ KramError, KramConfigurationError, MissingAuthAttachmentError,
41
+ MissingSenderKeyStateError)
42
+
43
+ from .recording import (RawRecord, StateEERecord, KeyStateRecord,
44
+ EventSourceRecord, HabitatRecord, TopicsRecord,
45
+ OobiQueryRecord, OobiRecord, EndpointRecord,
46
+ EndAuthRecord, LocationRecord, ObservedRecord,
47
+ CacheTypeRecord, MsgCacheRecord, TxnMsgCacheRecord,
48
+ WellKnownAuthN)
@@ -1,10 +1,13 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
  """
3
3
  KERI
4
- keri.vc Package
4
+ keri.acdc Package
5
5
  """
6
6
 
7
7
  from .messaging import (regcept, blindate, update, acdcmap, acdcatt, acdcagg,
8
8
  sectschema, sectattr, sectaggr, sectedge, sectrule,
9
9
  sectionate,
10
10
  actSchemaDefault, acgSchemaDefault, acmSchemaDefault)
11
+
12
+ from .ipexing import (Ipex, IpexHandler, loadHandlers, apply, offer, agree,
13
+ grant, admit, spurn)
@@ -0,0 +1,8 @@
1
+ # -*- encoding: utf-8 -*-
2
+ """
3
+ keri.acdc.acdcing module
4
+
5
+ Package level shared constants, functions, classes, errors etc
6
+
7
+ """
8
+
@@ -0,0 +1,8 @@
1
+ # -*- encoding: utf-8 -*-
2
+ """
3
+ keri.acdc.containing module
4
+
5
+ ACDC as Container object support
6
+
7
+
8
+ """