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

Uploaded CPython 3.14Windows x86-64

longbridge-4.0.6-cp314-cp314-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp314-cp314-musllinux_1_2_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp314-cp314-manylinux_2_39_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp314-cp314-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp314-cp314-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.0.6-cp314-cp314-macosx_10_12_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.0.6-cp313-cp313-win_amd64.whl (10.1 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp313-cp313-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp313-cp313-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp313-cp313-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp313-cp313-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.0.6-cp313-cp313-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.0.6-cp312-cp312-win_amd64.whl (10.1 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp312-cp312-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp312-cp312-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp312-cp312-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp312-cp312-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.0.6-cp312-cp312-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.0.6-cp311-cp311-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp311-cp311-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp311-cp311-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp311-cp311-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp311-cp311-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.0.6-cp311-cp311-macosx_10_12_x86_64.whl (9.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.0.6-cp310-cp310-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp310-cp310-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp310-cp310-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp310-cp310-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp310-cp310-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.0.6-cp310-cp310-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.0.6-cp39-cp39-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp39-cp39-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp39-cp39-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp39-cp39-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp39-cp39-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.0.6-cp39-cp39-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.0.6-cp38-cp38-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.0.6-cp38-cp38-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.0.6-cp38-cp38-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.0.6-cp38-cp38-manylinux_2_39_aarch64.whl (9.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.0.6-cp38-cp38-macosx_11_0_arm64.whl (9.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.0.6-cp38-cp38-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longbridge-4.0.6-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 10.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.0.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 19b59b6863b5cb13ed2d62bfef23b233663f4ca6aad2949dc24cadf694386bf4
MD5 f03edd5d49fb3788759f2746947f60c9
BLAKE2b-256 d33d4ae73117ca9159fc8a1a5e6fc3014f465dc9453f4570215b779d67727c43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21247a3416d182ec32bac4c2f7e2f931c534a555e3c1a6b3eb2cc789d145a212
MD5 d91d846e673ff1ae38582ede0dcbcc8e
BLAKE2b-256 4104b2e0a6d3324643833c8666162e4ca8168391aa0735d7dba8c6ac213c8aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed1e78088b35b4a940da6cabd6b476dd25d7def79f18fb5c9e75ab0a146420b7
MD5 940c885cc23559433c5b4a1c847ed06d
BLAKE2b-256 ca6cb8626d050d01ac3925168ee7ca6884cff87038da47dde844ffad554eddfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 24df1bd1727c9ecee057dd17870f9eae62809888010f5907a4eaf31ca37c5df4
MD5 5dc8c13aeca77eb1134f60253eae69ff
BLAKE2b-256 9fd753439e6c44a74d6a86122ea2dee7348c593035e3abff732640f842cb946b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c1bbdeb9d0978617e8d4d5ad20e9d0bf197baaf21c99f9c2cbf62f23a3c217a9
MD5 da944d784a93ee1c5296c7b79b9e15c4
BLAKE2b-256 cddcfda07a2e339e83d8cc99ff4c4241ced7c9834618205ace3779497f77c044

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f29a03ea36d0708d0c4ba2b76ca8f306caddf9235e46deaba4d4dab7896929a9
MD5 650da7d271adfb03eb0aedab6b099500
BLAKE2b-256 5d4c3b7f763b24487b8aafd6ebbdfac68f3532b763f777fd7755dad3365b92b5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eee167e5dbeca85501c1194e7a92a56acee193e6945863bc88e50b832a7a0b30
MD5 b37e0cc3f52d6eac58160b510fd1130b
BLAKE2b-256 cabf34bbc7d67433f3c269b869de2010ca9ef4755e9834c2c4fcdc9d412134f0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.1 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.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f88e313324894e17e198d6b4af3f5814aa4cc7257fb818c31a827487b7cd6c35
MD5 2fbf836482154902a2bbc0418237374e
BLAKE2b-256 5162874c31e357ef2e6afce3b2bd6328cba18f280f2a2b7bc95cd9c09dea511e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 680c4b4ea1dda4f4d48958902f48b697d5b8014ee9f0867ab1983bc229e60095
MD5 82de4d175ae3a4e49352b6f980b689dc
BLAKE2b-256 0aeb6e527ff2eb1eb4c63750615e0724c4faeed3e4938772d665882e5822aaca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9f7a088b544cabaaaab07c049ba6fd941056b139c63f5206b0ffcf8848ce181
MD5 be49df64c9af3d681235a9bd46159bf4
BLAKE2b-256 cc7d47c18fa40c0e1eb22f25f0d903e09f78e814e535be1963a53a260ffe2815

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 84a3238208d866499a4c5ef760e6caca0fe523b4ecf44f3d36901cb793241b21
MD5 be0dad4fec22c8d6a5bd5cf6dbb7b06e
BLAKE2b-256 e1c9ebc03860bcde3d18d2c3cf6be1401b7af7add6dbb2dc350fa91214dd2a06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 58c0ca518fbe1f7c62372639c77cf9e8a3a5eb006f07a2cb548b54625754cf39
MD5 5db9c5f67c732b93793d5981bab83435
BLAKE2b-256 109730923b885b6e53899d2af805237a74694bc797c0d36c22cb9c1ab23b5aee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b05147fbf9ff06a34715652cdc3ad5fc5716a68b16073bf3deb101ef350dddd9
MD5 9759f62220d9c0e4a1a0936d680f7595
BLAKE2b-256 72c66a6f653d85e9651f295e19b31475eaa23b503d6a7525c7072841116cceb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c493ddce0a1a5b3bebd331f476e663e47c5c7ae741891169d09349788db5282
MD5 b72cf2941370cc733e5d09ed9865e23e
BLAKE2b-256 25ed5f43d0ae257e5b9db5925625aa3a30004efe5e4de45766f91ee2b4c4542b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.1 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.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75cddb42d93bfdcf51cd209433331e7fd3315b48c8fb28eb92756f29af9e1ccd
MD5 674d64cae2500f3f892c7e3ddb84189f
BLAKE2b-256 2148ddda4e7efe6effe85d8721f946a52a5afb2322f8d57fa75b01ad686855ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3781e052bcd04bcd0bd505a7d0d4fdc9c701a9c62e0d02c7e227c731a17acc47
MD5 90ae47f046d9c7c8ca67b6f5088c0ae3
BLAKE2b-256 3da07abac41e6ffae53df1d66dee89900b82812d96a8bf1dc1cc4443f3d76ec4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 559390b4783b0185d7771e3af59b5ea7fa9c68bbc9643350a44b60174539a578
MD5 04a8ea5777a8bac57326523afd6d8a21
BLAKE2b-256 0762320edf6de31125a20c7cee20f088a3878767cf45f8be7b1f525befca3c55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1170cb43688b2fa174acf0528922b9588481aa4cdd16231067f2753ff0da43bf
MD5 9e444e810188c8ca9149d7f715b362bf
BLAKE2b-256 029ebf8dc97199abfb144317ef6ff068345759a6b9420259e6d7b171d0adac8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0006d636d2f4272ef6913922214fe8a0cc34c14136a340c492c3cac7f8090f5c
MD5 48a2a31b1660bd7defc4db987a44eaa7
BLAKE2b-256 d852c57859fcfca22d3f8b47f6095737f5776f9f87c601bd7e511623bacf947d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94e99a07c1d416548fb200f855afc59f044adb71e2ba4455e88883dd7c329468
MD5 1e58103a7cddbbf164e6981127587f71
BLAKE2b-256 fccb11ef224e33d3b007aa7a323d74b2ae096c58b2a2b017662c9ac0a841b550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a039739297bee6e417dc499a30dc0fc94bb8b20167c22ee4117ea35bdfce3312
MD5 c72bc1fbc4489ef8b280924c93fc4de3
BLAKE2b-256 3168d373a7b19bab06c44a8664df1138addb5fffd1cc1eb669eae254f4a7d642

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 246fb0f209375caa253f8a2da3c7bb2d18b3cf3947b3079a2b98e1a373d97abe
MD5 91da353e640416f99928e3c924c39be4
BLAKE2b-256 e40c6e5b9a03c966430fc4f754bf486b318ed4e4e77596881c50d2fb6081d4f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 748f4c183f6ed513ce564eb65cee43ea7ce7e5ac027bfea888b6cdb3debdcea5
MD5 e8da46a40da7c4d98b273e587c1c92a9
BLAKE2b-256 58bedf0f97ef030dc3831bf3e48a6268967cc5e6e9073d723dffe55d3a07206e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6754309ad90697e73ea61eda504ca05a060a1bdb64fe0dc5ffd5ac81beb9dc9e
MD5 b8fb27eadf68dca27c7e923ccaefd41c
BLAKE2b-256 b873cca61244ba46bd71885a760bcc46b367da58dc801c47bf08ebe3c233c75c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 bc132dc9a840a6da9281b601c0288cfc1a19584bd5a78a3c2db1fb081cf63adb
MD5 7f6782a7819891e1eaf19d0ea7e9ef55
BLAKE2b-256 1700d0ae50ba568319f79c681e713bd24b080ee95d1a4e0fb99036c78586980f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5a4c9600e5e16883b273d6296028fcabe00430cb6189ce1e90835506133a07c7
MD5 4f46ec68745ef1e1af04a8b3307fbdef
BLAKE2b-256 cb365fc7825c9e2da1cb1281dd9e08787ec53f4fb6f24a9d0b8cd55ab88a2a46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edd984ba6f92659e4b86e37d915176c26ec04222ddc42ea352580fbbab09ff2f
MD5 79b92a57e9f5d6e766e912853b6cb33b
BLAKE2b-256 82da06aaf0a59f2badcd8bc3aad0096ccabcf0e37069dbad621589c0ee631055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf7950b83a0913acdb9dc2031371133ce622bdcc3220c25cfb09ac59d39add34
MD5 0be91f1a995f44416e4dae4e7f7d7b22
BLAKE2b-256 3e6b3201d547f0f553018392ede07500ae032a777a6eb3c170c9c7f216525fd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4438d69862075d0b692dc01dd389498ff1c8d2ddcc13b2bdfca56bdca0b8c173
MD5 6cd536ccb3868061d75c90083b4593a3
BLAKE2b-256 9b24859bd4c3738e00fbcac46943ae053f0de75ac4110d2cdd1727296e4188a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4176e3859d0cf1d725097f061a17104974f1b4bd440db5a7b4bd77689cda170d
MD5 418b2430350bc75bda3c1cf95cda864c
BLAKE2b-256 18004b81071737678723a2fcb074aa7e93c29e3655511fde7da075f2b2cb1617

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9bb4beb57eff6a8b861b691188d91eeb17b51c8abaeae985afab8ff69b4a0a66
MD5 f3df174a03cbd08d3d67fa9aaaa1d208
BLAKE2b-256 6e7ba23d198e1ccb76bb261b2a5b49d4a7c5b4663240e5bf1b1afafb17d0564b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 328ed0b88d4704318a33fccd6ff741c5407b5d013ce3b931decb0dd398ed140c
MD5 c7b1bb1c0143d125a1e4942fb7c9b38a
BLAKE2b-256 05a8ee111e7a3001435f804af30ad1300804318856236e98c446b0c5c1004876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4cb9013cdf32d629cd7eb0df7ddc2f1d8edbd1b4e48e6eaf8ac0223c8769cdb7
MD5 b4067d1607020113beb66f65b1b541bd
BLAKE2b-256 25e74abec84beded70b93c0cd6d880fff09b4199b26aa2c77d3752fd65870cce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc7aeee1895f84245ac718f229c2ac74e0ae2898c9f5ec2fc8770272a9990200
MD5 0cd352c641025ffeed766afef1bf15b3
BLAKE2b-256 c6239c209f274eb09757fe18bc6257ddeb2a0e76b7460a8ae9671084d89264fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b60f939b3c74e9ff1bca06f7db54651564811609cb004791c83515db4ed9b4e9
MD5 cd0d22b829fb0cce4bf4406104edca27
BLAKE2b-256 491027ac91967120b9935381b7715f912f547393a75c2b4f82f87f3a4700838c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c19bd4a65ec91ceddacbf56c4974998928be8b25afafef91a0da4eec1821b015
MD5 f8c8e086e2654ef1b82608b29449869e
BLAKE2b-256 c855777cd2a2e7dfbb188fafa3ba1e4a82deac8f547c2336725596cb6a8bcf7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb3a6d9412432615449686f7091ca6e68df5382d7ec25d9a27108472b17a5126
MD5 37744f6975c7439b9a9b5e8d26978f75
BLAKE2b-256 05f53f6b34590fc49a19fcaec89ef4647090755530aaea536a1bb885574e0059

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61e469bdc03b299af8b223807f0f81e9f047ee3c89988dc3fc793f1c242f1c51
MD5 3f3952a1fa35b780b7e59668dc1ac7e2
BLAKE2b-256 f4bd71b40eebce27500d16449ef5bc690d1327af5c814b86971f4aa2dcd4fc39

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 abc79ed6859ae519a670520d86706eb7f4d93b47d6381698f6e8376ef73c61f8
MD5 9f5c8ff5b353b8dfc71cd89dbf3a51a6
BLAKE2b-256 b27f5fc6fb499f1f36d8520459b22903a3e1da51256e521a837c01ca1c440f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 92c67847db9a1fb69e96edce531c3ed04617d67f50a2750e81ba0ead3138b1d1
MD5 75df951b50a36227781dd3779286bd9f
BLAKE2b-256 526e2c169df6396ab1c67c9736835d208022314f7e880987e69d8ebc8db475a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe4bbaaa7b3744ad4ef0c961445f1eb54a9d39c99007e8cc7bc33740be1cc6a8
MD5 5c24a4da51561fa054016f27b22b6958
BLAKE2b-256 0eb5efefd3bdfe66f7e7c23c9f7460ea43dd397e187179214a1a47dccf54b37a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 25ade63e77b14c1ca66dadd053d440d340ca34963a14d2b4693298802bcd606d
MD5 b365604609f678a2f2eabca440788202
BLAKE2b-256 197ddde346d2bde32b7bf45329d233806cff1df07f839d9a7ea2227b8619bca5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 25932dfd950f351c2612ab83943ef41d7be82da5899924988ed9044a541e6aa0
MD5 0c7f0d305278b9ae96edfa0f39bb5c57
BLAKE2b-256 8f977476e8da91b49afcff5df89f3a61bcb5e8c1bcab9f5feb9528acebd89aed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08214b06526cf7a9293a94daaf5311822b0faef8dec583fc1344752e93950b5e
MD5 0cb962c77cfb02fa1f6690c801c63963
BLAKE2b-256 308846dea08e9d099e1f2f903ffff02dc49ab8e12edd1b92e64a6649f73907aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 33d9d7ad2b9e9fc733a77c69faaabf12d8b5317b83610082f70ce55cea8c4eef
MD5 e5eb9e17f23eb8ba50d50ac5bdd51b5e
BLAKE2b-256 52bc153554d4121642e6bb7c81fd438df68d86bf0becf66b0852007d6f03d936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 625d9aa6099751e2ac6a91f933b36df5c5b752c173d709335a89b1352b80b8a2
MD5 eb767d55504fc66da590b0add0a8b47b
BLAKE2b-256 969d4c95c5a0306ccec4830536b4e31141793d32fbc9da8a4c76811f4e998d6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1fc46938584c894668132150ec01558a8a69af30f8d97a47a1a9c7a1230d1efa
MD5 0b9c0864948024efb75412a30e75859d
BLAKE2b-256 29f934a513751cef5f5aeba51b2bcda509fea22d5ae7a7a06a5fe89584e31030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dab1787aa82ec6fa7e5b92417ebeebd32bfb9d7fbcf2ab0ea3bbcdd9ff4a709f
MD5 dcd6c39356a95af9c9a25ad6659a14ad
BLAKE2b-256 6bf32768011de6118839a258a1eeecfcd18389a3a8b426f7d7e6a7623a6cf122

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.0.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a777b1bd8c49642400273fab500bee6d95f0ff0069538c300c588f1aff856ba5
MD5 c3f0dea27710ae2d9035ede75a4b8ed5
BLAKE2b-256 409cee382a9af7267d24f747007d0b704ef65e63e6bf1ae3f6e925ef0352d973

See more details on using hashes here.

Provenance

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