binaryoptionstoolsv2 0.1.7__tar.gz → 0.2.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 (217) hide show
  1. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/.github/workflows/CI.yml +169 -169
  2. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/.gitignore +75 -72
  3. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2}/BinaryOptionsToolsV2/__init__.py +10 -11
  4. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/BinaryOptionsToolsV2/config.py +193 -0
  5. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/__init__.py +19 -0
  6. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/asyncronous.py +653 -506
  7. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/syncronous.py +479 -395
  8. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/tracing.py +148 -142
  9. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/validator.py +278 -268
  10. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/CI.yml +345 -0
  11. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/Cargo.lock +492 -327
  12. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/Cargo.toml +42 -0
  13. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/Dockerfile +37 -37
  14. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/LICENSE +96 -0
  15. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/PYTHON_API_REFERENCE.md +727 -0
  16. BinaryOptionsToolsV2-0.1.7/PKG-INFO → binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/Readme.md +221 -183
  17. {BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/__init__.py +10 -11
  18. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/candles_eurusd_otc.csv +1637 -1637
  19. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/config.py +193 -0
  20. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/pocketoption/__init__.py +19 -0
  21. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/pocketoption/asyncronous.py +653 -506
  22. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/pocketoption/syncronous.py +479 -395
  23. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/config.rs +60 -0
  24. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/error.rs +45 -32
  25. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/lib.rs +35 -32
  26. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/logs.rs +323 -308
  27. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/pocketoption.rs +782 -0
  28. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/runtime.rs +18 -18
  29. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/stream.rs +36 -36
  30. binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/validator.rs +225 -0
  31. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tests/test.py +36 -34
  32. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tests/test_sync.py +17 -14
  33. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tracing.py +148 -142
  34. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/uv.lock +7 -7
  35. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/validator.py +278 -268
  36. binaryoptionstoolsv2-0.2.1/PKG-INFO +256 -0
  37. {BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.1}/Readme.md +221 -171
  38. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/.gitignore +4 -0
  39. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/Cargo.lock +579 -360
  40. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/Cargo.toml +47 -0
  41. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/Readme.md +89 -0
  42. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/errors.log +535 -507
  43. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/expert_options_regions.json +37 -0
  44. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/image.png +0 -0
  45. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/mkds/README.md +96 -0
  46. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/regions.json → binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/pocket_options_regions.json +120 -120
  47. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/error.rs +29 -0
  48. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/action.rs +98 -0
  49. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/client.rs +145 -0
  50. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/connect.rs +89 -0
  51. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/error.rs +21 -0
  52. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/mod.rs +10 -0
  53. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/keep_alive.rs +76 -0
  54. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/mod.rs +29 -0
  55. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/profile.rs +370 -0
  56. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/regions.rs +5 -0
  57. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/state.rs +122 -0
  58. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/types.rs +67 -0
  59. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/lib.rs +83 -0
  60. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/candle.rs +490 -0
  61. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/connect.rs +76 -0
  62. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/error.rs +57 -0
  63. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/mod.rs +15 -0
  64. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/assets.rs +103 -0
  65. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/balance.rs +78 -0
  66. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/deals.rs +328 -0
  67. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/get_candles.rs +320 -0
  68. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/keep_alive.rs +127 -0
  69. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/mod.rs +53 -0
  70. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/raw.rs +341 -0
  71. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/server_time.rs +57 -0
  72. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/subscriptions.rs +799 -0
  73. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/trades.rs +213 -0
  74. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/pocket_client.rs +625 -0
  75. {BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws → binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption}/regions.rs +64 -64
  76. {BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws → binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption}/ssid.rs +199 -178
  77. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/state.rs +325 -0
  78. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/types.rs +585 -0
  79. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/utils.rs +136 -0
  80. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/reimports.rs +1 -0
  81. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/traits.rs +10 -0
  82. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/utils/mod.rs +61 -0
  83. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/utils/serialize.rs +19 -0
  84. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/validator.rs +117 -0
  85. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/assets.txt +176 -176
  86. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/assets2.json +9633 -9633
  87. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/assets3.json +5925 -0
  88. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/data.json +5674 -5674
  89. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/expert_multiple_actions.json +6879 -0
  90. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/fail_open_pending_order.json +20 -20
  91. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/fail_open_pending_order2.json +20 -20
  92. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/load_history_period.json +1357 -1357
  93. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/load_history_period2.json +4161 -4161
  94. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/pocketoption_client_tests.rs +89 -0
  95. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/profile.json +47 -0
  96. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/raw_module_tests.rs +223 -0
  97. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/success_close_order.json +28 -0
  98. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/success_open_order.json +23 -0
  99. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/success_open_pending_order.json +15 -15
  100. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/success_update_pending.json +61 -61
  101. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test.json +6 -6
  102. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test_close_order.txt +54 -54
  103. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test_demo.json +6 -6
  104. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_close_order.json +120 -120
  105. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_closed_deals.txt +582 -582
  106. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_history_new.json +1265 -1265
  107. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/update_history_new_fast.json +1637 -0
  108. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_opened_deals.txt +98 -98
  109. binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/validator_tests.rs +142 -0
  110. binaryoptionstoolsv2-0.2.1/crates/core-pre/.gitignore +2 -0
  111. binaryoptionstoolsv2-0.2.1/crates/core-pre/.vscode/mcp.json +13 -0
  112. binaryoptionstoolsv2-0.2.1/crates/core-pre/Cargo.toml +25 -0
  113. binaryoptionstoolsv2-0.2.1/crates/core-pre/README.md +252 -0
  114. binaryoptionstoolsv2-0.2.1/crates/core-pre/diagrams/architecture.txt +52 -0
  115. binaryoptionstoolsv2-0.2.1/crates/core-pre/diagrams/diagram.txt +41 -0
  116. binaryoptionstoolsv2-0.2.1/crates/core-pre/docs/testing-framework.md +584 -0
  117. binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/basic_connector_usage.rs +72 -0
  118. binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/echo_client.rs +353 -0
  119. binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/middleware_example.rs +246 -0
  120. binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/testing_echo_client.rs +273 -0
  121. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/builder.rs +444 -0
  122. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/callback.rs +51 -0
  123. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/client.rs +537 -0
  124. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/connector.rs +52 -0
  125. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/error.rs +49 -0
  126. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/lib.rs +32 -0
  127. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/message.rs +1 -0
  128. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/middleware.rs +499 -0
  129. {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/reimports.rs +6 -4
  130. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/signals.rs +45 -0
  131. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/statistics.rs +822 -0
  132. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/testing.rs +623 -0
  133. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/traits.rs +213 -0
  134. {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/mod.rs +3 -2
  135. binaryoptionstoolsv2-0.2.1/crates/core-pre/src/utils/stream.rs +115 -0
  136. {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/time.rs +20 -19
  137. {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/tracing.rs +116 -109
  138. binaryoptionstoolsv2-0.2.1/crates/core-pre/target/.rustc_info.json +1 -0
  139. binaryoptionstoolsv2-0.2.1/crates/core-pre/target/package/binary-options-tools-core-pre-0.1.1.crate +0 -0
  140. binaryoptionstoolsv2-0.2.1/crates/core-pre/target/rust-analyzer/metadata/sysroot/Cargo.lock +503 -0
  141. binaryoptionstoolsv2-0.2.1/crates/core-pre/tests/middleware_tests.rs +169 -0
  142. binaryoptionstoolsv2-0.2.1/crates/core-pre/tests/testing_wrapper_tests.rs +197 -0
  143. binaryoptionstoolsv2-0.2.1/crates/macros/.gitignore +2 -0
  144. binaryoptionstoolsv2-0.2.1/crates/macros/ActionImpl_README.md +132 -0
  145. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/Cargo.lock +36 -161
  146. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/Cargo.toml +10 -5
  147. binaryoptionstoolsv2-0.2.1/crates/macros/examples/action_example.rs +49 -0
  148. binaryoptionstoolsv2-0.2.1/crates/macros/src/action.rs +87 -0
  149. binaryoptionstoolsv2-0.2.1/crates/macros/src/config.rs +366 -0
  150. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/deserialize.rs +26 -26
  151. binaryoptionstoolsv2-0.2.1/crates/macros/src/impls/config_impl.rs +7 -0
  152. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/impls/mod.rs +1 -1
  153. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/lib.rs +75 -60
  154. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/region.rs +184 -152
  155. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/serialize.rs +21 -21
  156. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/timeout.rs +158 -158
  157. binaryoptionstoolsv2-0.2.1/pyproject.toml +47 -0
  158. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/BinaryOptionsToolsV2/config.py +0 -122
  159. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
  160. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/Cargo.toml +0 -31
  161. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/config.py +0 -122
  162. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
  163. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/config.rs +0 -63
  164. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/pocketoption.rs +0 -468
  165. BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/validator.rs +0 -193
  166. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/.gitignore +0 -2
  167. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/Cargo.toml +0 -37
  168. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/README.md +0 -22
  169. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/Readme.md +0 -22
  170. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/lib.rs +0 -53
  171. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/error.rs +0 -76
  172. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/mod.rs +0 -9
  173. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/basic.rs +0 -46
  174. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/message.rs +0 -470
  175. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/mod.rs +0 -2
  176. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/pocket_client.rs +0 -1259
  177. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/base.rs +0 -63
  178. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/callback.rs +0 -91
  179. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/data.rs +0 -253
  180. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/info.rs +0 -62
  181. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/mod.rs +0 -7
  182. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/order.rs +0 -309
  183. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/success.rs +0 -21
  184. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/update.rs +0 -379
  185. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/basic.rs +0 -22
  186. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/connect.rs +0 -49
  187. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/location.rs +0 -35
  188. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/mod.rs +0 -3
  189. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/validators.rs +0 -55
  190. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/connect.rs +0 -115
  191. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/listener.rs +0 -134
  192. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/mod.rs +0 -7
  193. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/stream.rs +0 -227
  194. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/reimports.rs +0 -5
  195. BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/tests/success_open_order.json +0 -23
  196. BinaryOptionsToolsV2-0.1.7/crates/core/.gitignore +0 -1
  197. BinaryOptionsToolsV2-0.1.7/crates/core/Cargo.lock +0 -2285
  198. BinaryOptionsToolsV2-0.1.7/crates/core/Cargo.toml +0 -33
  199. BinaryOptionsToolsV2-0.1.7/crates/core/README.md +0 -32
  200. BinaryOptionsToolsV2-0.1.7/crates/core/errors.log +0 -0
  201. BinaryOptionsToolsV2-0.1.7/crates/core/readme.md +0 -32
  202. BinaryOptionsToolsV2-0.1.7/crates/core/src/constants.rs +0 -7
  203. BinaryOptionsToolsV2-0.1.7/crates/core/src/error.rs +0 -71
  204. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/client.rs +0 -669
  205. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/config.rs +0 -45
  206. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/mod.rs +0 -8
  207. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/send.rs +0 -319
  208. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/stream.rs +0 -115
  209. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/traits.rs +0 -113
  210. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/types.rs +0 -164
  211. BinaryOptionsToolsV2-0.1.7/crates/core/src/general/validate.rs +0 -21
  212. BinaryOptionsToolsV2-0.1.7/crates/core/src/lib.rs +0 -9
  213. BinaryOptionsToolsV2-0.1.7/crates/macros/.gitignore +0 -1
  214. BinaryOptionsToolsV2-0.1.7/crates/macros/README.md +0 -1
  215. BinaryOptionsToolsV2-0.1.7/crates/macros/src/config.rs +0 -225
  216. BinaryOptionsToolsV2-0.1.7/pyproject.toml +0 -19
  217. {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/readme.md +0 -0
@@ -1,169 +1,169 @@
1
- # This file is autogenerated by maturin v1.7.0
2
- # To update, run
3
- #
4
- # maturin generate-ci github
5
- #
6
- name: CI
7
-
8
- on:
9
- push:
10
- branches:
11
- - main
12
- - master
13
- tags:
14
- - '*'
15
- pull_request:
16
- workflow_dispatch:
17
-
18
- permissions:
19
- contents: read
20
-
21
- jobs:
22
- linux:
23
- runs-on: ${{ matrix.platform.runner }}
24
- strategy:
25
- matrix:
26
- platform:
27
- - runner: ubuntu-latest
28
- target: x86_64
29
- - runner: ubuntu-latest
30
- target: x86
31
- - runner: ubuntu-latest
32
- target: aarch64
33
- - runner: ubuntu-latest
34
- target: armv7
35
- - runner: ubuntu-latest
36
- target: s390x
37
- - runner: ubuntu-latest
38
- target: ppc64le
39
- steps:
40
- - uses: actions/checkout@v4
41
- - uses: actions/setup-python@v5
42
- with:
43
- python-version: 3.x
44
- - name: Build wheels
45
- uses: PyO3/maturin-action@v1
46
- with:
47
- target: ${{ matrix.platform.target }}
48
- args: --release --out dist --find-interpreter
49
- sccache: 'true'
50
- manylinux: auto
51
- - name: Upload wheels
52
- uses: actions/upload-artifact@v4
53
- with:
54
- name: wheels-linux-${{ matrix.platform.target }}
55
- path: dist
56
-
57
- musllinux:
58
- runs-on: ${{ matrix.platform.runner }}
59
- strategy:
60
- matrix:
61
- platform:
62
- - runner: ubuntu-latest
63
- target: x86_64
64
- - runner: ubuntu-latest
65
- target: x86
66
- - runner: ubuntu-latest
67
- target: aarch64
68
- - runner: ubuntu-latest
69
- target: armv7
70
- steps:
71
- - uses: actions/checkout@v4
72
- - uses: actions/setup-python@v5
73
- with:
74
- python-version: 3.x
75
- - name: Build wheels
76
- uses: PyO3/maturin-action@v1
77
- with:
78
- target: ${{ matrix.platform.target }}
79
- args: --release --out dist --find-interpreter
80
- sccache: 'true'
81
- manylinux: musllinux_1_2
82
- - name: Upload wheels
83
- uses: actions/upload-artifact@v4
84
- with:
85
- name: wheels-musllinux-${{ matrix.platform.target }}
86
- path: dist
87
-
88
- windows:
89
- runs-on: ${{ matrix.platform.runner }}
90
- strategy:
91
- matrix:
92
- platform:
93
- - runner: windows-latest
94
- target: x64
95
- - runner: windows-latest
96
- target: x86
97
- steps:
98
- - uses: actions/checkout@v4
99
- - uses: actions/setup-python@v5
100
- with:
101
- python-version: 3.x
102
- architecture: ${{ matrix.platform.target }}
103
- - name: Build wheels
104
- uses: PyO3/maturin-action@v1
105
- with:
106
- target: ${{ matrix.platform.target }}
107
- args: --release --out dist --find-interpreter
108
- sccache: 'true'
109
- - name: Upload wheels
110
- uses: actions/upload-artifact@v4
111
- with:
112
- name: wheels-windows-${{ matrix.platform.target }}
113
- path: dist
114
-
115
- macos:
116
- runs-on: ${{ matrix.platform.runner }}
117
- strategy:
118
- matrix:
119
- platform:
120
- - runner: macos-12
121
- target: x86_64
122
- - runner: macos-14
123
- target: aarch64
124
- steps:
125
- - uses: actions/checkout@v4
126
- - uses: actions/setup-python@v5
127
- with:
128
- python-version: 3.x
129
- - name: Build wheels
130
- uses: PyO3/maturin-action@v1
131
- with:
132
- target: ${{ matrix.platform.target }}
133
- args: --release --out dist --find-interpreter
134
- sccache: 'true'
135
- - name: Upload wheels
136
- uses: actions/upload-artifact@v4
137
- with:
138
- name: wheels-macos-${{ matrix.platform.target }}
139
- path: dist
140
-
141
- sdist:
142
- runs-on: ubuntu-latest
143
- steps:
144
- - uses: actions/checkout@v4
145
- - name: Build sdist
146
- uses: PyO3/maturin-action@v1
147
- with:
148
- command: sdist
149
- args: --out dist
150
- - name: Upload sdist
151
- uses: actions/upload-artifact@v4
152
- with:
153
- name: wheels-sdist
154
- path: dist
155
-
156
- release:
157
- name: Release
158
- runs-on: ubuntu-latest
159
- if: "startsWith(github.ref, 'refs/tags/')"
160
- needs: [linux, musllinux, windows, macos, sdist]
161
- steps:
162
- - uses: actions/download-artifact@v4
163
- - name: Publish to PyPI
164
- uses: PyO3/maturin-action@v1
165
- env:
166
- MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
167
- with:
168
- command: upload
169
- args: --non-interactive --skip-existing wheels-*/*
1
+ # This file is autogenerated by maturin v1.7.0
2
+ # To update, run
3
+ #
4
+ # maturin generate-ci github
5
+ #
6
+ name: CI
7
+
8
+ on:
9
+ push:
10
+ branches:
11
+ - main
12
+ - master
13
+ tags:
14
+ - '*'
15
+ pull_request:
16
+ workflow_dispatch:
17
+
18
+ permissions:
19
+ contents: read
20
+
21
+ jobs:
22
+ linux:
23
+ runs-on: ${{ matrix.platform.runner }}
24
+ strategy:
25
+ matrix:
26
+ platform:
27
+ - runner: ubuntu-latest
28
+ target: x86_64
29
+ - runner: ubuntu-latest
30
+ target: x86
31
+ - runner: ubuntu-latest
32
+ target: aarch64
33
+ - runner: ubuntu-latest
34
+ target: armv7
35
+ - runner: ubuntu-latest
36
+ target: s390x
37
+ - runner: ubuntu-latest
38
+ target: ppc64le
39
+ steps:
40
+ - uses: actions/checkout@v4
41
+ - uses: actions/setup-python@v5
42
+ with:
43
+ python-version: 3.x
44
+ - name: Build wheels
45
+ uses: PyO3/maturin-action@v1
46
+ with:
47
+ target: ${{ matrix.platform.target }}
48
+ args: --release --out dist --find-interpreter
49
+ sccache: 'true'
50
+ manylinux: auto
51
+ - name: Upload wheels
52
+ uses: actions/upload-artifact@v4
53
+ with:
54
+ name: wheels-linux-${{ matrix.platform.target }}
55
+ path: dist
56
+
57
+ musllinux:
58
+ runs-on: ${{ matrix.platform.runner }}
59
+ strategy:
60
+ matrix:
61
+ platform:
62
+ - runner: ubuntu-latest
63
+ target: x86_64
64
+ - runner: ubuntu-latest
65
+ target: x86
66
+ - runner: ubuntu-latest
67
+ target: aarch64
68
+ - runner: ubuntu-latest
69
+ target: armv7
70
+ steps:
71
+ - uses: actions/checkout@v4
72
+ - uses: actions/setup-python@v5
73
+ with:
74
+ python-version: 3.x
75
+ - name: Build wheels
76
+ uses: PyO3/maturin-action@v1
77
+ with:
78
+ target: ${{ matrix.platform.target }}
79
+ args: --release --out dist --find-interpreter
80
+ sccache: 'true'
81
+ manylinux: musllinux_1_2
82
+ - name: Upload wheels
83
+ uses: actions/upload-artifact@v4
84
+ with:
85
+ name: wheels-musllinux-${{ matrix.platform.target }}
86
+ path: dist
87
+
88
+ windows:
89
+ runs-on: ${{ matrix.platform.runner }}
90
+ strategy:
91
+ matrix:
92
+ platform:
93
+ - runner: windows-latest
94
+ target: x64
95
+ - runner: windows-latest
96
+ target: x86
97
+ steps:
98
+ - uses: actions/checkout@v4
99
+ - uses: actions/setup-python@v5
100
+ with:
101
+ python-version: 3.x
102
+ architecture: ${{ matrix.platform.target }}
103
+ - name: Build wheels
104
+ uses: PyO3/maturin-action@v1
105
+ with:
106
+ target: ${{ matrix.platform.target }}
107
+ args: --release --out dist --find-interpreter
108
+ sccache: 'true'
109
+ - name: Upload wheels
110
+ uses: actions/upload-artifact@v4
111
+ with:
112
+ name: wheels-windows-${{ matrix.platform.target }}
113
+ path: dist
114
+
115
+ macos:
116
+ runs-on: ${{ matrix.platform.runner }}
117
+ strategy:
118
+ matrix:
119
+ platform:
120
+ - runner: macos-12
121
+ target: x86_64
122
+ - runner: macos-14
123
+ target: aarch64
124
+ steps:
125
+ - uses: actions/checkout@v4
126
+ - uses: actions/setup-python@v5
127
+ with:
128
+ python-version: 3.x
129
+ - name: Build wheels
130
+ uses: PyO3/maturin-action@v1
131
+ with:
132
+ target: ${{ matrix.platform.target }}
133
+ args: --release --out dist --find-interpreter
134
+ sccache: 'true'
135
+ - name: Upload wheels
136
+ uses: actions/upload-artifact@v4
137
+ with:
138
+ name: wheels-macos-${{ matrix.platform.target }}
139
+ path: dist
140
+
141
+ sdist:
142
+ runs-on: ubuntu-latest
143
+ steps:
144
+ - uses: actions/checkout@v4
145
+ - name: Build sdist
146
+ uses: PyO3/maturin-action@v1
147
+ with:
148
+ command: sdist
149
+ args: --out dist
150
+ - name: Upload sdist
151
+ uses: actions/upload-artifact@v4
152
+ with:
153
+ name: wheels-sdist
154
+ path: dist
155
+
156
+ release:
157
+ name: Release
158
+ runs-on: ubuntu-latest
159
+ if: "startsWith(github.ref, 'refs/tags/')"
160
+ needs: [linux, musllinux, windows, macos, sdist]
161
+ steps:
162
+ - uses: actions/download-artifact@v4
163
+ - name: Publish to PyPI
164
+ uses: PyO3/maturin-action@v1
165
+ env:
166
+ MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
167
+ with:
168
+ command: upload
169
+ args: --non-interactive --skip-existing wheels-*/*
@@ -1,72 +1,75 @@
1
- /target
2
-
3
- # Byte-compiled / optimized / DLL files
4
- __pycache__/
5
- .pytest_cache/
6
- *.py[cod]
7
-
8
- # C extensions
9
- *.so
10
-
11
- # Distribution / packaging
12
- .Python
13
- .venv/
14
- env/
15
- bin/
16
- build/
17
- develop-eggs/
18
- dist/
19
- eggs/
20
- lib/
21
- lib64/
22
- parts/
23
- sdist/
24
- var/
25
- include/
26
- man/
27
- venv/
28
- *.egg-info/
29
- .installed.cfg
30
- *.egg
31
-
32
- # Installer logs
33
- pip-log.txt
34
- pip-delete-this-directory.txt
35
- pip-selfcheck.json
36
-
37
- # Unit test / coverage reports
38
- htmlcov/
39
- .tox/
40
- .coverage
41
- .cache
42
- nosetests.xml
43
- coverage.xml
44
-
45
- # Translations
46
- *.mo
47
-
48
- # Mr Developer
49
- .mr.developer.cfg
50
- .project
51
- .pydevproject
52
-
53
- # Rope
54
- .ropeproject
55
-
56
- # Django stuff:
57
- *.log
58
- *.pot
59
-
60
- .DS_Store
61
-
62
- # Sphinx documentation
63
- docs/_build/
64
-
65
- # PyCharm
66
- .idea/
67
-
68
- # VSCode
69
- .vscode/
70
-
71
- # Pyenv
72
- .python-version
1
+ /target
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ .pytest_cache/
6
+ *.py[cod]
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ .venv/
14
+ env/
15
+ bin/
16
+ build/
17
+ develop-eggs/
18
+ dist/
19
+ eggs/
20
+ lib/
21
+ lib64/
22
+ parts/
23
+ sdist/
24
+ var/
25
+ include/
26
+ man/
27
+ venv/
28
+ *.egg-info/
29
+ .installed.cfg
30
+ *.egg
31
+
32
+ # Installer logs
33
+ pip-log.txt
34
+ pip-delete-this-directory.txt
35
+ pip-selfcheck.json
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .coverage
41
+ .cache
42
+ nosetests.xml
43
+ coverage.xml
44
+
45
+ # Translations
46
+ *.mo
47
+
48
+ # Mr Developer
49
+ .mr.developer.cfg
50
+ .project
51
+ .pydevproject
52
+
53
+ # Rope
54
+ .ropeproject
55
+
56
+ # Django stuff:
57
+ *.log
58
+ *.pot
59
+
60
+ .DS_Store
61
+
62
+ # Sphinx documentation
63
+ docs/_build/
64
+
65
+ # PyCharm
66
+ .idea/
67
+
68
+ # VSCode
69
+ .vscode/
70
+
71
+ # Pyenv
72
+ .python-version
73
+
74
+ BinaryOptionsToolsV2/example_usage.py
75
+ BinaryOptionsToolsV2/test_config.py
@@ -1,11 +1,10 @@
1
-
2
- from .BinaryOptionsToolsV2 import * # noqa: F403
3
-
4
- # optional: include the documentation from the Rust module
5
- from .BinaryOptionsToolsV2 import __doc__ # noqa: F401
6
-
7
- from .pocketoption import __all__ as __pocket_all__
8
- from . import tracing
9
- from . import validator
10
-
11
- __all__ = __pocket_all__ + ['tracing', 'validator']
1
+ from .BinaryOptionsToolsV2 import * # noqa: F403
2
+
3
+ # optional: include the documentation from the Rust module
4
+ from .BinaryOptionsToolsV2 import __doc__ # noqa: F401
5
+
6
+ from .pocketoption import __all__ as __pocket_all__
7
+ from . import tracing
8
+ from . import validator
9
+
10
+ __all__ = __pocket_all__ + ["tracing", "validator"]