pbesa 3.1.4__tar.gz → 4.0.1__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 (570) hide show
  1. {pbesa-3.1.4 → pbesa-4.0.1}/.gitignore +4 -0
  2. pbesa-4.0.1/PKG-INFO +11 -0
  3. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/pbesa.py +1 -1
  4. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/apps.py +2 -2
  5. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translatecontroller.py +4 -4
  6. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translatedelegate.py +1 -1
  7. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/translateresponse.py +3 -3
  8. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/translatetask.py +3 -3
  9. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/workeragent.py +1 -1
  10. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/views.py +2 -2
  11. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/countercontroller.py +4 -4
  12. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/counterdelegate.py +1 -1
  13. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/counterresponse.py +3 -3
  14. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/counteragent.py +1 -1
  15. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/countertask.py +2 -2
  16. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/remote_a.py +6 -6
  17. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/remote_b.py +3 -3
  18. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/remote_c.py +3 -3
  19. pbesa-4.0.1/pbesa/__init__.py +5 -0
  20. pbesa-4.0.1/pbesa/cognitive.py +705 -0
  21. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/__init__.py +1 -3
  22. pbesa-4.0.1/pbesa/kernel/adapter.py +165 -0
  23. pbesa-4.0.1/pbesa/kernel/agent.py +558 -0
  24. pbesa-4.0.1/pbesa/kernel/io/__init__.py +2 -0
  25. pbesa-4.0.1/pbesa/kernel/io/system_file.py +38 -0
  26. pbesa-4.0.1/pbesa/kernel/io/tcp_server.py +23 -0
  27. pbesa-4.0.1/pbesa/kernel/util.py +217 -0
  28. pbesa-4.0.1/pbesa/kernel/world.py +43 -0
  29. pbesa-3.1.4/pbesa/kernel/system/Adm.py → pbesa-4.0.1/pbesa/mas.py +235 -75
  30. pbesa-4.0.1/pbesa/models.py +149 -0
  31. pbesa-4.0.1/pbesa/remote/__init__.py +5 -0
  32. pbesa-4.0.1/pbesa/remote/adm_listener.py +44 -0
  33. pbesa-3.1.4/pbesa/middleware/remote/AdmListenerHandler.py → pbesa-4.0.1/pbesa/remote/adm_listener_handler.py +25 -8
  34. pbesa-3.1.4/pbesa/middleware/remote/RemoteAdm.py → pbesa-4.0.1/pbesa/remote/remote_adm.py +22 -3
  35. pbesa-3.1.4/pbesa/middleware/remote/RemoteAdmHandler.py → pbesa-4.0.1/pbesa/remote/remote_adm_handler.py +33 -16
  36. pbesa-4.0.1/pbesa/social/__init__.py +4 -0
  37. pbesa-4.0.1/pbesa/social/collaborative_team.py +299 -0
  38. pbesa-4.0.1/pbesa/social/delegator.py +81 -0
  39. pbesa-4.0.1/pbesa/social/delegator_team.py +334 -0
  40. pbesa-4.0.1/pbesa/social/dialog.py +203 -0
  41. pbesa-4.0.1/pbesa/social/dispatcher_team.py +319 -0
  42. pbesa-4.0.1/pbesa/social/prompts.py +40 -0
  43. pbesa-4.0.1/pbesa/social/selected_dispatcher_team.py +373 -0
  44. pbesa-4.0.1/pbesa/social/templates.py +18 -0
  45. pbesa-4.0.1/pbesa/social/worker.py +188 -0
  46. pbesa-4.0.1/pbesa.egg-info/PKG-INFO +11 -0
  47. pbesa-4.0.1/pbesa.egg-info/SOURCES.txt +102 -0
  48. pbesa-4.0.1/pbesa.egg-info/requires.txt +5 -0
  49. pbesa-4.0.1/setup.py +16 -0
  50. pbesa-3.1.4/PKG-INFO +0 -148
  51. pbesa-3.1.4/dist/pbesa-3.1.3.tar.gz +0 -0
  52. pbesa-3.1.4/examples/scripts/blockpoolcontroller.py +0 -122
  53. pbesa-3.1.4/examples/scripts/getstart.py +0 -92
  54. pbesa-3.1.4/examples/scripts/linealcontroller.py +0 -164
  55. pbesa-3.1.4/examples/scripts/noblockpoolcontroller.py +0 -139
  56. pbesa-3.1.4/examples/scripts/remote.py +0 -37
  57. pbesa-3.1.4/pbesa/__init__.py +0 -5
  58. pbesa-3.1.4/pbesa/__pycache__/__init__.cpython-36.pyc +0 -0
  59. pbesa-3.1.4/pbesa/__pycache__/__init__.cpython-37.pyc +0 -0
  60. pbesa-3.1.4/pbesa/__pycache__/__init__.cpython-38.pyc +0 -0
  61. pbesa-3.1.4/pbesa/__pycache__/__init__.cpython-39.pyc +0 -0
  62. pbesa-3.1.4/pbesa/engine/__init__.py +0 -3
  63. pbesa-3.1.4/pbesa/engine/__pycache__/__init__.cpython-36.pyc +0 -0
  64. pbesa-3.1.4/pbesa/engine/__pycache__/__init__.cpython-37.pyc +0 -0
  65. pbesa-3.1.4/pbesa/engine/__pycache__/__init__.cpython-38.pyc +0 -0
  66. pbesa-3.1.4/pbesa/engine/__pycache__/__init__.cpython-39.pyc +0 -0
  67. pbesa-3.1.4/pbesa/engine/bdi/BDIAg.py +0 -42
  68. pbesa-3.1.4/pbesa/engine/bdi/BDILevel.py +0 -10
  69. pbesa-3.1.4/pbesa/engine/bdi/BDIMachine.py +0 -116
  70. pbesa-3.1.4/pbesa/engine/bdi/Goal.py +0 -28
  71. pbesa-3.1.4/pbesa/engine/bdi/GoalExe.py +0 -36
  72. pbesa-3.1.4/pbesa/engine/bdi/__init__.py +0 -5
  73. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIAg.cpython-36.pyc +0 -0
  74. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIAg.cpython-37.pyc +0 -0
  75. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIAg.cpython-38.pyc +0 -0
  76. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIAg.cpython-39.pyc +0 -0
  77. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDILevel.cpython-36.pyc +0 -0
  78. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDILevel.cpython-37.pyc +0 -0
  79. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDILevel.cpython-38.pyc +0 -0
  80. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDILevel.cpython-39.pyc +0 -0
  81. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIMachine.cpython-36.pyc +0 -0
  82. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIMachine.cpython-37.pyc +0 -0
  83. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIMachine.cpython-38.pyc +0 -0
  84. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/BDIMachine.cpython-39.pyc +0 -0
  85. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/Goal.cpython-36.pyc +0 -0
  86. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/Goal.cpython-37.pyc +0 -0
  87. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/Goal.cpython-38.pyc +0 -0
  88. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/Goal.cpython-39.pyc +0 -0
  89. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/GoalExe.cpython-36.pyc +0 -0
  90. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/GoalExe.cpython-37.pyc +0 -0
  91. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/GoalExe.cpython-38.pyc +0 -0
  92. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/GoalExe.cpython-39.pyc +0 -0
  93. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/__init__.cpython-36.pyc +0 -0
  94. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/__init__.cpython-37.pyc +0 -0
  95. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/__init__.cpython-38.pyc +0 -0
  96. pbesa-3.1.4/pbesa/engine/bdi/__pycache__/__init__.cpython-39.pyc +0 -0
  97. pbesa-3.1.4/pbesa/engine/ps/__init__.py +0 -5
  98. pbesa-3.1.4/pbesa/engine/ps/__pycache__/alpha_node.cpython-39.pyc +0 -0
  99. pbesa-3.1.4/pbesa/engine/ps/__pycache__/betha_node.cpython-39.pyc +0 -0
  100. pbesa-3.1.4/pbesa/engine/ps/__pycache__/exceptions.cpython-39.pyc +0 -0
  101. pbesa-3.1.4/pbesa/engine/ps/__pycache__/rete.cpython-39.pyc +0 -0
  102. pbesa-3.1.4/pbesa/engine/ps/alpha_node.py +0 -77
  103. pbesa-3.1.4/pbesa/engine/ps/betha_node.py +0 -309
  104. pbesa-3.1.4/pbesa/engine/ps/exceptions.py +0 -18
  105. pbesa-3.1.4/pbesa/engine/ps/psagent/__init__.py +0 -19
  106. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/add_fact_agenda_action.cpython-39.pyc +0 -0
  107. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/agenda_action.cpython-39.pyc +0 -0
  108. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/assert_fact_action.cpython-39.pyc +0 -0
  109. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/fact.cpython-39.pyc +0 -0
  110. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/periodic_action.cpython-39.pyc +0 -0
  111. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/psagent.cpython-39.pyc +0 -0
  112. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/retract_fact_action.cpython-39.pyc +0 -0
  113. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/rule.cpython-39.pyc +0 -0
  114. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/run_agenda_action.cpython-39.pyc +0 -0
  115. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/sp_periodic_data.cpython-39.pyc +0 -0
  116. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/template.cpython-39.pyc +0 -0
  117. pbesa-3.1.4/pbesa/engine/ps/psagent/__pycache__/update_fact_action.cpython-39.pyc +0 -0
  118. pbesa-3.1.4/pbesa/engine/ps/psagent/add_fact_agenda_action.py +0 -17
  119. pbesa-3.1.4/pbesa/engine/ps/psagent/assert_fact_action.py +0 -17
  120. pbesa-3.1.4/pbesa/engine/ps/psagent/fact.py +0 -25
  121. pbesa-3.1.4/pbesa/engine/ps/psagent/periodic_action.py +0 -42
  122. pbesa-3.1.4/pbesa/engine/ps/psagent/psagent.py +0 -80
  123. pbesa-3.1.4/pbesa/engine/ps/psagent/retract_fact_action.py +0 -17
  124. pbesa-3.1.4/pbesa/engine/ps/psagent/rule.py +0 -53
  125. pbesa-3.1.4/pbesa/engine/ps/psagent/run_agenda_action.py +0 -17
  126. pbesa-3.1.4/pbesa/engine/ps/psagent/sp_periodic_data.py +0 -12
  127. pbesa-3.1.4/pbesa/engine/ps/psagent/template.py +0 -20
  128. pbesa-3.1.4/pbesa/engine/ps/psagent/update_fact_action.py +0 -17
  129. pbesa-3.1.4/pbesa/engine/ps/rete.py +0 -84
  130. pbesa-3.1.4/pbesa/engine/rational/ActionExe.py +0 -35
  131. pbesa-3.1.4/pbesa/engine/rational/Brain.py +0 -10
  132. pbesa-3.1.4/pbesa/engine/rational/RationalAg.py +0 -43
  133. pbesa-3.1.4/pbesa/engine/rational/__init__.py +0 -3
  134. pbesa-3.1.4/pbesa/engine/rational/__pycache__/ActionExe.cpython-36.pyc +0 -0
  135. pbesa-3.1.4/pbesa/engine/rational/__pycache__/ActionExe.cpython-37.pyc +0 -0
  136. pbesa-3.1.4/pbesa/engine/rational/__pycache__/ActionExe.cpython-38.pyc +0 -0
  137. pbesa-3.1.4/pbesa/engine/rational/__pycache__/ActionExe.cpython-39.pyc +0 -0
  138. pbesa-3.1.4/pbesa/engine/rational/__pycache__/Brain.cpython-36.pyc +0 -0
  139. pbesa-3.1.4/pbesa/engine/rational/__pycache__/Brain.cpython-37.pyc +0 -0
  140. pbesa-3.1.4/pbesa/engine/rational/__pycache__/Brain.cpython-38.pyc +0 -0
  141. pbesa-3.1.4/pbesa/engine/rational/__pycache__/Brain.cpython-39.pyc +0 -0
  142. pbesa-3.1.4/pbesa/engine/rational/__pycache__/RationalAg.cpython-36.pyc +0 -0
  143. pbesa-3.1.4/pbesa/engine/rational/__pycache__/RationalAg.cpython-37.pyc +0 -0
  144. pbesa-3.1.4/pbesa/engine/rational/__pycache__/RationalAg.cpython-38.pyc +0 -0
  145. pbesa-3.1.4/pbesa/engine/rational/__pycache__/RationalAg.cpython-39.pyc +0 -0
  146. pbesa-3.1.4/pbesa/engine/rational/__pycache__/__init__.cpython-36.pyc +0 -0
  147. pbesa-3.1.4/pbesa/engine/rational/__pycache__/__init__.cpython-37.pyc +0 -0
  148. pbesa-3.1.4/pbesa/engine/rational/__pycache__/__init__.cpython-38.pyc +0 -0
  149. pbesa-3.1.4/pbesa/engine/rational/__pycache__/__init__.cpython-39.pyc +0 -0
  150. pbesa-3.1.4/pbesa/kernel/__pycache__/__init__.cpython-36.pyc +0 -0
  151. pbesa-3.1.4/pbesa/kernel/__pycache__/__init__.cpython-37.pyc +0 -0
  152. pbesa-3.1.4/pbesa/kernel/__pycache__/__init__.cpython-38.pyc +0 -0
  153. pbesa-3.1.4/pbesa/kernel/__pycache__/__init__.cpython-39.pyc +0 -0
  154. pbesa-3.1.4/pbesa/kernel/adapter/Adapter.py +0 -26
  155. pbesa-3.1.4/pbesa/kernel/adapter/FileAdapter.py +0 -23
  156. pbesa-3.1.4/pbesa/kernel/adapter/__init__.py +0 -2
  157. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/Adapter.cpython-36.pyc +0 -0
  158. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/Adapter.cpython-37.pyc +0 -0
  159. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/Adapter.cpython-38.pyc +0 -0
  160. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/Adapter.cpython-39.pyc +0 -0
  161. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/FileAdapter.cpython-36.pyc +0 -0
  162. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/FileAdapter.cpython-37.pyc +0 -0
  163. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/FileAdapter.cpython-38.pyc +0 -0
  164. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/FileAdapter.cpython-39.pyc +0 -0
  165. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/__init__.cpython-36.pyc +0 -0
  166. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/__init__.cpython-37.pyc +0 -0
  167. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/__init__.cpython-38.pyc +0 -0
  168. pbesa-3.1.4/pbesa/kernel/adapter/__pycache__/__init__.cpython-39.pyc +0 -0
  169. pbesa-3.1.4/pbesa/kernel/agent/Action.py +0 -42
  170. pbesa-3.1.4/pbesa/kernel/agent/Agent.py +0 -191
  171. pbesa-3.1.4/pbesa/kernel/agent/BehaviorExe.py +0 -61
  172. pbesa-3.1.4/pbesa/kernel/agent/Channel.py +0 -8
  173. pbesa-3.1.4/pbesa/kernel/agent/World.py +0 -14
  174. pbesa-3.1.4/pbesa/kernel/agent/__init__.py +0 -6
  175. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Action.cpython-36.pyc +0 -0
  176. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Action.cpython-37.pyc +0 -0
  177. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Action.cpython-38.pyc +0 -0
  178. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Action.cpython-39.pyc +0 -0
  179. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Agent.cpython-36.pyc +0 -0
  180. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Agent.cpython-37.pyc +0 -0
  181. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Agent.cpython-38.pyc +0 -0
  182. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Agent.cpython-39.pyc +0 -0
  183. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/BehaviorExe.cpython-36.pyc +0 -0
  184. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/BehaviorExe.cpython-37.pyc +0 -0
  185. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/BehaviorExe.cpython-38.pyc +0 -0
  186. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/BehaviorExe.cpython-39.pyc +0 -0
  187. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Channel.cpython-36.pyc +0 -0
  188. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Channel.cpython-37.pyc +0 -0
  189. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Channel.cpython-38.pyc +0 -0
  190. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/Channel.cpython-39.pyc +0 -0
  191. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/World.cpython-36.pyc +0 -0
  192. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/World.cpython-37.pyc +0 -0
  193. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/World.cpython-38.pyc +0 -0
  194. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/World.cpython-39.pyc +0 -0
  195. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/__init__.cpython-36.pyc +0 -0
  196. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/__init__.cpython-37.pyc +0 -0
  197. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/__init__.cpython-38.pyc +0 -0
  198. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/__init__.cpython-39.pyc +0 -0
  199. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/exceptions.cpython-36.pyc +0 -0
  200. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/exceptions.cpython-37.pyc +0 -0
  201. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/exceptions.cpython-38.pyc +0 -0
  202. pbesa-3.1.4/pbesa/kernel/agent/__pycache__/exceptions.cpython-39.pyc +0 -0
  203. pbesa-3.1.4/pbesa/kernel/agent/exceptions.py +0 -22
  204. pbesa-3.1.4/pbesa/kernel/io/SystemFile.py +0 -13
  205. pbesa-3.1.4/pbesa/kernel/io/TCPServer.py +0 -4
  206. pbesa-3.1.4/pbesa/kernel/io/__init__.py +0 -2
  207. pbesa-3.1.4/pbesa/kernel/io/__pycache__/SystemFile.cpython-36.pyc +0 -0
  208. pbesa-3.1.4/pbesa/kernel/io/__pycache__/SystemFile.cpython-37.pyc +0 -0
  209. pbesa-3.1.4/pbesa/kernel/io/__pycache__/SystemFile.cpython-38.pyc +0 -0
  210. pbesa-3.1.4/pbesa/kernel/io/__pycache__/SystemFile.cpython-39.pyc +0 -0
  211. pbesa-3.1.4/pbesa/kernel/io/__pycache__/TCPServer.cpython-36.pyc +0 -0
  212. pbesa-3.1.4/pbesa/kernel/io/__pycache__/TCPServer.cpython-37.pyc +0 -0
  213. pbesa-3.1.4/pbesa/kernel/io/__pycache__/TCPServer.cpython-38.pyc +0 -0
  214. pbesa-3.1.4/pbesa/kernel/io/__pycache__/TCPServer.cpython-39.pyc +0 -0
  215. pbesa-3.1.4/pbesa/kernel/io/__pycache__/__init__.cpython-36.pyc +0 -0
  216. pbesa-3.1.4/pbesa/kernel/io/__pycache__/__init__.cpython-37.pyc +0 -0
  217. pbesa-3.1.4/pbesa/kernel/io/__pycache__/__init__.cpython-38.pyc +0 -0
  218. pbesa-3.1.4/pbesa/kernel/io/__pycache__/__init__.cpython-39.pyc +0 -0
  219. pbesa-3.1.4/pbesa/kernel/system/Directory.py +0 -62
  220. pbesa-3.1.4/pbesa/kernel/system/__init__.py +0 -3
  221. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Adm.cpython-36.pyc +0 -0
  222. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Adm.cpython-37.pyc +0 -0
  223. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Adm.cpython-38.pyc +0 -0
  224. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Adm.cpython-39.pyc +0 -0
  225. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Directory.cpython-36.pyc +0 -0
  226. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Directory.cpython-37.pyc +0 -0
  227. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Directory.cpython-38.pyc +0 -0
  228. pbesa-3.1.4/pbesa/kernel/system/__pycache__/Directory.cpython-39.pyc +0 -0
  229. pbesa-3.1.4/pbesa/kernel/system/__pycache__/__init__.cpython-36.pyc +0 -0
  230. pbesa-3.1.4/pbesa/kernel/system/__pycache__/__init__.cpython-37.pyc +0 -0
  231. pbesa-3.1.4/pbesa/kernel/system/__pycache__/__init__.cpython-38.pyc +0 -0
  232. pbesa-3.1.4/pbesa/kernel/system/__pycache__/__init__.cpython-39.pyc +0 -0
  233. pbesa-3.1.4/pbesa/kernel/system/__pycache__/exceptions.cpython-36.pyc +0 -0
  234. pbesa-3.1.4/pbesa/kernel/system/__pycache__/exceptions.cpython-37.pyc +0 -0
  235. pbesa-3.1.4/pbesa/kernel/system/__pycache__/exceptions.cpython-38.pyc +0 -0
  236. pbesa-3.1.4/pbesa/kernel/system/__pycache__/exceptions.cpython-39.pyc +0 -0
  237. pbesa-3.1.4/pbesa/kernel/system/exceptions.py +0 -19
  238. pbesa-3.1.4/pbesa/kernel/util/Queue.py +0 -231
  239. pbesa-3.1.4/pbesa/kernel/util/__init__.py +0 -1
  240. pbesa-3.1.4/pbesa/kernel/util/__pycache__/HashTable.cpython-36.pyc +0 -0
  241. pbesa-3.1.4/pbesa/kernel/util/__pycache__/HashTable.cpython-38.pyc +0 -0
  242. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Log.cpython-36.pyc +0 -0
  243. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Log.cpython-38.pyc +0 -0
  244. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Queue.cpython-36.pyc +0 -0
  245. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Queue.cpython-37.pyc +0 -0
  246. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Queue.cpython-38.pyc +0 -0
  247. pbesa-3.1.4/pbesa/kernel/util/__pycache__/Queue.cpython-39.pyc +0 -0
  248. pbesa-3.1.4/pbesa/kernel/util/__pycache__/__init__.cpython-36.pyc +0 -0
  249. pbesa-3.1.4/pbesa/kernel/util/__pycache__/__init__.cpython-37.pyc +0 -0
  250. pbesa-3.1.4/pbesa/kernel/util/__pycache__/__init__.cpython-38.pyc +0 -0
  251. pbesa-3.1.4/pbesa/kernel/util/__pycache__/__init__.cpython-39.pyc +0 -0
  252. pbesa-3.1.4/pbesa/middleware/__init__.py +0 -3
  253. pbesa-3.1.4/pbesa/middleware/__pycache__/__init__.cpython-36.pyc +0 -0
  254. pbesa-3.1.4/pbesa/middleware/__pycache__/__init__.cpython-37.pyc +0 -0
  255. pbesa-3.1.4/pbesa/middleware/__pycache__/__init__.cpython-38.pyc +0 -0
  256. pbesa-3.1.4/pbesa/middleware/__pycache__/__init__.cpython-39.pyc +0 -0
  257. pbesa-3.1.4/pbesa/middleware/adapter/RESTAdapter.py +0 -52
  258. pbesa-3.1.4/pbesa/middleware/adapter/SubProcessAdapter.py +0 -30
  259. pbesa-3.1.4/pbesa/middleware/adapter/WSSAdapter.py +0 -83
  260. pbesa-3.1.4/pbesa/middleware/adapter/WSSNJAdapter.py +0 -51
  261. pbesa-3.1.4/pbesa/middleware/adapter/WSSNJHandler.py +0 -23
  262. pbesa-3.1.4/pbesa/middleware/adapter/WSSNJWrapper.js +0 -50
  263. pbesa-3.1.4/pbesa/middleware/adapter/__init__.py +0 -5
  264. pbesa-3.1.4/pbesa/middleware/adapter/__pycache__/.gitignore +0 -2
  265. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/.coveralls.yml +0 -1
  266. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/.eslintrc +0 -11
  267. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/.npmignore +0 -9
  268. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/.travis.yml +0 -14
  269. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/CHANGELOG.md +0 -362
  270. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/LICENSE +0 -19
  271. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/Makefile +0 -50
  272. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/README.md +0 -312
  273. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/karma.conf.js +0 -70
  274. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/node.js +0 -1
  275. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/src/browser.js +0 -185
  276. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/src/debug.js +0 -202
  277. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/src/index.js +0 -10
  278. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/src/inspector-log.js +0 -15
  279. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/debug/src/node.js +0 -248
  280. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/is-typedarray/LICENSE.md +0 -18
  281. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/is-typedarray/README.md +0 -16
  282. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/is-typedarray/index.js +0 -41
  283. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/is-typedarray/test.js +0 -34
  284. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/ms/index.js +0 -152
  285. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/ms/license.md +0 -21
  286. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/ms/readme.md +0 -51
  287. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/CHANGELOG.md +0 -492
  288. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/LICENSE.md +0 -13
  289. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/README.md +0 -456
  290. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/asyncworker.md +0 -146
  291. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/buffers.md +0 -54
  292. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/callback.md +0 -76
  293. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/converters.md +0 -41
  294. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/errors.md +0 -226
  295. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/json.md +0 -62
  296. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/maybe_types.md +0 -583
  297. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/methods.md +0 -659
  298. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/new.md +0 -147
  299. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/node_misc.md +0 -123
  300. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/object_wrappers.md +0 -263
  301. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/persistent.md +0 -295
  302. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/scopes.md +0 -73
  303. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/script.md +0 -38
  304. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/string_bytes.md +0 -62
  305. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/v8_internals.md +0 -199
  306. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/doc/v8_misc.md +0 -85
  307. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/include_dirs.js +0 -1
  308. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan.h +0 -2761
  309. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_callbacks.h +0 -88
  310. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_callbacks_12_inl.h +0 -512
  311. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_callbacks_pre_12_inl.h +0 -520
  312. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_converters.h +0 -72
  313. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_converters_43_inl.h +0 -48
  314. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_converters_pre_43_inl.h +0 -42
  315. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_define_own_property_helper.h +0 -29
  316. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_implementation_12_inl.h +0 -399
  317. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_implementation_pre_12_inl.h +0 -263
  318. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_json.h +0 -166
  319. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_maybe_43_inl.h +0 -369
  320. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_maybe_pre_43_inl.h +0 -316
  321. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_new.h +0 -340
  322. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_object_wrap.h +0 -155
  323. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_persistent_12_inl.h +0 -132
  324. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_persistent_pre_12_inl.h +0 -242
  325. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_private.h +0 -73
  326. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_string_bytes.h +0 -305
  327. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_typedarray_contents.h +0 -90
  328. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/nan_weak.h +0 -432
  329. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/tools/1to2.js +0 -412
  330. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/nan/tools/README.md +0 -14
  331. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/.airtap.yml +0 -15
  332. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/.travis.yml +0 -11
  333. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/LICENSE +0 -21
  334. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/README.md +0 -85
  335. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/index.js +0 -25
  336. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/typedarray-to-buffer/test/basic.js +0 -50
  337. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/.jshintrc +0 -88
  338. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/CHANGELOG.md +0 -231
  339. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/LICENSE +0 -177
  340. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/Makefile +0 -11
  341. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/README.md +0 -273
  342. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/binding.gyp +0 -18
  343. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/gulpfile.js +0 -14
  344. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/index.js +0 -1
  345. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/BufferUtil.fallback.js +0 -52
  346. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/BufferUtil.js +0 -17
  347. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/Deprecation.js +0 -32
  348. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/Validation.fallback.js +0 -12
  349. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/Validation.js +0 -17
  350. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/W3CWebSocket.js +0 -257
  351. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketClient.js +0 -348
  352. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketConnection.js +0 -894
  353. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketFrame.js +0 -279
  354. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketRequest.js +0 -524
  355. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketRouter.js +0 -157
  356. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketRouterRequest.js +0 -54
  357. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/WebSocketServer.js +0 -245
  358. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/browser.js +0 -42
  359. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/utils.js +0 -60
  360. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/version.js +0 -1
  361. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/lib/websocket.js +0 -11
  362. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/src/bufferutil.cc +0 -121
  363. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/src/validation.cc +0 -148
  364. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/websocket/vendor/FastBufferList.js +0 -193
  365. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/.jscsrc +0 -6
  366. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/.jshintrc +0 -27
  367. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/.npmignore +0 -1
  368. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/LICENSE +0 -21
  369. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/README.md +0 -98
  370. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/gulpfile.js +0 -23
  371. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/index.js +0 -4
  372. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/lib/Event.browser.js +0 -5
  373. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/lib/Event.js +0 -13
  374. pbesa-3.1.4/pbesa/middleware/adapter/node_modules/yaeti/lib/EventTarget.js +0 -119
  375. pbesa-3.1.4/pbesa/middleware/remote/AdmListener.py +0 -17
  376. pbesa-3.1.4/pbesa/middleware/remote/__init__.py +0 -5
  377. pbesa-3.1.4/pbesa/middleware/remote/__pycache__/.gitignore +0 -2
  378. pbesa-3.1.4/pbesa/middleware/web/WebAgTK.py +0 -15
  379. pbesa-3.1.4/pbesa/middleware/web/__init__.py +0 -0
  380. pbesa-3.1.4/pbesa/middleware/web/__pycache__/.gitignore +0 -2
  381. pbesa-3.1.4/pbesa/middleware/web/agent/FrontControllerAgent.py +0 -59
  382. pbesa-3.1.4/pbesa/middleware/web/agent/__pycache__/.gitignore +0 -2
  383. pbesa-3.1.4/pbesa/middleware/web/behavior/RESTRequestAction.py +0 -17
  384. pbesa-3.1.4/pbesa/middleware/web/behavior/RESTResponseAction.py +0 -7
  385. pbesa-3.1.4/pbesa/middleware/web/behavior/WSRequestAction.py +0 -27
  386. pbesa-3.1.4/pbesa/middleware/web/behavior/WSResponseAction.py +0 -9
  387. pbesa-3.1.4/pbesa/middleware/web/behavior/WSSNJDelegateAction.py +0 -60
  388. pbesa-3.1.4/pbesa/middleware/web/behavior/__pycache__/.gitignore +0 -2
  389. pbesa-3.1.4/pbesa/scrape/CrawlAction.py +0 -106
  390. pbesa-3.1.4/pbesa/scrape/CrawlData.py +0 -55
  391. pbesa-3.1.4/pbesa/scrape/SpiderAction.py +0 -111
  392. pbesa-3.1.4/pbesa/scrape/SpiderAgent.py +0 -30
  393. pbesa-3.1.4/pbesa/scrape/SpiderData.py +0 -22
  394. pbesa-3.1.4/pbesa/scrape/__init__.py +0 -7
  395. pbesa-3.1.4/pbesa/scrape/__pycache__/CrawlAction.cpython-39.pyc +0 -0
  396. pbesa-3.1.4/pbesa/scrape/__pycache__/CrawlAgent.cpython-38.pyc +0 -0
  397. pbesa-3.1.4/pbesa/scrape/__pycache__/CrawlAgent.cpython-39.pyc +0 -0
  398. pbesa-3.1.4/pbesa/scrape/__pycache__/CrawlData.cpython-39.pyc +0 -0
  399. pbesa-3.1.4/pbesa/scrape/__pycache__/SpiderAction.cpython-39.pyc +0 -0
  400. pbesa-3.1.4/pbesa/scrape/__pycache__/SpiderAgent.cpython-39.pyc +0 -0
  401. pbesa-3.1.4/pbesa/scrape/__pycache__/SpiderData.cpython-39.pyc +0 -0
  402. pbesa-3.1.4/pbesa/scrape/__pycache__/exceptions.cpython-39.pyc +0 -0
  403. pbesa-3.1.4/pbesa/scrape/exceptions.py +0 -22
  404. pbesa-3.1.4/pbesa/social/__init__.py +0 -4
  405. pbesa-3.1.4/pbesa/social/__pycache__/__init__.cpython-36.pyc +0 -0
  406. pbesa-3.1.4/pbesa/social/__pycache__/__init__.cpython-37.pyc +0 -0
  407. pbesa-3.1.4/pbesa/social/__pycache__/__init__.cpython-38.pyc +0 -0
  408. pbesa-3.1.4/pbesa/social/__pycache__/__init__.cpython-39.pyc +0 -0
  409. pbesa-3.1.4/pbesa/social/delegator/__init__.py +0 -2
  410. pbesa-3.1.4/pbesa/social/delegator/__pycache__/delegator_agent.cpython-39.pyc +0 -0
  411. pbesa-3.1.4/pbesa/social/delegator/__pycache__/exceptions.cpython-39.pyc +0 -0
  412. pbesa-3.1.4/pbesa/social/delegator/delegator_agent.py +0 -38
  413. pbesa-3.1.4/pbesa/social/delegator/exceptions.py +0 -18
  414. pbesa-3.1.4/pbesa/social/linealcontroller/__init__.py +0 -5
  415. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/__init__.cpython-36.pyc +0 -0
  416. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/__init__.cpython-37.pyc +0 -0
  417. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/__init__.cpython-38.pyc +0 -0
  418. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/__init__.cpython-39.pyc +0 -0
  419. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/delegateaction.cpython-36.pyc +0 -0
  420. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/delegateaction.cpython-37.pyc +0 -0
  421. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/delegateaction.cpython-38.pyc +0 -0
  422. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/delegateaction.cpython-39.pyc +0 -0
  423. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/exceptions.cpython-36.pyc +0 -0
  424. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/exceptions.cpython-37.pyc +0 -0
  425. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/exceptions.cpython-38.pyc +0 -0
  426. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/exceptions.cpython-39.pyc +0 -0
  427. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/linealcontroller.cpython-36.pyc +0 -0
  428. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/linealcontroller.cpython-37.pyc +0 -0
  429. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/linealcontroller.cpython-38.pyc +0 -0
  430. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/linealcontroller.cpython-39.pyc +0 -0
  431. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/responseaction.cpython-36.pyc +0 -0
  432. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/responseaction.cpython-37.pyc +0 -0
  433. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/responseaction.cpython-38.pyc +0 -0
  434. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/responseaction.cpython-39.pyc +0 -0
  435. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/timeoutaction.cpython-36.pyc +0 -0
  436. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/timeoutaction.cpython-37.pyc +0 -0
  437. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/timeoutaction.cpython-38.pyc +0 -0
  438. pbesa-3.1.4/pbesa/social/linealcontroller/__pycache__/timeoutaction.cpython-39.pyc +0 -0
  439. pbesa-3.1.4/pbesa/social/linealcontroller/delegateaction.py +0 -37
  440. pbesa-3.1.4/pbesa/social/linealcontroller/exceptions.py +0 -18
  441. pbesa-3.1.4/pbesa/social/linealcontroller/linealcontroller.py +0 -90
  442. pbesa-3.1.4/pbesa/social/linealcontroller/responseaction.py +0 -49
  443. pbesa-3.1.4/pbesa/social/linealcontroller/timeoutaction.py +0 -46
  444. pbesa-3.1.4/pbesa/social/poolcontroller/__init__.py +0 -7
  445. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/__init__.cpython-36.pyc +0 -0
  446. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/__init__.cpython-37.pyc +0 -0
  447. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/__init__.cpython-38.pyc +0 -0
  448. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/__init__.cpython-39.pyc +0 -0
  449. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegate.cpython-36.pyc +0 -0
  450. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegate.cpython-37.pyc +0 -0
  451. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegate.cpython-38.pyc +0 -0
  452. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegate.cpython-39.pyc +0 -0
  453. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegateaction.cpython-36.pyc +0 -0
  454. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegateaction.cpython-37.pyc +0 -0
  455. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegateaction.cpython-38.pyc +0 -0
  456. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/delegateaction.cpython-39.pyc +0 -0
  457. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/exceptions.cpython-36.pyc +0 -0
  458. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/exceptions.cpython-37.pyc +0 -0
  459. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/exceptions.cpython-38.pyc +0 -0
  460. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/exceptions.cpython-39.pyc +0 -0
  461. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/linealcontroller.cpython-36.pyc +0 -0
  462. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/linealcontroller.cpython-38.pyc +0 -0
  463. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/notifyfreeaction.cpython-36.pyc +0 -0
  464. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/notifyfreeaction.cpython-37.pyc +0 -0
  465. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/notifyfreeaction.cpython-38.pyc +0 -0
  466. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/notifyfreeaction.cpython-39.pyc +0 -0
  467. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/poolcontroller.cpython-36.pyc +0 -0
  468. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/poolcontroller.cpython-37.pyc +0 -0
  469. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/poolcontroller.cpython-38.pyc +0 -0
  470. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/poolcontroller.cpython-39.pyc +0 -0
  471. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/pooltype.cpython-36.pyc +0 -0
  472. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/pooltype.cpython-37.pyc +0 -0
  473. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/pooltype.cpython-38.pyc +0 -0
  474. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/pooltype.cpython-39.pyc +0 -0
  475. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/responseaction.cpython-36.pyc +0 -0
  476. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/responseaction.cpython-37.pyc +0 -0
  477. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/responseaction.cpython-38.pyc +0 -0
  478. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/responseaction.cpython-39.pyc +0 -0
  479. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/timeoutaction.cpython-36.pyc +0 -0
  480. pbesa-3.1.4/pbesa/social/poolcontroller/__pycache__/timeoutaction.cpython-38.pyc +0 -0
  481. pbesa-3.1.4/pbesa/social/poolcontroller/delegate.py +0 -27
  482. pbesa-3.1.4/pbesa/social/poolcontroller/delegateaction.py +0 -33
  483. pbesa-3.1.4/pbesa/social/poolcontroller/exceptions.py +0 -18
  484. pbesa-3.1.4/pbesa/social/poolcontroller/notifyfreeaction.py +0 -22
  485. pbesa-3.1.4/pbesa/social/poolcontroller/poolcontroller.py +0 -75
  486. pbesa-3.1.4/pbesa/social/poolcontroller/pooltype.py +0 -4
  487. pbesa-3.1.4/pbesa/social/poolcontroller/responseaction.py +0 -34
  488. pbesa-3.1.4/pbesa/social/worker/__init__.py +0 -4
  489. pbesa-3.1.4/pbesa/social/worker/__pycache__/__init__.cpython-36.pyc +0 -0
  490. pbesa-3.1.4/pbesa/social/worker/__pycache__/__init__.cpython-37.pyc +0 -0
  491. pbesa-3.1.4/pbesa/social/worker/__pycache__/__init__.cpython-38.pyc +0 -0
  492. pbesa-3.1.4/pbesa/social/worker/__pycache__/__init__.cpython-39.pyc +0 -0
  493. pbesa-3.1.4/pbesa/social/worker/__pycache__/exceptions.cpython-36.pyc +0 -0
  494. pbesa-3.1.4/pbesa/social/worker/__pycache__/exceptions.cpython-37.pyc +0 -0
  495. pbesa-3.1.4/pbesa/social/worker/__pycache__/exceptions.cpython-38.pyc +0 -0
  496. pbesa-3.1.4/pbesa/social/worker/__pycache__/exceptions.cpython-39.pyc +0 -0
  497. pbesa-3.1.4/pbesa/social/worker/__pycache__/task.cpython-36.pyc +0 -0
  498. pbesa-3.1.4/pbesa/social/worker/__pycache__/task.cpython-37.pyc +0 -0
  499. pbesa-3.1.4/pbesa/social/worker/__pycache__/task.cpython-38.pyc +0 -0
  500. pbesa-3.1.4/pbesa/social/worker/__pycache__/task.cpython-39.pyc +0 -0
  501. pbesa-3.1.4/pbesa/social/worker/__pycache__/timeoutaction.cpython-36.pyc +0 -0
  502. pbesa-3.1.4/pbesa/social/worker/__pycache__/timeoutaction.cpython-37.pyc +0 -0
  503. pbesa-3.1.4/pbesa/social/worker/__pycache__/timeoutaction.cpython-38.pyc +0 -0
  504. pbesa-3.1.4/pbesa/social/worker/__pycache__/timeoutaction.cpython-39.pyc +0 -0
  505. pbesa-3.1.4/pbesa/social/worker/__pycache__/worker.cpython-36.pyc +0 -0
  506. pbesa-3.1.4/pbesa/social/worker/__pycache__/worker.cpython-37.pyc +0 -0
  507. pbesa-3.1.4/pbesa/social/worker/__pycache__/worker.cpython-38.pyc +0 -0
  508. pbesa-3.1.4/pbesa/social/worker/__pycache__/worker.cpython-39.pyc +0 -0
  509. pbesa-3.1.4/pbesa/social/worker/exceptions.py +0 -22
  510. pbesa-3.1.4/pbesa/social/worker/task.py +0 -51
  511. pbesa-3.1.4/pbesa/social/worker/timeoutaction.py +0 -37
  512. pbesa-3.1.4/pbesa/social/worker/worker.py +0 -50
  513. pbesa-3.1.4/pbesa.egg-info/PKG-INFO +0 -148
  514. pbesa-3.1.4/pbesa.egg-info/SOURCES.txt +0 -542
  515. pbesa-3.1.4/pbesa.egg-info/requires.txt +0 -3
  516. pbesa-3.1.4/setup.py +0 -49
  517. {pbesa-3.1.4 → pbesa-4.0.1}/LICENSE +0 -0
  518. {pbesa-3.1.4 → pbesa-4.0.1}/LICENSE.txt +0 -0
  519. {pbesa-3.1.4 → pbesa-4.0.1}/MANIFEST +0 -0
  520. {pbesa-3.1.4 → pbesa-4.0.1}/README.md +0 -0
  521. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/db.sqlite3 +0 -0
  522. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__init__.py +0 -0
  523. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/__init__.cpython-36.pyc +0 -0
  524. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/pbesa.cpython-36.pyc +0 -0
  525. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/settings.cpython-36.pyc +0 -0
  526. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/urls.cpython-36.pyc +0 -0
  527. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/__pycache__/wsgi.cpython-36.pyc +0 -0
  528. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/asgi.py +0 -0
  529. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/settings.py +0 -0
  530. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/urls.py +0 -0
  531. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/helloworld/wsgi.py +0 -0
  532. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/manage.py +0 -0
  533. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__init__.py +0 -0
  534. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/__init__.cpython-36.pyc +0 -0
  535. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/admin.cpython-36.pyc +0 -0
  536. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/apps.cpython-36.pyc +0 -0
  537. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/models.cpython-36.pyc +0 -0
  538. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/urls.cpython-36.pyc +0 -0
  539. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/__pycache__/views.cpython-36.pyc +0 -0
  540. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/admin.py +0 -0
  541. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translatecontroller.cpython-36.pyc +0 -0
  542. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translatedelegate.cpython-36.pyc +0 -0
  543. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/controller/__pycache__/translateresponse.cpython-36.pyc +0 -0
  544. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/__pycache__/translatetask.cpython-36.pyc +0 -0
  545. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/mas/worker/__pycache__/workeragent.cpython-36.pyc +0 -0
  546. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/migrations/__init__.py +0 -0
  547. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/migrations/__pycache__/__init__.cpython-36.pyc +0 -0
  548. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/models.py +0 -0
  549. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/tests.py +0 -0
  550. {pbesa-3.1.4 → pbesa-4.0.1}/examples/django/helloworld/translate/urls.py +0 -0
  551. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/countercontroller.cpython-36.pyc +0 -0
  552. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/counterdelegate.cpython-36.pyc +0 -0
  553. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/counterresponse.cpython-36.pyc +0 -0
  554. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translatecontroller.cpython-36.pyc +0 -0
  555. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translatedelegate.cpython-36.pyc +0 -0
  556. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/controller/__pycache__/translateresponse.cpython-36.pyc +0 -0
  557. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/counteragent.cpython-36.pyc +0 -0
  558. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/countertask.cpython-36.pyc +0 -0
  559. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/translatetask.cpython-36.pyc +0 -0
  560. {pbesa-3.1.4 → pbesa-4.0.1}/examples/remote/mas/worker/__pycache__/workeragent.cpython-36.pyc +0 -0
  561. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/__init__.py +0 -0
  562. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-36.pyc +0 -0
  563. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-37.pyc +0 -0
  564. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-38.pyc +0 -0
  565. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/__pycache__/__init__.cpython-39.pyc +0 -0
  566. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa/kernel/res/conf.json +0 -0
  567. {pbesa-3.1.4/pbesa/middleware → pbesa-4.0.1/pbesa}/remote/exceptions.py +0 -0
  568. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa.egg-info/dependency_links.txt +0 -0
  569. {pbesa-3.1.4 → pbesa-4.0.1}/pbesa.egg-info/top_level.txt +0 -0
  570. {pbesa-3.1.4 → pbesa-4.0.1}/setup.cfg +0 -0
