Skip to main content

A Python library for Longbridge Open API

Project description

Longbridge OpenAPI SDK for Python

longbridge provides an easy-to-use interface for invoking Longbridge OpenAPI.

Context Types

Context Description
QuoteContext Real-time quotes, candlesticks, options, warrants, watchlists, push subscriptions
TradeContext Orders, positions, account balance, executions, cash flow
AssetContext Account statement download
ContentContext News, community topics
FundamentalContext Financial reports, analyst ratings, dividends, valuation, company overview, shareholders
MarketContext Market status, broker holdings, A/H premium, trade statistics, anomaly alerts, index constituents
CalendarContext Financial calendar (earnings, dividends, splits, IPOs, macro data, market closures)
PortfolioContext Exchange rates, portfolio P&L analysis
AlertContext Price alert management (add/enable/disable/delete)
DCAContext Dollar-cost averaging plan management
SharelistContext Community sharelist management

Documentation

Examples

Runnable examples live in examples/python/, grouped as follows.

Synchronous API (same as the snippets in this README):

  • examples/python/account_asset.py
  • examples/python/history_candlesticks.py
  • examples/python/http_client.py
  • examples/python/subscribe_candlesticks.py
  • examples/python/subscribe_quote.py
  • examples/python/submit_order.py
  • examples/python/today_orders.py

Asynchronous API (AsyncQuoteContext, AsyncTradeContext, HttpClient.request_async):

  • examples/python/account_asset_async.py
  • examples/python/history_candlesticks_async.py
  • examples/python/http_client_async.py
  • examples/python/subscribe_candlesticks_async.py
  • examples/python/subscribe_quote_async.py
  • examples/python/submit_order_async.py
  • examples/python/today_orders_async.py

References

  • Config

    The configuration of the SDK.

  • QuoteContext

    The Quote API part of the SDK, e.g.: get basic information of securities, subscribe quotes...

  • TradeContext

    The Trade API part of the SDK, e.g.: submit order, get order status...

Quickstart

Install Longbridge OpenAPI SDK

pip install longbridge

Authentication

Longbridge OpenAPI supports two authentication methods:

1. OAuth 2.0 (Recommended)

OAuth 2.0 is the modern authentication method that uses Bearer tokens without requiring HMAC signatures.

Step 1: Register OAuth Client

First, register an OAuth client to get your client_id:

bash / macOS / Linux

curl -X POST https://openapi.longbridge.com/oauth2/register \
  -H "Content-Type: application/json" \
  -d '{
    "client_name": "My Application",
    "redirect_uris": ["http://localhost:60355/callback"],
    "grant_types": ["authorization_code", "refresh_token"]
  }'

PowerShell (Windows)

