
Research
PyPI Package Disguised as Instagram Growth Tool Harvests User Credentials
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
IBind is a REST and WebSocket client library for Interactive Brokers Client Portal Web API.
This library is currently being beta-tested. See something that's broken? Did we get something wrong? Create an issue and let us know!
IBind is an unofficial Python API client library for the Interactive Brokers Client Portal Web API. (recently rebranded to Web API 1.0 or CPAPI 1.0) It supports both REST and WebSocket APIs of the IBKR Web API 1.0. Now fully headless with OAuth 1.0a support.
Note: IBind currently supports only the Web API 1.0 since the newer Web API seems to be still in beta and is not fully documented. Some of its features may work, but it is recommended to use the Web API 1.0's documentation for the time being. Once a complete version of the new Web API is released IBind will be extended to support it.
pip install ibind
IBind supports fully headless authentication using OAuth 1.0a. This means no longer needing to run any type software to communicate with IBKR API.
Alternatively, use IBeam along with this library for easier setup and maintenance of the CP Gateway.
See Authentication page to learn more.
See full IBind documentation.
Features:
IBind's core functionality consists of two client classes:
IbkrClient
- for IBKR REST API
Using the IbkrClient
requires constructing it with appropriate arguments, then calling the API methods.
IbkrWsClient
- for IBKR WebSocket API
Using the IbkrWsClient
involves handling three areas:
Their usage differs substantially. Users are encouraged to familiarise themselves with the IbkrClient
class first.
See all examples.
from ibind import IbkrClient
# Construct the client
client = IbkrClient()
# Call some endpoints
print('\n#### check_health ####')
print(client.check_health())
print('\n\n#### tickle ####')
print(client.tickle().data)
print('\n\n#### get_accounts ####')
print(client.portfolio_accounts().data)
from ibind import IbkrWsKey, IbkrWsClient
# Construct the client. Assumes IBIND_ACCOUNT_ID and IBIND_CACERT environment variables have been set.
ws_client = IbkrWsClient(start=True)
# Choose the WebSocket channel
ibkr_ws_key = IbkrWsKey.PNL
# Subscribe to the PNL channel
ws_client.subscribe(channel=ibkr_ws_key.channel)
# Wait for new items in the PNL queue.
while True:
while not ws_client.empty(ibkr_ws_key):
print(ws_client.get(ibkr_ws_key))
See LICENSE
IBind is not built, maintained, or endorsed by the Interactive Brokers.
Use at own discretion. IBind and its authors give no guarantee of uninterrupted run of and access to the Interactive Brokers Client Portal Web API. You should prepare for breaks in connectivity to IBKR servers and should not depend on continuous uninterrupted connection and functionality. To partially reduce the potential risk use Paper Account credentials.
IBind is provided on an AS IS and AS AVAILABLE basis without any representation or endorsement made and without warranty of any kind whether express or implied, including but not limited to the implied warranties of satisfactory quality, fitness for a particular purpose, non-infringement, compatibility, security and accuracy. To the extent permitted by law, IBind's authors will not be liable for any indirect or consequential loss or damage whatever (including without limitation loss of business, opportunity, data, profits) arising out of or in connection with the use of IBind. IBind's authors make no warranty that the functionality of IBind will be uninterrupted or error free, that defects will be corrected or that IBind or the server that makes it available are free of viruses or anything else which may be harmful or destructive.
IBind has been enriched by incorporating work developed in collaboration with Kinetic and Grant Stenger, which now forms part of the initial open-source release. I appreciate their significant contribution to this community-driven initiative. Cheers Kinetic! 🍻
Hi! Thanks for checking out and using this library. If you are interested in discussing your project, require mentorship, consider hiring me, or just wanna chat - I'm happy to talk.
You can email me to get in touch: hello@voyzan.com
Or if you'd just want to give something back, I've got a Buy Me A Coffee account:
Thanks and have an awesome day 👋
FAQs
IBind is a REST and WebSocket client library for Interactive Brokers Client Portal Web API.
We found that ibind 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.
Research
A deceptive PyPI package posing as an Instagram growth tool collects user credentials and sends them to third-party bot services.
Product
Socket now supports pylock.toml, enabling secure, reproducible Python builds with advanced scanning and full alignment with PEP 751's new standard.
Security News
Research
Socket uncovered two npm packages that register hidden HTTP endpoints to delete all files on command.