@@ -9,3 +9,7 @@
9
9
  /src/**/*.owl
10
10
  /src/pbesa/middleware/adapter/node_modules
11
11
  /src/**/*.joblib
12
+ __pycache__
13
+ .vscode
14
+ *.h5
15
+ .env
pbesa-4.0.1/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.2
2
+ Name: pbesa
3
+ Version: 4.0.1
4
+ License-File: LICENSE
5
+ License-File: LICENSE.txt
6
+ Requires-Dist: pymongo==4.6.3
7
+ Requires-Dist: requests==2.32.3
8
+ Requires-Dist: azure-ai-projects==1.0.0b6
9
+ Requires-Dist: azure-ai-inference==1.0.0b9
10
+ Requires-Dist: azure-identity==1.20.0
11
+ Dynamic: requires-dist
@@ -1,7 +1,7 @@
1
1
  # ----------------------------------------------------------
2
2
  # Define ADM
3
3
  # ----------------------------------------------------------
4
- from pbesa.kernel.system.Adm import Adm
4
+ from pbesa.kernel.system.adm import Adm
5
5
 
6
6
  #-----------------------------------------------------------
7
7
  # Start MAS
@@ -19,6 +19,6 @@ class TranslateConfig(AppConfig):
19
19
  # Create the controller agent
