bitmart 0.0.15__tar.gz → 0.0.17__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.

Potentially problematic release.


This version of bitmart might be problematic. Click here for more details.

Files changed (291) hide show
  1. bitmart-0.0.17/PKG-INFO +306 -0
  2. bitmart-0.0.17/README.md +287 -0
  3. {bitmart-0.0.15 → bitmart-0.0.17}/pyproject.toml +3 -2
  4. bitmart-0.0.15/PKG-INFO +0 -79
  5. bitmart-0.0.15/README.md +0 -60
  6. {bitmart-0.0.15 → bitmart-0.0.17}/.gitignore +0 -0
  7. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/__init__.py +0 -0
  8. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/__init__.py +0 -0
  9. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/abstract/bitmart.py +0 -0
  10. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/__init__.py +0 -0
  11. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/__init__.py +0 -0
  12. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/exchange.py +0 -0
  13. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/throttler.py +0 -0
  14. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/__init__.py +0 -0
  15. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/aiohttp_client.py +0 -0
  16. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/cache.py +0 -0
  17. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/client.py +0 -0
  18. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/fast_client.py +0 -0
  19. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/functions.py +0 -0
  20. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/future.py +0 -0
  21. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/order_book.py +0 -0
  22. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/base/ws/order_book_side.py +0 -0
  23. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/async_support/bitmart.py +0 -0
  24. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/__init__.py +0 -0
  25. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/decimal_to_precision.py +0 -0
  26. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/errors.py +0 -0
  27. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/exchange.py +0 -0
  28. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/precise.py +0 -0
  29. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/base/types.py +0 -0
  30. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/bitmart.py +0 -0
  31. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/pro/__init__.py +0 -0
  32. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/pro/bitmart.py +0 -0
  33. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/README.md +0 -0
  34. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/__init__.py +0 -0
  35. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/__init__.py +0 -0
  36. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/_version.py +0 -0
  37. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/curves.py +0 -0
  38. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/der.py +0 -0
  39. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/ecdsa.py +0 -0
  40. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/ellipticcurve.py +0 -0
  41. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/keys.py +0 -0
  42. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/numbertheory.py +0 -0
  43. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/rfc6979.py +0 -0
  44. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ecdsa/util.py +0 -0
  45. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/__init__.py +0 -0
  46. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/__init__.py +0 -0
  47. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/abi.py +0 -0
  48. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/base.py +0 -0
  49. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/codec.py +0 -0
  50. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/constants.py +0 -0
  51. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/decoding.py +0 -0
  52. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/encoding.py +0 -0
  53. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/exceptions.py +0 -0
  54. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/grammar.py +0 -0
  55. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/packed.py +0 -0
  56. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  57. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/registry.py +0 -0
  58. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +0 -0
  59. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +0 -0
  60. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  61. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +0 -0
  62. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/padding.py +0 -0
  63. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/abi/utils/string.py +0 -0
  64. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/__init__.py +0 -0
  65. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +0 -0
  66. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +0 -0
  67. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +0 -0
  68. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/messages.py +0 -0
  69. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  70. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +0 -0
  71. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +0 -0
  72. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/main.py +0 -0
  73. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  74. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/__init__.py +0 -0
  75. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/abi.py +0 -0
  76. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/bls.py +0 -0
  77. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/discovery.py +0 -0
  78. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/encoding.py +0 -0
  79. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/enums.py +0 -0
  80. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/ethpm.py +0 -0
  81. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/evm.py +0 -0
  82. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/networks.py +0 -0
  83. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  84. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/__init__.py +0 -0
  85. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/abi.py +0 -0
  86. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/address.py +0 -0
  87. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/applicators.py +0 -0
  88. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/conversions.py +0 -0
  89. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/currency.py +0 -0
  90. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +0 -0
  91. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/debug.py +0 -0
  92. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/decorators.py +0 -0
  93. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/encoding.py +0 -0
  94. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/exceptions.py +0 -0
  95. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/functional.py +0 -0
  96. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +0 -0
  97. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/humanize.py +0 -0
  98. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/logging.py +0 -0
  99. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/module_loading.py +0 -0
  100. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/numeric.py +0 -0
  101. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  102. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/toolz.py +0 -0
  103. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/types.py +0 -0
  104. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +0 -0
  105. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/typing/misc.py +0 -0
  106. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/ethereum/utils/units.py +0 -0
  107. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/keccak/__init__.py +0 -0
  108. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/keccak/keccak.py +0 -0
  109. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/__init__.py +0 -0
  110. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +0 -0
  111. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +0 -0
  112. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/ast_utils.py +0 -0
  113. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/common.py +0 -0
  114. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/exceptions.py +0 -0
  115. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammar.py +0 -0
  116. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
  117. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammars/common.lark +0 -0
  118. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammars/lark.lark +0 -0
  119. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammars/python.lark +0 -0
  120. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/grammars/unicode.lark +0 -0
  121. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/indenter.py +0 -0
  122. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/lark.py +0 -0
  123. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/lexer.py +0 -0
  124. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/load_grammar.py +0 -0
  125. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parse_tree_builder.py +0 -0
  126. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parser_frontends.py +0 -0
  127. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
  128. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/cyk.py +0 -0
  129. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley.py +0 -0
  130. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley_common.py +0 -0
  131. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/earley_forest.py +0 -0
  132. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +0 -0
  133. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +0 -0
  134. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +0 -0
  135. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_parser.py +0 -0
  136. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +0 -0
  137. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/parsers/xearley.py +0 -0
  138. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/py.typed +0 -0
  139. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/reconstruct.py +0 -0
  140. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tools/__init__.py +0 -0
  141. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tools/nearley.py +0 -0
  142. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tools/serialize.py +0 -0
  143. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tools/standalone.py +0 -0
  144. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tree.py +0 -0
  145. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tree_matcher.py +0 -0
  146. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/tree_templates.py +0 -0
  147. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/utils.py +0 -0
  148. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/lark/visitors.py +0 -0
  149. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/__init__.py +0 -0
  150. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/base.py +0 -0
  151. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/class_registry.py +0 -0
  152. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/decorators.py +0 -0
  153. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/error_store.py +0 -0
  154. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/exceptions.py +0 -0
  155. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/fields.py +0 -0
  156. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/orderedset.py +0 -0
  157. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  158. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/schema.py +0 -0
  159. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/types.py +0 -0
  160. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/utils.py +0 -0
  161. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/validate.py +0 -0
  162. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow/warnings.py +0 -0
  163. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +0 -0
  164. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +0 -0
  165. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +0 -0
  166. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +0 -0
  167. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  168. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/typing.py +0 -0
  169. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +0 -0
  170. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +0 -0
  171. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +0 -0
  172. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  173. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/__init__.py +0 -0
  174. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +0 -0
  175. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/_packer.pyx +0 -0
  176. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/_unpacker.pyx +0 -0
  177. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/buff_converter.h +0 -0
  178. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/exceptions.py +0 -0
  179. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/ext.py +0 -0
  180. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/fallback.py +0 -0
  181. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/pack.h +0 -0
  182. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/pack_template.h +0 -0
  183. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/sysdep.h +0 -0
  184. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/unpack.h +0 -0
  185. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/unpack_define.h +0 -0
  186. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/msgpack/unpack_template.h +0 -0
  187. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/__init__.py +0 -0
  188. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/exceptions.py +0 -0
  189. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/expressions.py +0 -0
  190. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/grammar.py +0 -0
  191. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/nodes.py +0 -0
  192. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/parsimonious/utils.py +0 -0
  193. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/__init__.py +0 -0
  194. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/__init__.py +0 -0
  195. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/model.py +0 -0
  196. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/parser.py +0 -0
  197. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/schemas.py +0 -0
  198. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v0/shape.py +0 -0
  199. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/__init__.py +0 -0
  200. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +0 -0
  201. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/model.py +0 -0
  202. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/parser.py +0 -0
  203. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +0 -0
  204. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/schemas.py +0 -0
  205. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v1/shape.py +0 -0
  206. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/__init__.py +0 -0
  207. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/model.py +0 -0
  208. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/parser.py +0 -0
  209. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +0 -0
  210. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/schemas.py +0 -0
  211. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/abi/v2/shape.py +0 -0
  212. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
  213. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/data_types.py +0 -0
  214. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
  215. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +0 -0
  216. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +0 -0
  217. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +0 -0
  218. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/felt.py +0 -0
  219. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/type_parser.py +0 -0
  220. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
  221. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +0 -0
  222. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
  223. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +0 -0
  224. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/ccxt_utils.py +0 -0
  225. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/common.py +0 -0
  226. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/constants.py +0 -0
  227. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
  228. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/address.py +0 -0
  229. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +0 -0
  230. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/selector.py +0 -0
  231. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/storage.py +0 -0
  232. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/hash/utils.py +0 -0
  233. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
  234. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/models/typed_data.py +0 -0
  235. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/__init__.py +0 -0
  236. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +0 -0
  237. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/_context.py +0 -0
  238. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +0 -0
  239. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +0 -0
  240. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +0 -0
  241. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +0 -0
  242. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +0 -0
  243. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +0 -0
  244. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +0 -0
  245. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +0 -0
  246. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +0 -0
  247. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +0 -0
  248. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +0 -0
  249. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +0 -0
  250. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +0 -0
  251. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +0 -0
  252. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +0 -0
  253. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +0 -0
  254. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +0 -0
  255. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/errors.py +0 -0
  256. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/factory.py +0 -0
  257. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +0 -0
  258. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +0 -0
  259. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  260. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +0 -0
  261. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/utils/iterable.py +0 -0
  262. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/utils/schema.py +0 -0
  263. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starknet/utils/typed_data.py +0 -0
  264. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/__init__.py +0 -0
  265. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  266. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +0 -0
  267. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/crypto/math_utils.py +0 -0
  268. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/crypto/signature.py +0 -0
  269. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/starkware/crypto/utils.py +0 -0
  270. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/__init__.py +0 -0
  271. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  272. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/core/intfunc.py +0 -0
  273. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  274. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/external/gmpy.py +0 -0
  275. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/external/importtools.py +0 -0
  276. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/external/ntheory.py +0 -0
  277. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/sympy/external/pythonmpq.py +0 -0
  278. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/__init__.py +0 -0
  279. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/_signatures.py +0 -0
  280. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/_version.py +0 -0
  281. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/compatibility.py +0 -0
  282. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/curried/__init__.py +0 -0
  283. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/curried/exceptions.py +0 -0
  284. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/curried/operator.py +0 -0
  285. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/dicttoolz.py +0 -0
  286. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/functoolz.py +0 -0
  287. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/itertoolz.py +0 -0
  288. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/recipes.py +0 -0
  289. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/toolz/utils.py +0 -0
  290. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  291. {bitmart-0.0.15 → bitmart-0.0.17}/src/bitmart/ccxt/static_dependencies/typing_inspect/typing_inspect.py +0 -0
