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.0-cp314-cp314-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.14Windows x86-64

longbridge-4.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp314-cp314-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp314-cp314-manylinux_2_39_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp314-cp314-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.3.0-cp314-cp314-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

longbridge-4.3.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp313-cp313-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp313-cp313-manylinux_2_39_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp313-cp313-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.3.0-cp313-cp313-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

longbridge-4.3.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp312-cp312-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp312-cp312-manylinux_2_39_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp312-cp312-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.3.0-cp312-cp312-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

longbridge-4.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp311-cp311-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp311-cp311-manylinux_2_39_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp311-cp311-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.3.0-cp311-cp311-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

longbridge-4.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp310-cp310-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp310-cp310-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp310-cp310-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.3.0-cp310-cp310-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

longbridge-4.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp39-cp39-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp39-cp39-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp39-cp39-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.3.0-cp39-cp39-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.3.0-cp38-cp38-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.3.0-cp38-cp38-manylinux_2_39_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.3.0-cp38-cp38-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.3.0-cp38-cp38-macosx_11_0_arm64.whl (9.9 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.3.0-cp38-cp38-macosx_10_12_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longbridge-4.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 10.9 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 39f28b4db9bd3098149b8b4f5666ef93c7d14f4b4878580ef2ad17361e2f1437
MD5 f3bf0d29148146c039109ee33feb38c2
BLAKE2b-256 d0f8eabdd034b97224b6e60b8552ae8f022716cfee445595f37729f26e3da748

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c2bd78bb71c4a823e93e4f63f344ecea86de5044705325c17875b3284b0ac965
MD5 481bf8d10ecbe4bb35c98edc0ebc60ed
BLAKE2b-256 f6c42e12a1bc9cb36698bf53bea2f046ffd6e32221a5a3e13dd27efa5fe8318a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c1f925eef37d5944ac7cd200663105bf653604758cd56b9331d8f161718d920
MD5 23aff79c8328da57868cba47c392f196
BLAKE2b-256 ef3f80b5333539befc031c237cc957798d3a543baf0b1eee83c23ba3565011ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e09151083323623761f8025aab571b68429070baa7618226de5c33b72b4d7f03
MD5 445479d705c327ef2bbfbe3acc91c23b
BLAKE2b-256 4ed37a2838b5fb23d77f314afb0caa1f1bf3b1018401e636ab71724841e57b5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 63c87d1c3163b56708ed6a1bef8eaa7d49e26ab0dd3ad3bdfb5bf6086ed15b10
MD5 827e6b589cca02214cac2bfb267bbad9
BLAKE2b-256 c10fdf18f441cd91378193e6f8a0a51b6f8eebf03327b62a03bce478a1d403e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57d25c55753735853f26bf15e8b221bec31c7d6710904ef852617791fea5f432
MD5 53c2eca24ea405fee6a44af991be67bc
BLAKE2b-256 08f7ebdfea71824a45938a3f98f44a17ee84cd556d8f07ef38ba6186d6551871

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f14b5d465e6523bab3cc620fb13f9233c189082bb0e937965822f794ab970ac
MD5 c2ad25d304e61a446e6286eeb3ef404c
BLAKE2b-256 4529b1cf1b27121fe84a7f36cc1ddb49f7218aba306934e5186f6e06873a2ecd

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8dbaaafff6c8c6d7b6c1af1ccaefef1b13f03ab2a17332f42894c3847e1387ce
MD5 6e0fb8158e82612fb296387441cc0609
BLAKE2b-256 2c95ecf16c2b791e1eec7d116a2acc7210e7ebf5c4535a8f507a6de12b291410

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c6e9b732cc33259f09dd104938628df4261fd68ca2ebc385856bf0d5da31ace
MD5 0c8c6dac399aff8eccfd5d1c8b7b2506
BLAKE2b-256 c7cdd6b94a92ef0d899cfa0b390ed7afbdca170a79d4073974244c012702b0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9dc56b4299dd6f6ccda34b1719fe4432a0f99c9c170144e4b9bb23ea2d461cbc
MD5 2c8baa5aa9b4b56d07bd4dd3556f8d8c
BLAKE2b-256 909e91caaf44a63f5a2846bf4adc12217bacd79739100188185971596eebd9ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6068471d7f207cb13f6081bd0ea6d49540fd16f4b5ddc880f8c188bd9b86e70b
MD5 c63e58b88603532a050e9e9266415629
BLAKE2b-256 fb37f520bffe4df3d36ba191dc58b375f8fc11ed89075a1c0332bb783fa60359

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5eead362fe7595d2201169096f8a16b8490fbd74abcd4a36b43d9534f47a785f
MD5 6e812627df5165ff1049f0eb4c1d96ff
BLAKE2b-256 5195bef9bc56667444f61d61c5d3e0c118e425824a2592cc057c4f773d866706

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8addd72adab20d772929a6e12fb9b59d0dc005a8a410cb70e50e76725458d00c
MD5 bd5a2f53b232c218f3d6865a69152bbc
BLAKE2b-256 c00c10c25c1fb5ca92046e441bad1b7fa87be189f5553d4c1301353b84fd47ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8cb269997e245ac6004dcec68240f6d0adb9639aae8f94a7442bb5ecebfbf749
MD5 00789c1876d9a8a4aff510918aa3d678
BLAKE2b-256 4ffefef0c8472c6ac65e0bd8be9918e3af1191261535ba6929bd4492e66bd4b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 06b2fe2ae244b5e47cbe8cf2205bf1ef145d82347a90630b7d59a5f367152918
MD5 e58e5a60ba87dcee54dc0da5fb1b96f6
BLAKE2b-256 64368dbedb3bd4d363777db5fa9e414870a406d4c6167421d62ea5e7e48f4e76

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b96bc73582309f993deddf844419586d6f1246002dbf2774032f4637acf9190b
MD5 60e0a07836aad571df48a37d6db82514
BLAKE2b-256 15556d188e59d84ade3e2abe0d56aa34f8a6834092383da1843afabea1fe81ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42e93acdbdeab122bc6734f66359ba385faa3c930cf4aa016b4c4aa15b89e6c2
MD5 e6c57d99e6fec6be897072937c3ccf20
BLAKE2b-256 4bcdd87b66492183f3a44f03a8d3fe1ab00b70f7711c92583cfcff867af938d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e5fa5405de6ffd9ae3281b05f502b84f89dfe63a3668f90dbf06953368d5c0df
MD5 d9374cd114e809b600ec291769048176
BLAKE2b-256 9ea56e930d37fd37923d837707ac0cd4f92abb3b870bd5a11ca2b1a72cd4f735

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0403ea995ffada88eb4e684323a0349ac56e0a0afb9d9eeed3d91ce543525b2e
MD5 07b962f6333165525f892946eebe5f56
BLAKE2b-256 dfbcf331f448a62e844a461648185857993c5cf82d1ae9363edafa24c72ef9bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b94e4a7e885a9d3fc6fcdb966854f1d7f8930338281e62c373ec17dc255131b9
MD5 33e73c50bbb2aa0fc12a1d6c71c152e4
BLAKE2b-256 0efba631ca69748850b278257c391ed1cc0cf5f44b769aed02a75887bdb91c42

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ba7460ebf97fcb5b23bdcb4a72cb3971eec6cefe07033c84a90b31ce978bb96
MD5 c17895c34d2cfe594705a5c34b5c65bc
BLAKE2b-256 173a9dbc6409abbe3ef8fcecc476796037b8fca9232afd3a49a04ed40f52e4b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 66761f8a02328e9e36a2c2588a1181710892db7fc394886ab38b41647380a40d
MD5 baa76488696adfeef7e97cfc144b93e9
BLAKE2b-256 bd60158220f06831ed97c0c819d2cd267e575f9c6dc97a3fdec2fd86af814dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24b6e99ef30dcfaf228089c829ef9609aecd8f12c6786a494ad590bdef40fa94
MD5 1b7388117f0979181626289d1afa46f1
BLAKE2b-256 55ff1fb1eaf1f48920fff91b3b79f2cab98890657863bb0dbc7a7be4cff6c26a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3eba47b450419e56e07e16b152bd60ca15e509b89459527b910facee61b37c93
MD5 36df9b79dda6b7c41a467c624d91cb46
BLAKE2b-256 b1865c1f98348317a89bc5f12be5be0fb56fba078c8d32b12083b7fd9ba5cb57

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a77af098452029cc82786040ab34d5ce8cb44cf4566347b1ef48e92fad0d0447
MD5 8c3f7fca46036b0cdbb8717b61a5fdec
BLAKE2b-256 5a2b37810a5e32c9f7a7b03dafa8697a1b119fe076792c7b7577be406a5ca3e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 44ae1b7840ecb7fdc19beec8de59c09ab10a1269024dcfcfe41658fec377207b
MD5 05290924394223c8204dda45ce2d74ef
BLAKE2b-256 f9d41c724ab04d5a07bc564597bac225781e29097d2a634b53b33f7e5ad877d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 448d8e07a57bb9c32247c5be159a1c11a9e76268d965e7145c0ca7dbd30d16ec
MD5 e768654886c77f989d6eb595da5fc0b8
BLAKE2b-256 46cc019016313f2095d27527b230bb5c99d6698afccbf579e18e5ac34a580280

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ceca453b863dc5fb8de89417fa540dcc4fad37dcc3fb283028edad286deac5b
MD5 28d25cd42252b05da31e397dec7d30de
BLAKE2b-256 9037d2183d642ea354d7b118d6a1bf1352e7983899da389de233b5a0fcbcd8cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4554f15c9299376b7a480c35cba050e5919429183289d95f04ca9650cfa3123c
MD5 340eaf890a942c97db3f103d854870d3
BLAKE2b-256 dc0c334497a0490fb1449faa502dd7ba05b6254b66886ed5071e9a8fd569ba44

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f9de734b59b72269355e33aac1c34918bedd754f848e1fd8195dfe16f6694ec
MD5 e52eec9a4f15ffa7d0f45aebaef9d305
BLAKE2b-256 3bef16f06c130c0c6965835a7bfd489c9d99833a225a835c1d4d50271bd9a51a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 45f7e38127e0f9a31598a95f1512d4c81a7b2c9235d387fa7ef29c8db579fa59
MD5 93e2de95e219019cc1f3ba131226da24
BLAKE2b-256 3e616eb31a0c4495ea326301b6aee4610968e228142f6d436322db31b6a5ac33

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a5dabe4048d3ccc291d174a3a2b1c74b73eff1c40cb64c8662792b2b91570a72
MD5 cc44da881ba26b82d3215de6eb54496a
BLAKE2b-256 d3096324faf9c7eccee9d75bd8997110e94a70dd9f2b3e0c202232f8409338bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 870473c7c2bcae10dea299bd1566d7db067fe6801b2baec7353ec4518adbe228
MD5 5d28e55348a430be85161cc2dc289a51
BLAKE2b-256 6482f77276ef984bea9d88372a6f3eeae892ffd3b78f7a3240929156f7c27e5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56afc0e06e38b0b566e07b89469e2049d88b077a6bbfce7dd3d26d0995520dd
MD5 31fd05c25c9677c39ed2959d5d559ce8
BLAKE2b-256 0d3855248795430faee6ae8c5dbd056365982f4c97eb82da1d1821d03535ee21

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7664ea11a9b9a70533c3dd8770727bc58c086a9f5b6378117446c323f60b9b3
MD5 0b7dc7ae6eeff4c96e5bdda846e960d7
BLAKE2b-256 dec77827eefbf30f03458a166b5ddbffb05288a69e0ae7795b53214047a8e6c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ab774004b9a8e398c9a8a884d94da6995c6d380ac3961c0361879c822b6c8f1b
MD5 390c10c85723eb4bdbbd3c74d81a5c5b
BLAKE2b-256 882e1a3c78b54537d1f8f114f741078fef535f36836eedcd94255eece13ae033

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cf13d24ce1ce8f1019ac893e1224ed5915fc3584d6e724151a9178a7f67aaef
MD5 b4aba76d50e13e71969fe77c998127d5
BLAKE2b-256 feaff0f623010f2b63191fab48ae8b1ce0176145edad466aecdee6a42c90ef76

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e464393ec57a4acae7e380762aae059e5f76e049c14e5c54efdc96ba71c31934
MD5 10b38583ec0b4691c2b19c517cbe5ca0
BLAKE2b-256 89e75de0820d2e900e957a3b026c1d8effa956fb999c036be896c36c6eb85b1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1b6bbbbf66f169518a5e72aec9270ef7d969bec9432b7ac2a4546e38825a7295
MD5 304c13fb6c08b9dd6406081a8dabc120
BLAKE2b-256 7c436f260421d28904333853e50d797c45ad46028919ae68abe804679111aaa5

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 327307d02ba22623977094fe68fb282a9571850d29a3b1215071d6e16c5256dd
MD5 57146ca755fde493daf0e41233d67a75
BLAKE2b-256 571a2f7dd42d4fd88dc8a395bbfa46b46ffba2e6dcec315f8c0b256f00c9cfca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b1cb59a4baa81d25adaca58b12e7ad74f460d604801475e246b5c770a2764dd
MD5 1df96d59831dc0f14968ce2334945a25
BLAKE2b-256 9b96be992e178a1de53e7d07a6273661871286f5fd1a0f1f97898dd491f17093

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7ebda1e42fde080cc59c174107e6121faa035998d3bc5489f1d21524f26c0e51
MD5 a629d11c7f6ae6fa2c95d8c86f4860c9
BLAKE2b-256 889a31e784dc07be03c4fb8901db37ed1048db760e7258418ce695d1078e8151

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.9 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.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 173396fc33ed3fe68c88051f5b1803fd83b6348218a05bac5fc69035974eacdf
MD5 0939cc91305cab931aaa76343a6d7e42
BLAKE2b-256 f2eaf38597ec9e5145eaa3fdb40f6dc62655481ecfb979256e8e75c092aadcbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8402d3868168c7b66ef35916ac34ccf878878722c38e923545accf38d45ffa6f
MD5 0364cbbd90501bc0cd627c72c92c6e63
BLAKE2b-256 0cbdf726d8ff3fd28985b0f00e0524a5317177d55e36a829d35d4e2bbd5f9caf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50597fe91a92a8543bf46c9a54288776e24428bb76b457ae1d2ca87065463be5
MD5 2f866d65199d3e62593d5403468951a4
BLAKE2b-256 cce38e9f5508c0c009c5c97777c184dd41c831d2fbb92771f8a7e6183d29cd50

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c3e63d05c8b23bbda359ed15dd40517b817d1bafdd58e30d97a106bdfc6b04d2
MD5 d9723a3c554c639d9f4b1fcaa86b7ea4
BLAKE2b-256 e314fc634baae760c626a907fca8de64f6d894e0b12d9b83cc5828f900189291

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a084200d39d9cbfdce30dfb3639e6f119090a2aaa5c4b3ad0b8e03f1a791a37e
MD5 b768da123d4d200f7d78b4fa3976db26
BLAKE2b-256 94dffce18cccdc837e1e7a308ac816576595196a943ff866c3b779d0fa1b6d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9698a5f5c4183f4aeb97c1bbeaa1e5a643e980e014e9b7214725e91a92da8764
MD5 65e65481509eb856b91d929da1ddbe99
BLAKE2b-256 1e7f4c5b4992750bef58f911e07661acddf1f14e0f7875f4d2c9f3c0c75ddd5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longbridge-4.3.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 421bfff6d8b0afc0ab3f670c64ec691605c7abcc576c448755e84f6ae2055c77
MD5 cb4e1d40ddaea06d7b410be98e329f67
BLAKE2b-256 9650024b1e8a7287d36401c27297d0efa207f4c21ec6e35d11b730065689b3fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.3.0-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