mexc-exchange-api 0.0.15__py3-none-any.whl → 0.0.17__py3-none-any.whl

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 mexc-exchange-api might be problematic. Click here for more details.

Files changed (290) hide show
  1. mexc/__init__.py +7 -0
  2. mexc/ccxt/__init__.py +101 -0
  3. mexc/ccxt/abstract/mexc.py +180 -0
  4. mexc/ccxt/async_support/__init__.py +80 -0
  5. mexc/ccxt/async_support/base/__init__.py +1 -0
  6. mexc/ccxt/async_support/base/exchange.py +2100 -0
  7. mexc/ccxt/async_support/base/throttler.py +50 -0
  8. mexc/ccxt/async_support/base/ws/__init__.py +38 -0
  9. mexc/ccxt/async_support/base/ws/aiohttp_client.py +147 -0
  10. mexc/ccxt/async_support/base/ws/cache.py +213 -0
  11. mexc/ccxt/async_support/base/ws/client.py +214 -0
  12. mexc/ccxt/async_support/base/ws/fast_client.py +97 -0
  13. mexc/ccxt/async_support/base/ws/functions.py +59 -0
  14. mexc/ccxt/async_support/base/ws/future.py +69 -0
  15. mexc/ccxt/async_support/base/ws/order_book.py +78 -0
  16. mexc/ccxt/async_support/base/ws/order_book_side.py +174 -0
  17. mexc/ccxt/async_support/mexc.py +5796 -0
  18. mexc/ccxt/base/__init__.py +27 -0
  19. mexc/ccxt/base/decimal_to_precision.py +174 -0
  20. mexc/ccxt/base/errors.py +267 -0
  21. mexc/ccxt/base/exchange.py +6769 -0
  22. mexc/ccxt/base/precise.py +297 -0
  23. mexc/ccxt/base/types.py +577 -0
  24. mexc/ccxt/mexc.py +5795 -0
  25. mexc/ccxt/pro/__init__.py +21 -0
  26. mexc/ccxt/pro/mexc.py +1457 -0
  27. mexc/ccxt/static_dependencies/README.md +1 -0
  28. mexc/ccxt/static_dependencies/__init__.py +1 -0
  29. mexc/ccxt/static_dependencies/ecdsa/__init__.py +14 -0
  30. mexc/ccxt/static_dependencies/ecdsa/_version.py +520 -0
  31. mexc/ccxt/static_dependencies/ecdsa/curves.py +56 -0
  32. mexc/ccxt/static_dependencies/ecdsa/der.py +221 -0
  33. mexc/ccxt/static_dependencies/ecdsa/ecdsa.py +310 -0
  34. mexc/ccxt/static_dependencies/ecdsa/ellipticcurve.py +197 -0
  35. mexc/ccxt/static_dependencies/ecdsa/keys.py +332 -0
  36. mexc/ccxt/static_dependencies/ecdsa/numbertheory.py +531 -0
  37. mexc/ccxt/static_dependencies/ecdsa/rfc6979.py +100 -0
  38. mexc/ccxt/static_dependencies/ecdsa/util.py +266 -0
  39. mexc/ccxt/static_dependencies/ethereum/__init__.py +7 -0
  40. mexc/ccxt/static_dependencies/ethereum/abi/__init__.py +16 -0
  41. mexc/ccxt/static_dependencies/ethereum/abi/abi.py +19 -0
  42. mexc/ccxt/static_dependencies/ethereum/abi/base.py +152 -0
  43. mexc/ccxt/static_dependencies/ethereum/abi/codec.py +217 -0
  44. mexc/ccxt/static_dependencies/ethereum/abi/constants.py +3 -0
  45. mexc/ccxt/static_dependencies/ethereum/abi/decoding.py +565 -0
  46. mexc/ccxt/static_dependencies/ethereum/abi/encoding.py +720 -0
  47. mexc/ccxt/static_dependencies/ethereum/abi/exceptions.py +139 -0
  48. mexc/ccxt/static_dependencies/ethereum/abi/grammar.py +443 -0
  49. mexc/ccxt/static_dependencies/ethereum/abi/packed.py +13 -0
  50. mexc/ccxt/static_dependencies/ethereum/abi/py.typed +0 -0
  51. mexc/ccxt/static_dependencies/ethereum/abi/registry.py +643 -0
  52. mexc/ccxt/static_dependencies/ethereum/abi/tools/__init__.py +3 -0
  53. mexc/ccxt/static_dependencies/ethereum/abi/tools/_strategies.py +230 -0
  54. mexc/ccxt/static_dependencies/ethereum/abi/utils/__init__.py +0 -0
  55. mexc/ccxt/static_dependencies/ethereum/abi/utils/numeric.py +83 -0
  56. mexc/ccxt/static_dependencies/ethereum/abi/utils/padding.py +27 -0
  57. mexc/ccxt/static_dependencies/ethereum/abi/utils/string.py +19 -0
  58. mexc/ccxt/static_dependencies/ethereum/account/__init__.py +3 -0
  59. mexc/ccxt/static_dependencies/ethereum/account/encode_typed_data/__init__.py +4 -0
  60. mexc/ccxt/static_dependencies/ethereum/account/encode_typed_data/encoding_and_hashing.py +239 -0
  61. mexc/ccxt/static_dependencies/ethereum/account/encode_typed_data/helpers.py +40 -0
  62. mexc/ccxt/static_dependencies/ethereum/account/messages.py +263 -0
  63. mexc/ccxt/static_dependencies/ethereum/account/py.typed +0 -0
  64. mexc/ccxt/static_dependencies/ethereum/hexbytes/__init__.py +5 -0
  65. mexc/ccxt/static_dependencies/ethereum/hexbytes/_utils.py +54 -0
  66. mexc/ccxt/static_dependencies/ethereum/hexbytes/main.py +65 -0
  67. mexc/ccxt/static_dependencies/ethereum/hexbytes/py.typed +0 -0
  68. mexc/ccxt/static_dependencies/ethereum/typing/__init__.py +63 -0
  69. mexc/ccxt/static_dependencies/ethereum/typing/abi.py +6 -0
  70. mexc/ccxt/static_dependencies/ethereum/typing/bls.py +7 -0
  71. mexc/ccxt/static_dependencies/ethereum/typing/discovery.py +5 -0
  72. mexc/ccxt/static_dependencies/ethereum/typing/encoding.py +7 -0
  73. mexc/ccxt/static_dependencies/ethereum/typing/enums.py +17 -0
  74. mexc/ccxt/static_dependencies/ethereum/typing/ethpm.py +9 -0
  75. mexc/ccxt/static_dependencies/ethereum/typing/evm.py +20 -0
  76. mexc/ccxt/static_dependencies/ethereum/typing/networks.py +1122 -0
  77. mexc/ccxt/static_dependencies/ethereum/typing/py.typed +0 -0
  78. mexc/ccxt/static_dependencies/ethereum/utils/__init__.py +115 -0
  79. mexc/ccxt/static_dependencies/ethereum/utils/abi.py +72 -0
  80. mexc/ccxt/static_dependencies/ethereum/utils/address.py +171 -0
  81. mexc/ccxt/static_dependencies/ethereum/utils/applicators.py +151 -0
  82. mexc/ccxt/static_dependencies/ethereum/utils/conversions.py +190 -0
  83. mexc/ccxt/static_dependencies/ethereum/utils/currency.py +107 -0
  84. mexc/ccxt/static_dependencies/ethereum/utils/curried/__init__.py +269 -0
  85. mexc/ccxt/static_dependencies/ethereum/utils/debug.py +20 -0
  86. mexc/ccxt/static_dependencies/ethereum/utils/decorators.py +132 -0
  87. mexc/ccxt/static_dependencies/ethereum/utils/encoding.py +6 -0
  88. mexc/ccxt/static_dependencies/ethereum/utils/exceptions.py +4 -0
  89. mexc/ccxt/static_dependencies/ethereum/utils/functional.py +75 -0
  90. mexc/ccxt/static_dependencies/ethereum/utils/hexadecimal.py +74 -0
  91. mexc/ccxt/static_dependencies/ethereum/utils/humanize.py +188 -0
  92. mexc/ccxt/static_dependencies/ethereum/utils/logging.py +159 -0
  93. mexc/ccxt/static_dependencies/ethereum/utils/module_loading.py +31 -0
  94. mexc/ccxt/static_dependencies/ethereum/utils/numeric.py +43 -0
  95. mexc/ccxt/static_dependencies/ethereum/utils/py.typed +0 -0
  96. mexc/ccxt/static_dependencies/ethereum/utils/toolz.py +76 -0
  97. mexc/ccxt/static_dependencies/ethereum/utils/types.py +54 -0
  98. mexc/ccxt/static_dependencies/ethereum/utils/typing/__init__.py +18 -0
  99. mexc/ccxt/static_dependencies/ethereum/utils/typing/misc.py +14 -0
  100. mexc/ccxt/static_dependencies/ethereum/utils/units.py +31 -0
  101. mexc/ccxt/static_dependencies/keccak/__init__.py +3 -0
  102. mexc/ccxt/static_dependencies/keccak/keccak.py +197 -0
  103. mexc/ccxt/static_dependencies/lark/__init__.py +38 -0
  104. mexc/ccxt/static_dependencies/lark/__pyinstaller/__init__.py +6 -0
  105. mexc/ccxt/static_dependencies/lark/__pyinstaller/hook-lark.py +14 -0
  106. mexc/ccxt/static_dependencies/lark/ast_utils.py +59 -0
  107. mexc/ccxt/static_dependencies/lark/common.py +86 -0
  108. mexc/ccxt/static_dependencies/lark/exceptions.py +292 -0
  109. mexc/ccxt/static_dependencies/lark/grammar.py +130 -0
  110. mexc/ccxt/static_dependencies/lark/grammars/__init__.py +0 -0
  111. mexc/ccxt/static_dependencies/lark/grammars/common.lark +59 -0
  112. mexc/ccxt/static_dependencies/lark/grammars/lark.lark +62 -0
  113. mexc/ccxt/static_dependencies/lark/grammars/python.lark +302 -0
  114. mexc/ccxt/static_dependencies/lark/grammars/unicode.lark +7 -0
  115. mexc/ccxt/static_dependencies/lark/indenter.py +143 -0
  116. mexc/ccxt/static_dependencies/lark/lark.py +658 -0
  117. mexc/ccxt/static_dependencies/lark/lexer.py +678 -0
  118. mexc/ccxt/static_dependencies/lark/load_grammar.py +1428 -0
  119. mexc/ccxt/static_dependencies/lark/parse_tree_builder.py +391 -0
  120. mexc/ccxt/static_dependencies/lark/parser_frontends.py +257 -0
  121. mexc/ccxt/static_dependencies/lark/parsers/__init__.py +0 -0
  122. mexc/ccxt/static_dependencies/lark/parsers/cyk.py +340 -0
  123. mexc/ccxt/static_dependencies/lark/parsers/earley.py +314 -0
  124. mexc/ccxt/static_dependencies/lark/parsers/earley_common.py +42 -0
  125. mexc/ccxt/static_dependencies/lark/parsers/earley_forest.py +801 -0
  126. mexc/ccxt/static_dependencies/lark/parsers/grammar_analysis.py +203 -0
  127. mexc/ccxt/static_dependencies/lark/parsers/lalr_analysis.py +332 -0
  128. mexc/ccxt/static_dependencies/lark/parsers/lalr_interactive_parser.py +158 -0
  129. mexc/ccxt/static_dependencies/lark/parsers/lalr_parser.py +122 -0
  130. mexc/ccxt/static_dependencies/lark/parsers/lalr_parser_state.py +110 -0
  131. mexc/ccxt/static_dependencies/lark/parsers/xearley.py +165 -0
  132. mexc/ccxt/static_dependencies/lark/py.typed +0 -0
  133. mexc/ccxt/static_dependencies/lark/reconstruct.py +107 -0
  134. mexc/ccxt/static_dependencies/lark/tools/__init__.py +70 -0
  135. mexc/ccxt/static_dependencies/lark/tools/nearley.py +202 -0
  136. mexc/ccxt/static_dependencies/lark/tools/serialize.py +32 -0
  137. mexc/ccxt/static_dependencies/lark/tools/standalone.py +196 -0
  138. mexc/ccxt/static_dependencies/lark/tree.py +267 -0
  139. mexc/ccxt/static_dependencies/lark/tree_matcher.py +186 -0
  140. mexc/ccxt/static_dependencies/lark/tree_templates.py +180 -0
  141. mexc/ccxt/static_dependencies/lark/utils.py +343 -0
  142. mexc/ccxt/static_dependencies/lark/visitors.py +596 -0
  143. mexc/ccxt/static_dependencies/marshmallow/__init__.py +81 -0
  144. mexc/ccxt/static_dependencies/marshmallow/base.py +65 -0
  145. mexc/ccxt/static_dependencies/marshmallow/class_registry.py +94 -0
  146. mexc/ccxt/static_dependencies/marshmallow/decorators.py +231 -0
  147. mexc/ccxt/static_dependencies/marshmallow/error_store.py +60 -0
  148. mexc/ccxt/static_dependencies/marshmallow/exceptions.py +71 -0
  149. mexc/ccxt/static_dependencies/marshmallow/fields.py +2114 -0
  150. mexc/ccxt/static_dependencies/marshmallow/orderedset.py +89 -0
  151. mexc/ccxt/static_dependencies/marshmallow/py.typed +0 -0
  152. mexc/ccxt/static_dependencies/marshmallow/schema.py +1228 -0
  153. mexc/ccxt/static_dependencies/marshmallow/types.py +12 -0
  154. mexc/ccxt/static_dependencies/marshmallow/utils.py +378 -0
  155. mexc/ccxt/static_dependencies/marshmallow/validate.py +678 -0
  156. mexc/ccxt/static_dependencies/marshmallow/warnings.py +2 -0
  157. mexc/ccxt/static_dependencies/marshmallow_dataclass/__init__.py +1047 -0
  158. mexc/ccxt/static_dependencies/marshmallow_dataclass/collection_field.py +51 -0
  159. mexc/ccxt/static_dependencies/marshmallow_dataclass/lazy_class_attribute.py +45 -0
  160. mexc/ccxt/static_dependencies/marshmallow_dataclass/mypy.py +71 -0
  161. mexc/ccxt/static_dependencies/marshmallow_dataclass/py.typed +0 -0
  162. mexc/ccxt/static_dependencies/marshmallow_dataclass/typing.py +14 -0
  163. mexc/ccxt/static_dependencies/marshmallow_dataclass/union_field.py +82 -0
  164. mexc/ccxt/static_dependencies/marshmallow_oneofschema/__init__.py +1 -0
  165. mexc/ccxt/static_dependencies/marshmallow_oneofschema/one_of_schema.py +193 -0
  166. mexc/ccxt/static_dependencies/marshmallow_oneofschema/py.typed +0 -0
  167. mexc/ccxt/static_dependencies/msgpack/__init__.py +55 -0
  168. mexc/ccxt/static_dependencies/msgpack/_cmsgpack.pyx +11 -0
  169. mexc/ccxt/static_dependencies/msgpack/_packer.pyx +374 -0
  170. mexc/ccxt/static_dependencies/msgpack/_unpacker.pyx +547 -0
  171. mexc/ccxt/static_dependencies/msgpack/buff_converter.h +8 -0
  172. mexc/ccxt/static_dependencies/msgpack/exceptions.py +48 -0
  173. mexc/ccxt/static_dependencies/msgpack/ext.py +168 -0
  174. mexc/ccxt/static_dependencies/msgpack/fallback.py +951 -0
  175. mexc/ccxt/static_dependencies/msgpack/pack.h +89 -0
  176. mexc/ccxt/static_dependencies/msgpack/pack_template.h +820 -0
  177. mexc/ccxt/static_dependencies/msgpack/sysdep.h +194 -0
  178. mexc/ccxt/static_dependencies/msgpack/unpack.h +391 -0
  179. mexc/ccxt/static_dependencies/msgpack/unpack_define.h +95 -0
  180. mexc/ccxt/static_dependencies/msgpack/unpack_template.h +464 -0
  181. mexc/ccxt/static_dependencies/parsimonious/__init__.py +10 -0
  182. mexc/ccxt/static_dependencies/parsimonious/exceptions.py +105 -0
  183. mexc/ccxt/static_dependencies/parsimonious/expressions.py +479 -0
  184. mexc/ccxt/static_dependencies/parsimonious/grammar.py +487 -0
  185. mexc/ccxt/static_dependencies/parsimonious/nodes.py +325 -0
  186. mexc/ccxt/static_dependencies/parsimonious/utils.py +40 -0
  187. mexc/ccxt/static_dependencies/starknet/__init__.py +0 -0
  188. mexc/ccxt/static_dependencies/starknet/abi/v0/__init__.py +2 -0
  189. mexc/ccxt/static_dependencies/starknet/abi/v0/model.py +44 -0
  190. mexc/ccxt/static_dependencies/starknet/abi/v0/parser.py +216 -0
  191. mexc/ccxt/static_dependencies/starknet/abi/v0/schemas.py +72 -0
  192. mexc/ccxt/static_dependencies/starknet/abi/v0/shape.py +63 -0
  193. mexc/ccxt/static_dependencies/starknet/abi/v1/__init__.py +2 -0
  194. mexc/ccxt/static_dependencies/starknet/abi/v1/core_structures.json +14 -0
  195. mexc/ccxt/static_dependencies/starknet/abi/v1/model.py +39 -0
  196. mexc/ccxt/static_dependencies/starknet/abi/v1/parser.py +220 -0
  197. mexc/ccxt/static_dependencies/starknet/abi/v1/parser_transformer.py +179 -0
  198. mexc/ccxt/static_dependencies/starknet/abi/v1/schemas.py +66 -0
  199. mexc/ccxt/static_dependencies/starknet/abi/v1/shape.py +47 -0
  200. mexc/ccxt/static_dependencies/starknet/abi/v2/__init__.py +2 -0
  201. mexc/ccxt/static_dependencies/starknet/abi/v2/model.py +89 -0
  202. mexc/ccxt/static_dependencies/starknet/abi/v2/parser.py +293 -0
  203. mexc/ccxt/static_dependencies/starknet/abi/v2/parser_transformer.py +192 -0
  204. mexc/ccxt/static_dependencies/starknet/abi/v2/schemas.py +132 -0
  205. mexc/ccxt/static_dependencies/starknet/abi/v2/shape.py +107 -0
  206. mexc/ccxt/static_dependencies/starknet/cairo/__init__.py +0 -0
  207. mexc/ccxt/static_dependencies/starknet/cairo/data_types.py +123 -0
  208. mexc/ccxt/static_dependencies/starknet/cairo/deprecated_parse/__init__.py +0 -0
  209. mexc/ccxt/static_dependencies/starknet/cairo/deprecated_parse/cairo_types.py +77 -0
  210. mexc/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser.py +46 -0
  211. mexc/ccxt/static_dependencies/starknet/cairo/deprecated_parse/parser_transformer.py +138 -0
  212. mexc/ccxt/static_dependencies/starknet/cairo/felt.py +64 -0
  213. mexc/ccxt/static_dependencies/starknet/cairo/type_parser.py +121 -0
  214. mexc/ccxt/static_dependencies/starknet/cairo/v1/__init__.py +0 -0
  215. mexc/ccxt/static_dependencies/starknet/cairo/v1/type_parser.py +59 -0
  216. mexc/ccxt/static_dependencies/starknet/cairo/v2/__init__.py +0 -0
  217. mexc/ccxt/static_dependencies/starknet/cairo/v2/type_parser.py +77 -0
  218. mexc/ccxt/static_dependencies/starknet/ccxt_utils.py +7 -0
  219. mexc/ccxt/static_dependencies/starknet/common.py +15 -0
  220. mexc/ccxt/static_dependencies/starknet/constants.py +39 -0
  221. mexc/ccxt/static_dependencies/starknet/hash/__init__.py +0 -0
  222. mexc/ccxt/static_dependencies/starknet/hash/address.py +79 -0
  223. mexc/ccxt/static_dependencies/starknet/hash/compiled_class_hash_objects.py +111 -0
  224. mexc/ccxt/static_dependencies/starknet/hash/selector.py +16 -0
  225. mexc/ccxt/static_dependencies/starknet/hash/storage.py +12 -0
  226. mexc/ccxt/static_dependencies/starknet/hash/utils.py +78 -0
  227. mexc/ccxt/static_dependencies/starknet/models/__init__.py +0 -0
  228. mexc/ccxt/static_dependencies/starknet/models/typed_data.py +45 -0
  229. mexc/ccxt/static_dependencies/starknet/serialization/__init__.py +24 -0
  230. mexc/ccxt/static_dependencies/starknet/serialization/_calldata_reader.py +40 -0
  231. mexc/ccxt/static_dependencies/starknet/serialization/_context.py +142 -0
  232. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/__init__.py +10 -0
  233. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/_common.py +82 -0
  234. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/array_serializer.py +43 -0
  235. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/bool_serializer.py +37 -0
  236. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/byte_array_serializer.py +66 -0
  237. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/cairo_data_serializer.py +71 -0
  238. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/enum_serializer.py +71 -0
  239. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/felt_serializer.py +50 -0
  240. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/named_tuple_serializer.py +58 -0
  241. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/option_serializer.py +43 -0
  242. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/output_serializer.py +40 -0
  243. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/payload_serializer.py +72 -0
  244. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/struct_serializer.py +36 -0
  245. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/tuple_serializer.py +36 -0
  246. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/uint256_serializer.py +76 -0
  247. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/uint_serializer.py +100 -0
  248. mexc/ccxt/static_dependencies/starknet/serialization/data_serializers/unit_serializer.py +32 -0
  249. mexc/ccxt/static_dependencies/starknet/serialization/errors.py +10 -0
  250. mexc/ccxt/static_dependencies/starknet/serialization/factory.py +229 -0
  251. mexc/ccxt/static_dependencies/starknet/serialization/function_serialization_adapter.py +110 -0
  252. mexc/ccxt/static_dependencies/starknet/serialization/tuple_dataclass.py +59 -0
  253. mexc/ccxt/static_dependencies/starknet/utils/__init__.py +0 -0
  254. mexc/ccxt/static_dependencies/starknet/utils/constructor_args_translator.py +86 -0
  255. mexc/ccxt/static_dependencies/starknet/utils/iterable.py +13 -0
  256. mexc/ccxt/static_dependencies/starknet/utils/schema.py +13 -0
  257. mexc/ccxt/static_dependencies/starknet/utils/typed_data.py +182 -0
  258. mexc/ccxt/static_dependencies/starkware/__init__.py +0 -0
  259. mexc/ccxt/static_dependencies/starkware/crypto/__init__.py +0 -0
  260. mexc/ccxt/static_dependencies/starkware/crypto/fast_pedersen_hash.py +50 -0
  261. mexc/ccxt/static_dependencies/starkware/crypto/math_utils.py +78 -0
  262. mexc/ccxt/static_dependencies/starkware/crypto/signature.py +2344 -0
  263. mexc/ccxt/static_dependencies/starkware/crypto/utils.py +63 -0
  264. mexc/ccxt/static_dependencies/sympy/__init__.py +0 -0
  265. mexc/ccxt/static_dependencies/sympy/core/__init__.py +0 -0
  266. mexc/ccxt/static_dependencies/sympy/core/intfunc.py +35 -0
  267. mexc/ccxt/static_dependencies/sympy/external/__init__.py +0 -0
  268. mexc/ccxt/static_dependencies/sympy/external/gmpy.py +345 -0
  269. mexc/ccxt/static_dependencies/sympy/external/importtools.py +187 -0
  270. mexc/ccxt/static_dependencies/sympy/external/ntheory.py +637 -0
  271. mexc/ccxt/static_dependencies/sympy/external/pythonmpq.py +341 -0
  272. mexc/ccxt/static_dependencies/toolz/__init__.py +26 -0
  273. mexc/ccxt/static_dependencies/toolz/_signatures.py +784 -0
  274. mexc/ccxt/static_dependencies/toolz/_version.py +520 -0
  275. mexc/ccxt/static_dependencies/toolz/compatibility.py +30 -0
  276. mexc/ccxt/static_dependencies/toolz/curried/__init__.py +101 -0
  277. mexc/ccxt/static_dependencies/toolz/curried/exceptions.py +22 -0
  278. mexc/ccxt/static_dependencies/toolz/curried/operator.py +22 -0
  279. mexc/ccxt/static_dependencies/toolz/dicttoolz.py +339 -0
  280. mexc/ccxt/static_dependencies/toolz/functoolz.py +1049 -0
  281. mexc/ccxt/static_dependencies/toolz/itertoolz.py +1057 -0
  282. mexc/ccxt/static_dependencies/toolz/recipes.py +46 -0
  283. mexc/ccxt/static_dependencies/toolz/utils.py +9 -0
  284. mexc/ccxt/static_dependencies/typing_inspect/__init__.py +0 -0
  285. mexc/ccxt/static_dependencies/typing_inspect/typing_inspect.py +851 -0
  286. mexc_exchange_api-0.0.17.dist-info/METADATA +378 -0
  287. mexc_exchange_api-0.0.17.dist-info/RECORD +288 -0
  288. mexc_exchange_api-0.0.15.dist-info/METADATA +0 -79
  289. mexc_exchange_api-0.0.15.dist-info/RECORD +0 -3
  290. {mexc_exchange_api-0.0.15.dist-info → mexc_exchange_api-0.0.17.dist-info}/WHEEL +0 -0