@@ -0,0 +1,306 @@
1
+ Metadata-Version: 2.4
2
+ Name: bitmart
3
+ Version: 0.0.17
4
+ Summary: bitmart crypto exchange api client
5
+ Project-URL: Homepage, https://github.com/ccxt/ccxt
6
+ Project-URL: Issues, https://github.com/ccxt/ccxt
7
+ Author-email: CCXT <info@ccxt.trade>
8
+ License: MIT
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Intended Audience :: Financial and Insurance Industry
11
+ Classifier: Intended Audience :: Information Technology
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Operating System :: OS Independent
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Topic :: Office/Business :: Financial :: Investment
16
+ Classifier: Topic :: Software Development :: Build Tools
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+
20
+ # bitmart-python
21
+ Python SDK (sync and async) for Bitmart cryptocurrency exchange with Rest and WS capabilities.
22
+
23
+ You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/bitmart)
24
+ You can check Bitmart's docs here: [Docs](https://ccxt.com)
25
+
26
+
27
+ ## Installation
28
+
29
+ ```
30
+ pip install __PYTHON_PACKAGE_NAME__
31
+ ```
32
+
33
+ ## Usage
34
+
35
+ ### Sync
36
+
37
+ ```Python
38
+ from bitmart import BitmartSync
39
+
40
+ def main():
41
+ instance = BitmartSync({})
42
+ ob = instance.fetch_order_book("BTC/USDC")
43
+ print(ob)
44
+ #
45
+ # balance = instance.fetch_balance()
46
+ # order = instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
47
+ ```
48
+
49
+ ### Async
50
+
51
+ ```Python
52
+ import asyncio
53
+ from bitmart import BitmartAsync
54
+
55
+ async def main():
56
+ instance = BitmartAsync({})
57
+ ob = await instance.fetch_order_book("BTC/USDC")
58
+ print(ob)
59
+ #
60
+ # balance = await instance.fetch_balance()
61
+ # order = await instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
62
+
63
+ asyncio.run(main())
64
+ ```
65
+
66
+
67
+
68
+ ### Websockets
69
+
70
+ ```Python
71
+ from bitmart import BitmartWs
72
+
73
+ async def main():
74
+ instance = BitmartWs({})
75
+ while True:
76
+ ob = await instance.watch_order_book("BTC/USDC")
77
+ print(ob)
78
+ # orders = await instance.watch_orders("BTC/USDC")
79
+ ```
80
+
81
+
82
+
83
+
84
+
85
+ #### Raw call
86
+
87
+ You can also construct custom requests to available "implicit" endpoints
88
+
89
+ ```Python
90
+ request = {
91
+ 'type': 'candleSnapshot',
92
+ 'req': {
93
+ 'coin': coin,
94
+ 'interval': tf,
95
+ 'startTime': since,
96
+ 'endTime': until,
97
+ },
98
+ }
99
+ response = await instance.public_post_info(request)
100
+ ```
101
+
102
+
103
+
104
+
105
+ ## Available methods
106
+
107
+ ### REST Unified
108
+
109
+ - `create_market_buy_order_with_cost(self, symbol: str, cost: float, params={})`
110
+ - `create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
111
+ - `create_orders(self, orders: List[OrderRequest], params={})`
112
+ - `create_spot_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
113
+ - `create_swap_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
114
+ - `fetch_balance(self, params={})`
115
+ - `fetch_borrow_interest(self, code: Str = None, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
116
+ - `fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
117
+ - `fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
118
+ - `fetch_contract_markets(self, params={})`
119
+ - `fetch_currencies(self, params={})`
120
+ - `fetch_deposit_address(self, code: str, params={})`
121
+ - `fetch_deposit_withdraw_fee(self, code: str, params={})`
122
+ - `fetch_deposit(self, id: str, code: Str = None, params={})`
123
+ - `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
124
+ - `fetch_funding_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
125
+ - `fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
126
+ - `fetch_funding_rate(self, symbol: str, params={})`
127
+ - `fetch_isolated_borrow_rate(self, symbol: str, params={})`
128
+ - `fetch_isolated_borrow_rates(self, params={})`
129
+ - `fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
130
+ - `fetch_markets(self, params={})`
131
+ - `fetch_my_liquidations(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
132
+ - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
133
+ - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
134
+ - `fetch_open_interest(self, symbol: str, params={})`
135
+ - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
136
+ - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
137
+ - `fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
138
+ - `fetch_order(self, id: str, symbol: Str = None, params={})`
139
+ - `fetch_orders_by_status(self, status, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
140
+ - `fetch_position(self, symbol: str, params={})`
141
+ - `fetch_positions(self, symbols: Strings = None, params={})`
142
+ - `fetch_spot_markets(self, params={})`
143
+ - `fetch_status(self, params={})`
144
+ - `fetch_ticker(self, symbol: str, params={})`
145
+ - `fetch_tickers(self, symbols: Strings = None, params={})`
146
+ - `fetch_time(self, params={})`
147
+ - `fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
148
+ - `fetch_trading_fee(self, symbol: str, params={})`
149
+ - `fetch_transaction_fee(self, code: str, params={})`
150
+ - `fetch_transactions_by_type(self, type, code: Str = None, since: Int = None, limit: Int = None, params={})`
151
+ - `fetch_transactions_request(self, flowType: Int = None, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
152
+ - `fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
153
+ - `fetch_withdraw_addresses(self, code: str, note=None, networkCode=None, params={})`
154
+ - `fetch_withdrawal(self, id: str, code: Str = None, params={})`
155
+ - `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
156
+ - `borrow_isolated_margin(self, symbol: str, code: str, amount: float, params={})`
157
+ - `cancel_all_orders(self, symbol: Str = None, params={})`
158
+ - `cancel_order(self, id: str, symbol: Str = None, params={})`
159
+ - `cancel_orders(self, ids: List[str], symbol: Str = None, params={})`
160
+ - `custom_parse_balance(self, response, marketType)`
161
+ - `describe(self)`
162
+ - `edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={})`
163
+ - `get_currency_id_from_code_and_network(self, currencyCode: Str, networkCode: Str)`
164
+ - `nonce(self)`
165
+ - `repay_isolated_margin(self, symbol: str, code: str, amount, params={})`
166
+ - `set_leverage(self, leverage: Int, symbol: Str = None, params={})`
167
+ - `transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={})`
168
+ - `withdraw(self, code: str, amount: float, address: str, tag=None, params={})`
169
+
170
+ ### REST Raw
171
+
172
+ - `public_get_system_time(request)`
173
+ - `public_get_system_service(request)`
174
+ - `public_get_spot_v1_currencies(request)`
175
+ - `public_get_spot_v1_symbols(request)`
176
+ - `public_get_spot_v1_symbols_details(request)`
177
+ - `public_get_spot_quotation_v3_tickers(request)`
178
+ - `public_get_spot_quotation_v3_ticker(request)`
179
+ - `public_get_spot_quotation_v3_lite_klines(request)`
180
+ - `public_get_spot_quotation_v3_klines(request)`
181
+ - `public_get_spot_quotation_v3_books(request)`
182
+ - `public_get_spot_quotation_v3_trades(request)`
183
+ - `public_get_spot_v1_ticker(request)`
184
+ - `public_get_spot_v2_ticker(request)`
185
+ - `public_get_spot_v1_ticker_detail(request)`
186
+ - `public_get_spot_v1_steps(request)`
187
+ - `public_get_spot_v1_symbols_kline(request)`
188
+ - `public_get_spot_v1_symbols_book(request)`
189
+ - `public_get_spot_v1_symbols_trades(request)`
190
+ - `public_get_contract_v1_tickers(request)`
191
+ - `public_get_contract_public_details(request)`
192
+ - `public_get_contract_public_depth(request)`
193
+ - `public_get_contract_public_open_interest(request)`
194
+ - `public_get_contract_public_funding_rate(request)`
195
+ - `public_get_contract_public_funding_rate_history(request)`
196
+ - `public_get_contract_public_kline(request)`
197
+ - `public_get_account_v1_currencies(request)`
198
+ - `public_get_contract_public_markprice_kline(request)`
199
+ - `private_get_account_sub_account_v1_transfer_list(request)`
200
+ - `private_get_account_sub_account_v1_transfer_history(request)`
201
+ - `private_get_account_sub_account_main_v1_wallet(request)`
202
+ - `private_get_account_sub_account_main_v1_subaccount_list(request)`
203
+ - `private_get_account_contract_sub_account_main_v1_wallet(request)`
204
+ - `private_get_account_contract_sub_account_main_v1_transfer_list(request)`
205
+ - `private_get_account_contract_sub_account_v1_transfer_history(request)`
206
+ - `private_get_account_v1_wallet(request)`
207
+ - `private_get_account_v1_currencies(request)`
208
+ - `private_get_spot_v1_wallet(request)`
209
+ - `private_get_account_v1_deposit_address(request)`
210
+ - `private_get_account_v1_withdraw_charge(request)`
211
+ - `private_get_account_v2_deposit_withdraw_history(request)`
212
+ - `private_get_account_v1_deposit_withdraw_detail(request)`
213
+ - `private_get_account_v1_withdraw_address_list(request)`
214
+ - `private_get_spot_v1_order_detail(request)`
215
+ - `private_get_spot_v2_orders(request)`
216
+ - `private_get_spot_v1_trades(request)`
217
+ - `private_get_spot_v2_trades(request)`
218
+ - `private_get_spot_v3_orders(request)`
219
+ - `private_get_spot_v2_order_detail(request)`
220
+ - `private_get_spot_v1_margin_isolated_borrow_record(request)`
221
+ - `private_get_spot_v1_margin_isolated_repay_record(request)`
222
+ - `private_get_spot_v1_margin_isolated_pairs(request)`
223
+ - `private_get_spot_v1_margin_isolated_account(request)`
224
+ - `private_get_spot_v1_trade_fee(request)`
225
+ - `private_get_spot_v1_user_fee(request)`
226
+ - `private_get_spot_v1_broker_rebate(request)`
227
+ - `private_get_contract_private_assets_detail(request)`
228
+ - `private_get_contract_private_order(request)`
229
+ - `private_get_contract_private_order_history(request)`
230
+ - `private_get_contract_private_position(request)`
231
+ - `private_get_contract_private_get_open_orders(request)`
232
+ - `private_get_contract_private_current_plan_order(request)`
233
+ - `private_get_contract_private_trades(request)`
234
+ - `private_get_contract_private_position_risk(request)`
235
+ - `private_get_contract_private_affilate_rebate_list(request)`
236
+ - `private_get_contract_private_affilate_trade_list(request)`
237
+ - `private_get_contract_private_transaction_history(request)`
238
+ - `private_post_account_sub_account_main_v1_sub_to_main(request)`
239
+ - `private_post_account_sub_account_sub_v1_sub_to_main(request)`
240
+ - `private_post_account_sub_account_main_v1_main_to_sub(request)`
241
+ - `private_post_account_sub_account_sub_v1_sub_to_sub(request)`
242
+ - `private_post_account_sub_account_main_v1_sub_to_sub(request)`
243
+ - `private_post_account_contract_sub_account_main_v1_sub_to_main(request)`
244
+ - `private_post_account_contract_sub_account_main_v1_main_to_sub(request)`
245
+ - `private_post_account_contract_sub_account_sub_v1_sub_to_main(request)`
246
+ - `private_post_account_v1_withdraw_apply(request)`
247
+ - `private_post_spot_v1_submit_order(request)`
248
+ - `private_post_spot_v1_batch_orders(request)`
249
+ - `private_post_spot_v2_cancel_order(request)`
250
+ - `private_post_spot_v1_cancel_orders(request)`
251
+ - `private_post_spot_v4_query_order(request)`
252
+ - `private_post_spot_v4_query_client_order(request)`
253
+ - `private_post_spot_v4_query_open_orders(request)`
254
+ - `private_post_spot_v4_query_history_orders(request)`
255
+ - `private_post_spot_v4_query_trades(request)`
256
+ - `private_post_spot_v4_query_order_trades(request)`
257
+ - `private_post_spot_v4_cancel_orders(request)`
258
+ - `private_post_spot_v4_cancel_all(request)`
259
+ - `private_post_spot_v4_batch_orders(request)`
260
+ - `private_post_spot_v3_cancel_order(request)`
261
+ - `private_post_spot_v2_batch_orders(request)`
262
+ - `private_post_spot_v2_submit_order(request)`
263
+ - `private_post_spot_v1_margin_submit_order(request)`
264
+ - `private_post_spot_v1_margin_isolated_borrow(request)`
265
+ - `private_post_spot_v1_margin_isolated_repay(request)`
266
+ - `private_post_spot_v1_margin_isolated_transfer(request)`
267
+ - `private_post_account_v1_transfer_contract_list(request)`
268
+ - `private_post_account_v1_transfer_contract(request)`
269
+ - `private_post_contract_private_submit_order(request)`
270
+ - `private_post_contract_private_cancel_order(request)`
271
+ - `private_post_contract_private_cancel_orders(request)`
272
+ - `private_post_contract_private_submit_plan_order(request)`
273
+ - `private_post_contract_private_cancel_plan_order(request)`
274
+ - `private_post_contract_private_submit_leverage(request)`
275
+ - `private_post_contract_private_submit_tp_sl_order(request)`
276
+ - `private_post_contract_private_modify_plan_order(request)`
277
+ - `private_post_contract_private_modify_preset_plan_order(request)`
278
+ - `private_post_contract_private_modify_tp_sl_order(request)`
279
+ - `private_post_contract_private_submit_trail_order(request)`
280
+ - `private_post_contract_private_cancel_trail_order(request)`
281
+
282
+ ### WS Unified
283
+
284
+ - `describe(self)`
285
+ - `subscribe(self, channel, symbol, type, params={})`
286
+ - `subscribe_multiple(self, channel: str, type: str, symbols: Strings = None, params={})`
287
+ - `watch_balance(self, params={})`
288
+ - `set_balance_cache(self, client: Client, type, subscribeHash)`
289
+ - `load_balance_snapshot(self, client, messageHash, type)`
290
+ - `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
291
+ - `watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={})`
292
+ - `get_params_for_multiple_sub(self, methodName: str, symbols: List[str], limit: Int = None, params={})`
293
+ - `watch_ticker(self, symbol: str, params={})`
294
+ - `watch_tickers(self, symbols: Strings = None, params={})`
295
+ - `watch_bids_asks(self, symbols: Strings = None, params={})`
296
+ - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
297
+ - `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
298
+ - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
299
+ - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
300
+ - `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`
301
+ - `authenticate(self, type, params={})`
302
+
303
+ ## Contribution
304
+ - Give us a star :star:
305
+ - Fork and Clone! Awesome
306
+ - Select existing issues or create a new issue.
@@ -0,0 +1,287 @@
1
+ # bitmart-python
2
+ Python SDK (sync and async) for Bitmart cryptocurrency exchange with Rest and WS capabilities.
3
+
4
+ You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/bitmart)
5
+ You can check Bitmart's docs here: [Docs](https://ccxt.com)
6
+
7
+
8
+ ## Installation
9
+
10
+ ```
11
+ pip install __PYTHON_PACKAGE_NAME__
12
+ ```
13
+
14
+ ## Usage
15
+
16
+ ### Sync
17
+
18
+ ```Python
19
+ from bitmart import BitmartSync
20
+
21
+ def main():
22
+ instance = BitmartSync({})
23
+ ob = instance.fetch_order_book("BTC/USDC")
24
+ print(ob)
25
+ #
26
+ # balance = instance.fetch_balance()
27
+ # order = instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
28
+ ```
29
+
30
+ ### Async
31
+
32
+ ```Python
33
+ import asyncio
34
+ from bitmart import BitmartAsync
35
+
36
+ async def main():
37
+ instance = BitmartAsync({})
38
+ ob = await instance.fetch_order_book("BTC/USDC")
39
+ print(ob)
40
+ #
41
+ # balance = await instance.fetch_balance()
42
+ # order = await instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
43
+
44
+ asyncio.run(main())
45
+ ```
46
+
47
+
48
+
49
+ ### Websockets
50
+
51
+ ```Python
52
+ from bitmart import BitmartWs
53
+
54
+ async def main():
55
+ instance = BitmartWs({})
56
+ while True:
57
+ ob = await instance.watch_order_book("BTC/USDC")
58
+ print(ob)
59
+ # orders = await instance.watch_orders("BTC/USDC")
60
+ ```
61
+
62
+
63
+
64
+
65
+
66
+ #### Raw call
67
+
68
+ You can also construct custom requests to available "implicit" endpoints
69
+
70
+ ```Python
71
+ request = {
72
+ 'type': 'candleSnapshot',
73
+ 'req': {
74
+ 'coin': coin,
75
+ 'interval': tf,
76
+ 'startTime': since,
77
+ 'endTime': until,
78
+ },
79
+ }
80
+ response = await instance.public_post_info(request)
81
+ ```
82
+
83
+
84
+
85
+
86
+ ## Available methods
87
+
88
+ ### REST Unified
89
+
90
+ - `create_market_buy_order_with_cost(self, symbol: str, cost: float, params={})`
91
+ - `create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
92
+ - `create_orders(self, orders: List[OrderRequest], params={})`
93
+ - `create_spot_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
94
+ - `create_swap_order_request(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
95
+ - `fetch_balance(self, params={})`
96
+ - `fetch_borrow_interest(self, code: Str = None, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
97
+ - `fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
98
+ - `fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
99
+ - `fetch_contract_markets(self, params={})`
100
+ - `fetch_currencies(self, params={})`
101
+ - `fetch_deposit_address(self, code: str, params={})`
102
+ - `fetch_deposit_withdraw_fee(self, code: str, params={})`
103
+ - `fetch_deposit(self, id: str, code: Str = None, params={})`
104
+ - `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
105
+ - `fetch_funding_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
106
+ - `fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
107
+ - `fetch_funding_rate(self, symbol: str, params={})`
108
+ - `fetch_isolated_borrow_rate(self, symbol: str, params={})`
109
+ - `fetch_isolated_borrow_rates(self, params={})`
110
+ - `fetch_ledger(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
111
+ - `fetch_markets(self, params={})`
112
+ - `fetch_my_liquidations(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
113
+ - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
114
+ - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
115
+ - `fetch_open_interest(self, symbol: str, params={})`
116
+ - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
117
+ - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
118
+ - `fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
119
+ - `fetch_order(self, id: str, symbol: Str = None, params={})`
120
+ - `fetch_orders_by_status(self, status, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
121
+ - `fetch_position(self, symbol: str, params={})`
122
+ - `fetch_positions(self, symbols: Strings = None, params={})`
123
+ - `fetch_spot_markets(self, params={})`
124
+ - `fetch_status(self, params={})`
125
+ - `fetch_ticker(self, symbol: str, params={})`
126
+ - `fetch_tickers(self, symbols: Strings = None, params={})`
127
+ - `fetch_time(self, params={})`
128
+ - `fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
129
+ - `fetch_trading_fee(self, symbol: str, params={})`
130
+ - `fetch_transaction_fee(self, code: str, params={})`
131
+ - `fetch_transactions_by_type(self, type, code: Str = None, since: Int = None, limit: Int = None, params={})`
132
+ - `fetch_transactions_request(self, flowType: Int = None, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
133
+ - `fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
134
+ - `fetch_withdraw_addresses(self, code: str, note=None, networkCode=None, params={})`
135
+ - `fetch_withdrawal(self, id: str, code: Str = None, params={})`
136
+ - `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
137
+ - `borrow_isolated_margin(self, symbol: str, code: str, amount: float, params={})`
138
+ - `cancel_all_orders(self, symbol: Str = None, params={})`
139
+ - `cancel_order(self, id: str, symbol: Str = None, params={})`
140
+ - `cancel_orders(self, ids: List[str], symbol: Str = None, params={})`
141
+ - `custom_parse_balance(self, response, marketType)`
142
+ - `describe(self)`
143
+ - `edit_order(self, id: str, symbol: str, type: OrderType, side: OrderSide, amount: Num = None, price: Num = None, params={})`
144
+ - `get_currency_id_from_code_and_network(self, currencyCode: Str, networkCode: Str)`
145
+ - `nonce(self)`
146
+ - `repay_isolated_margin(self, symbol: str, code: str, amount, params={})`
147
+ - `set_leverage(self, leverage: Int, symbol: Str = None, params={})`
148
+ - `transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={})`
149
+ - `withdraw(self, code: str, amount: float, address: str, tag=None, params={})`
150
+
151
+ ### REST Raw
152
+
153
+ - `public_get_system_time(request)`
154
+ - `public_get_system_service(request)`
155
+ - `public_get_spot_v1_currencies(request)`
156
+ - `public_get_spot_v1_symbols(request)`
157
+ - `public_get_spot_v1_symbols_details(request)`
158
+ - `public_get_spot_quotation_v3_tickers(request)`
159
+ - `public_get_spot_quotation_v3_ticker(request)`
160
+ - `public_get_spot_quotation_v3_lite_klines(request)`
161
+ - `public_get_spot_quotation_v3_klines(request)`
162
+ - `public_get_spot_quotation_v3_books(request)`
163
+ - `public_get_spot_quotation_v3_trades(request)`
164
+ - `public_get_spot_v1_ticker(request)`
165
+ - `public_get_spot_v2_ticker(request)`
166
+ - `public_get_spot_v1_ticker_detail(request)`
167
+ - `public_get_spot_v1_steps(request)`
168
+ - `public_get_spot_v1_symbols_kline(request)`
169
+ - `public_get_spot_v1_symbols_book(request)`
170
+ - `public_get_spot_v1_symbols_trades(request)`
171
+ - `public_get_contract_v1_tickers(request)`
172
+ - `public_get_contract_public_details(request)`
173
+ - `public_get_contract_public_depth(request)`
174
+ - `public_get_contract_public_open_interest(request)`
175
+ - `public_get_contract_public_funding_rate(request)`
176
+ - `public_get_contract_public_funding_rate_history(request)`
177
+ - `public_get_contract_public_kline(request)`
178
+ - `public_get_account_v1_currencies(request)`
179
+ - `public_get_contract_public_markprice_kline(request)`
180
+ - `private_get_account_sub_account_v1_transfer_list(request)`
181
+ - `private_get_account_sub_account_v1_transfer_history(request)`
182
+ - `private_get_account_sub_account_main_v1_wallet(request)`
183
+ - `private_get_account_sub_account_main_v1_subaccount_list(request)`
184
+ - `private_get_account_contract_sub_account_main_v1_wallet(request)`
185
+ - `private_get_account_contract_sub_account_main_v1_transfer_list(request)`
186
+ - `private_get_account_contract_sub_account_v1_transfer_history(request)`
187
+ - `private_get_account_v1_wallet(request)`
188
+ - `private_get_account_v1_currencies(request)`
189
+ - `private_get_spot_v1_wallet(request)`
190
+ - `private_get_account_v1_deposit_address(request)`
191
+ - `private_get_account_v1_withdraw_charge(request)`
192
+ - `private_get_account_v2_deposit_withdraw_history(request)`
193
+ - `private_get_account_v1_deposit_withdraw_detail(request)`
194
+ - `private_get_account_v1_withdraw_address_list(request)`
195
+ - `private_get_spot_v1_order_detail(request)`
196
+ - `private_get_spot_v2_orders(request)`
197
+ - `private_get_spot_v1_trades(request)`
198
+ - `private_get_spot_v2_trades(request)`
199
+ - `private_get_spot_v3_orders(request)`
200
+ - `private_get_spot_v2_order_detail(request)`
201
+ - `private_get_spot_v1_margin_isolated_borrow_record(request)`
202
+ - `private_get_spot_v1_margin_isolated_repay_record(request)`
203
+ - `private_get_spot_v1_margin_isolated_pairs(request)`
204
+ - `private_get_spot_v1_margin_isolated_account(request)`
205
+ - `private_get_spot_v1_trade_fee(request)`
206
+ - `private_get_spot_v1_user_fee(request)`
207
+ - `private_get_spot_v1_broker_rebate(request)`
208
+ - `private_get_contract_private_assets_detail(request)`
209
+ - `private_get_contract_private_order(request)`
210
+ - `private_get_contract_private_order_history(request)`
211
+ - `private_get_contract_private_position(request)`
212
+ - `private_get_contract_private_get_open_orders(request)`
213
+ - `private_get_contract_private_current_plan_order(request)`
214
+ - `private_get_contract_private_trades(request)`
215
+ - `private_get_contract_private_position_risk(request)`
216
+ - `private_get_contract_private_affilate_rebate_list(request)`
217
+ - `private_get_contract_private_affilate_trade_list(request)`
218
+ - `private_get_contract_private_transaction_history(request)`
219
+ - `private_post_account_sub_account_main_v1_sub_to_main(request)`
220
+ - `private_post_account_sub_account_sub_v1_sub_to_main(request)`
221
+ - `private_post_account_sub_account_main_v1_main_to_sub(request)`
222
+ - `private_post_account_sub_account_sub_v1_sub_to_sub(request)`
223
+ - `private_post_account_sub_account_main_v1_sub_to_sub(request)`
224
+ - `private_post_account_contract_sub_account_main_v1_sub_to_main(request)`
225
+ - `private_post_account_contract_sub_account_main_v1_main_to_sub(request)`
226
+ - `private_post_account_contract_sub_account_sub_v1_sub_to_main(request)`
227
+ - `private_post_account_v1_withdraw_apply(request)`
228
+ - `private_post_spot_v1_submit_order(request)`
229
+ - `private_post_spot_v1_batch_orders(request)`
230
+ - `private_post_spot_v2_cancel_order(request)`
231
+ - `private_post_spot_v1_cancel_orders(request)`
232
+ - `private_post_spot_v4_query_order(request)`
233
+ - `private_post_spot_v4_query_client_order(request)`
234
+ - `private_post_spot_v4_query_open_orders(request)`
235
+ - `private_post_spot_v4_query_history_orders(request)`
236
+ - `private_post_spot_v4_query_trades(request)`
237
+ - `private_post_spot_v4_query_order_trades(request)`
238
+ - `private_post_spot_v4_cancel_orders(request)`
239
+ - `private_post_spot_v4_cancel_all(request)`
240
+ - `private_post_spot_v4_batch_orders(request)`
241
+ - `private_post_spot_v3_cancel_order(request)`
242
+ - `private_post_spot_v2_batch_orders(request)`
243
+ - `private_post_spot_v2_submit_order(request)`
244
+ - `private_post_spot_v1_margin_submit_order(request)`
245
+ - `private_post_spot_v1_margin_isolated_borrow(request)`
246
+ - `private_post_spot_v1_margin_isolated_repay(request)`
247
+ - `private_post_spot_v1_margin_isolated_transfer(request)`
248
+ - `private_post_account_v1_transfer_contract_list(request)`
249
+ - `private_post_account_v1_transfer_contract(request)`
250
+ - `private_post_contract_private_submit_order(request)`
251
+ - `private_post_contract_private_cancel_order(request)`
252
+ - `private_post_contract_private_cancel_orders(request)`
253
+ - `private_post_contract_private_submit_plan_order(request)`
254
+ - `private_post_contract_private_cancel_plan_order(request)`
255
+ - `private_post_contract_private_submit_leverage(request)`
256
+ - `private_post_contract_private_submit_tp_sl_order(request)`
257
+ - `private_post_contract_private_modify_plan_order(request)`
258
+ - `private_post_contract_private_modify_preset_plan_order(request)`
259
+ - `private_post_contract_private_modify_tp_sl_order(request)`
260
+ - `private_post_contract_private_submit_trail_order(request)`
261
+ - `private_post_contract_private_cancel_trail_order(request)`
262
+
263
+ ### WS Unified
264
+
265
+ - `describe(self)`
266
+ - `subscribe(self, channel, symbol, type, params={})`
267
+ - `subscribe_multiple(self, channel: str, type: str, symbols: Strings = None, params={})`
268
+ - `watch_balance(self, params={})`
269
+ - `set_balance_cache(self, client: Client, type, subscribeHash)`
270
+ - `load_balance_snapshot(self, client, messageHash, type)`
271
+ - `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
272
+ - `watch_trades_for_symbols(self, symbols: List[str], since: Int = None, limit: Int = None, params={})`
273
+ - `get_params_for_multiple_sub(self, methodName: str, symbols: List[str], limit: Int = None, params={})`
274
+ - `watch_ticker(self, symbol: str, params={})`
275
+ - `watch_tickers(self, symbols: Strings = None, params={})`
276
+ - `watch_bids_asks(self, symbols: Strings = None, params={})`
277
+ - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
278
+ - `watch_positions(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
279
+ - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
280
+ - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
281
+ - `watch_order_book_for_symbols(self, symbols: List[str], limit: Int = None, params={})`
282
+ - `authenticate(self, type, params={})`
283
+
284
+ ## Contribution
285
+ - Give us a star :star:
286
+ - Fork and Clone! Awesome
287
+ - Select existing issues or create a new issue.
@@ -6,11 +6,12 @@ build-backend = "hatchling.build"
6
6
  directory = "src"
7
7
 
8
8
  [tool.hatch.build.targets.wheel]
9
- packages = ["bitmart"]
9
+ sources = ["src"]
10
+ only-include = ["src/bitmart"]
10
11
 
11
12
  [project]
12
13
  name = "bitmart"
13
- version = "0.0.15"
14
+ version = "0.0.17"
14
15
  authors = [
15
16
  { name="CCXT", email="info@ccxt.trade" },
16
17
  ]
bitmart-0.0.15/PKG-INFO DELETED
@@ -1,79 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bitmart
3
- Version: 0.0.15
4
- Summary: bitmart crypto exchange api client
5
- Project-URL: Homepage, https://github.com/ccxt/ccxt
6
- Project-URL: Issues, https://github.com/ccxt/ccxt
7
- Author-email: CCXT <info@ccxt.trade>
8
- License: MIT
9
- Classifier: Intended Audience :: Developers
10
- Classifier: Intended Audience :: Financial and Insurance Industry
11
- Classifier: Intended Audience :: Information Technology
12
- Classifier: License :: OSI Approved :: MIT License
13
- Classifier: Operating System :: OS Independent
14
- Classifier: Programming Language :: Python :: 3
15
- Classifier: Topic :: Office/Business :: Financial :: Investment
16
- Classifier: Topic :: Software Development :: Build Tools
17
- Requires-Python: >=3.8
18
- Description-Content-Type: text/markdown
19
-
20
- # bitmart-python
21
- Python SDK (sync and async) for Bitmart cryptocurrency exchange with Rest and WS capabilities.
22
-
23
- You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/bitmart)
24
- You can check Bitmart's docs here: [Docs](https://ccxt.com)
25
-
26
- *This package derives from CCXT and allows you to call pretty much every endpoint by either using the unified CCXT API or calling the endpoints directly*
27
-
28
- ## Installation
29
-
30
- ```
31
- pip install bitmart
32
- ```
33
-
34
- ## Usage
35
-
36
- ### Sync
37
-
38
- ```Python
39
- from bitmart import BitmartSync
40
-
41
- def main():
42
- instance = BitmartSync({})
43
- ob = instance.fetch_order_book("BTC/USDC")
44
- print(ob)
45
- #
46
- # balance = instance.fetch_balance()
47
- # order = instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
48
- ```
49
-
50
- ### Async
51
-
52
- ```Python
53
- import asyncio
54
- from bitmart import BitmartAsync
55
-
56
- async def main():
57
- instance = BitmartAsync({})
58
- ob = await instance.fetch_order_book("BTC/USDC")
59
- print(ob)
60
- #
61
- # balance = await instance.fetch_balance()
62
- # order = await instance.create_order("BTC/USDC", "limit", "buy", 1, 100000)
63
-
64
- asyncio.run(main())
65
- ```
66
-
67
- ### Websockets
68
-
69
- ```Python
70
- from bitmart import BitmartWs
71
-
72
- async def main():
73
- instance = BitmartWs({})
74
- while True:
75
- ob = await instance.watch_order_book("BTC/USDC")
76
- print(ob)
77
- # orders = await instance.watch_orders("BTC/USDC")
78
- ```
79
-