20
20
  ctrID = 'Jarvis'
21
21
  ag = TranslateController(ctrID)
22
- ag.suscribeAgent(w1)
23
- ag.suscribeAgent(w2)
22
+ ag.suscribe_agent(w1)
23
+ ag.suscribe_agent(w2)
24
24
  ag.start()
@@ -1,8 +1,8 @@
1
1
  from .translatedelegate import TranslateDelegate
2
2
  from .translateresponse import TranslateResponse
3
- from pbesa.social.linealcontroller.linealcontroller import LinealController
3
+ from pbesa.social.secuencial_team.secuencial_team import SecuencialController
4
4
 
5
- class TranslateController(LinealController):
5
+ class TranslateController(SecuencialController):
6
6
  """ Through a class the concept of agent is defined """
7
7
 
8
8
  def build(self):
@@ -11,9 +11,9 @@ class TranslateController(LinealController):
11
11
  resources of the agent
12
12
  """
13
13
  # Assign an action to the behavior
14
- self.bindDelegateAction(TranslateDelegate())
14
+ self.bind_delegate_action(TranslateDelegate())
15
15
  # Assign an action to the behavior
16
- self.bindResponseAction(TranslateResponse())
16
+ self.bind_response_action(TranslateResponse())
17
17
 
18
18
  def shutdown(self):
19
19
  """ Method to free up the resources taken by the agent """
@@ -1,4 +1,4 @@
1
- from pbesa.social.linealcontroller.delegateaction import DelegateAction
1
+ from pbesa.social.secuencial_team.delegate_action import DelegateAction
2
2
 
3
3
  class TranslateDelegate(DelegateAction):
4
4
  """ An action is a response to the occurrence of an event """
@@ -1,15 +1,15 @@
1
- from pbesa.social.linealcontroller.responseaction import ResponseAction
1
+ from pbesa.social.secuencial_team.response_action import ResponseAction
2
2
 
3
3
  class TranslateResponse(ResponseAction):
4
4
  """ An action is a response to the occurrence of an event """
5
5
 
6
- def endOfProcess(self, resultDict, timeout):
6
+ def end_of_process(self, resultDict, timeout):
7
7
  """
