Skip to main content

A Python library for Longbridge Open API

Project description

Longbridge OpenAPI SDK for Python

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

Context Types

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

Documentation

Examples

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

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

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

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

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

References

  • Config

    The configuration of the SDK.

  • QuoteContext

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

  • TradeContext

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

Quickstart

Install Longbridge OpenAPI SDK

pip install longbridge

Authentication

Longbridge OpenAPI supports two authentication methods:

1. OAuth 2.0 (Recommended)

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

Step 1: Register OAuth Client

First, register an OAuth client to get your client_id:

bash / macOS / Linux

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

PowerShell (Windows)

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

Response:

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

Save the client_id for use in your application.

Step 2: Build an OAuth client and create Config

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

from longbridge.openapi import OAuthBuilder, Config

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

For async code use build_async:

import asyncio
from longbridge.openapi import OAuthBuilder, Config

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

asyncio.run(main())

2. Legacy API Key (Environment Variables)

Setting environment variables (macOS/Linux)

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

Setting environment variables (Windows)

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

Other environment variables

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

Then create a config from the environment:

from longbridge.openapi import Config

config = Config.from_apikey_env()

Quote API (Get basic information of securities)

from longbridge.openapi import Config, QuoteContext, OAuthBuilder

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

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

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

Quote API (Subscribe quotes)

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

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

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

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

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

# Receive push for 30 seconds
sleep(30)

Trade API (Submit order)

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

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

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

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

Asynchronous API

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

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

Example (async quote):

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

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

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

asyncio.run(main())

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

Troubleshooting

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

License

Licensed under either of

Project details


Download files

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

Source Distributions

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

Built Distributions

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

longbridge-4.3.1-cp314-cp314-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.14Windows x86-64

longbridge-4.3.1-cp314-cp314-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.3.1-cp314-cp314-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

longbridge-4.3.1-cp313-cp313-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.3.1-cp313-cp313-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

