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.
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/.github/workflows/CI.yml +169 -169
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/.gitignore +75 -72
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2}/BinaryOptionsToolsV2/__init__.py +10 -11
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/BinaryOptionsToolsV2/config.py +193 -0
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/__init__.py +19 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/asyncronous.py +653 -506
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/syncronous.py +479 -395
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/tracing.py +148 -142
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/BinaryOptionsToolsV2/validator.py +278 -268
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/CI.yml +345 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/Cargo.lock +492 -327
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/Cargo.toml +42 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/Dockerfile +37 -37
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/LICENSE +96 -0
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/PYTHON_API_REFERENCE.md +727 -0
- BinaryOptionsToolsV2-0.1.7/PKG-INFO → binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/Readme.md +221 -183
- {BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/__init__.py +10 -11
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/candles_eurusd_otc.csv +1637 -1637
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/config.py +193 -0
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/pocketoption/__init__.py +19 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/pocketoption/asyncronous.py +653 -506
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/pocketoption/syncronous.py +479 -395
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/config.rs +60 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/error.rs +45 -32
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/lib.rs +35 -32
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/logs.rs +323 -308
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/pocketoption.rs +782 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/runtime.rs +18 -18
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/src/stream.rs +36 -36
- binaryoptionstoolsv2-0.2.1/BinaryOptionsToolsV2/src/validator.rs +225 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tests/test.py +36 -34
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tests/test_sync.py +17 -14
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/tracing.py +148 -142
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/uv.lock +7 -7
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/BinaryOptionsToolsV2/validator.py +278 -268
- binaryoptionstoolsv2-0.2.1/PKG-INFO +256 -0
- {BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2 → binaryoptionstoolsv2-0.2.1}/Readme.md +221 -171
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/.gitignore +4 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/Cargo.lock +579 -360
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/Cargo.toml +47 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/Readme.md +89 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/errors.log +535 -507
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/expert_options_regions.json +37 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/image.png +0 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/mkds/README.md +96 -0
- 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
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/error.rs +29 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/action.rs +98 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/client.rs +145 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/connect.rs +89 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/error.rs +21 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/mod.rs +10 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/keep_alive.rs +76 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/mod.rs +29 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/modules/profile.rs +370 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/regions.rs +5 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/state.rs +122 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/expertoptions/types.rs +67 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/lib.rs +83 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/candle.rs +490 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/connect.rs +76 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/error.rs +57 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/mod.rs +15 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/assets.rs +103 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/balance.rs +78 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/deals.rs +328 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/get_candles.rs +320 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/keep_alive.rs +127 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/mod.rs +53 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/raw.rs +341 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/server_time.rs +57 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/subscriptions.rs +799 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/modules/trades.rs +213 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/pocket_client.rs +625 -0
- {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
- {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
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/state.rs +325 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/types.rs +585 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/pocketoption/utils.rs +136 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/reimports.rs +1 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/traits.rs +10 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/utils/mod.rs +61 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/utils/serialize.rs +19 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/src/validator.rs +117 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/assets.txt +176 -176
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/assets2.json +9633 -9633
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/assets3.json +5925 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/data.json +5674 -5674
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/expert_multiple_actions.json +6879 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/fail_open_pending_order.json +20 -20
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/fail_open_pending_order2.json +20 -20
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/load_history_period.json +1357 -1357
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/load_history_period2.json +4161 -4161
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/pocketoption_client_tests.rs +89 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/profile.json +47 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/raw_module_tests.rs +223 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/success_close_order.json +28 -0
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/success_open_order.json +23 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/success_open_pending_order.json +15 -15
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/success_update_pending.json +61 -61
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test.json +6 -6
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test_close_order.txt +54 -54
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/test_demo.json +6 -6
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_close_order.json +120 -120
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_closed_deals.txt +582 -582
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_history_new.json +1265 -1265
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/update_history_new_fast.json +1637 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/binary_options_tools/tests/update_opened_deals.txt +98 -98
- binaryoptionstoolsv2-0.2.1/crates/binary_options_tools/tests/validator_tests.rs +142 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/.gitignore +2 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/.vscode/mcp.json +13 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/Cargo.toml +25 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/README.md +252 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/diagrams/architecture.txt +52 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/diagrams/diagram.txt +41 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/docs/testing-framework.md +584 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/basic_connector_usage.rs +72 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/echo_client.rs +353 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/middleware_example.rs +246 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/examples/testing_echo_client.rs +273 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/builder.rs +444 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/callback.rs +51 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/client.rs +537 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/connector.rs +52 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/error.rs +49 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/lib.rs +32 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/message.rs +1 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/middleware.rs +499 -0
- {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/reimports.rs +6 -4
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/signals.rs +45 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/statistics.rs +822 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/testing.rs +623 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/traits.rs +213 -0
- {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/mod.rs +3 -2
- binaryoptionstoolsv2-0.2.1/crates/core-pre/src/utils/stream.rs +115 -0
- {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/time.rs +20 -19
- {BinaryOptionsToolsV2-0.1.7/crates/core → binaryoptionstoolsv2-0.2.1/crates/core-pre}/src/utils/tracing.rs +116 -109
- binaryoptionstoolsv2-0.2.1/crates/core-pre/target/.rustc_info.json +1 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/target/package/binary-options-tools-core-pre-0.1.1.crate +0 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/target/rust-analyzer/metadata/sysroot/Cargo.lock +503 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/tests/middleware_tests.rs +169 -0
- binaryoptionstoolsv2-0.2.1/crates/core-pre/tests/testing_wrapper_tests.rs +197 -0
- binaryoptionstoolsv2-0.2.1/crates/macros/.gitignore +2 -0
- binaryoptionstoolsv2-0.2.1/crates/macros/ActionImpl_README.md +132 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/Cargo.lock +36 -161
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/Cargo.toml +10 -5
- binaryoptionstoolsv2-0.2.1/crates/macros/examples/action_example.rs +49 -0
- binaryoptionstoolsv2-0.2.1/crates/macros/src/action.rs +87 -0
- binaryoptionstoolsv2-0.2.1/crates/macros/src/config.rs +366 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/deserialize.rs +26 -26
- binaryoptionstoolsv2-0.2.1/crates/macros/src/impls/config_impl.rs +7 -0
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/impls/mod.rs +1 -1
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/lib.rs +75 -60
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/region.rs +184 -152
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/serialize.rs +21 -21
- {BinaryOptionsToolsV2-0.1.7 → binaryoptionstoolsv2-0.2.1}/crates/macros/src/timeout.rs +158 -158
- binaryoptionstoolsv2-0.2.1/pyproject.toml +47 -0
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/BinaryOptionsToolsV2/config.py +0 -122
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/Cargo.toml +0 -31
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/config.py +0 -122
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/pocketoption/__init__.py +0 -13
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/config.rs +0 -63
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/pocketoption.rs +0 -468
- BinaryOptionsToolsV2-0.1.7/BinaryOptionsToolsV2/src/validator.rs +0 -193
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/.gitignore +0 -2
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/Cargo.toml +0 -37
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/README.md +0 -22
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/Readme.md +0 -22
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/lib.rs +0 -53
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/error.rs +0 -76
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/mod.rs +0 -9
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/basic.rs +0 -46
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/message.rs +0 -470
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/parser/mod.rs +0 -2
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/pocket_client.rs +0 -1259
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/base.rs +0 -63
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/callback.rs +0 -91
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/data.rs +0 -253
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/info.rs +0 -62
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/mod.rs +0 -7
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/order.rs +0 -309
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/success.rs +0 -21
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/types/update.rs +0 -379
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/basic.rs +0 -22
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/connect.rs +0 -49
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/location.rs +0 -35
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/utils/mod.rs +0 -3
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/validators.rs +0 -55
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/connect.rs +0 -115
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/listener.rs +0 -134
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/mod.rs +0 -7
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/pocketoption/ws/stream.rs +0 -227
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/src/reimports.rs +0 -5
- BinaryOptionsToolsV2-0.1.7/crates/binary_options_tools/tests/success_open_order.json +0 -23
- BinaryOptionsToolsV2-0.1.7/crates/core/.gitignore +0 -1
- BinaryOptionsToolsV2-0.1.7/crates/core/Cargo.lock +0 -2285
- BinaryOptionsToolsV2-0.1.7/crates/core/Cargo.toml +0 -33
- BinaryOptionsToolsV2-0.1.7/crates/core/README.md +0 -32
- BinaryOptionsToolsV2-0.1.7/crates/core/errors.log +0 -0
- BinaryOptionsToolsV2-0.1.7/crates/core/readme.md +0 -32
- BinaryOptionsToolsV2-0.1.7/crates/core/src/constants.rs +0 -7
- BinaryOptionsToolsV2-0.1.7/crates/core/src/error.rs +0 -71
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/client.rs +0 -669
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/config.rs +0 -45
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/mod.rs +0 -8
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/send.rs +0 -319
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/stream.rs +0 -115
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/traits.rs +0 -113
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/types.rs +0 -164
- BinaryOptionsToolsV2-0.1.7/crates/core/src/general/validate.rs +0 -21
- BinaryOptionsToolsV2-0.1.7/crates/core/src/lib.rs +0 -9
- BinaryOptionsToolsV2-0.1.7/crates/macros/.gitignore +0 -1
- BinaryOptionsToolsV2-0.1.7/crates/macros/README.md +0 -1
- BinaryOptionsToolsV2-0.1.7/crates/macros/src/config.rs +0 -225
- BinaryOptionsToolsV2-0.1.7/pyproject.toml +0 -19
- {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
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
from .
|
|
8
|
-
from . import
|
|
9
|
-
|
|
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"]
|