8
8
  Catch the exception.
9
9
  @param exception Response exception
10
10
  """
11
11
  result = "%s %s" % (resultDict['w1'], resultDict['w2'])
12
- self.sendResponse(result)
12
+ self.send_response(result)
13
13
 
14
14
  def catchException(self, exception):
15
15
  """
@@ -3,15 +3,15 @@ from pbesa.social.worker.task import Task
3
3
  class TranslateTask(Task):
4
4
  """ An action is a response to the occurrence of an event """
5
5
 
6
- def goHead(self, data):
6
+ def run(self, data):
7
7
  """
8
8
  Execute.
9
9
  @param data Event data
10
10
  """
11
11
  if data == 'hello':
12
- self.sendResponse('Hola')
12
+ self.send_response('Hola')
13
13
  if data == 'world':
14
- self.sendResponse('Mundo')
14
+ self.send_response('Mundo')
15
15
 
16
16
  def catchException(self, exception):
17
17
  """
@@ -10,7 +10,7 @@ class WorkerAgent(Worker):
10
10
  resources of the agent
11
11
  """
12
12
  # Assign an action to the behavior
13
- self.bindTask(TranslateTask())
13
+ self.bind_task(TranslateTask())
14
14
 
15
15
  def shutdown(self):
16
16
  """ Method to free up the resources taken by the agent """