Invoke-RestMethod -Method Post -Uri https://openapi.longbridge.com/oauth2/register `
  -ContentType "application/json" `
  -Body '{
    "client_name": "My Application",
    "redirect_uris": ["http://localhost:60355/callback"],
    "grant_types": ["authorization_code", "refresh_token"]
  }'

Response:

{
  "client_id": "your-client-id-here",
  "client_secret": null,
  "client_name": "My Application",
  "redirect_uris": ["http://localhost:60355/callback"]
}

Save the client_id for use in your application.

Step 2: Build an OAuth client and create Config

OAuthBuilder loads a cached token from ~/.longbridge/openapi/tokens/<client_id> (%USERPROFILE%\.longbridge\openapi\tokens\<client_id> on Windows) if one exists and is still valid, or starts the browser authorization flow automatically. The token is persisted to the same path after a successful authorization or refresh.

from longbridge.openapi import OAuthBuilder, Config

oauth = OAuthBuilder("your-client-id").build(
    lambda url: print(f"Open this URL to authorize: {url}")
)
config = Config.from_oauth(oauth)

For async code use build_async:

import asyncio
from longbridge.openapi import OAuthBuilder, Config

async def main():
    oauth = await OAuthBuilder("your-client-id").build_async(
        lambda url: print(f"Open this URL to authorize: {url}")
    )
    config = Config.from_oauth(oauth)

asyncio.run(main())

2. Legacy API Key (Environment Variables)

Setting environment variables (macOS/Linux)

export LONGBRIDGE_APP_KEY="App Key get from user center"
export LONGBRIDGE_APP_SECRET="App Secret get from user center"
export LONGBRIDGE_ACCESS_TOKEN="Access Token get from user center"

Setting environment variables (Windows)

setx LONGBRIDGE_APP_KEY "App Key get from user center"
setx LONGBRIDGE_APP_SECRET "App Secret get from user center"
setx LONGBRIDGE_ACCESS_TOKEN "Access Token get from user center"

Other environment variables

Name Description
LONGBRIDGE_LANGUAGE Language identifier, zh-CN, zh-HK or en (Default: en)
LONGBRIDGE_HTTP_URL HTTP endpoint url (Default: https://openapi.longbridge.com)
LONGBRIDGE_QUOTE_WS_URL Quote websocket endpoint url (Default: wss://openapi-quote.longbridge.com/v2)
LONGBRIDGE_TRADE_WS_URL Trade websocket endpoint url (Default: wss://openapi-trade.longbridge.com/v2)
LONGBRIDGE_ENABLE_OVERNIGHT Enable overnight quote, true or false (Default: false)
LONGBRIDGE_PUSH_CANDLESTICK_MODE realtime or confirmed (Default: realtime)
LONGBRIDGE_PRINT_QUOTE_PACKAGES Print quote packages when connected, true or false (Default: true)
LONGBRIDGE_LOG_PATH Set the path of the log files (Default: no logs)

Then create a config from the environment:

from longbridge.openapi import Config

config = Config.from_apikey_env()

Quote API (Get basic information of securities)

from longbridge.openapi import Config, QuoteContext, OAuthBuilder

oauth = OAuthBuilder("your-client-id").build(
    lambda url: print(f"Open this URL to authorize: {url}")
)
config = Config.from_oauth(oauth)

# Create a context for quote APIs
ctx = QuoteContext(config)

# Get basic information of securities
resp = ctx.quote(["700.HK", "AAPL.US", "TSLA.US", "NFLX.US"])
print(resp)

Quote API (Subscribe quotes)

from time import sleep
from longbridge.openapi import Config, QuoteContext, SubType, PushQuote, OAuthBuilder

oauth = OAuthBuilder("your-client-id").build(
    lambda url: print(f"Open this URL to authorize: {url}")
)
config = Config.from_oauth(oauth)

# A callback to receive quote data
def on_quote(symbol: str, event: PushQuote):
    print(symbol, event)

# Create a context for quote APIs
ctx = QuoteContext(config)
ctx.set_on_quote(on_quote)

# Subscribe
ctx.subscribe(["700.HK"], [SubType.Quote])

# Receive push for 30 seconds
sleep(30)

Trade API (Submit order)

from decimal import Decimal
from longbridge.openapi import TradeContext, Config, OrderType, OrderSide, TimeInForceType, OAuthBuilder

oauth = OAuthBuilder("your-client-id").build(
    lambda url: print(f"Open this URL to authorize: {url}")
)
config = Config.from_oauth(oauth)

# Create a context for trade APIs
ctx = TradeContext(config)

# Submit order
resp = ctx.submit_order(
    "700.HK", OrderType.LO, OrderSide.Buy,
    Decimal("500"), TimeInForceType.Day,
    submitted_price=Decimal("50"),
    remark="Hello from Python SDK",
)
print(resp)

Asynchronous API

The SDK provides async contexts and an async HTTP client for use with Python's asyncio. All I/O methods return awaitables; callbacks (e.g. for push events) are set the same way as in the sync API. Async quote/trade contexts support async callbacks: if a set_on_quote, set_on_candlestick, or set_on_order_changed callback is an async function (returns a coroutine), it is scheduled on the event loop. When using async callbacks, pass the loop so the SDK can schedule them: AsyncQuoteContext.create(config, loop_=asyncio.get_running_loop()).

  • Async quote: create with ctx = AsyncQuoteContext.create(config) (synchronous, no await), then e.g. await ctx.quote(["700.HK"]), await ctx.subscribe(...).
  • Async trade: create with ctx = AsyncTradeContext.create(config) (synchronous, no await), then e.g. await ctx.today_orders(), await ctx.submit_order(...).
  • Async HTTP: resp = await http_cli.request_async("get", "/v1/trade/execution/today").

Example (async quote):

import asyncio
from longbridge.openapi import Config, AsyncQuoteContext, SubType, PushQuote, OAuthBuilder

def on_quote(symbol: str, event: PushQuote):
    print(symbol, event)

async def main():
    oauth = await OAuthBuilder("your-client-id").build_async(
        lambda url: print(f"Open this URL to authorize: {url}")
    )
    config = Config.from_oauth(oauth)
    ctx = AsyncQuoteContext.create(config, loop_=asyncio.get_running_loop())
    ctx.set_on_quote(on_quote)
    await ctx.subscribe(["700.HK", "AAPL.US"], [SubType.Quote])
    quotes = await ctx.quote(["700.HK"])
    print(quotes)
    await asyncio.sleep(10)

asyncio.run(main())

See the *_async.py examples in examples/python/ for full async flows.

Troubleshooting

  • Windows setx requires a new terminal; use set for the current cmd.exe session.
  • If the program exits, you won't receive push events; keep the process alive (e.g. sleep(...)).
  • For debugging, set LONGBRIDGE_LOG_PATH to enable SDK logs.

License

Licensed under either of

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

longbridge-4.3.3-cp314-cp314-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.14Windows x86-64

longbridge-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp314-cp314-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.3.3-cp313-cp313-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp313-cp313-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.3.3-cp312-cp312-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp312-cp312-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.3.3-cp311-cp311-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp311-cp311-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.3.3-cp310-cp310-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp310-cp310-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.3.3-cp39-cp39-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp39-cp39-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.3.3-cp38-cp38-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.3.3-cp38-cp38-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file longbridge-4.3.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d4790f7847d1a76be4efa9c69addd5f0bf6d4ef9c8dbccecebcbc8faa219e0b1
MD5 892054c79156c0a71293841440b140cb
BLAKE2b-256 afd2cbb3bd6f54c8cf49f89198f37cfc75b0003e440d1f2c0a5b7e30d3721cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e47dc7b8531f832389abe892ce9b0a9bacd3f0f410b791b1620de0a24407f308
MD5 a51a68c7fc5ce3b2c427460bf760e6de
BLAKE2b-256 4d0c693c76beb9c94b5e261943783dd75f164d7fd8ec852096d6fe1b3dd4cabf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8e2100f62f5778b6783a9eba41899aaca2dfd4feda498595d4880f833e36567b
MD5 d8a5a92495d78fde03aaa05c3c3ec3e4
BLAKE2b-256 90e20cb67a5298701eaf80d6443260afd71d3e2ee78460910bfdcf6bfc571124

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ab6a14467c4420e5160fb3d0278f7665e07ce0a543509caa8f9f1992573e5741
MD5 04c74f8df828670fd5112293d261efc9
BLAKE2b-256 25381909261a07c9c57b8cb811302388c0bc139757ffe8059b82b452ed49a53f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fd0815bfadd2dedf70792e6878ae817442ead20c1011d738a5fba4af219cc201
MD5 0697beb325454f546ef4be9a5bb80105
BLAKE2b-256 0cbf18f66d319d08e9b307c64a112be4de24a571deabc1aa9b46fe20fef37924

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a1d3915da44ad0ad64a4c800f520b3b7cbc7f1f7a8289caa09ccd20a39a25ba
MD5 8ce55138db18ab665316f3942c0ab99b
BLAKE2b-256 f5779058885ed94fb6e6afe1071b6e3e92f8721ff8693263ce4547a827d1062e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3092f6f13c6bd097e834568eb672b836de548c04e0c70118db86984c4dbf2a3b
MD5 c45e068a255988df19d9e4a9e2af4759
BLAKE2b-256 e7a260bb6e17604a41fe6cf5b8ccf519de35bd98cf1172d2fb446a8b48cec4e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 99a03c3ffadbd843df6e906bd28295915bda7b65f3ebc953c21878c44d05db08
MD5 97d49597babec9d3b6859e2a145f228f
BLAKE2b-256 c9725e0bd5756c620565ba39616ca19ea9533ac9e1325ef0a665fb76055b83ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 769fc20a0dddb019a07c48e37a69a0fb2ebb7b753fe14950558126495478b3d1
MD5 e548276174f1f64c626a020fa39a12ae
BLAKE2b-256 81e09713f256b1f9d3e96d4e60a9090194fb8d1c11096048088b0d7f73200b69

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0edf537d2c62d419df1056bce36a93de1aee6e8a09efa48eb64d5ca94ef8f7c2
MD5 32c6d88482dc3c83db0c66bc784dcf2f
BLAKE2b-256 e6c8fd3f5e62b574b7d007350b811d15a73208e28e06e654552383bbb27fb88d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2d7782710f0620b341e7aed8fbe12e8bd68c69564cb2e9cbeefd5f1d5b79916d
MD5 22c5ead00e5c6f9f45ba5590d8da7dcc
BLAKE2b-256 da499dd5adb723904ad9976f1be23aa7f8fe8a80ef258723b5b40bd3ae3fe0b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6ff1f7996eff5698fdc417e4d86df48ea2c9af447fdb84fb2501803711b1f62e
MD5 80cab9c4844ed2412f2fc0f33e736080
BLAKE2b-256 94ee6461a7ba8d7205966137481fc2418742fbb95c739516f55ea1a1ac2c871e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ecea544b50440b3350481c80ff0e844ea7719f13c9c1ba36b3eef8d6d3aba99
MD5 f29d4b9e90c4d87237e35d30c84aa6ea
BLAKE2b-256 d77f4201281e31ee5cd4aa77c94de745678cb8e19c15f631d4f280f15c88468f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e452264ba95c7899186610794b25b226062d55dad4250e23e666aa6b325cd2cf
MD5 bb09e8b63127277f46d0bdc982a0af8b
BLAKE2b-256 7b42203800b9c68e1884da3d958ea25607faffe2121b944f8e95a7cc1fe0a3d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c44adb9e3a35fe87d809e6f6dfab2f0de2a8a3ef3d0fa103a600b7066acc70ab
MD5 36359098578dd2f4c845d5dfa4e4dd47
BLAKE2b-256 28f8d603f2beece451f0ecef761af020f7eae64315176dadd89fdc4a435a4d6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fe2cb0114925ff25287b4b227f3367cab4837fc5aeb92f29f373f13ceee86d1
MD5 9a2d47728a84e637e25313ad85526ee5
BLAKE2b-256 8a5e2f3e7dd2626fb8fd0723ae0de96e4a71d098a49a7271eb74679706cc9902

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b37180343fcc9bfd366193626d8a4c62d9b551d3acff1a13952905a94e9c307
MD5 93af4e2b3a427ab9c7a604d1a507f5d3
BLAKE2b-256 7458e8a51ca7d9213ec7da12700a6206c33c71a8faf1a3062338eb170d3ed6cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c493ca3565da156051dc6442e40b20e1ce1bbd761ac87e51d94d3309eb492f9b
MD5 bda20198d9ed98f0f080307af9e2f4f9
BLAKE2b-256 cc06ee71e9c073df82aeac942f303429dcfe2148da3a4843b5a289101f51a009

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8b1249a28386d3a91e9779e2be10b5b9773a584527712440eef570ca1803dbec
MD5 3709ffeabd935e3ee768c1edd77fda7d
BLAKE2b-256 62fef0a5669ea5c20587225a0691aea257e4bb0828e86a6591c96015ca0238b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32ce2130dd76b86a6185cbb83a09ae018e6f493bfb344daea03e7c622d14c14e
MD5 037ec27acb490b99ed3ca7ba029e3962
BLAKE2b-256 37204bdfa6172189bb260e0ab9317470bab85cceb0b78b4bb9840a2afc213296

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f29506f3810b3bc6634fb83f64daaf2c6d445acf90a7e110cd476f857644e309
MD5 2048d7c118f80c1a5aa9a0dbda32feac
BLAKE2b-256 7a7a727e965904faf1324149eb46747f2507f6123c8cffa9f216c9f6c7910283

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5bdcea04d066094a012f1e5117e71049e43ab395dfed11f12878b6f88afbcd30
MD5 f9cb454acac1e74857c9bcdd29d6ed5a
BLAKE2b-256 63c64d5ee8613c967477a18bcfafa05dcf7ac50d62b08362d0a0919f9d85792f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fa962a4b813cf3662a4fa24e31d61ab33b912d4f125475a967bd3f6a5b38e17
MD5 92c1fdef034f5bd6c6612683cc1a391d
BLAKE2b-256 4edc49a4102e8af4429374cd70e8a43541a20a6b5dd1d519b7c4d5d198ab4812

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e90f70bcea562951dfbff572c7d9238c5e65b90be23a097b0e1b9e7c89a0773f
MD5 cc88c669d3312205d65524942371bc6c
BLAKE2b-256 5c3d5876973a690257075503ec47e6709b8f548ecc0c4a004f713c434c35e302

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8d92de3d91f5a006cd267ffb5de362e61b84f450c70ca1cc46a5fbb1dd8eba18
MD5 1f46c888b5afb3c3ea0b97074d98a274
BLAKE2b-256 99545ba5bdfd2792496a61c5197061b74414f62bb0c5199a7161ebc0daae403e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 aca04b31028dacbbadaab92f41a7b2570ed47bdcd66dc000e0a1e1c9a805943f
MD5 1b7ebbe1be60385b1be8c105d3c87b96
BLAKE2b-256 421c9f27714c591022e5f98679290e78bc1200448e6a11c8d2acbc17ef3c9ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba57dbbc734f35dab2a9f22d30ed7c81d8279871ea60b5db13e68d48a55969a3
MD5 faa652c28aca711628bcd83ad220a859
BLAKE2b-256 df4860b69728ea7225bae25ad2ab894fbc5663ba0bd348bd063df6aa149299b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff97ecce9091286452381427790915a00f42fd5ec5f5eb45a9975cf2c7cc6325
MD5 e3be7b77b5a802906f877c482581140f
BLAKE2b-256 97885a82bba6c1cd7fbb0b4c8e286603a105c4c10421a495d8bcf9317438c180

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 21d669add60c73be581ad72221d64f6ff8948474104a760fa86e6b400326aeba
MD5 c2bbae2d91c9d6b51fd04bf78090271e
BLAKE2b-256 3eb71d9c65c01f745feb6f80208242fe19863dc9640c922e540619c302466b94

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e0706e1060b5775d2f2119e8d43e4e648e1935aa47d94e0510b40464a0cb687
MD5 a2c9684cc372553cb3249c9019fd8a02
BLAKE2b-256 b7ad56db3f253147e3ae98b719e3179929db728b1521599fc4bc9e036f150ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 597f22fcf8c45961d4656893bbb5539590ac5eb8e5cbb3cf2d85b93e365c225b
MD5 a1ddcdaf5a480c3579501e21c53c2872
BLAKE2b-256 08497396f8c72c5b00821c568a0984a0ce03376ed02282bcc647f97742e8b22d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b530e9bb82a8b5416b3cb9d896bc2b1cb54456733f777e3e2e5068fec7ae23b1
MD5 e60060c2c9d197f62c354f1836a8cba1
BLAKE2b-256 697dd1a1e06f947b6f1f33a2070aa0eacad2343eef66eb46ceadad0ac34ea4ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ba03b7568a146bf3e85e521af98da9595a907f352a7c2d95f73e82d51adb7eed
MD5 6aee5cf183760a35d9700e67dd0a9ba1
BLAKE2b-256 0a0a5a18e3b2a3d08abbe1526b8ece36aca2c98456930b6bc6405e5863493ada

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 644a9c439851949394089374ce8911e4d1ee2d70be991820db2e6c9d620a0aac
MD5 6586f6739710e6ad2b2d7b98bf55828a
BLAKE2b-256 8b67d87a2ac82775faaaef8c5d25019ca33872832cd07854de35c137803a63bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c40e427fb683e255f87bb331c30b93e3db4ee56e7a736c13e445e7a124234b3b
MD5 61eec34e621bc5ede1915f401a9a380e
BLAKE2b-256 3b05f767b56ea9cbc1fe90fcd738b97e91be979f5ac5f67aac6f84195cd98b40

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 767e274a61240342c2b89fe81dd07a313c8ae881b0176394df155aa98f52758d
MD5 c3fb8db2b062b0d466d78892230d0b21
BLAKE2b-256 e50712661a1a859ade0832d671d47e8310360b3ea73a44f29885ced3a743555e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62ebf394df7f2305ad8ad3429ce596fd398800bc271aca152bcc17e1f738da42
MD5 77af310a6f0bd68e219f23ebf1536531
BLAKE2b-256 2eeb820be3a7a69fb7adc8bd7ab069742255b4fff13315a712c72dea1982dba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bb3a5c00af284805fdf61a3c0e9cade95f6e83996cace9fdda03947e3c32712
MD5 2e495c1edfc212a85186cc927654e540
BLAKE2b-256 dd85d08a53c71db025a76aa1ae1d9dffc2b88854f656fd1d4598c59a336ffcbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 eb9f6d3dea8f6880ac6c1ed46aa4c3e0ee38112f6f14347c17f7c2af302d9075
MD5 c97b9198a400b6098373763030f8527b
BLAKE2b-256 54de805312cdf5f28d109f7a795265cb5423f5375ff45b0c6fda4261c6474d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3fa21c4fe4e697c4e1843f0eebbf8bd69675b4fb496e19ce096ec1997a963550
MD5 1aabef18b909d4ecbe1dfafa0b6a14b3
BLAKE2b-256 f61ad2656ce448355ff02c9d8c1067eb3c5da2e2f724417cd6f6024af56d0e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1341e0b089e9dddee59064495e70ad369d3718b472c3f4abe423e73f2cb29fe
MD5 156a991d08b4ae86058aadc5524acff1
BLAKE2b-256 ec8190871cf6915453f9d30ba48caf768b250ee1e694ca1c80af54bfe2914688

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6a4982d6fb83e55bfc127e1d4ce1d0d6ce8deb8c800e37e7529986b5607fa46
MD5 5ac4e3230f3d26b5825e99a48e537159
BLAKE2b-256 eb9240324e2f8e10c38f8343d355ad82a02ffe1f3732bb57c8f511f91eb51b6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f7df255a110d8fad77151f55f6c9a0985a6326031081c85d11fd98592e98530a
MD5 16606509089990f1cb23452aac56a814
BLAKE2b-256 493e687784ac4d3a83ef491c10c55b5189fce38b5d43e877107afd9a39e7add8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-win_amd64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8bd07612f25095767471386b5da982cf3470dd959bcc945e3e7e2a3d76d54471
MD5 a092e5e73d42de726ff85cf6676cbc2f
BLAKE2b-256 5691b6aa24feeec3c5e49fa1c4797c53860eadbcd74f848597d0718b431a4325

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0badb4cfbf8453ffbfd8bb8e34321c107c36cb078a3ea167957336c3b8a9cbb2
MD5 c3b6e2289371ae10d299ef49b81958d6
BLAKE2b-256 88918c397330282704ce5908febc151ca4b154244be3b536f2260e0aece577f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2d3ce18a01ef094d9f1c9ba79db38786f675425ae6ab6f797b0faa1e82f94885
MD5 bba262da8fcdc7927286ca7e6cb4a2ba
BLAKE2b-256 cca9d197f69c672b44bbf132f8a639cdb45b7cc155a0165d1cc925b4684358d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5dd0c20721b4649b55235b6801d28220511e737de5c070c336a3cf835cf6c709
MD5 518828466256e3a59e17402f48e2d1f5
BLAKE2b-256 788a5d9425a7a649c58b21c41110787015489f141bb93dc59a411cc13167e9aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 594b3ae8b54932e5be7baa242bd26d6ea64f52f31b39262e83f3a62a0506166c
MD5 cff1f1b7884bbaf2004f588daffdeacb
BLAKE2b-256 ebcbcd92f05acb5e991c48be48214a96377c8b16eed9e91d7935f213e30e73cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file longbridge-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0aedb51ffd3a16d8b1d08e12687aafc416cf34b0459c6af64ed9f766bbd031e
MD5 39e5fd4aafcbbb48fc5dfea412af05ae
BLAKE2b-256 e1a671aeebfe3301125e8fb096093fcc9c9aae3fabde3bcf7db484490f5c0788

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page