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

Uploaded CPython 3.14Windows x86-64

longbridge-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (10.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.1.0-cp314-cp314-manylinux_2_39_x86_64.whl (9.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.1.0-cp314-cp314-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.1.0-cp313-cp313-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.1.0-cp312-cp312-win_amd64.whl (10.2 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

longbridge-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl (9.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

longbridge-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

longbridge-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

longbridge-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.1.0-cp38-cp38-manylinux_2_39_aarch64.whl (9.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.1.0-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.1.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longbridge-4.1.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6bc07a21699853cc18c41bd3fc1a848ac3fca0b34fa5475c1a7562ecd84016fb
MD5 1713e0ae6dd4bac251d60708695abe46
BLAKE2b-256 90c7fae217ace5d1792e0374c2593a793b411e5a48c3d16ae04ea04e9bb6a6d6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b69da24d441a7e7f46606fa1ee8791f0ffa528430dbcdf5057bc11fcaaf9da27
MD5 9b33134f124fc87adefc8dae3f73cea8
BLAKE2b-256 1ee457c7e29b1735e84d47e7b48384ea03a7b43dc76ac7df8982e4d0733e95dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90687bca026e2ce375d9493cbecc29c181bb2f766c00c184cc186a63279252f7
MD5 2672a572c1a3023d7215502be63a0a33
BLAKE2b-256 d1070bfdde8ffdbf59c0f0ebc72b8ed199811c7afdecafc01186d45ea785d50e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 44fccaef1d596e38a603c424fe4ceb37020680317fa8301a6ffb5f5d9d48df0f
MD5 3955edf0a14750d5a4b48ed8693c7f17
BLAKE2b-256 2c45182450eb444e4ff90cefb3f86266c11109ba9d5ff5a0a7fb193674eef537

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 9e7e22f0abea435c512dbbca70177f814c65a51210abe2d763cf83534b1453e1
MD5 8be8256db2effd2e180b440e34678323
BLAKE2b-256 655bfbfd733ee2e22acf1671488da0979cde84562dee415f62fdb50e0ec18cc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4fa9c70cf6a42d32b82061069a7d9fb416cf7f3929f08b5c4dc839fac8ea3b01
MD5 0a8e7458348e38e9fb0d688b5db0fc0d
BLAKE2b-256 75773fa4925d82780442bd431e7dbd893f4e40a1a51cba14fa4b43d5dbc58fa6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa41160e9043e822a1e6b9f95d109ebb5c323d353a93637d7fd736025b4deec2
MD5 c10d1e440e23cdf231aefbb7f69ab2e5
BLAKE2b-256 535f33bfcfe88bed53ab413b92c2e07a7f80c412ff65020b39803beeb2d6659c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5f3f6e9ed2c448aaec8f882ba08db1e93589a6f8654076307cd68b7ee659fac7
MD5 2a280e84a0a4d12b3dcc1ac69dbe86bb
BLAKE2b-256 88bbf4726d61248149855a437143dae2448068b7aebd4e21bd648644b02c52ef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dffcb2c79b5a0eba6cd734252beaa1d8731186b1a16936eb024c6307340c9d43
MD5 09e3b2076d4aa70ac2b47f2728076f36
BLAKE2b-256 0be9deab0c1ea7b9559809dddaea39c1c5c38a5626fc16a3b81e7bb1816580a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a0ec6e2bef234fd33e9bf21209a19a051214da8f8251f20547f0c5ff65bed82
MD5 e9af8b01c284bb09da2df77d2666e65d
BLAKE2b-256 a1866431be2c1d3f60930ccb1bbb67fc9688a597baba22310f2340be85a395fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a90996eb67b98b4939c98da6f1f50a2fd7e818915731ba097fc9dbcc2308f1b0
MD5 1f786c61d25311751dc72d0ab6848850
BLAKE2b-256 7583acce61e7d05d74f894a025a068595b44549b3d56faab83f4ccc95a751945

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8f5c387a5c25e766715c6598acbf3c302c257772e2ee1d5a7660f7478b3426a5
MD5 413a664f9c7f04bc5cdb782bc2454448
BLAKE2b-256 9ade767aceb78e900c303b8909435307f4c335003ffa574ba76a684f729e3f9c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a036e67b82ed6fa25dd0d90ec87d4f2088f912e560564e20d00234a46c81a42f
MD5 11c526b994593585b94bbec23b959f96
BLAKE2b-256 25c62c5f700a2c5e7303b1aeb459a8143c01ebb4bb9a29b1c78fce4d8dfdca4d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7de5b4a23bcc875a531781dab143b99bfeb3d4d5b8a50a4b60359ba7923c839
MD5 3ab3f267e2f3c9b36f42400de2bc3705
BLAKE2b-256 07a606335513f1a9d3dd8445a8f075f50f50ae5ba6e36ed5701031e8630c5ad1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.2 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.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6034f2bffb3bd1626a2212f829bd10de5265f79c347ec3dc668a39eb11648b15
MD5 31169f8ec70a6486dfcc27521fa9cc66
BLAKE2b-256 830ec3443ad22270bffce31c1cf02e28757c6d5a0b13133580e47c670537afae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce4ec8ac89a036fcb8ffdfe60f3619cf517053c6db9cdea379125cb72fa2c35a
MD5 bd7af4deda12ee0d9b34041066b80007
BLAKE2b-256 bac9ce798dd7c4ecb7cc89306b5e54ba5d0da5966c3a52fc082910df5e39b354

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ab5f9d84e8a6a885cc78ac25d66b789262d2b28f27448fa482ba910c58a5b4f
MD5 188d4fc553659d7bf425604c0f127bb8
BLAKE2b-256 5f31e65928dce18b5b9c0798f2a9da1549bf3645da82878424fa3cae5d52863d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 90626866ba5b5cd9c4e781d31d6143cafbf90d7cb6dd80e6a4c9dfc8cf354a68
MD5 20d060b0b608dc5cf86400170defe47d
BLAKE2b-256 dfc2640f8af1707bd273ec32bd4f6c31bbaf855cb5f25f16ae74091f7700427b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2f8237aa981cc95623ce7cf4a0b34307d7cd364ab8e960271b3e86f10dc910a4
MD5 526aaebca788902e054507c44c472b58
BLAKE2b-256 5b08a8ce8c1f5d05fede1f0356500181417a72076ac316cbce9e44e212004279

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fcd6047f0983663cb39e47cdb7cbba222daa14aa07dac8445ec71c0ebdb9be7
MD5 45f76121d2ec5668e32f9f079b2768ed
BLAKE2b-256 91a8f867d6cec297ecbe45f85c42f35a12e9c2dd1f3fbdda8354e8ea04f6b226

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b1f672587d3e7870986cf89d32af1411436a1321230a3f76ba9cd7b2942bca32
MD5 22cd3aba04dbc4cf51d3eebebb068583
BLAKE2b-256 69877ef3290ccac985718ce21210a86ed9997275cbaf03326638ac3bd8d4bf5e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-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.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 30aab8fe70e82797674a95b24fe8f3a4360c86128d11794972d2a2f200f7919e
MD5 3b6b11e504d142b30a7d3fddf6a936f6
BLAKE2b-256 6d16a50eb4309a7a10ea923a0c6356d9339fc467faf26c55097573c9de104e97

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 317d8174f30910356f8ebecfc0877e4dad63e5a7af1f6f1e9a68970e3cb32b08
MD5 de08890f89280d1ca839d0632e90262c
BLAKE2b-256 00ee826709cbb9f68af20bd41e81e07f621ddf0ac9e359315f7391e190dce6c5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e370dd6f7bf48f760e347d2d5f4ae2800a96e8b3960150dde9db7ce56230e07
MD5 8360b83be3095971d935d5d9f0606647
BLAKE2b-256 714219d2645ccc048817e3dca12647359596ed01f9ec3ab61871c458eeae55bf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4106b162b1de684d4431cb036fad7600ba0db12cef45fd053288352d82c769fc
MD5 8f69efba9d806035872bd38e92a10f4d
BLAKE2b-256 75d4fffc5881284ad3ccfd01615b2f72901c22cb0369aeeb6072c4f612db1f21

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 65238e3a9297d4f0fdd7abdfde2b60aaa45b2c3672aaa26863b9edb5a54ac4af
MD5 f575ede69cdf64190d81d920fcf548b6
BLAKE2b-256 a22dcc433914896e444587a0980bb71583472969872ce80476b51542a4c9f1c1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06516fff0260720f3f9ecff7ca19d4aa1468aea1b1adfad9e44941a525ab6b0d
MD5 b82a0fea686c4b8b52a6a035a870e00f
BLAKE2b-256 aeaf9203dff7e7cdce7ed6fd41e3169ae059aafc34b793b212491f63e4591890

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 800dce94e0364c867749b160305897b85575762cc0f67ab93e0ef1acafded751
MD5 acc702d56c489376d97e218344bb8d3c
BLAKE2b-256 3078b42b6398a8dad70ee4e2b8330688c17e6e3aa9ba473ff8b5f1c12668df5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-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.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f27e0889ce27c621d4f028015a6c6fb703677a0478495c96c2421227ee037808
MD5 aa79404fadfea9b05313839370765212
BLAKE2b-256 283af15d0865fc2ea11978a44d8c02d3ee0370ebb75deb07538ad66c72dd4cb4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87399baaf514f0cf2e8127a7086bb1b32a248150897d63e8b6082482bfde06e6
MD5 0e5a35287556665f87ca2c23fbc6ff4d
BLAKE2b-256 9006c95438cf985e0618fa284834cc93e69ac993f2b63ea6f9ce2873d861935a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e2bf4b9066f2969de41d794aeeb13a147e72f3a78f7d7a5a20f8bf607b29946
MD5 e8cad7b30481ac01ce5640666c549289
BLAKE2b-256 005526381a28f0f5a922bf677fc4d878a7ffeb92fb48c9cf0f5cf9f9a745f3d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 60c39d5eb62109516f372e18ca499864d7b8ad75460cd0a245b9c65c4a564f76
MD5 8c9a4b75394010952206938179c71e1a
BLAKE2b-256 c28657c05da303f1d216b519370a62c40f3eb9e1846b03f845a8b8b20728753a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 df0cfbfc5693f9b52ae47a8b5ec444506574fbed129229734ca1419abded15d8
MD5 b82f32cb35bf8956c836da472667b38c
BLAKE2b-256 eb91128ac61aa7bf5cf97dc5def9d86b7c23717badcd6b98b7cafa2fab759f4e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4289d289297e97b9e5b53649956dfbbff72df629f93577558bbfe43d802b1ca8
MD5 02e1eab8e8977ecaf40beab9df61597f
BLAKE2b-256 f3ee166f8188e1ae9efe4d0e5aa21d226ad6a0eda19d5a7a035f3e92b663a486

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8088ba7990bc0945576012941f1d72341ac77a6386942f04f8d89746dea7a844
MD5 2675e38d9b19bd3fab314004c22f3c30
BLAKE2b-256 393e11cf6fe377a591c9756d840ca131ecf72d8e36e814fbfb9e5c11224895a7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-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.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 acd183429e17724634301551c610bbe3d84e5d85da5d229764c65e8d5d910914
MD5 94dce1151984757994b34199a48112c7
BLAKE2b-256 fd24f752bfd3e73086d83ecf2187e47d173535eace295f96ad148bb4880aa429

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89837584749bc9728f14a6f349fddf97814bd0cea35630043a2229a61711ee67
MD5 1e4c8cfad73bd2a9d180ba80774466fa
BLAKE2b-256 2ef338a90bf4ee788a11a32532834505905c99dbf122fa7655f23d093f3675b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 485a22cbb11487cddedda4a46e356f50752d2573f5bc032960942e69c3c782b0
MD5 7a5646768b8c548ceb6c6a8c9a643373
BLAKE2b-256 0f40b1dbd44bcdb758cc343b1f0d82dba2b6541b2f62639e579248668f2b08cd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ff13b3c3401df40ba67c7f0f2a5dc300cc26c2085f1e2aeda373638d072f1943
MD5 9b2a15afd45e44635694c9edf5f22611
BLAKE2b-256 ad43d6860dd2a08f57212bfa70bceaaebe32c555b599572498fa4a203e0e41df

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 7c6db49de60782bf404af9ca528108059e306ec796cd89521753c53f92227d2f
MD5 d3b134a57649b2240f04854d66249cd2
BLAKE2b-256 f1d9ebdf5e4f681463f03d3871e3b9a33ccdb9a1dac53876fb302143d2b70b73

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e03c946e95cfdbeceef0917ba82e78069ffa567138b5298af194dcbea668740
MD5 cc8dfec7559b512c671cc655c5d31556
BLAKE2b-256 f0421b5d9254ee34b21aea307f6b7d03bdd89a647ae504724cacc59c1f6e0c1a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1aa17f23b8a9f1c25df0a2c6cddeb9528310ea12e03653c8b7466d930489c612
MD5 ab246e83a7a2e02bed3c8f709791cd88
BLAKE2b-256 f9eee89956cd25c6d06d8c792af9b1abe7d3555c9ac6265b678b7d8d9a91aa10

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

  • Download URL: longbridge-4.1.0-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.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8d2f49f388e16f793559cdd14c6d7bf2cbbcf39a37cf649cef806565c6c710dd
MD5 6cf391eaa0808c9659351d45654bf748
BLAKE2b-256 a743190d25879290267c6e1528e12991a31c922f5bfb9efa1279106c26c39ae4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 77c56f63fd3e4a3fd7edaa72d9bfdfac50eea6bf8367a850bb1b743f0ba06a53
MD5 63a78244db5a4de38354ecca01635e62
BLAKE2b-256 eb3173e2109e7427804d7036719182ac9511185bbf2dd95f752c774ffff27124

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf7a9c1f4e2c8aeb46f1c1e1fc6f65c49ae0f5d289092528e796b9f4e95827ab
MD5 6fa04879cc99cb5db4c66daae58b8cbd
BLAKE2b-256 b6a2c8309ca4434b93e064ed5095b51930d5a01f2919ee8b7fa1c41a8dcb5652

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1bcf4847f660fae7ed1edb39848d6d6b89662bc1334fe1c8366799a8dafa2f2d
MD5 cd1a9eabedb0c26bb8f815fc31556ef9
BLAKE2b-256 33ccc884759ab34efecb87be6589c1b0f3da95e6b2cb344591357de9cb1ae91f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4e4b66b88872496dbf49cc4d134c6689d00789c40379072674fc8ee0ea967e16
MD5 fb164e64e51fa4e43b656e8459bb60de
BLAKE2b-256 46b62043d660b2fed2cfa2145fa2ee110f7faee9098bc2847b94178c919f86e2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d72c7bf870b55cdd1c4b5ddaa7feb5ee8eb13aae39d7b920b3057873c06dcb84
MD5 6ac9478e72a1a9caa2cec1e7d64fea10
BLAKE2b-256 8000562b4f52d4f28254b2e6a48d2a4e217bb2ebe938dd39f5347050eebbc14c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24a5ec07d235da1496141b944237e6f4e381d4d2e41170895cf7cc2e051799f6
MD5 f3676a7d24dd41d5182a7f251343a5aa
BLAKE2b-256 c920d015fefe061f6ec51595c402397a7144fe72a6abd88c1dd03614ff62d3f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longbridge-4.1.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: release.yml on longbridge/openapi

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

Supported by

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