@@ -1,10 +1,10 @@
1
1
  import json
2
- from pbesa.kernel.system.Adm import Adm
2
+ from pbesa.kernel.system.adm import Adm
3
3
  from django.http.response import HttpResponse
4
4
 
5
5
  def index(request):
6
6
  term = request.GET['data']
7
- result = Adm().callAgent('Jarvis', term)
7
+ result = Adm().call_agent('Jarvis', term)
8
8
  return HttpResponse(json.dumps({
9
9
  'text': result
10
10
  }))
@@ -1,8 +1,8 @@
1
1
  from .counterdelegate import CounterDelegate
2
2
  from .counterresponse import CounterResponse
3
- from pbesa.social.linealcontroller.linealcontroller import LinealController
3
+ from pbesa.social.secuencial_team.secuencial_team import SecuencialController
4
4
 
5
- class CounterController(LinealController):
5
+ class CounterController(SecuencialController):
6
6
  """ Through a class the concept of agent is defined """
7
7
 
8
8
  def build(self):
@@ -11,9 +11,9 @@ class CounterController(LinealController):
11
11
  resources of the agent
12
12
  """
13
13
  # Assign an action to the behavior
14
- self.bindDelegateAction(CounterDelegate())
14
+ self.bind_delegate_action(CounterDelegate())
15
15
  # Assign an action to the behavior
16
- self.bindResponseAction(CounterResponse())
16
+ self.bind_response_action(CounterResponse())
17
17
 
18
18
  def shutdown(self):
19
19
  """ Method to free up the resources taken by the agent """
@@ -1,4 +1,4 @@
1
- from pbesa.social.linealcontroller.delegateaction import DelegateAction
1
+ from pbesa.social.secuencial_team.delegate_action import DelegateAction
2
2
 
3
3
  class CounterDelegate(DelegateAction):
4
4
  """ An action is a response to the occurrence of an event """
@@ -1,9 +1,9 @@
1
- from pbesa.social.linealcontroller.responseaction import ResponseAction
1
+ from pbesa.social.secuencial_team.response_action import ResponseAction
2
2
 
3
3
  class CounterResponse(ResponseAction):
4
4
  """ An action is a response to the occurrence of an event """
5
5
 
6
- def endOfProcess(self, resultDict, timeout):
6
+ def end_of_process(self, resultDict, timeout):
7
7
  """
