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

Uploaded CPython 3.14Windows x86-64

longbridge-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp314-cp314-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.2.1-cp313-cp313-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp313-cp313-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.2.1-cp313-cp313-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.2.1-cp312-cp312-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp312-cp312-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.2.1-cp312-cp312-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.2.1-cp311-cp311-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp311-cp311-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.2.1-cp310-cp310-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp310-cp310-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.2.1-cp39-cp39-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp39-cp39-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.2.1-cp38-cp38-win_amd64.whl (10.7 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.2.1-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.1-cp38-cp38-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.2.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.2.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d4f00bfb27819d8e4d9ec1160dc189d562e3581f6ed632f6635be12529d2d29
MD5 61a5da021c0644fdd9d6fcaa91d5ffef
BLAKE2b-256 7be85b28d90167fb1d3c8c273615ff420e1986e27b3388fc255eebb570d967d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a384e156cda46c988bb8488762d2c04d2fdafe7cf0703b06126a3ec1d26efe4
MD5 23c9fdeb110955ec2b3cd6090baa3074
BLAKE2b-256 a7cb88612654f58733450ef4de326c639b1afd366bd75459433c4889a6dff5ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54f40a1ce14f51f6ef7437abc34466d74fa5c90c91f2c081592a7a526c171f01
MD5 697ef25857433ccf5df0e5ec379bf3e3
BLAKE2b-256 bdcd7a3928251825ac6fe6ca133139b0cc7907411ca642ae7047d91a5f26987a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 cbb6018f81cd5b3a9cc00ee4d40eb95a79d75eab39a3f27a7f44ceee0cecdf17
MD5 73f20dd7ffb8d3bd206b673cc2cdb48f
BLAKE2b-256 2beb4a6cf46533b8e7a73f8e483387118eb0622648a80bb646cb7da839eb2986

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 876990c6f10e84240e7f3f5494741bbbbc11daad3e9c20f28dd3614e465b86ff
MD5 f760e3e39218203e9bfba224933cd6f1
BLAKE2b-256 29566811375c033f966895f4a61aaaee0fd614d42cb8be4e29bc43d2438853b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6285e758dc34b2ab84c74dc23f6613c0938b0b8bf1adc1decaa3bcafd312fcdf
MD5 96b17d8a2ff08a4036ff196ec7906c2d
BLAKE2b-256 91e22101d48d39205d0a074c121f9659f84f94c06bdbef20071436caeb2f2baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ed4ce13ce78ddc3c10484dd4eb4f0f1aa740d46e97fe9fa56eca894b32f9d0ae
MD5 7d155db3672ffe7e98fae9e2495a38e1
BLAKE2b-256 98c52f24184269f4fac36bb8caeb45dde0b8f6b06c4d49344cc968b43648816b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91c7e09b406cc53f642465e6dfe15f41708af46ff9f0faeca2e7ea34e7ffdf64
MD5 354a5394a07cea7476ceb4f69315605c
BLAKE2b-256 624457ab6de90d819b6733ed8f43206b917ed0fb8b8aca4cdc8e8c89b06e5a0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 79bcb947be34d96c8ef10b1550867e4d3d0ecdf5f070bd541b8c48cafea2168a
MD5 9a0b5c47e07dd233a78965b60ff2eb92
BLAKE2b-256 21c81738cabbad15cfcb1b97e240e0b6785d8b34a8556c5cde1cdf3e1591d42f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f181ab66c76a4663c3917c3a30f685a6f95778fb8367b32ed81e514757987d8e
MD5 d0eaf7ee2de6ef3ffebaffebd4c9e2b0
BLAKE2b-256 aa6ff59452b8347fb6f86175fb40cd65eee72ec11aed7b41f3846a9a7bc85e9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c63cc8046101ab58ef51aa7e3071861ec1265ade401a4a02f91906e4ec02efd0
MD5 b426c8d6ecbaff02261763b6e9a735de
BLAKE2b-256 133381dad98332b0ea7dfacb35ae83ea22b2c9ac0f913f8ea51addf3b7ad2339

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1999b8f8a2b06b126f67ba6a4636798afbd8c28aa91cc44e2efff2c426099ccf
MD5 4131045450dedd5e0137d68ffc1ac5a0
BLAKE2b-256 884f95165e20c8fae76eb942e53142e34a2690eeea008389a43facc75c85cd77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 681989389f3aeaf082e9d72c9799f00c13cbc24e6b7845de086a288cf1c2840f
MD5 23a398e8f7b1a12ca191d93decea80c3
BLAKE2b-256 9a0822d1b3d6890c53b2487d4e9415aa7d33a1ff4495bb4a1e47808753025e60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 869a56280511977247a08f13365d5c9165021959d017583ccbc0ebe02f45a347
MD5 a0d73da302365a7f14b60c182e230afd
BLAKE2b-256 a0bd57abb9c0584d0972cce0e4679e89122ae79d5c03350346a6ab2d7d2e4265

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dd901985ff9199d5d28c3398f4dedcf8bf7314444f7d984abdbef8c40b4d2fe6
MD5 29073dca24ec9a8bbaa21fc604f86d4c
BLAKE2b-256 b411d847e980c76a9f59e9bc8e29eb9689781174a7dd7f298a951801b4e4b24c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 125276f4fa86f4324724921930c89ded6acc9c573b6fb2c8a35aa09240c8e838
MD5 15bf9c57685c11f3d6bc3328b483d136
BLAKE2b-256 1f5d6abc1d9fbd990048232b9ee1f46a238a6ad75616051507e61546f7ce4326

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dde0b04ac49fedb8c1ff1bf6f9f68718b840fcb9982579c720a0d4ad5fbf3da4
MD5 6882e1ad86881f872ffe9a5fe6207da5
BLAKE2b-256 05cc3dc0ec794ba02a09b238a3f4398851760b213b19b6cf7021058d97032e4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0398406c28a0fd850782e3def6766778fd4e7ea0be53ffacd0746601c6b4f5da
MD5 8c0c5bc42af55c04b0c856d54de34af2
BLAKE2b-256 1dad584cf1b919c66664b30b8f0ecf4718468c213129dc97e0783cbeab1cefe7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 abf680488297750755faadad13d1728adfcc788356b41234a31959baf6435dac
MD5 04af2556a8f065e1a0ecf0abfeb36a99
BLAKE2b-256 af5144c18cfe66e0b8bb03c11b31b54d8658584fb73d47477002abe2f0ad4e82

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b1bbc673aebf6dd79add254a5924d85cd2bcd9f4755f3936b6fdc4e54e2f68a
MD5 13d9036ea83cfde0ee68877b972a12bd
BLAKE2b-256 7df29a69b2e80ea20ca421df6f7da999a6bf9b1d3194439aab5d5bed59d8c011

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7ee4520bca34648bec48a00d6e8601318f9f1ee8b5cb7116e9a35182093c0be
MD5 77ba3bece41f3cdeffc5e3cfbdfd30cb
BLAKE2b-256 3a65cff37e5662f2356abcf5483e602ff41bae7f62220870d937069705e9c32b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f649bc79822995e8c28674efef1d8973c097bfbcd4bf1d357e125bdee18c52ff
MD5 6ac3f8c9f77ade7b4a65e76844f4ebcc
BLAKE2b-256 e6ae1aa3498fdb6e1e726717bba90afaa86ea4af58393fa4e1ee81ea4d92da06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1fdfd58327c3286524b8722e167f34cdf182ebe4de31c6c34a29d1ae01562d1a
MD5 acd7820b5107b64616ea8deda1c7066c
BLAKE2b-256 f6172e0b4275cbd07084034e1539618e1ff43f15e736aae45583a67477d3672a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9178d5a031bbf655938d5e39662aa8cc3b4ed33f9edbb2226595b6788859aeaa
MD5 44167c59537731b7da4ea96ccc63e629
BLAKE2b-256 f068b9cc597ed5d1ee9d4c48e0a5e396dc7f6c141e6dce5cc6df0f21e18aed8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 c0f95c8f1ffed7053ae3981f4a9371a39b0d058ed99d9125e73e00c7e145beec
MD5 e9248522c01e5d7adb522d34197388b7
BLAKE2b-256 ec823dc5d6dc17ca2bf17778b372c1a15b50206a26a8beb4524caef95da4a9a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f43fa0b663a4dad8299f24971a55a26f4083b66de6d3bdd0b89aee7210cb612b
MD5 c9c65f46162d55c553203b02d36a438b
BLAKE2b-256 ea228c80cbb9e6e2be618f036088bae3cda0b805a30eebe5e1554793ccaeb988

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcbb9f7f41e5be060a5b0572dd2c5e107057ab1d27d4dc4bcfef4fed308d0882
MD5 6fc264ed1264aca3fb730eb5737d2f4d
BLAKE2b-256 65b29edccc4a278b970ed67f2e56be11908a0731ab92719f7d67ce82f95e134a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dab6bfbf3edf61ee3a74e2236d135dae64929a2d187b1925e765539a99fe5d89
MD5 ecb8a2b4060fdee8de1698f8b568adfd
BLAKE2b-256 d7c93013090a6d435c86332ebb9bba8388c3a384d03e43c736d4357da9872efb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6c00909e608b9bf2b439f3a34524be39015695039b8a29f21db7737f24dd3b3
MD5 6658275f092a51d87dced50147b1b2b2
BLAKE2b-256 774e8a923afb4c415e5f056984cdaec457c077ff1d644bec9ceabd5a1914e387

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 10da72a4fded6ed06f0913e4aaff96dd806a39557495c710b83b054714d78bc8
MD5 325841fba7f68fe43d7440c70fd5128d
BLAKE2b-256 c5c501cc8d3cac52f0bf0bb2f99a7da219c33ca7d630c7bdeff33326c40d6cd6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a34c261257cd1d41045fb930e62d711b663100e45c830b64191529b307eea383
MD5 8bc5c4027e654a44fa1c50ea5d31bac5
BLAKE2b-256 a321d574d4233deb143469f1cb1347dbdd2c5bc0ece5eb19a47638586cfbec0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4eb849cc638e80c110cc1b6a3a8bafd6fa052965d058b5372a59d7a35970455b
MD5 8efe775c08274728207bacdc688f833d
BLAKE2b-256 6fb7c8697cfb6806bdb6896a6e92c9833893d5463636bfbd5474f34999408f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 99e7cf1bc9f39d862893b236cdb7c9cf03503e385c5756c0ba21c4b14e649922
MD5 609dc7c3ef9e510a5582d8122fd29542
BLAKE2b-256 a66c614aedcbbc10ea7771c23c7f49b82e51b830d363530e22b003f94ef6b9f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acf5410eeb122721239f7359a1ac3bf937ae3e9ea6b008812aefa4b37e201eab
MD5 3e94c50f5806b15329a8970705d2dae6
BLAKE2b-256 15d16f2957e20eade5ac4b80c7de1d42ca0ea5b624a55590082781d5af17d721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 be9cd16fd639c3f096d0d0e1021de00798cd1f1961d1b295ff9525a3ff89016b
MD5 117cdfa59ea1d14fa4ab2ac3b77f865c
BLAKE2b-256 89ce3df6e0f492f70d90e933fc4b00b8f87770b2add37ad8f3553e5148ba85f2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 eec4b57460360fe058c125178eddf886384213194af10c0bc81d4704ea2518e4
MD5 5c4ba501eebcf9e54b41b230e499e08d
BLAKE2b-256 3a2adfe2325326334cff0b9a744b0d8f34023665d67471e92ee1837b593f81ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 83771a4c70fa4b1bbdbce30411058ec7fa11bd1d16e653ea91e317de4f770cde
MD5 bd21077f88cab2b3cad619ec1ec66f82
BLAKE2b-256 75bd4648f962b25675c5aef42e7f133cd37f49aacfea78544f63f980d9549736

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9534d9e2d4c551c183ca4cf9353965f777a8353edd434e65ccbf8524d41c355c
MD5 ef2c77ad425cdd8a349b8dbaf31c3e12
BLAKE2b-256 ec4173ac8ef71de729381410ea5e43dde7a1dbee03d9bfbe35c1fa71fb5292c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6ade91b0d61a19e3bc2c0ed86524f68d2e2637042cb0cd91aa2ae818bff722d8
MD5 c8ef0aa6e252b898a055f124f78df133
BLAKE2b-256 a40880c83279bcec5e4574ea96e8a63486cf76e6a4ddf9bc78b5d90c1ac34164

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 9849029f7e5c3cadf90266d2a7f8f82f3973e187ebc4678ab53ac75d12f5e105
MD5 8529285bc2919d84f37116b62d27659c
BLAKE2b-256 90bf70716bdac1ea1affcf4f5a19f6baf70d21dfffc2df8df844f43945f8f69e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da3af79707d8690ddc573baf1caf9de4bbc8a3a2751f9695ec54b1de169ad0da
MD5 0d37a8c4cd84007ec95386db7004030e
BLAKE2b-256 79c5a4c7928f213792e67dd11a8d1a2664f550cd7e70951942cc699394e90802

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 458a97ffc02f2c4fc69a92490462fc1e84e78bdcc7bce2167fbc347242fa86b3
MD5 ee4cf33d514cc7f5216510b91037605c
BLAKE2b-256 2edc3d8d809a402805a666eccb6ee0d79d564a9e541fff38b9a5f9a40b471ff2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.7 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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 88dc999b45801127739223d75c5e8b816c6554f534fa5e3a55472e25ff8a8f2c
MD5 30847a986c0b35da07bfaf6fd6459ce4
BLAKE2b-256 dda13a9ef6e895d7040aa7671306d52c6272f3300d72fe430b11e724aa0d1fbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e2583acc8f917e23943ba9e794dbf387c2fc54c9e6fb9ddf216a94b09109099
MD5 152079520effa608efa000b1f19b4d95
BLAKE2b-256 4ddec0e63931da0013225c37b100c831dc3e3d0bdc7c0745f2bb4f226b8fb12c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 92f43ce6e08158695f54df9b87d5ebc69dd7aa99d36711185933b721785283bb
MD5 ab2b8eab82a43dfa6818254f55a19132
BLAKE2b-256 e7ff01d11824a1b3fae2cc3d7a619ac4852eae97a5d59cccaaeada1770350cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 77f8c7b82f62c6441f1371061935f421b461e028afacecad6c963464fd6cf295
MD5 331148cf1089eea8b8490e6c8069cc4b
BLAKE2b-256 17a111bbfcd455178debafa61a145d1fcc423288c94f4d418696a65b97d9bf2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 59196878ea18326fe47a4e4e3b31c525f4e0228d5bfd21869580f6cfefa8d8fb
MD5 0d127a040399b14da464ed3b5a3ab720
BLAKE2b-256 e0afe92981511c9102b2e0be583c8e53299235710169ba8dbfaf94cb1b6564ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98055ddf0814408f3c8ff6e2fde9fda8b7f57331128093b10a6eeab612e4764b
MD5 f4eeef6927f312ea973d22b2a08e0440
BLAKE2b-256 bf15f87ad3080b595fd30d058adeaca692706adb5366f1922ff7cda079b44cef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.2.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cfd73dbd599d8f8e12985b06dea85d43b02b0fc38ebe8dfe3ba7a6d8eb4b030
MD5 8e0790bbf979a3c4b3e48d7e42a3ff0c
BLAKE2b-256 06fdf07805b00984a0e7c70fd41f52eb52070aaaa0a9812707aa7969609fc74d

See more details on using hashes here.

Provenance

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