@@ -0,0 +1,378 @@
1
+ Metadata-Version: 2.4
2
+ Name: mexc-exchange-api
3
+ Version: 0.0.17
4
+ Summary: mexc 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
+ # mexc-python
21
+ Python SDK (sync and async) for Mexc cryptocurrency exchange with Rest and WS capabilities.
22
+
23
+ You can check the SDK docs here: [SDK](https://docs.ccxt.com/#/exchanges/mexc)
24
+ You can check Mexc'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 mexc import MexcSync
39
+
40
+ def main():
41
+ instance = MexcSync({})
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 mexc import MexcAsync
54
+
55
+ async def main():
56
+ instance = MexcAsync({})
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 mexc import MexcWs
72
+
73
+ async def main():
74
+ instance = MexcWs({})
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_deposit_address(self, code: str, params={})`
110
+ - `create_market_buy_order_with_cost(self, symbol: str, cost: float, params={})`
111
+ - `create_market_sell_order_with_cost(self, symbol: str, cost: float, params={})`
112
+ - `create_order(self, symbol: str, type: OrderType, side: OrderSide, amount: float, price: Num = None, params={})`
113
+ - `create_orders(self, orders: List[OrderRequest], params={})`
114
+ - `create_spot_order_request(self, market, type, side, amount, price=None, marginMode=None, params={})`
115
+ - `create_spot_order(self, market, type, side, amount, price=None, marginMode=None, params={})`
116
+ - `create_swap_order(self, market, type, side, amount, price=None, marginMode=None, params={})`
117
+ - `fetch_account_helper(self, type, params)`
118
+ - `fetch_accounts(self, params={})`
119
+ - `fetch_balance(self, params={})`
120
+ - `fetch_bids_asks(self, symbols: Strings = None, params={})`
121
+ - `fetch_canceled_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
122
+ - `fetch_closed_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
123
+ - `fetch_currencies(self, params={})`
124
+ - `fetch_deposit_address(self, code: str, params={})`
125
+ - `fetch_deposit_addresses_by_network(self, code: str, params={})`
126
+ - `fetch_deposit_withdraw_fees(self, codes: Strings = None, params={})`
127
+ - `fetch_deposits(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
128
+ - `fetch_funding_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
129
+ - `fetch_funding_interval(self, symbol: str, params={})`
130
+ - `fetch_funding_rate_history(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
131
+ - `fetch_funding_rate(self, symbol: str, params={})`
132
+ - `fetch_leverage_tiers(self, symbols: Strings = None, params={})`
133
+ - `fetch_leverage(self, symbol: str, params={})`
134
+ - `fetch_markets(self, params={})`
135
+ - `fetch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
136
+ - `fetch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
137
+ - `fetch_open_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
138
+ - `fetch_order_book(self, symbol: str, limit: Int = None, params={})`
139
+ - `fetch_order_trades(self, id: str, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
140
+ - `fetch_order(self, id: str, symbol: Str = None, params={})`
141
+ - `fetch_orders_by_ids(self, ids, symbol: Str = None, params={})`
142
+ - `fetch_orders_by_state(self, state, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
143
+ - `fetch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
144
+ - `fetch_position_mode(self, symbol: Str = None, params={})`
145
+ - `fetch_position(self, symbol: str, params={})`
146
+ - `fetch_positions_history(self, symbols: Strings = None, since: Int = None, limit: Int = None, params={})`
147
+ - `fetch_positions(self, symbols: Strings = None, params={})`
148
+ - `fetch_spot_markets(self, params={})`
149
+ - `fetch_status(self, params={})`
150
+ - `fetch_swap_markets(self, params={})`
151
+ - `fetch_ticker(self, symbol: str, params={})`
152
+ - `fetch_tickers(self, symbols: Strings = None, params={})`
153
+ - `fetch_time(self, params={})`
154
+ - `fetch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
155
+ - `fetch_trading_fee(self, symbol: str, params={})`
156
+ - `fetch_transaction_fees(self, codes: Strings = None, params={})`
157
+ - `fetch_transfer(self, id: str, code: Str = None, params={})`
158
+ - `fetch_transfers(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
159
+ - `fetch_withdrawals(self, code: Str = None, since: Int = None, limit: Int = None, params={})`
160
+ - `add_margin(self, symbol: str, amount: float, params={})`
161
+ - `cancel_all_orders(self, symbol: Str = None, params={})`
162
+ - `cancel_order(self, id: str, symbol: Str = None, params={})`
163
+ - `cancel_orders(self, ids, symbol: Str = None, params={})`
164
+ - `custom_parse_balance(self, response, marketType)`
165
+ - `describe(self)`
166
+ - `modify_margin_helper(self, symbol: str, amount, addOrReduce, params={})`
167
+ - `nonce(self)`
168
+ - `reduce_margin(self, symbol: str, amount: float, params={})`
169
+ - `set_leverage(self, leverage: Int, symbol: Str = None, params={})`
170
+ - `set_margin_mode(self, marginMode: str, symbol: Str = None, params={})`
171
+ - `set_position_mode(self, hedged: bool, symbol: Str = None, params={})`
172
+ - `synthetic_trade_id(self, market=None, timestamp=None, side=None, amount=None, price=None, orderType=None, takerOrMaker=None)`
173
+ - `transfer(self, code: str, amount: float, fromAccount: str, toAccount: str, params={})`
174
+ - `withdraw(self, code: str, amount: float, address: str, tag=None, params={})`
175
+
176
+ ### REST Raw
177
+
178
+ - `spot_public_get_ping(request)`
179
+ - `spot_public_get_time(request)`
180
+ - `spot_public_get_exchangeinfo(request)`
181
+ - `spot_public_get_depth(request)`
182
+ - `spot_public_get_trades(request)`
183
+ - `spot_public_get_historicaltrades(request)`
184
+ - `spot_public_get_aggtrades(request)`
185
+ - `spot_public_get_klines(request)`
186
+ - `spot_public_get_avgprice(request)`
187
+ - `spot_public_get_ticker_24hr(request)`
188
+ - `spot_public_get_ticker_price(request)`
189
+ - `spot_public_get_ticker_bookticker(request)`
190
+ - `spot_public_get_etf_info(request)`
191
+ - `spot_private_get_order(request)`
192
+ - `spot_private_get_openorders(request)`
193
+ - `spot_private_get_allorders(request)`
194
+ - `spot_private_get_account(request)`
195
+ - `spot_private_get_mytrades(request)`
196
+ - `spot_private_get_tradefee(request)`
197
+ - `spot_private_get_sub_account_list(request)`
198
+ - `spot_private_get_sub_account_apikey(request)`
199
+ - `spot_private_get_capital_config_getall(request)`
200
+ - `spot_private_get_capital_deposit_hisrec(request)`
201
+ - `spot_private_get_capital_withdraw_history(request)`
202
+ - `spot_private_get_capital_withdraw_address(request)`
203
+ - `spot_private_get_capital_deposit_address(request)`
204
+ - `spot_private_get_capital_transfer(request)`
205
+ - `spot_private_get_capital_transfer_tranid(request)`
206
+ - `spot_private_get_capital_transfer_internal(request)`
207
+ - `spot_private_get_capital_sub_account_universaltransfer(request)`
208
+ - `spot_private_get_capital_convert(request)`
209
+ - `spot_private_get_capital_convert_list(request)`
210
+ - `spot_private_get_margin_loan(request)`
211
+ - `spot_private_get_margin_allorders(request)`
212
+ - `spot_private_get_margin_mytrades(request)`
213
+ - `spot_private_get_margin_openorders(request)`
214
+ - `spot_private_get_margin_maxtransferable(request)`
215
+ - `spot_private_get_margin_priceindex(request)`
216
+ - `spot_private_get_margin_order(request)`
217
+ - `spot_private_get_margin_isolated_account(request)`
218
+ - `spot_private_get_margin_maxborrowable(request)`
219
+ - `spot_private_get_margin_repay(request)`
220
+ - `spot_private_get_margin_isolated_pair(request)`
221
+ - `spot_private_get_margin_forceliquidationrec(request)`
222
+ - `spot_private_get_margin_isolatedmargindata(request)`
223
+ - `spot_private_get_margin_isolatedmargintier(request)`
224
+ - `spot_private_get_rebate_taxquery(request)`
225
+ - `spot_private_get_rebate_detail(request)`
226
+ - `spot_private_get_rebate_detail_kickback(request)`
227
+ - `spot_private_get_rebate_refercode(request)`
228
+ - `spot_private_get_rebate_affiliate_commission(request)`
229
+ - `spot_private_get_rebate_affiliate_withdraw(request)`
230
+ - `spot_private_get_rebate_affiliate_commission_detail(request)`
231
+ - `spot_private_get_mxdeduct_enable(request)`
232
+ - `spot_private_get_userdatastream(request)`
233
+ - `spot_private_get_selfsymbols(request)`
234
+ - `spot_private_post_order(request)`
235
+ - `spot_private_post_order_test(request)`
236
+ - `spot_private_post_sub_account_virtualsubaccount(request)`
237
+ - `spot_private_post_sub_account_apikey(request)`
238
+ - `spot_private_post_sub_account_futures(request)`
239
+ - `spot_private_post_sub_account_margin(request)`
240
+ - `spot_private_post_batchorders(request)`
241
+ - `spot_private_post_capital_withdraw_apply(request)`
242
+ - `spot_private_post_capital_withdraw(request)`
243
+ - `spot_private_post_capital_transfer(request)`
244
+ - `spot_private_post_capital_transfer_internal(request)`
245
+ - `spot_private_post_capital_deposit_address(request)`
246
+ - `spot_private_post_capital_sub_account_universaltransfer(request)`
247
+ - `spot_private_post_capital_convert(request)`
248
+ - `spot_private_post_mxdeduct_enable(request)`
249
+ - `spot_private_post_userdatastream(request)`
250
+ - `spot_private_put_userdatastream(request)`
251
+ - `spot_private_delete_order(request)`
252
+ - `spot_private_delete_openorders(request)`
253
+ - `spot_private_delete_sub_account_apikey(request)`
254
+ - `spot_private_delete_margin_order(request)`
255
+ - `spot_private_delete_margin_openorders(request)`
256
+ - `spot_private_delete_userdatastream(request)`
257
+ - `spot_private_delete_capital_withdraw(request)`
258
+ - `contract_public_get_ping(request)`
259
+ - `contract_public_get_detail(request)`
260
+ - `contract_public_get_support_currencies(request)`
261
+ - `contract_public_get_depth_symbol(request)`
262
+ - `contract_public_get_depth_commits_symbol_limit(request)`
263
+ - `contract_public_get_index_price_symbol(request)`
264
+ - `contract_public_get_fair_price_symbol(request)`
265
+ - `contract_public_get_funding_rate_symbol(request)`
266
+ - `contract_public_get_kline_symbol(request)`
267
+ - `contract_public_get_kline_index_price_symbol(request)`
268
+ - `contract_public_get_kline_fair_price_symbol(request)`
269
+ - `contract_public_get_deals_symbol(request)`
270
+ - `contract_public_get_ticker(request)`
271
+ - `contract_public_get_risk_reverse(request)`
272
+ - `contract_public_get_risk_reverse_history(request)`
273
+ - `contract_public_get_funding_rate_history(request)`
274
+ - `contract_private_get_account_assets(request)`
275
+ - `contract_private_get_account_asset_currency(request)`
276
+ - `contract_private_get_account_transfer_record(request)`
277
+ - `contract_private_get_position_list_history_positions(request)`
278
+ - `contract_private_get_position_open_positions(request)`
279
+ - `contract_private_get_position_funding_records(request)`
280
+ - `contract_private_get_position_position_mode(request)`
281
+ - `contract_private_get_order_list_open_orders_symbol(request)`
282
+ - `contract_private_get_order_list_history_orders(request)`
283
+ - `contract_private_get_order_external_symbol_external_oid(request)`
284
+ - `contract_private_get_order_get_order_id(request)`
285
+ - `contract_private_get_order_batch_query(request)`
286
+ - `contract_private_get_order_deal_details_order_id(request)`
287
+ - `contract_private_get_order_list_order_deals(request)`
288
+ - `contract_private_get_planorder_list_orders(request)`
289
+ - `contract_private_get_stoporder_list_orders(request)`
290
+ - `contract_private_get_stoporder_order_details_stop_order_id(request)`
291
+ - `contract_private_get_account_risk_limit(request)`
292
+ - `contract_private_get_account_tiered_fee_rate(request)`
293
+ - `contract_private_get_position_leverage(request)`
294
+ - `contract_private_post_position_change_margin(request)`
295
+ - `contract_private_post_position_change_leverage(request)`
296
+ - `contract_private_post_position_change_position_mode(request)`
297
+ - `contract_private_post_order_submit(request)`
298
+ - `contract_private_post_order_submit_batch(request)`
299
+ - `contract_private_post_order_cancel(request)`
300
+ - `contract_private_post_order_cancel_with_external(request)`
301
+ - `contract_private_post_order_cancel_all(request)`
302
+ - `contract_private_post_account_change_risk_level(request)`
303
+ - `contract_private_post_planorder_place(request)`
304
+ - `contract_private_post_planorder_cancel(request)`
305
+ - `contract_private_post_planorder_cancel_all(request)`
306
+ - `contract_private_post_stoporder_cancel(request)`
307
+ - `contract_private_post_stoporder_cancel_all(request)`
308
+ - `contract_private_post_stoporder_change_price(request)`
309
+ - `contract_private_post_stoporder_change_plan_price(request)`
310
+ - `spot2_public_get_market_symbols(request)`
311
+ - `spot2_public_get_market_coin_list(request)`
312
+ - `spot2_public_get_common_timestamp(request)`
313
+ - `spot2_public_get_common_ping(request)`
314
+ - `spot2_public_get_market_ticker(request)`
315
+ - `spot2_public_get_market_depth(request)`
316
+ - `spot2_public_get_market_deals(request)`
317
+ - `spot2_public_get_market_kline(request)`
318
+ - `spot2_public_get_market_api_default_symbols(request)`
319
+ - `spot2_private_get_account_info(request)`
320
+ - `spot2_private_get_order_open_orders(request)`
321
+ - `spot2_private_get_order_list(request)`
322
+ - `spot2_private_get_order_query(request)`
323
+ - `spot2_private_get_order_deals(request)`
324
+ - `spot2_private_get_order_deal_detail(request)`
325
+ - `spot2_private_get_asset_deposit_address_list(request)`
326
+ - `spot2_private_get_asset_deposit_list(request)`
327
+ - `spot2_private_get_asset_address_list(request)`
328
+ - `spot2_private_get_asset_withdraw_list(request)`
329
+ - `spot2_private_get_asset_internal_transfer_record(request)`
330
+ - `spot2_private_get_account_balance(request)`
331
+ - `spot2_private_get_asset_internal_transfer_info(request)`
332
+ - `spot2_private_get_market_api_symbols(request)`
333
+ - `spot2_private_post_order_place(request)`
334
+ - `spot2_private_post_order_place_batch(request)`
335
+ - `spot2_private_post_order_advanced_place_batch(request)`
336
+ - `spot2_private_post_asset_withdraw(request)`
337
+ - `spot2_private_post_asset_internal_transfer(request)`
338
+ - `spot2_private_delete_order_cancel(request)`
339
+ - `spot2_private_delete_order_cancel_by_symbol(request)`
340
+ - `spot2_private_delete_asset_withdraw(request)`
341
+ - `broker_private_get_sub_account_universaltransfer(request)`
342
+ - `broker_private_get_sub_account_list(request)`
343
+ - `broker_private_get_sub_account_apikey(request)`
344
+ - `broker_private_get_capital_deposit_subaddress(request)`
345
+ - `broker_private_get_capital_deposit_subhisrec(request)`
346
+ - `broker_private_get_capital_deposit_subhisrec_getall(request)`
347
+ - `broker_private_post_sub_account_virtualsubaccount(request)`
348
+ - `broker_private_post_sub_account_apikey(request)`
349
+ - `broker_private_post_capital_deposit_subaddress(request)`
350
+ - `broker_private_post_capital_withdraw_apply(request)`
351
+ - `broker_private_post_sub_account_universaltransfer(request)`
352
+ - `broker_private_post_sub_account_futures(request)`
353
+ - `broker_private_delete_sub_account_apikey(request)`
354
+
355
+ ### WS Unified
356
+
357
+ - `describe(self)`
358
+ - `watch_ticker(self, symbol: str, params={})`
359
+ - `watch_tickers(self, symbols: Strings = None, params={})`
360
+ - `watch_bids_asks(self, symbols: Strings = None, params={})`
361
+ - `watch_spot_public(self, channel, messageHash, params={})`
362
+ - `watch_spot_private(self, channel, messageHash, params={})`
363
+ - `watch_swap_public(self, channel, messageHash, requestParams, params={})`
364
+ - `watch_swap_private(self, messageHash, params={})`
365
+ - `watch_ohlcv(self, symbol: str, timeframe='1m', since: Int = None, limit: Int = None, params={})`
366
+ - `watch_order_book(self, symbol: str, limit: Int = None, params={})`
367
+ - `get_cache_index(self, orderbook, cache)`
368
+ - `watch_trades(self, symbol: str, since: Int = None, limit: Int = None, params={})`
369
+ - `watch_my_trades(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
370
+ - `watch_orders(self, symbol: Str = None, since: Int = None, limit: Int = None, params={})`
371
+ - `watch_balance(self, params={})`
372
+ - `authenticate(self, subscriptionHash, params={})`
373
+ - `keep_alive_listen_key(self, listenKey, params={})`
374
+
375
+ ## Contribution
376
+ - Give us a star :star:
377
+ - Fork and Clone! Awesome
378
+ - Select existing issues or create a new issue.