8
8
  Catch the exception.
9
9
  @param exception Response exception
@@ -11,7 +11,7 @@ class CounterResponse(ResponseAction):
11
11
  result = 0
12
12
  for res in resultDict.values():
13
13
  result += res
14
- self.sendResponse(result)
14
+ self.send_response(result)
15
15
 
16
16
  def catchException(self, exception):
17
17
  """
@@ -10,7 +10,7 @@ class CounterAgent(Worker):
10
10
  resources of the agent
11
11
  """
12
12
  # Assign an action to the behavior
13
- self.bindTask(CounterTask())
13
+ self.bind_task(CounterTask())
14
14
 
15
15
  def shutdown(self):
16
16
  """ Method to free up the resources taken by the agent """
@@ -4,7 +4,7 @@ from pbesa.social.worker.task import Task
4
4
  class CounterTask(Task):
5
5
  """ An action is a response to the occurrence of an event """
6
6
 
7
- def goHead(self, data):
7
+ def run(self, data):
8
8
  """
9
9
  Execute.
10
10
  @param data Event data
@@ -12,7 +12,7 @@ class CounterTask(Task):
12
12
  for it in range(1, data + 1):
13
13
  time.sleep(1)
14
14
  print("AG: %s Count: %d" % (self.agent.id, it))
15
- self.sendResponse(10)
15
+ self.send_response(10)
16
16
 
17
17
  def catchException(self, exception):
18
18
  """
