keri 2.0.0.dev3__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 (285) hide show
  1. {keri-2.0.0.dev3/src/keri.egg-info → keri-2.0.0.dev6}/PKG-INFO +26 -25
  2. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/README.md +4 -4
  3. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/setup.py +32 -37
  4. keri-2.0.0.dev6/src/keri/__init__.py +48 -0
  5. keri-2.0.0.dev6/src/keri/acdc/__init__.py +13 -0
  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.dev6/src/keri/acdc/messaging.py +1013 -0
  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.dev3 → keri-2.0.0.dev6}/src/keri/app/agenting.py +269 -290
  18. keri-2.0.0.dev6/src/keri/app/apping.py +108 -0
  19. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/app/delegating.py +92 -68
  22. keri-2.0.0.dev6/src/keri/app/directing.py +611 -0
  23. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/forwarding.py +196 -74
  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.dev3 → keri-2.0.0.dev6}/src/keri/app/httping.py +57 -23
  27. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/indirecting.py +288 -296
  28. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/keeping.py +198 -156
  29. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/notifying.py +75 -104
  30. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/oobiing.py +201 -194
  31. keri-2.0.0.dev3/src/keri/app/connecting.py → keri-2.0.0.dev6/src/keri/app/organizing.py +99 -34
  32. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/querying.py +53 -21
  33. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/signaling.py +52 -50
  34. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/signing.py +13 -25
  35. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/specing.py +1 -1
  36. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/storing.py +51 -69
  37. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/app/watching.py +4 -9
  38. {keri-2.0.0.dev3/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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/aid.py +11 -14
  41. keri-2.0.0.dev6/src/keri/cli/commands/challenge/__init__.py +10 -0
  42. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/generate.py +4 -3
  43. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/respond.py +33 -24
  44. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/challenge/verify.py +36 -30
  45. keri-2.0.0.dev6/src/keri/cli/commands/clean.py +58 -0
  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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/list.py +13 -18
  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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/contacts/replace.py +12 -15
  55. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/decrypt.py +12 -14
  56. keri-2.0.0.dev6/src/keri/cli/commands/delegate/__init__.py +9 -0
  57. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/confirm.py +97 -51
  58. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/delegate/request.py +29 -25
  59. keri-2.0.0.dev6/src/keri/cli/commands/did/__init__.py +8 -0
  60. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/did/generate.py +17 -26
  61. keri-2.0.0.dev6/src/keri/cli/commands/ends/__init__.py +10 -0
  62. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/add.py +51 -34
  63. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/export.py +18 -20
  64. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ends/list.py +13 -14
  65. keri-2.0.0.dev6/src/keri/cli/commands/escrow/__init__.py +15 -0
  66. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/escrow/clear.py +11 -14
  67. keri-2.0.0.dev6/src/keri/cli/commands/escrow/list.py +269 -0
  68. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/event.py +11 -14
  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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/export.py +17 -23
  72. keri-2.0.0.dev3/src/keri/app/cli/commands/import.py → keri-2.0.0.dev6/src/keri/cli/commands/import_.py +15 -18
  73. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/incept.py +67 -30
  74. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/init.py +36 -35
  75. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/interact.py +25 -20
  76. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/introduce.py +24 -25
  77. keri-2.0.0.dev6/src/keri/cli/commands/ipex/__init__.py +12 -0
  78. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/admit.py +42 -40
  79. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/agree.py +2 -2
  80. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/apply.py +2 -2
  81. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/grant.py +41 -34
  82. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/join.py +50 -46
  83. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/list.py +46 -47
  84. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/offer.py +3 -2
  85. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ipex/spurn.py +41 -41
  86. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/kevers.py +17 -20
  87. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/list.py +8 -11
  88. keri-2.0.0.dev6/src/keri/cli/commands/local/__init__.py +8 -0
  89. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/local/watch.py +17 -25
  90. keri-2.0.0.dev6/src/keri/cli/commands/location/__init__.py +8 -0
  91. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/location/add.py +44 -34
  92. keri-2.0.0.dev6/src/keri/cli/commands/mailbox/__init__.py +11 -0
  93. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/add.py +23 -23
  94. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/debug.py +20 -20
  95. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/list.py +14 -17
  96. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/mailbox/update.py +11 -15
  97. keri-2.0.0.dev6/src/keri/cli/commands/migrate/__init__.py +10 -0
  98. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/list.py +9 -18
  99. keri-2.0.0.dev6/src/keri/cli/commands/migrate/run.py +57 -0
  100. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/migrate/show.py +10 -21
  101. keri-2.0.0.dev6/src/keri/cli/commands/multisig/__init__.py +16 -0
  102. keri-2.0.0.dev6/src/keri/cli/commands/multisig/continue_.py +83 -0
  103. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/demo.py +5 -4
  104. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/incept.py +76 -42
  105. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/interact.py +54 -38
  106. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/join.py +207 -131
  107. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/notice.py +31 -37
  108. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/rotate.py +79 -63
  109. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/shell.py +18 -19
  110. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/multisig/update.py +23 -26
  111. {keri-2.0.0.dev3/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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/list.py +21 -22
  114. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/mark.py +19 -20
  115. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/notifications/rem.py +19 -20
  116. keri-2.0.0.dev6/src/keri/cli/commands/oobi/__init__.py +11 -0
  117. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/clean.py +9 -13
  118. keri-2.0.0.dev6/src/keri/cli/commands/oobi/generate.py +87 -0
  119. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/oobi/resolve.py +22 -28
  120. keri-2.0.0.dev6/src/keri/cli/commands/passcode/__init__.py +11 -0
  121. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/generate.py +1 -0
  122. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/remove.py +10 -13
  123. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/passcode/set.py +11 -16
  124. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/query.py +33 -33
  125. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rename.py +10 -13
  126. keri-2.0.0.dev6/src/keri/cli/commands/rollback.py +103 -0
  127. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/rotate.py +33 -26
  128. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/saidify.py +6 -5
  129. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/salt.py +3 -2
  130. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/sign.py +8 -12
  131. keri-2.0.0.dev6/src/keri/cli/commands/ssh/__init__.py +9 -0
  132. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/ssh/export.py +11 -15
  133. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/status.py +14 -18
  134. {keri-2.0.0.dev3/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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/create.py +63 -52
  137. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/export.py +22 -24
  138. keri-2.0.0.dev6/src/keri/cli/commands/vc/import_.py +96 -0
  139. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/list.py +29 -26
  140. keri-2.0.0.dev6/src/keri/cli/commands/vc/registry/__init__.py +11 -0
  141. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/incept.py +57 -35
  142. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/list.py +11 -14
  143. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/registry/status.py +18 -19
  144. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/vc/revoke.py +48 -45
  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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/verify.py +12 -16
  148. keri-2.0.0.dev6/src/keri/cli/commands/version.py +37 -0
  149. keri-2.0.0.dev6/src/keri/cli/commands/watcher/__init__.py +10 -0
  150. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/add.py +29 -32
  151. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/adjudicate.py +26 -26
  152. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/watcher/list.py +14 -17
  153. keri-2.0.0.dev6/src/keri/cli/commands/witness/__init__.py +12 -0
  154. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/authenticate.py +27 -27
  155. keri-2.0.0.dev6/src/keri/cli/commands/witness/demo.py +104 -0
  156. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/list.py +10 -14
  157. keri-2.0.0.dev6/src/keri/cli/commands/witness/start.py +155 -0
  158. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/commands/witness/submit.py +20 -22
  159. keri-2.0.0.dev6/src/keri/cli/common/__init__.py +13 -0
  160. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/config.py +3 -3
  161. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/displaying.py +18 -22
  162. {keri-2.0.0.dev3/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.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/rotating.py +7 -0
  165. {keri-2.0.0.dev3/src/keri/app → keri-2.0.0.dev6/src/keri}/cli/common/terming.py +1 -1
  166. {keri-2.0.0.dev3/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.dev3 → keri-2.0.0.dev6}/src/keri/core/annotating.py +6 -24
  169. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/coring.py +628 -808
  170. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/counting.py +336 -292
  171. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/eventing.py +2229 -1827
  172. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/core/mapping.py +708 -50
  175. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/parsing.py +1017 -623
  176. keri-2.0.0.dev6/src/keri/core/routing.py +651 -0
  177. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/scheming.py +64 -24
  178. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/serdering.py +638 -381
  179. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/core/signing.py +129 -194
  180. keri-2.0.0.dev6/src/keri/core/structing.py +1910 -0
  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.dev3 → keri-2.0.0.dev6}/src/keri/db/escrowing.py +73 -38
  185. keri-2.0.0.dev6/src/keri/db/koming.py +776 -0
  186. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/migrations/add_key_and_reg_state_schemas.py +24 -23
  187. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/db/migrations/hab_data_rename.py +10 -8
  188. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_bob.py +3 -10
  193. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_eve.py +3 -7
  194. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_kev.py +1 -1
  195. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/demo/demo_sam.py +3 -9
  196. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/end/ending.py +125 -142
  199. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/end/priming.py +8 -14
  200. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/help/__init__.py +6 -2
  201. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri/help/helping.py +45 -76
  202. {keri-2.0.0.dev3 → 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.dev6/src/keri/spac/payloading.py +116 -0
  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.dev3 → keri-2.0.0.dev6}/src/keri/vc/proving.py +11 -20
  211. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/vdr/credentialing.py +370 -260
  214. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/src/keri/vdr/verifying.py +172 -60
  217. {keri-2.0.0.dev3 → keri-2.0.0.dev6/src/keri.egg-info}/PKG-INFO +26 -25
  218. keri-2.0.0.dev6/src/keri.egg-info/SOURCES.txt +225 -0
  219. {keri-2.0.0.dev3 → 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.dev3 → keri-2.0.0.dev6}/tests/test_kering.py +39 -34
  222. keri-2.0.0.dev3/src/keri/__init__.py +0 -5
  223. keri-2.0.0.dev3/src/keri/app/__init__.py +0 -7
  224. keri-2.0.0.dev3/src/keri/app/apping.py +0 -95
  225. keri-2.0.0.dev3/src/keri/app/cli/commands/challenge/__init__.py +0 -0
  226. keri-2.0.0.dev3/src/keri/app/cli/commands/clean.py +0 -68
  227. keri-2.0.0.dev3/src/keri/app/cli/commands/contacts/__init__.py +0 -0
  228. keri-2.0.0.dev3/src/keri/app/cli/commands/delegate/__init__.py +0 -0
  229. keri-2.0.0.dev3/src/keri/app/cli/commands/did/__init__.py +0 -0
  230. keri-2.0.0.dev3/src/keri/app/cli/commands/ends/__init__.py +0 -0
  231. keri-2.0.0.dev3/src/keri/app/cli/commands/escrow/__init__.py +0 -3
  232. keri-2.0.0.dev3/src/keri/app/cli/commands/escrow/list.py +0 -159
  233. keri-2.0.0.dev3/src/keri/app/cli/commands/ipex/__init__.py +0 -0
  234. keri-2.0.0.dev3/src/keri/app/cli/commands/local/__init__.py +0 -0
  235. keri-2.0.0.dev3/src/keri/app/cli/commands/location/__init__.py +0 -0
  236. keri-2.0.0.dev3/src/keri/app/cli/commands/mailbox/__init__.py +0 -0
  237. keri-2.0.0.dev3/src/keri/app/cli/commands/migrate/__init__.py +0 -0
  238. keri-2.0.0.dev3/src/keri/app/cli/commands/migrate/run.py +0 -65
  239. keri-2.0.0.dev3/src/keri/app/cli/commands/multisig/__init__.py +0 -0
  240. keri-2.0.0.dev3/src/keri/app/cli/commands/multisig/continue.py +0 -78
  241. keri-2.0.0.dev3/src/keri/app/cli/commands/notifications/__init__.py +0 -0
  242. keri-2.0.0.dev3/src/keri/app/cli/commands/oobi/__init__.py +0 -0
  243. keri-2.0.0.dev3/src/keri/app/cli/commands/oobi/generate.py +0 -93
  244. keri-2.0.0.dev3/src/keri/app/cli/commands/passcode/__init__.py +0 -0
  245. keri-2.0.0.dev3/src/keri/app/cli/commands/rollback.py +0 -107
  246. keri-2.0.0.dev3/src/keri/app/cli/commands/ssh/__init__.py +0 -0
  247. keri-2.0.0.dev3/src/keri/app/cli/commands/vc/__init__.py +0 -0
  248. keri-2.0.0.dev3/src/keri/app/cli/commands/vc/registry/__init__.py +0 -0
  249. keri-2.0.0.dev3/src/keri/app/cli/commands/version.py +0 -42
  250. keri-2.0.0.dev3/src/keri/app/cli/commands/watcher/__init__.py +0 -6
  251. keri-2.0.0.dev3/src/keri/app/cli/commands/witness/__init__.py +0 -0
  252. keri-2.0.0.dev3/src/keri/app/cli/commands/witness/demo.py +0 -87
  253. keri-2.0.0.dev3/src/keri/app/cli/commands/witness/start.py +0 -115
  254. keri-2.0.0.dev3/src/keri/app/cli/common/__init__.py +0 -0
  255. keri-2.0.0.dev3/src/keri/app/cli/common/incepting.py +0 -33
  256. keri-2.0.0.dev3/src/keri/app/configing.py +0 -235
  257. keri-2.0.0.dev3/src/keri/app/directing.py +0 -668
  258. keri-2.0.0.dev3/src/keri/app/grouping.py +0 -699
  259. keri-2.0.0.dev3/src/keri/app/habbing.py +0 -2903
  260. keri-2.0.0.dev3/src/keri/core/__init__.py +0 -24
  261. keri-2.0.0.dev3/src/keri/core/routing.py +0 -608
  262. keri-2.0.0.dev3/src/keri/core/structing.py +0 -1335
  263. keri-2.0.0.dev3/src/keri/db/__init__.py +0 -5
  264. keri-2.0.0.dev3/src/keri/db/basing.py +0 -3195
  265. keri-2.0.0.dev3/src/keri/db/dbing.py +0 -2132
  266. keri-2.0.0.dev3/src/keri/db/koming.py +0 -821
  267. keri-2.0.0.dev3/src/keri/db/migrations/__init__.py +0 -0
  268. keri-2.0.0.dev3/src/keri/db/subing.py +0 -2517
  269. keri-2.0.0.dev3/src/keri/demo/__init__.py +0 -7
  270. keri-2.0.0.dev3/src/keri/end/__init__.py +0 -8
  271. keri-2.0.0.dev3/src/keri/peer/__init__.py +0 -8
  272. keri-2.0.0.dev3/src/keri/peer/exchanging.py +0 -696
  273. keri-2.0.0.dev3/src/keri/vc/__init__.py +0 -6
  274. keri-2.0.0.dev3/src/keri/vc/messaging.py +0 -458
  275. keri-2.0.0.dev3/src/keri/vc/protocoling.py +0 -332
  276. keri-2.0.0.dev3/src/keri/vdr/__init__.py +0 -7
  277. keri-2.0.0.dev3/src/keri/vdr/viring.py +0 -1044
  278. keri-2.0.0.dev3/src/keri.egg-info/SOURCES.txt +0 -199
  279. keri-2.0.0.dev3/src/keri.egg-info/requires.txt +0 -22
  280. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/LICENSE +0 -0
  281. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/setup.cfg +0 -0
  282. {keri-2.0.0.dev3/src/keri/app/cli/commands → keri-2.0.0.dev6/src/keri/db/migrations}/__init__.py +0 -0
  283. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/dependency_links.txt +0 -0
  284. {keri-2.0.0.dev3 → keri-2.0.0.dev6}/src/keri.egg-info/not-zip-safe +0 -0
  285. {keri-2.0.0.dev3 → 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.dev3
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.13.2
21
+ Requires-Python: ~=3.14.0
22
22
  License-File: LICENSE
23
- Requires-Dist: lmdb==1.6.2
24
- Requires-Dist: pysodium>=0.7.18
25
- Requires-Dist: blake3>=1.0.5
26
- Requires-Dist: msgpack>=1.1.0
27
- Requires-Dist: cbor2>=5.6.5
28
- Requires-Dist: multidict>=6.6.3
29
- Requires-Dist: ordered-set>=4.1.0
30
- Requires-Dist: hio>=0.7.14
31
- Requires-Dist: multicommand>=1.0.0
32
- Requires-Dist: jsonschema>=4.24.0
33
- Requires-Dist: falcon>=4.0.2
34
- Requires-Dist: hjson>=3.1.0
35
- Requires-Dist: PyYaml>=6.0.2
36
- Requires-Dist: apispec>=6.8.2
37
- Requires-Dist: mnemonic>=0.21
38
- Requires-Dist: PrettyTable>=3.16.0
39
- Requires-Dist: http_sfv>=0.9.9
40
- Requires-Dist: cryptography>=45.0.5
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
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
+ 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: 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-dev3', # 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.13.2',
71
+ python_requires='~=3.14.0',
78
72
  install_requires=[
79
- 'lmdb==1.6.2',
80
- 'pysodium>=0.7.18',
81
- 'blake3>=1.0.5',
82
- 'msgpack>=1.1.0',
83
- 'cbor2>=5.6.5',
84
- 'multidict>=6.6.3',
85
- 'ordered-set>=4.1.0',
86
- 'hio>=0.7.14',
87
- 'multicommand>=1.0.0',
88
- 'jsonschema>=4.24.0',
89
- 'falcon>=4.0.2',
90
- 'hjson>=3.1.0',
91
- 'PyYaml>=6.0.2',
92
- 'apispec>=6.8.2',
93
- 'mnemonic>=0.21',
94
- 'PrettyTable>=3.16.0',
95
- 'http_sfv>=0.9.9',
96
- 'cryptography>=45.0.5',
97
- 'semver>=3.0.4',
98
- 'qrcode>=8.2',
99
- 'setuptools>=80.9.0',
100
- 'wheel>=0.45.1',
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',
81
+ 'multicommand==1.0.0',
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.9.2',
106
- 'pytest>=8.4.1',
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)
@@ -0,0 +1,13 @@
1
+ # -*- encoding: utf-8 -*-
2
+ """
3
+ KERI
4
+ keri.acdc Package
5
+ """
6
+
7
+ from .messaging import (regcept, blindate, update, acdcmap, acdcatt, acdcagg,
8
+ sectschema, sectattr, sectaggr, sectedge, sectrule,
9
+ sectionate,
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
+ """