longbridge-4.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (10.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.3.1-cp311-cp311-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.3.1-cp310-cp310-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.3.1-cp39-cp39-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3c1ea693e74f726e82e293947bc352ff0bfac4fc0e7f15163c4b12efa6070c10
MD5 a397fca6d261393776c740574642d3c4
BLAKE2b-256 63e7a4b59707280b4c8f9dc226e6de2edae0203970068b434c775d3adb7004db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 596f36e15700dc6cf4851f82c53aa9074d8e3a47a23da38e0904f4a960fc7238
MD5 dfc3cb6d5c79581adbe0f6a80d4f0113
BLAKE2b-256 4c21a1c529c454adf6b642b65739748505f35faf04e22452af85deb094815cd4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 482407fe01ecab2b704aa29a490935a7a1d7763076c9f2c17676011d8238f332
MD5 86b131b08999c717ecb105aebbdfb60c
BLAKE2b-256 4a592ece2c3f07471f13159664b893a3856738950b198630033e684260b98b51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c4a59737357841c0361c55606f7a64eba2eda0ae96fd5e742c58f9c9b54f8b8f
MD5 fb05249216c2be9e57b5452e85d1950d
BLAKE2b-256 1205aadd5d2235ffeca02cd74d330adf511afc5b2b530e35bbfee1054cd03be2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 30b791050d916ea52a6efdc1c6c2a76aeee95b8a4d31ae4847e3faaec1012b4d
MD5 7129d90b86bbc0b8a7208da594266a2b
BLAKE2b-256 f4886e11d19be0aca683225bc7e88878c9291a77e15f846c769f5b3f615d7cda

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617b92fdaa754a234b73c59ddf6703fb29859e9d739779e6b157f7329f3e5a66
MD5 ee986df990bfda06a0e43cfbc317ac93
BLAKE2b-256 c3f77d24dd05fcc2e958aa79d6242ad61b5150c2230892afb36d9d8cb4a62337

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d532e128205011d66d4e0ef4cba39212565a745e70546c4cd2ae27f17eb22557
MD5 85f3ef16b658b03615e8ea52daee3b52
BLAKE2b-256 5fc947f6569fb81e2cf735788660e807adc28cbc96936bb2339a7705c53f212b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fa1a5999a2ea4553e135ac8536ce4940f01a0a1ed2292d3d8cbce9bdb21bf328
MD5 830d60eff875ed66f498b4632dee3420
BLAKE2b-256 f9713f76e304fe0fb30dd1f4fe878853f36a6e61ce5179419dbe2f2826ef08a6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c3c59b2397d818515bf84c6f8070d08ceece444a5c5f0f59cd7599563a8a4961
MD5 add6b3606337be445b95c1d360b298a4
BLAKE2b-256 16f4b28b45c4038504a66b56146a5c60c1860a81d8ce15cf7f87d642bb44bbb6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e8aa4389bf31a323cb9d001d7e2d15785d50f65bb23b84f0e076f0dcc96fd05
MD5 b7fa8133b17b79ebc09a8328bf85ab5d
BLAKE2b-256 91fd9d856ff684016474c7cd36a8f8b67107e80009dacb1363ce25ca9b265fa3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 157e84c1725a709089320550897ee32a8cc8b4a6b142136b28d4d36e2bfc988a
MD5 53be24a5ba4402fa23676ca42e1d8e14
BLAKE2b-256 6a259f2c5f1dd004da476a164b63d3144e13aa1c146a5103508385821423d2ad

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8b6e2704f83a9f6e4ee61de0b4df595dacce00fc8012bc13333da340dafdca74
MD5 c3f091e1cd46dc36443131091b2bd430
BLAKE2b-256 e06b1bff542e8be0c247d4812fcf83cc25ed00924aae69d4838f2c166459d8b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bd7f0c72f911e9507f5407cd1499f7741677ab25c4691065a7e812d9f8df3a0
MD5 a98787ede49b772f39e66ed13eb62b0a
BLAKE2b-256 9c0cd13c91e2bf99d110a0dc054caf1a07111b3db3b207bf88b2ffe5ea3a4387

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17b108023aafbd7689402d332cd1f6a5c390b073dd0a1064f2f594ca5135b36c
MD5 5bd9f2fd2958f8f204eb0ffc7e7e61b5
BLAKE2b-256 21ca219fb0e96f1a1cba3f6fe0fe22d68018540bc9584927743b88b4a309f31f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9d03de215920c401030174a5bf2384c8b7c06cda07158d0457a68a36067aecbd
MD5 e078e2c35dc840a2ffb62385b0cf94fb
BLAKE2b-256 157a2aeed18ee32b44b54bce3147ff15817e1e9e5bc83dc2ce594528e0ffdde0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9755c28e7bf0eefd1037e61c5df00451dc9f922376a839d62576ce97a05726a0
MD5 e5c7429b77178fe6246fb8ee45bb8085
BLAKE2b-256 ef5d6d5a4322c3138e78061cd27b53bb75d6b5cff16abb902d1b38278d23e711

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8823de412a53fa50861ec5616987d273b3116eceeabad5ff7badcfd03f91cb4
MD5 1e8ad2e7ae43165dc0d0c80be6794986
BLAKE2b-256 a8c5f4385060ae15728e874a1b226fca0e9ea146b9e70e5196a02eba0ddf8a9e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8056480412703c1514ab74cf41c7a3e7413967e723aa2107efffd8b4fbb134d1
MD5 3ce1d82abf89c44cb3bc4e43ef178e67
BLAKE2b-256 326fd2ebb40b57d4cfa8b1077cd2bc9381a15b35a9ffae3932de2ff25560a9c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 661050060028f0b898c7b284edb47f66f6bc65ae91da7a0d1ac3d0743edd6943
MD5 04b78bcd7a244afc7e85d0853f48ac42
BLAKE2b-256 739c8608b720e5f0ce4a6842987beed6325dbed1aa59c84c687f047aa84d7c65

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acc4f37e760e958d067ea0b9067f006131c6690c7ccd84a0b24a52ffdf707d71
MD5 dc879137b904428b53bb870d19f67bf0
BLAKE2b-256 58c1d822e3cdd224a5dd744093789aff2fc32a8f1d7c7814f0ebc037921fd192

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73589b1d754044302499f42865aa6880057f2e19fb2242a2cb08504c0e07f7c2
MD5 058908ba6cd73c11cf67edc292b38a20
BLAKE2b-256 41b33455d6cca8fdc6f6a460fdd1ec2601c2672467448fa4a6a96944dae95820

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6bc2fcda64a902332d9f18556f7d2c24155ec94e04b727b93725d089f1e6fe6a
MD5 b13699abb47a4926bda1ac146886b7c7
BLAKE2b-256 5dc1ac612819341c6303477aa54b2f2343cdf5550a4c8db32450662db3b53453

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 185c384b755eb14e106d279e558153355b196af09290d650828353b1e05d4362
MD5 0bb1b3ee44803a5ab43bf25296a6b5c0
BLAKE2b-256 6a03d21b7a09e17a0f04c0b310b5639c3e0f16eb0c787f04b5f16174fab81fd5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 01e31d66c43f7229eb42c5cc009ae08feee747beb9919dd4626bc31e4cc41017
MD5 5d60b55d6202d36cf7487cd936a1b8d4
BLAKE2b-256 805dfefc413047285ce4ccacf59b2e30ccf84ccab49eed5d5dddc83ebff9c1f3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5990ffb0ca6dc9fd927211608f37ff553a463712037c47709ec1e5c606ae90f0
MD5 d1d2a642792c4072de90f0b0cbeb16d3
BLAKE2b-256 5a4f0f26f4124c280edba73a48ff48ab9c9783cee37577d2d016014b961e00d4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5aa92a4023ad25d81f18b8538fcc045243c7c6f9188b9a55c2337744519bb604
MD5 1c346be68986ae9d98d7d7d8a08c479d
BLAKE2b-256 75f4d8f1eeeff684ee7c4eb089929a3491ab8f28bde95d0b1b089a621d15a4db

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf643509e72ba90de7794c403a05f1e31ce92e1dc5d38bff1fec6ae4c9f04bdf
MD5 424ad11e777c0ab25cb561d31321f85a
BLAKE2b-256 0c01e91408516f5d7b2edf40ad3911bd9def74d632e011afdc1fc90d53d2bada

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88b5779da8c95d0d5e93511ded4f987093ab3de2aeb8eab85791cc2b513b5c7d
MD5 887951060ca4ce7d23de2b2a71f0eab2
BLAKE2b-256 524afe6bf4f708a4199e1b1553f74b4ad35dd5bcd4d5d02ef84d00b9ea2662ea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7f893637e9798e4e5a734610e59ecb01ab101f169987e8dca9a71ebc566081b5
MD5 a8ecc20ea18f0be0a762862733e8aaa8
BLAKE2b-256 cc5a29462918dbaecee1a0fa16f4cc9e74b62cb83569ebb7e317a56f02c12922

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 305ac362e588ab6bc566a4da3839e47acb25371e302d66006b22071d8a0b9d7f
MD5 a00b4c1240dc9a27506987042aeb4ef8
BLAKE2b-256 6fd2ab45b799dbee313a8a9d28ffc7a89ac9e470816bb8221e10275985d162eb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87c86b58c3d20ddf9e73a9a9069023583f07587d3acc45519ccb17aabf868de9
MD5 5e7b489add9d452a3f35480f4f8b3d41
BLAKE2b-256 a7a98eb2820b8da344ca4cec185fb2a7a0622a8d737badd1b5a66c4d80702c3c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ca66ea88423e3b6485abdccd9f29cb0166de79444558878c3769892805c5a8d9
MD5 a1dadc1bbf3c1a80208b63203a14e7df
BLAKE2b-256 01fbec7573b8e2355114c8152dfdf9b900d4565f0327ae3ecb878f0c0434fbce

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fefa5134d9ca0cedd60a5dd2a21726418c9203632993f40a35eb1a03b89bac05
MD5 0e8a7562a8c7e58fc02e7ab908fd7f33
BLAKE2b-256 c33a84c70c716c5ef3722fb197c8823b53524b64687f06a6e2e09d0c4e910de1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b89c3e699154e5af158d2184dc7198968d1ccd365f455d542b7d686bb866bec7
MD5 c236f83efd93f96bbde5f7e69492c3a6
BLAKE2b-256 38e5625f29bfe1f02c28bf6f9e1882292582a65d797a4a6f12380986990b1aa3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 887cb9eabf7d5ba5698083af32048b683f6476ef942054ec57b39f4f58d15918
MD5 31c5723560a2b33de73e7d671b752291
BLAKE2b-256 28426cbe5a75b028850b1020dd57631d1e121ee11cbe00f3473afbfabbaa7116

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1fdee92cb4d4e062811c8ecde026a7d7e2ab2700ea6ab804aa760aa42a31adff
MD5 c4e08b0c6dc58ec14a20c0bb23de9793
BLAKE2b-256 09e27d9ca714576d73624ba7b99ea2b81761ef63e711133ed4ad64a4b51b0ff4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d711549bc1612bf415af57c8aac79b9c3052800eb4ccf5952e0efaecbd97a08b
MD5 885bdf5a7a3a6167c2c00d1ece06aa9a
BLAKE2b-256 b9c5746e500909c2cd565c9906b4b80eab914bc6a51fb4936010dffbb952fbea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2016ed70b8ef142fc93db83ec10a4d8095d55417adc04eb63f31b1b84bee0111
MD5 e73e8ea9f0306d5d6cd18eb00b1f2a4e
BLAKE2b-256 829c9eb6fe201db08861c8e8a472fadcea266c9f14926d6ef1b91fcfe2bb8573

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d462f2ba027354f7c449ecf47f8dcba2ad805987297caa12ede8d4b0666e3f5c
MD5 4f75a2c3aad9880817a11443b2251219
BLAKE2b-256 ffc24418a610642ea2967cb2f7e25a90d605aae3e2a274fd5af4f19f1dd1ee5b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ad183b11666b508b2509ff2f77b313878d839d74b9c71623bf18d44d2a26a247
MD5 1ca3cecfb3ea6f7dbea421603e024858
BLAKE2b-256 29adee452f1da11d54e3454ac7f3d8aaa4dc8787bee7649279ddcca903538a41

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a445b4d55739acea8ddadfcc82ff3e74635ae703487efc071d4bff553c5e4e75
MD5 24646a556b6cd66d460639e409f7e0a6
BLAKE2b-256 e91aa5a62e99930fe660bdae8d303fe7c0b15c9111e8edc8b8a3746ddd67d73c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f9406030159c0b7edf13a0e5de26b5b1054e24a668a1fdd36e0f40e273a14d2
MD5 cfc434358b33dac2d8555d836ebe621f
BLAKE2b-256 af25aba76239bfe312b86d60a201bd00de33d19cfbafbd6f48185bd252ec8ea5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a6c45847ceb830b751a6cf2e9fd89ba84ae368018a2ad32eec238d160966119d
MD5 6aba86ca7887a67d02c76e79917086b0
BLAKE2b-256 486ff7d75f1493d60e078212fe6a8febd96d0a0e35c7de04c66ae7f8d337b937

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 02d5710b24eba6a37f39a47c0f673b04da1dbade34fb1bc985fcd02b09270906
MD5 8b3f8514e61547cb6045af9fabb3ae38
BLAKE2b-256 da2e42bc4a480b408ed2757423254dd735774d1fb20011659f1583f63faa8c17

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3cca9340aa1e4d28d1b6c8c77a6389d2d01abbcfcb9bf6a4f5449ed393a7275c
MD5 9b7903d718ddc673547bb2b8241baa0a
BLAKE2b-256 9fb5597a036f241e2506158ee537adde39ebaa56ac100105bb568250202acbf5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e2bd1465561d88cd7850b6086a58ac21aedbfd46f66b7b6a5c57537c9e0dcae0
MD5 c9a53f511e40adaf015d67f2ed3b37f4
BLAKE2b-256 385cf4aa21a2859686b232b716f160d5b32527c5b8906570808083f87dfaf0a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 83ebdd61a6e500fc7433410a8c0dec61ec849c20cb0ca53e1fe141c36a49cb3d
MD5 de3ed7eb728df3ef900d1eab8d7438c7
BLAKE2b-256 0407c58f18cb196cb8e45b1c06490cb46578418b3db7050d6b9c83bc15c9e848

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39fee8b76d79477ddeb98f3d8f5117c4d2ef733af82e2a2720c1c2a814d29295
MD5 a4f408caad6abd4a837b6d11a954b973
BLAKE2b-256 ac9c2ac21e1b4a4bc6e22a593bb50b1f85884aa62f35640937318f6bd9b53f4c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.3.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d43530a675184098bb8bf0d7c06d6b2d773746bc9999e5758a4851b593800a8f
MD5 a2b68ef8f1220840c35c1e4b13c3ee11
BLAKE2b-256 428d32f9dc305314f40189f7b8506d0338ab20e2c264eb182bb9c520dca71056

See more details on using hashes here.

Provenance

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