@@ -14,7 +14,7 @@
14
14
  # --------------------------------------------------------
15
15
  import time
16
16
  import traceback
17
- from pbesa.kernel.system.Adm import Adm
17
+ from pbesa.kernel.system.adm import Adm
18
18
  from mas.worker.counteragent import CounterAgent
19
19
  from mas.controller.countercontroller import CounterController
20
20
 
@@ -36,7 +36,7 @@ if __name__ == "__main__":
36
36
  }
37
37
  }
38
38
  mas = Adm()
39
- mas.startByConf(conf)
39
+ mas.start_by_conf(conf)
40
40
 
41
41
  # Defines the controller ID
42
42
  ctrID = 'Jarvis'
@@ -46,7 +46,7 @@ if __name__ == "__main__":
46
46
  for it in range(1, 4):
47
47
  wID = 'w_%d' % it
48
48
  w = CounterAgent(wID)
49
- w.suscribeRemoteController(ctrID)
49
+ w.suscribe_remote_controller(ctrID)
50
50
  w.start()
51
51
 
52
52
  #-------------------------------------------------
@@ -54,15 +54,15 @@ if __name__ == "__main__":
54
54
  ag = CounterController(ctrID)
55
55
  for it in range(1, 10):
56
56
  wID = 'w_%d' % it
