Skip to main content

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)
LONGBRIDGE_PAPERTRADING Enable paper trading mode, true or false (Default: false). See Paper Trading.

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.

Paper Trading

If your account is a paper trading (simulation) account and you want to place orders, you must explicitly enable paper trading mode. When enabled, all API calls target the paper trading environment and the server validates the token — if the token belongs to a real-money account the server returns an error.

By default this option is off: the server imposes no restrictions and accepts requests from both paper trading and real-money accounts.

Via environment variable (applies automatically to all constructor methods):

export LONGBRIDGE_PAPERTRADING=true   # macOS / Linux
$env:LONGBRIDGE_PAPERTRADING = "true"   # Windows PowerShell

Programmatically:

from longbridge.openapi import Config

config = Config.from_apikey(
    "app-key", "app-secret", "access-token",
    enable_papertrading=True,
)

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

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

Uploaded CPython 3.14Windows x86-64

longbridge-4.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp314-cp314-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp314-cp314-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp314-cp314-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.5.0-cp314-cp314-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.5.0-cp313-cp313-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp313-cp313-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp313-cp313-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp313-cp313-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.5.0-cp313-cp313-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.5.0-cp312-cp312-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp312-cp312-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp312-cp312-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp312-cp312-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.5.0-cp312-cp312-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.5.0-cp311-cp311-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp311-cp311-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp311-cp311-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp311-cp311-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.5.0-cp311-cp311-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.5.0-cp310-cp310-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp310-cp310-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp310-cp310-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp310-cp310-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.5.0-cp310-cp310-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.5.0-cp39-cp39-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp39-cp39-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp39-cp39-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp39-cp39-macosx_11_0_arm64.whl (11.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.5.0-cp39-cp39-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.5.0-cp38-cp38-win_amd64.whl (12.9 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (12.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.5.0-cp38-cp38-musllinux_1_2_aarch64.whl (12.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.5.0-cp38-cp38-manylinux_2_39_x86_64.whl (12.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.5.0-cp38-cp38-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.5.0-cp38-cp38-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.5.0-cp38-cp38-macosx_10_12_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longbridge-4.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4f9c5b724cfa899617209f9b0540940692a0ca78e877fccbbb084b16e3c75ac3
MD5 124e0d7f4b3e00376c9c67cf01832450
BLAKE2b-256 3abcd9b6f9e9ab23097201be4aed7880e7bea6e20652cfdfc940a7dbeb7b4316

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 098aaaa2fd93fb14665a0635e5d620bd57362e032ca70ffffa0ff047178ea22e
MD5 4cdf7fdb59b4ab2f39f5049456899d15
BLAKE2b-256 594abbbe840e2f1c99afa4024f83d934f99c0562a255ae415c8845d104e3aef6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77b6d1bd79d87b94beb74f39d9a1665910d4420a8a08fa36c489014a3d1a603c
MD5 bfcaf6138447d8c7f94e1417e17f159c
BLAKE2b-256 658309678ec6df7cf34f300b70eff09b0d8d4f66e1faaa50cc97f4358e85ce58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d291b5d6ec4a05cf81eb2ad9e9d25ede810a169ae9fa564dcfccd778e43da57d
MD5 d1738cbbe20491a2a5e0011d6d490f3a
BLAKE2b-256 68ef9998c6487cef4f04086416e665d37ae4ab280e3dd9e7816cee10859e2fa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 cbdcf833dae1d241e455aa597243e85f6db874013d0588d64969217f5b1699ed
MD5 dea9afd17c72c3f8af3adbedc5e30d09
BLAKE2b-256 078ce216ae0f231f3c17b57ce4d4e231588312e723c6d8a71e317d5653042d9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eb0b737d63d57d6479c035d3a9cf40476c03ec61d7045a6aba1b3a2ac8301f8
MD5 7f3c3a2af64ddf7b63183eac9df80fd4
BLAKE2b-256 6a38e7bd572c576804aa67e53fa0c654a4fc7b33136b320d0e555d1e426fdc54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d9b9cc21351b486736ea743103769fb17a52546895d06c51e13c7bc51efd1ef
MD5 ecde0ec93955a1ef389a8873f602ffcc
BLAKE2b-256 260809fe3d38f48952918d45def0acf36539c6fdc5decc2459778d0feb65e115

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dd923896c06d4ab947f4d1812d556141907919cd2bc18b4b80a906afabe96ede
MD5 8b7f0b7a5b55cc1aa9144a10207bc6cd
BLAKE2b-256 4fad9acddc5289d87abec006bb7a2630c67cad98559d740243823ea2d2a81b90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0cc6e0a208fba1a2150742f7d2acac295d913fa951fc020add54dcce5c2212ce
MD5 e4f2e49a2102b8563a30304d2ee5789f
BLAKE2b-256 43ce98da54877a0920de895631dc1cda338bb5a0afe39318e5eaa6bebbcb8461

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c214f82e21d80b8892bc801657df167a705fdb99a9a4cf221865cefb3407d14e
MD5 2c1d1639e159f74d1061a4ba66674aff
BLAKE2b-256 28c0acb8ff746fb0610e4efc0b23db246f6d2e5afc8dc60d83cfd4320fcf6c63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 39f0515b4b6767e7ab43f87624028b03e61bb9afe20a9343c0c5fb0b2082edfc
MD5 6f61b3fc273cefcbc5560f4b197bb197
BLAKE2b-256 e2b0a5fdf483f924e31cf30c838f1e7a2d00592ba392f6ef88a04c8676096d6a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e6780f15f1c8a19f191593b02f1a1876523b643c2983371cdbd71c1976ac47ae
MD5 6edf13cce05b640af6a85ce53d2a11f5
BLAKE2b-256 2455d98c5be9c96ce9746bc493af2f4ecf360913189c527947307641ac23b70a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9289deabefccd14d74cc5dd690291e99f8e256989ce121283d510d6b2bb9bcb5
MD5 82426f30c253d3dd27f068dc800c5b36
BLAKE2b-256 701fb583192fa920279b6c85ad12f6792941db8b012cc5cd9a6824f390e72434

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d360e2a730df3b81185b3470b0a78ef49c2fd0f35e3760f7cd3827e8b7fcf9d1
MD5 ed8cbda7033a6dcbf8ec41ed37def584
BLAKE2b-256 03be792eae1c39174e55e0ef6793b75177affa1bc16d20f90783af9dd477aeb2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2ecee6445155137f1d173dddad7825f87c385dd452d97cf5e8908bb22e12ae91
MD5 94a196edaf30d9f527d5e9ba24875b3a
BLAKE2b-256 fa67505b4fe2130087389983c754aded12a517e89b10e5d5da37b93451841ea1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63d8c5454cf6a13474ce352add337797b0b9cabddcaf51b26586b51c6df6ec32
MD5 578a43bd56bf3ea0d62ac2dce11b6522
BLAKE2b-256 96b6048091a455a2c7eca6ade5bd67b31cf6039c5a23b1d106ab5a551ae6f925

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59c3fb3069ba56f6cc69fbf4a7164097b50906c2d24bd41fd3635d1e1cae188c
MD5 e60d5d46385559a716394b88288d160b
BLAKE2b-256 78d70a55142b622a036c12e7353c58b1fadeba351fe2e6c32233207be59f255f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5387db07db2d29dd52ff6abcd5e888f1442cd0581ad38dc5e51182a0a9cd8daa
MD5 efc8b52a2e9118024f54cba412413fab
BLAKE2b-256 8bc2cfa9ce9fa1b83277a34cd61bae669dc87daefcbfea81da0663c14d196d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c0d43f4dbfd24db43e8883e3cfbe29cafb6aedca2c8d877419128e6be429770f
MD5 21873559bfc54698657cdabbacdead67
BLAKE2b-256 79827309b6fee3d695f3280ae2f998b073f8af63e385a1d01cc10c81f2277376

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42e8e45be7c6a832e269d353298c8102f88b212c53b83ff28d15f5e189058e90
MD5 b6aa93f419e6482d7c7787cf0f6087fc
BLAKE2b-256 e61b72965bbc4f5243e361dae575868abcb3a676b8b00bb8fa7ad7ad8b5eec25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 726b07e04a4dd197a0412c503264afb57137eedbf0aa63fe74b3b819490ef8bd
MD5 deaa43feafa082eb234db03070ce640f
BLAKE2b-256 ce82dae173c54f56346deba7a265150b7a6ba3870632bf9cf1e77a1caf994b5e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a73dd655f3de5429fae0064bd8d952d35e9b9c2f7f3f4693deaa0532bd203aa
MD5 4fa718bd4c1072f75f7ea9c6b3fa4e4f
BLAKE2b-256 0d807e7d259d3eb553542b9544e0c73307ad3da645d2d36308451a2a5a9eae23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0843b5e06cf9bde05913a08760fda762bfd771beee2f63525f2748681a0817f
MD5 62a20bb1ec7cd56cdf84c6263f8cf0bd
BLAKE2b-256 80ccbf2a6c67197f2bb9f2f5fbf1a9f802ce30bd7baef7252f8e86ef7b0795f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15cfb532d6afcaf5e3ac2bbf55c734f162307bc301e48b6f8b950a2ee1ad4ea4
MD5 a9de1711388dacb41e5bd98c40845728
BLAKE2b-256 a22b56a81d8616f0d8f6211651302b84c33f58bc07b56bb83fed820b707b37df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 200368710b86c3611b1c7fdb718c97d8314f155dae2fa8aaeac087be598ec5ed
MD5 71d9158ee9a8ca0a0be5d71aa597238b
BLAKE2b-256 74f3b6a7a1311e83ff5b8411ebf1fa80f8e53858c59c429e639a3878381616ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 441a204caf714d1b1e0997af2090957928e642e6d732038ed8df9cdedd83fd53
MD5 a372e63e375d366115b42b06d82802a1
BLAKE2b-256 3af42379cfdae7a8649ad6d3cb7b3fbf168cd32a10acdf8f809b58a2b8ef8a5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f13c4e75c0ff8d599c83414d5dfe52af7ecebf61ebc20976868d9cabf3bbb2a
MD5 638cb89c8f9dcaa576c94cf730809b6d
BLAKE2b-256 e76cfc80c317ba9c935ae2abbe42b19ff8fb0533ad02acc0b6ea735d6e8c0973

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93fa89a9f036a3a512ee827efe56f4c6719b1b5d85c493006436df99cc8e86a6
MD5 924f08a86b829513b28ce78571e34943
BLAKE2b-256 40544853fbcd636eb855921a1bc8f48240b746b66814c7b25b570268dab313cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 55c4d62f1d69a2f8a3c66da791869876dc3b5fa8e4d6d1321154454bb42fc70d
MD5 21238aee094814d1ec46f4180e88aab7
BLAKE2b-256 1f6217c75c8358fc87d756edb567204e3a2a4bfd2523031b435b55e50ef0cfc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84080ec0b1eb148f0bedbc3861b73d3e95e7f15820cb8ffa557f26197acdd560
MD5 595af28e269636ed2407678aed43d226
BLAKE2b-256 5a3b6740b4f9a72abc2cbba605463096644be26de249c0d1003f00dd88bf57d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7e3a1c418172b47ee94e82c64508cc57b0b711e5f9089e277d951e8a9b41ee7
MD5 5c7a45ff8b8fa811e1f7858e7356c098
BLAKE2b-256 b6598067357e913d9d87ee40d1c6e4a048f5a250b666a3c55c4fe92c11dcd3da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5d389564643e280420ac984b089035304a9c0ff7bd0421693699cac9ad43e998
MD5 870da68c2033edffb2d0dc6578c853d1
BLAKE2b-256 9720fce10edaf6366805f3a3369df5144406e008c16fee87f158fe9ae4ea50cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ec6b441440c4a09730cad985c39c045bec44621efc7724354f4599c27675d182
MD5 577ada77110261091309144aac81bfdb
BLAKE2b-256 c4b787d5da5e75a90b3168e56f83d4bd37dc03fa1abc7be10747b2fc4d85cd20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4ec0c1089b70a8b5a4c032b38ec90f138af15b04746f5842ed3fe8df51339b0
MD5 7811b69054db688a4dd6be19ceb1fc74
BLAKE2b-256 ae792edbc66e90dae3a82c69c4f1b68072bbdc19c2a5a5d80afd9efafe317c10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6defedef059894813ef7def33e2ff38e48f48044be7477a97b3635baed8e6aa4
MD5 20938f01f95d196d4a7b6db3820e6f0e
BLAKE2b-256 b2aaf51aaef8e02c57f214243510e70038d25bbde955d70857aed810cdfb026f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c206e5c7365e7154875f4709b273a7d765c262b7100d7dd1846b34693fe5fec5
MD5 0be312a3c04e3a5763195e942cc3d73c
BLAKE2b-256 78d3a72fa2a62705de4c604586c5413f6e301e768f7f143758eb9ffe5b14285a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1700bd9d36d355370ea12459273de4376c42349b77bbbca665310ed512c09a75
MD5 7ca9911e68d0f1df4a0e634099752264
BLAKE2b-256 b361135cd59710cf2dd7382000addd44953879630b161b7f8cdd7acd54c84776

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fd32832303b204d0b5a6687e3d27f8f837b4f6fff01be8e840dd2feca139621b
MD5 b534983d896e5b17ee90f364ec032be5
BLAKE2b-256 ec554eef996a558dbb6997077d7073a0a4f480126f4798317428d2b8f3cbbe72

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 11978ce5a5bff8da921904c4fd0d7bea4b004d94dc74ab10bdaae20dc4a6492e
MD5 c43bcb2931ee2ae3f2f53037bf431705
BLAKE2b-256 92ddc4eab570206c5975e238f5cd1b35f3f82600638fb5f3e14ca5180c88588b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 bb1e5aeb33dc5a3f4d630b2f7cba9656f3266a7a2f4cf4ebfba45817d11ab1bd
MD5 28eadd2d3c609b0e053686ced829b0df
BLAKE2b-256 cf50056008163e431fa75b561e64d94fa0ae6eb718d421d23165048e8c93e4b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e680b71d9d31f8ea44eb9f83a6dfaf8ca87ea405a9afb1eb27ec4ad2151dc08
MD5 480ec07b2f052174e51d41367b5c45c1
BLAKE2b-256 1b627e0cfbc34c0af9394dd43c5eade8d7daeffe00fd5a02ca290378cc252dec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a9b0aeb3333d82a05035c8a63e94e7e3171a1ab2180a89f39a4b3a36b56381b9
MD5 53151e7692cfd83ab5c2d304a47847ea
BLAKE2b-256 2b54cf7f277245c3b0803803f622e6f33a839df22af12b045dd74b6bff5c275f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.9 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 625f15d3d4397386e3780ffbc7dadc1d4c476e61c92ec0e9c163e667e00ec6c2
MD5 7808cc89a0bfab6efb0eff512482391e
BLAKE2b-256 490e2c86eff0d3f250923076614384b959ed8a126966da4de771336d5a5ec65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c39fcd91b23c9db01fb21e7f1e1478c37c82ba44d9438c643f16ec3ea940977
MD5 b1385efa555b12fb54f98dde4d7d5635
BLAKE2b-256 8135cdde1ebc68fb15df4e9b00003aaf5ccd696491daf0241a06b2ae50695fa8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4cbbdc7713df69c1b1eccf1a0622cbe3c50d1a7a2af57cf268c9e69cf5161719
MD5 dadc6be513024e05835f87493039fd4e
BLAKE2b-256 fca9d3dbe4afce30f0a958644f3ee5ce06d8f2a2cd140b2f25fac83dfcbb7c66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 356a88bf8ca79b2cf8bcf91c082a2002a595b07bc66138cc455a7414321eb7e8
MD5 793fbeb930b70f27088f2945d76f3373
BLAKE2b-256 32784f5d5d0fe1a78ffc7cc0d5e8dcc7accf8c91801899db7b4cc63bc59587fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 59a3095f9a037976e2aee367da8e6fb7c0638ead7e6133f87fd387f0c56d472a
MD5 b96e30890d9d3ee9f3b2d6c77a6bf113
BLAKE2b-256 6da70e4a86caf93c6e97719181d25575455628535e8ece77655b293fd1c88ba2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b10f3d7284bc6444ae2c088462813bf7b00c29fc14130f65fd07e078cce12e85
MD5 4221a9aad76a61ebe95e322eacc06235
BLAKE2b-256 5cf91c8c21d860fe6e7700bd0f297608c8bd94423dc9bd8ec31d30cd60c91db4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.5.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47a9f336c2c100388ed5888697dd858898fecb7689ce58598563cba97fcf4a14
MD5 a911920cd1f1f29057a1adb5a7019697
BLAKE2b-256 9e643a9162c25f7ca8d147d951ff2d61a260dd4fa0460101efcdd66e834a0744

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

This release

4.5.0 This release

49 files

4.4.3

49 files

4.3.0

49 files

4.2.2

49 files

4.2.0

49 files

4.1.0

49 files

4.0.6

49 files

4.0.5

49 files

0.2.74

33 files

0.2.73

33 files

0.2.72

33 files

0.2.71

33 files

0.2.69

33 files

0.2.68

33 files

0.2.67

33 files

0.2.66

33 files

0.2.65

33 files

0.2.64

28 files

0.2.63

28 files

0.2.61

28 files

0.2.60

28 files

0.2.59

28 files

0.2.58

28 files

0.2.57

28 files

0.2.56

28 files

0.2.55

28 files

0.2.54

28 files

0.2.53

28 files

0.2.52

28 files

0.2.51

28 files

0.2.50

28 files

0.2.6

28 files

0.2.5

28 files

0.2.4

28 files

0.2.3

28 files

0.2.2

28 files

Supported by

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