You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

blockhouse

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blockhouse

Blockhouse SDK

1.0.31
pipPyPI
Maintainers
1

Blockhouse SDK API Package

This is a Python SDK package that is used for various functionality from the Blockhouse API. The package is published on PyPI and can be installed using pip.

Table of Contents

  • Features
  • Usage
  • Available Functions
  • License
  • Contributing
  • Support
  • Changelog

Features

  • Fetch trade data from the Blockhouse API and send them to our kafka topic.

Usage

Get the API key from the Blockhouse API and install the package using pip:

pip install blockhouse

Using as a Python Library

from blockhouse import Transfer

client = Transfer(api_key="your_api_key_here")

send = client.send_file(local_file_path="test123.txt", bucket_name="blockhouse-sdk")

print(send)

trades = client.trades_data()

print(trades)

Sending SOR data to the Blockhouse API

from blockhouse import TradeClient

client = TradeClient("your_api_key_here")
res = client.send_trade(
    order_id="12345",
    symbol="AAPL",
    quantity=100,
    side="buy",
    price=150.50,
    order_type="limit",
)
print(res)

Available Functions:

  • TransferData: Fetch trade data from the Blockhouse API and send them to our kafka topic.

License

This project is licensed under the MIT License. See the LICENSE file for more details.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any improvements or bug fixes.

Support

If you encounter any issues or have questions, feel free to open email us.

Changelog

Version 1.0.9

  • Added the ability to send files to the Blockhouse API.
  • Added the ability to fetch trade data from the Blockhouse API.
  • Added the ability to send SOR data to the Blockhouse API and create FIX messages.

Keywords

python

FAQs

Did you know?

Socket

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.

Install

Related posts