
Product
Introducing Custom Tabs for Org Alerts
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.
pybit
Advanced tools
Official Python3 API connector for Bybit's HTTP and WebSockets APIs.
Put simply, pybit (Python + Bybit) is the official lightweight one-stop-shop module for the Bybit HTTP and WebSocket APIs. Originally created by Verata Veritatis, it's now maintained by Bybit employees – however, you're still welcome to contribute!
It was designed with the following vision in mind:
I was personally never a fan of auto-generated connectors that used a mosh-pit of various modules you didn't want (sorry,
bravado) and wanted to build my own Python3-dedicated connector with very little external resources. The goal of the connector is to provide traders and developers with an easy-to-use high-performing module that has an active issue and discussion board leading to consistent improvements.
pybit is being actively developed, and new Bybit API changes should arrive on pybit very quickly. pybit uses requests and websocket-client for its methods, alongside other built-in modules. Anyone is welcome to branch/fork the repository and add their own upgrades. If you think you've made substantial improvements to the module, submit a pull request and we'll gladly take a look.
pybit requires Python 3.9.1 or higher. The module can be installed manually or via PyPI with pip:
pip install pybit
You can retrieve a specific market like so:
from pybit.unified_trading import HTTP
Create an HTTP session and connect via WebSocket for Inverse on mainnet:
session = HTTP(
testnet=False,
api_key="...",
api_secret="...",
)
Information can be sent to, or retrieved from, the Bybit APIs:
# Get the orderbook of the USDT Perpetual, BTCUSDT
session.get_orderbook(category="linear", symbol="BTCUSDT")
# Create five long USDC Options orders.
# (Currently, only USDC Options support sending orders in bulk.)
payload = {"category": "option"}
orders = [{
"symbol": "BTC-30JUN23-20000-C",
"side": "Buy",
"orderType": "Limit",
"qty": "0.1",
"price": i,
} for i in [15000, 15500, 16000, 16500, 16600]]
payload["request"] = orders
# Submit the orders in bulk.
session.place_batch_order(payload)
Check out the example python files or the list of endpoints below for more information on available
endpoints and methods. Usage examples on the HTTP methods can
be found in the examples folder.
Reach out for support on your chosen platform:
Thanks goes to these wonderful people (emoji key):
dextertd 💻 📖 | ervuks 💻 📖 | verata-veritatis 💻 📖 | APF20 💻 | Cameron Harder-Hutton 💻 | Tom Rumpf 💻 | OnJohn 💻 | Todd Conley 🤔 | Kolya 💻 |
This project follows the all-contributors specification. Contributions of any kind welcome!
FAQs
Python3 Bybit HTTP/WebSocket API Connector
We found that pybit demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Create and share saved alert views with custom tabs on the org alerts page, making it easier for teams to return to consistent, named filter sets.

Product
Socket’s Rust and Cargo support is now generally available, providing dependency analysis and supply chain visibility for Rust projects.

Security News
Chrome 144 introduces the Temporal API, a modern approach to date and time handling designed to fix long-standing issues with JavaScript’s Date object.