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

Uploaded CPython 3.14Windows x86-64

longbridge-4.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp314-cp314-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp314-cp314-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp314-cp314-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.2.0-cp314-cp314-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.2.0-cp313-cp313-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp313-cp313-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp313-cp313-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp313-cp313-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.2.0-cp313-cp313-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.2.0-cp312-cp312-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp312-cp312-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp312-cp312-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp312-cp312-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.2.0-cp312-cp312-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.2.0-cp311-cp311-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp311-cp311-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp311-cp311-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp311-cp311-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.2.0-cp311-cp311-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.2.0-cp310-cp310-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp310-cp310-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp310-cp310-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp310-cp310-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.2.0-cp310-cp310-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.2.0-cp39-cp39-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp39-cp39-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp39-cp39-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp39-cp39-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.2.0-cp39-cp39-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.2.0-cp38-cp38-win_amd64.whl (10.6 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.2.0-cp38-cp38-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.2.0-cp38-cp38-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.2.0-cp38-cp38-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.2.0-cp38-cp38-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longbridge-4.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 60ff9c2e8be15d1e90499973a5af88e6662f584bc454236989916ed06d56c494
MD5 a85ecdcbe0850db43de6f403dc45efea
BLAKE2b-256 8116fd9e3b6a82fefabe7c2feb1687f02d5cfa5ef0a17794c85c4214afe5641e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8afdf65703ddcecf0b2b2a5a99dbb69e958d1161aa20f833c0040b1428c3f25
MD5 797ee1235ff5337964f09bf87aa4d8aa
BLAKE2b-256 c1f5902954af58fb1726e44aff6edbe0329c0988ea5d6ea500a300aa7955860b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33a468fb5dfa8b913c72af70eb338ed71bea259fff90d75d704c1060014e268b
MD5 426cb789552a3132ec4f239de4dd53da
BLAKE2b-256 97830e66134e8b742687f941ec79f178d25a72d8cd83a7f856affcf759c94f43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 cbb7e89dc05089a2038deeac83f3843ed229cba902757e3c9310cfae78b203f9
MD5 786ffcd5ff25ee091329a995e13be5a4
BLAKE2b-256 c2f14ee29882f60adf4a2b070c5e94e0fde2f002b59d78b03cf46d1d1950c8e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 39912f5142837394683bf0b143b09b90e7f882a4b20d3b369c42cfe519baa1ca
MD5 f2378fb2c5f0ddd6088fee2a2ad9ec4c
BLAKE2b-256 d8f22f28bda644ce66bc7ef98e037d83f50ce5b5a069343a1d95faee478ccc90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4fd583ef16d8abd41eec12cbbb3a2b17ed503efd55310ed5237d641b67e9a3f
MD5 ff9efb4bf7ecf346f63151b2d055b232
BLAKE2b-256 0ef4f02da30dc9565dfae490deb743ae62a1eba35fa08a3b3dd8f04f1125ba11

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 06546bd07c30511933bc54da62a07096940d28c3ddac82a29ac3fefa91ae5677
MD5 6ce20ce79b0bc0f4a130a6137c95a607
BLAKE2b-256 6af03435a3ed3489f5ba46310265dfad8eb69df8c440ab196a0bf1c1c24ae21d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7bcbcffb37c7cc0e69bb6f41fa072b48d2832b30f4cb5513436ce444406bad64
MD5 f89c456b010dae54c01d9b24c77998b5
BLAKE2b-256 68d043b2069aeedaa9336caa4a14ed6707973f8ef3d48f1495e294b906bdb08d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c739eab01d5bf4caad3b6be8e10f598c22e7f1dec4381d0a9cd33e264d2fe447
MD5 452250367e17ed916f80669e92f951d2
BLAKE2b-256 b784a8b41f821d5939072647a0d89301841617f53c9d878a3deb06b1209020e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 574cb073b2169d40551b31a97c3fe62354b355f38e28739e420661801e89f750
MD5 f467fbe7ce0b29d9ddb969d4c360d48b
BLAKE2b-256 65c205716b125090a1e57c1893a8151d9b18de0bda185f5221941ce6c56ed43b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 60ca96119ec742a452a8133a9fff2544bb3665f8df5e489104fa01a76189632e
MD5 9f035abdf940dc4751cb59603bf11bd3
BLAKE2b-256 5dc7c9af59f33b53ad3429bd651071386f230bf91854dba1a09dbf07ca01fa95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 88b5efd1b04e39ba197ee0164b58e8a85850142284d93404366e9742591af4c1
MD5 0f75339ae00890b732f50547b9691506
BLAKE2b-256 d767425c02b0273afadf43c841aade95066efe3f13bd80334bd836d8a0783f29

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ee7f9e3760c00b5e98d21fe9b727409ed6baf3d93786690beeea123eab4ea3b
MD5 1d68c3ac997e4d53263a63014ab03b2e
BLAKE2b-256 90a8707aff7905fd71ec3bfc4c1bc31771387ec1f16abe0c40809f3cbc00e25d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7871d85ea4c38474bbeda587c211e5f9b4fbbfebd46c9a6a3296abd7775eb36c
MD5 3f1e4885745091ed6d5c2ab6146109cd
BLAKE2b-256 32ad14338cf39fc5a7553c93b70f7924b6d890eb2732a6b927d01894cd4dd65f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 82d34f2bfe64f0233012e12dc602f93d5cdf0c943cabdf9c248f5de3042ac1c2
MD5 19cbc2f4cd96538d4b0d2917d2bc370d
BLAKE2b-256 62313c32409c4eab89dd6549394d92b634c784e83bf65dbe166876bb388b7ac5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e97b099611eb612418d322baef34b40ea8895194a97d35fd2398f6872d0c9cd
MD5 751f423ec11c074f75f576c5769d3280
BLAKE2b-256 81c436b49cc815ded35038ac2481aa33f44dca7f4f6e1530028a309cf1728659

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd1a187c008b90c04088e9cbfb6b847fced35d1970d9834236ce7dc3be3c3631
MD5 3273c9d606baebcf08a7e0ca5474f263
BLAKE2b-256 7b2db82171dd4ebed94d043fc090afea8a63a40634395d26c7588f2a1f279f8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 050ffbdc52da63f659f7e709d8f1e3dc636071a7eb5f89b958a98feb77edaca0
MD5 728f1fc7674fa01ae9c6331c7cdf1343
BLAKE2b-256 5544e2e6a688b53a88fc36edadbe53bd41a951f9367908bd4cc31117a45d5172

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7a7be2cbd2f0c52c65faba2e1e022a8a1609825c7e81189afb792875ad4b25f0
MD5 bc1ba2bbab62a70761ea728848479d0f
BLAKE2b-256 3853654f73aebc61d20aeeb5b97f2c7590a8d59ace86507f58bd5d0c0d17ce38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d062d4585f106d75361fe4175db26007a41694f06ae59eeee3d0978a6d8086ef
MD5 129c9d27a6b6f97033efadb48626544a
BLAKE2b-256 071202483fc295341116c9db8a8865c7940fe2bf36ee0496af7c43dac0ad8e58

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4773324e28024b4e4811b7096189b508315792c8f52a445a08c67a30f75a025
MD5 b4e60854e592e17eaa1a7a2b039a657b
BLAKE2b-256 b85d3e5ce80d6ca8033e4e03230eabe51323781703b8f882e883fbcf7d486396

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f704fa37c0a3c36eaa74ef6035254349bf3d6ebe63077d5086d44104daf8a3e6
MD5 445f71f5b54d4e0bf383f4245a2488ad
BLAKE2b-256 45f94440bb9ddb68509f0f993240a85e71a5720b37a5504a13975aea43b66f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ebbf5fd390f2de82875686373459353f6b8208cbde14413aa5af35682488328
MD5 9f1a539a4fa621b613fb2c9d60392f08
BLAKE2b-256 4f54433c5fd684dbd42ce8bb98fdc2343fd1d06243ad6921d13e66207e6f3269

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f36386248d3254d3285b9d066cefa80163e5a3c5341bd53f88d094e712533640
MD5 088e063dd72f3e30e6fc1c1b1a626bb6
BLAKE2b-256 412398af3f0d0a0b7aa1f81358e390ba680a08bc700d1cc6d354a16302a96902

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 19d85c62fd2e33026246e3f6b2f9495f310af111221ca42b7914e1df06b80371
MD5 ca01000786f43fa48fce1ddcdcb85208
BLAKE2b-256 ecc6d3be1c4b249c85876cea5bd1645fdd125cb97847bc036104081fcf08bdd4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b9ba5a20cd393f67f2776597dea481a405771aa98e906de62705ff501c70cb06
MD5 a37aed5c3b938633eb1621f0df478ad7
BLAKE2b-256 8cfc915235e3d4f2d26a91c14d9fa8dec1bba1e2656ec0459a0a948b15354bdf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 132bbc6bb6a448343bef9ff9eaf1a227003e2b0efddf0a72a98cbee24afb5606
MD5 f3f32c80f32cfad8cb0002914790c733
BLAKE2b-256 0a37f9b017c716e37ff572a22ed070c607c493d802199ef237dc281531ee3642

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84191a92a00b8d0af27d14efd50c8076ea8e799399d252afe62c59cfc1f1af57
MD5 4d77b08fbee14acd4009a49028f3b626
BLAKE2b-256 ac3a7cc91bb9b767b4cceca1cab02f8f078e59efecfba0a9a73f1fc8bfe691f4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dca09380e3f1f4cd2dfd435d46320ef05e98fb33346ebdc74e6cae66758db207
MD5 167f941977481452c7df11393ea03107
BLAKE2b-256 c460dc270f611b67a25446086f26716c41b98a9f679700380dd0de8dc1fe039d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 114425e06e0743ba0414263548bc92080d09847648bf7ace589a9f21b2520390
MD5 6b4207cde60d8df86329918560070d6b
BLAKE2b-256 a95bdc52696ed8bf9f954e64ff278a212e020d2edad8e9de07057f5db93568f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d0c77bd4e67ec5965130a0a438d7e9f24646a7c0c051a7f28a8db33374b86d1b
MD5 1b2e74e684fc7b67b67f05ca7dc2ee4d
BLAKE2b-256 cb2f9fff1ca3975de096cc472946d172cd364277558a1b8bac1631b3b90bbd56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 86a7cecd83aa4c80c69447bbf254fc2e6f67db34bad3a4a2ec13afd743ecddca
MD5 a500c1abea66ece7d4a1748b35619433
BLAKE2b-256 795d7fbf469df3dc9a6bf9bead0b60cc7fe7fa848ef20efb8bb34c58c912a80c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8923ae572137a54cce422428ffda5ca634ee8165a0264624a43008a7e2a43bf4
MD5 0b3ad8fe50cfca67bf9fe75fba9b767a
BLAKE2b-256 c8ba4e4492c307e26a5e4cdfa7e257cdb7834afb7c66e9436d479a5fcd530511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef67ccba6dfa1b5456d11e766def90f670ad6245143cc5544ae9ffc1bca84175
MD5 9384518dd9a1784984d52001e1746775
BLAKE2b-256 06552cf42da95059738ae4cab35cc2147061377bf7303389a6c45426aba2f160

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 941306b468514f7ec9bd34bc6496400b98caea81d6d679a4a742b19b26f5a9b9
MD5 b712027e575fca5c6f56aa1f69317127
BLAKE2b-256 cb06fcbdea8edfa045b0aa0b53bdfaa2d9e802865a557ff491ed4d780664f9a9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ad2d1662fdf39353885f821fe490f1091e93fb25a3176b4f83a34a4f67379a94
MD5 3f1880fae5dc71c34896f72d88e3ae64
BLAKE2b-256 afcb0f36927dcc251eefa7c7357278c601aa3190c0c83e0fbbc0619ee0e086a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 25faf3f4939d5969a37f0e71fc981530f0963fb90308fd4c00d13962913ba130
MD5 5e7f8f87347cedd0f012f22dd0e10c33
BLAKE2b-256 a7603170c549b6268ba0a9f1d92aa4194695f1bb7681053fa0ed7ebcf9ff8be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce57840198722abfb89353802ab34d23ef6e2dfd3b48bae381dd0d7cf738d92b
MD5 05fc716bd9d8667b31fbbabb1b3f84da
BLAKE2b-256 24ba68b3d0f8e868bb329f070cd4ce479e950a07f0287232aea30357223ba892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a2077aaf3dc2490fc68e35b1cbfb62d14b54caee1135099a0a0ef229433be950
MD5 deab9fb5d464cb513dbd5abff431e34d
BLAKE2b-256 e328198f38a8a3a4664579d87a2a350f8f87a88551d04484d64f19ca45b4b340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0c7a0b41af5927f69ba94949a46bc2c63f8e47d42a6ae1eb31f21e485989f841
MD5 1916d25857b2a7afb64f3591e7a590c2
BLAKE2b-256 19e6e38fb9304d9307b521267fda3f2d7602c81dd1bb3db7a39047a5cff7e664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de779a9aa7314dad8f5036f21cab0ea6370828379ebd4b8bb07788f058479e89
MD5 7226234b16b1bb7a85de2c2d486900c9
BLAKE2b-256 568a3058c61bc36be856773dfb1428e260c70e50b180677bd2161f3f28675b54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc12efe63a612e23647a3bfaff75818432c075940bb85dd5c2359c37e8826e65
MD5 2ea903730c6d68a54c97218d2f22d826
BLAKE2b-256 b6dc4b9e9a26c66fab04908a0ec4cd260e9e6ea046cd57b093945ff3af1b5718

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.6 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.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 d03d5d5f5c54473dee7234c7af1af01c99432973d57b467470dea873eeb914f6
MD5 f9bbb7fe12f71776c70dfada3d887e7f
BLAKE2b-256 36ef3171c9e6a2422ff4b86f9380d307fac698fe3f54f121dcd5bd71b7bb9d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2945bf38c9426b6d2730f0dfe75f8b139c7032539bc0d97155c196bf34236a3f
MD5 e23dfc6c6b73da8c41dc0df21f4a66d0
BLAKE2b-256 da491e9776cafe6effaa78fe0fceb58deef023e6378f504a602e424736683115

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3275b5c191ca9ad685d139d4b51f0d50d5c771b8fb483032908d3dc4623f6899
MD5 0e7da9117c6777e96766662c5e3a6c48
BLAKE2b-256 dfcc63c0ffab95c3ec89f08a7ccbbcba5b5bae10c73ce0687d8804da7b272c3a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 575b9932665a9bb3aa47275faed42b9273eb043ac8f742fa54cfd16b0a4846c5
MD5 53e00f0e7c2b3ec899aefea705b7fe15
BLAKE2b-256 b161004907ba2d2d6454d781d592eb2b9bcc4c88f1413a8136cf7e6de87a4385

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 562a99989e572c653836cf314a5c2c254a9755f56a4721819c2583b8fd6f31d9
MD5 0a87409992d086d5f36be57615448f35
BLAKE2b-256 8222327c706b4845e94b158b116487d285f57894cb5be3c0a0fee853c3982627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d7e9c7e05f9f6eee7dde219fc382c8d41882fd2b2b131316a4f00c2a994e2b6
MD5 ee0e1879303c42b1ae5ee8420f7fa76c
BLAKE2b-256 1f23e0c4d94331fb43b80f95e4e5af964955db3eea8e8e66167ed4f6848b95bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c8efecf1621fef753580d5e589b9c084025a365c965e7d920f462b18740c879
MD5 b9df0369b2a6a9f40cb15d7733aa0d8f
BLAKE2b-256 7dd8546e1532480e88db489c1917583a5c6835eb2489a2c5ddc3f1b66b82d466

See more details on using hashes here.

Provenance

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