57
- ag.suscribeRemoteAgent(wID)
57
+ ag.suscribe_remote_agent(wID)
58
58
  ag.start()
59
59
 
60
60
  # Wait for the start of the slave containers
61
- mas.waitFull(['slaveB', 'slaveC'])
61
+ mas.wait_full(['slaveB', 'slaveC'])
62
62
 
63
63
  #-------------------------------------------------
64
64
  # Start the dynamic
65
- result = mas.callAgent(ctrID, None)
65
+ result = mas.call_agent(ctrID, None)
66
66
  print(result)
67
67
  except:
68
68
  traceback.print_exc()
@@ -14,7 +14,7 @@
14
14
  # --------------------------------------------------------
15
15
  import time
16
16
  import traceback
17
- from pbesa.kernel.system.Adm import Adm
17
+ from pbesa.kernel.system.adm import Adm
18
18
  from mas.worker.counteragent import CounterAgent
19
19
 
20
20
  # --------------------------------------------------------
@@ -38,7 +38,7 @@ if __name__ == "__main__":
38
38
  }
39
39
  }
40
40
  mas = Adm()
41
- mas.startByConf(conf)
41
+ mas.start_by_conf(conf)
42
42
 
43
43
  # Defines the controller ID
44
44
  ctrID = 'Jarvis'
@@ -49,7 +49,7 @@ if __name__ == "__main__":
49
49
  for it in range(4, 7):
50
50
  wID = 'w_%d' % it
51
51
  w = CounterAgent(wID)
52
- w.suscribeRemoteController(ctrID)
52
+ w.suscribe_remote_controller(ctrID)
53
53
  w.start()
54
54
  except:
55
55
  traceback.print_exc()
@@ -14,7 +14,7 @@
14
14
  # --------------------------------------------------------
15
15
  import time
16
16
  import traceback
17
- from pbesa.kernel.system.Adm import Adm
17
+ from pbesa.kernel.system.adm import Adm
18
18
  from mas.worker.counteragent import CounterAgent
19
19
 
20
20
  # --------------------------------------------------------
@@ -38,7 +38,7 @@ if __name__ == "__main__":
38
38
  }
39
39
  }
40
40
  mas = Adm()
41
- mas.startByConf(conf)
41
+ mas.start_by_conf(conf)
42
42
 
43
43
  # Defines the controller ID
44
44
  ctrID = 'Jarvis'
@@ -49,7 +49,7 @@ if __name__ == "__main__":
49
49
  for it in range(7, 10):
50
50
  wID = 'w_%d' % it
51
51
  w = CounterAgent(wID)
52
- w.suscribeRemoteController(ctrID)
52
+ w.suscribe_remote_controller(ctrID)
53
53
  w.start()
54
54
  except:
55
55
  traceback.print_exc()
@@ -0,0 +1,5 @@
1
+ from .kernel import *
2
+ from .social import *
3
+ from .remote import *
4
+ from .cognitive import *
5
+ from .models import *