Metadata-Version: 2.1
Name: bingX-connector2
Version: 0.0.8
Summary: A simple connector to BingX Public API
Home-page: https://github.com/demonarch/bingX-connector-python
Author: Ming119
License: GPLv3
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

<div align="center">

# BingX API Connector Python2
[![PYPI version][pypi-shield]][pypi-url]
[![Python version][python-shield]][python-url]
[![License: GPLv3][license-shield]][license-url]

</div>

## 📌 Please note:

This package is a minor update to [bingX-connector](https://pypi.org/project/bingX-connector/).
I have opened a pull request as [Ming119](https://github.com/Ming119) instructed in their repoistory. After opening the pull request and mailing them directly and asking them to merge, I got no answer. Therefore, I am publishing this new update with the similar name. This package may be deprecated after they merge.

Keep in mind that for Perpetual v1, no changes were made, so you cannot work demo with that.

Link to [My Pull Request](https://github.com/Ming119/bingX-connector-python/pull/21)
Link to [Git Repository](https://github.com/demonarch/bingX-connector-python)
Link to my [GitHub](https://github.com/demonarch)


The rest of README.md file provided by Ming119:



## 📌 About The Project

This is a Python package for bingX API, aims to provide a simple and easy-to-use interface for developers to access bingX API.

## 📌 Installation

```bash
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


## 📌 Features

- [x] Standard Contract (Demo)
- [x] Standard Contract (Real)
- [ ] Standard Contract Web Socket
- [x] Spot (Demo)
- [x] Spot (Real)
- [ ] Spot Web Socket
- [x] Perpetual v1
- [ ] Perpetual v1 Web Socket
- [x] Perpetual v2 (Demo)
- [x] Perpetual v2 (Real)
- [ ] Perpetual v2 Web Socket

## 📌 Usage

### Standard Contract
```python
from bingX.standard import Standard
# by defaul, you're using demo
client = Standard(api_key, api_secret)
# or
client = Standard(api_key, api_secret, mode='demo')
```

### Spot
```python
from bingX.spot import Spot
# by defaul, you're using demo
client = Spot(api_key, api_secret)
# or
client = Spot(api_key, api_secret, mode='demo')
# use mode='real' to interact with your real account
```

### Perpetual v1
```python
from bingX.perpetual.v1 import Perpetual
client = Perpetual(api_key, api_secret)
```

### Perpetual v2
```python
from bingX.perpetual.v2 import Perpetual

# by defaul, you're using demo
client = Perpetual(api_key, api_secret)
#or
client = Perpetual(api_key, api_secret, mode='demo')
# use mode='real' to interact with your real account
```
> Note that you can not import `Perpetual v1` and `Perpetual v2` at the same time

> For More Information, please look at the [bingX API document](https://bingx-api.github.io/docs/)

## [📌 Report a bug](https://github.com/Ming119/bingX-connector-python/issues)

- ### Please follow the below guidelines if you would like to report a bug:

  1. **Use the GitHub issue search** &mdash; check if the issue has already been reported.

  2. **Check if the issue has been fixed** &mdash; try to reproduce it using the latest `main` or development branch in the repository.

  3. **Isolate the problem** &mdash; create a [reduced test case](http://css-tricks.com/reduced-test-cases/) 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.
  >
  > 1. This is the first step
  > 2. This is the second step
  > 3. Further steps, etc.
  >
  > `<url>` - a link to the reduced test case
  >
  > Any 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).

## [📌 Contribute](https://github.com/Ming119/bingX-connector-python/pulls)
-  ### Follow this process if you'd like your work considered for inclusion in the project
  1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork, and configure the remotes:
  
      ```bash
      # 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
      ```

  2. If you cloned a while ago, get the latest changes from upstream:
  
      ```bash
      git checkout <dev-branch>
      git pull upstream <dev-branch>
      ```
  
  3. Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:

      ```bash
      git checkout -b <topic-branch-name>
      ```

  4. Locally merge (or rebase) the upstream development branch into your topic branch:

      ```bash
      git pull [--rebase] upstream <dev-branch>
      ```

  5. Push your topic branch up to your fork:

      ```bash
      git push origin <topic-branch-name>
      ```
  6. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/) 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`

[original-github-repo]: https://github.com/Ming119/bingX-connector-python/
[original-pypi-package]: https://pypi.org/project/bingX-connector/
[pull-request-url]: https://github.com/Ming119/bingX-connector-python/pull/21
[pypi-shield]: https://img.shields.io/pypi/v/bingX-connector2
[pypi-url]: https://pypi.org/project/bingX-connector2/
[python-shield]: https://img.shields.io/pypi/pyversions/bingX-connector2
[python-url]: https://www.python.org/downloads/
[license-shield]: https://img.shields.io/github/license/demonarch/bingX-connector-python
[license-url]: https://www.gnu.org/licenses/gpl-3.0.en.html
