This is a Python package for bingX API, aims to provide a simple and easy-to-use interface for developers to access bingX API.
pip install bingX-connector # install from pypi
pip install -U bingX-connector # upgrade the package to the latest version
Please always upgrade to the latest version to ensure the latest features and bug fixes
- Standard Contract
- Standard Contract Web Socket
- Spot
- Spot Web Socket
- Perpetual v1
- Perpetual v1 Web Socket
- Perpetual v2
- Perpetual v2 Web Socket
from bingX.standard import Standard
client = Standard(api_key, api_secret)
from bingX.spot import Spot
client = Spot(api_key, api_secret)
from bingX.perpetual.v1 import Perpetual
client = Perpetual(api_key, api_secret)
from bingX.perpetual.v2 import Perpetual
client = Perpetual(api_key, api_secret)
Note that you can not import
Perpetual v1
andPerpetual v2
at the same time
For More Information, please look at the bingX API document
-
-
Use the GitHub issue search — check if the issue has already been reported.
-
Check if the issue has been fixed — try to reproduce it using the latest
main
or development branch in the repository. -
Isolate the problem — create a reduced test case and a live example.
Example:
Short and descriptive example bug report title
A summary of the issue and the browser/OS environment in which it occurs. If suitable, include the steps required to reproduce the bug.
- This is the first step
- This is the second step
- Further steps, etc.
<url>
- a link to the reduced test caseAny other information you want to share that is relevant to the issue being reported. This might include the lines of code that you have identified as causing the bug, and potential solutions (and your opinions on their merits).
-
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/<username>/bingX-connector-python.git # Navigate to the newly cloned directory cd bingX-connector-python # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/Ming119/bingX-connector-python
-
If you cloned a while ago, get the latest changes from upstream:
git checkout <dev-branch> git pull upstream <dev-branch>
-
Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream <dev-branch>
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.
IMPORTANT: By submitting a patch, you agree to allow us to license your work under the same license as that used by
bingX-connector-python