Skip to main content

A Python library for Longbridge Open API

Project description

Longbridge OpenAPI SDK for Python

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

Context Types

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

Documentation

Examples

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

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

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

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

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

References

  • Config

    The configuration of the SDK.

  • QuoteContext

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

  • TradeContext

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

Quickstart

Install Longbridge OpenAPI SDK

pip install longbridge

Authentication

Longbridge OpenAPI supports two authentication methods:

1. OAuth 2.0 (Recommended)

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

Step 1: Register OAuth Client

First, register an OAuth client to get your client_id:

bash / macOS / Linux

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

PowerShell (Windows)

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

Response:

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

Save the client_id for use in your application.

Step 2: Build an OAuth client and create Config

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

from longbridge.openapi import OAuthBuilder, Config

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

For async code use build_async:

import asyncio
from longbridge.openapi import OAuthBuilder, Config

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

asyncio.run(main())

2. Legacy API Key (Environment Variables)

Setting environment variables (macOS/Linux)

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

Setting environment variables (Windows)

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

Other environment variables

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

Then create a config from the environment:

from longbridge.openapi import Config

config = Config.from_apikey_env()

Quote API (Get basic information of securities)

from longbridge.openapi import Config, QuoteContext, OAuthBuilder

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

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

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

Quote API (Subscribe quotes)

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

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

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

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

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

# Receive push for 30 seconds
sleep(30)

Trade API (Submit order)

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

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

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

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

Asynchronous API

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

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

Example (async quote):

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

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

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

asyncio.run(main())

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

Troubleshooting

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

License

Licensed under either of

Project details


Download files

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

Source Distributions

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

Built Distributions

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

longbridge-4.2.2-cp314-cp314-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp314-cp314-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.2.2-cp314-cp314-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.2.2-cp314-cp314-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.2.2-cp313-cp313-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp313-cp313-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.2.2-cp313-cp313-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.2.2-cp313-cp313-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.2.2-cp312-cp312-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp312-cp312-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.2.2-cp312-cp312-manylinux_2_39_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.2.2-cp312-cp312-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.2.2-cp311-cp311-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.2.2-cp311-cp311-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.2.2-cp310-cp310-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp310-cp310-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.2.2-cp310-cp310-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.2.2-cp39-cp39-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp39-cp39-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.2.2-cp39-cp39-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.2.2-cp38-cp38-win_amd64.whl (10.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.2.2-cp38-cp38-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.2.2-cp38-cp38-macosx_10_12_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a62012904918608f4b83085e379905306440905d5f870d577cbf5e06aa200752
MD5 d9d54c1b0566134015cd31380d51b233
BLAKE2b-256 a381625d715585736a9574e36facb77cc956065d77d80d1e463496982a8833ff

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78cd31aac6cb9e6c9784a75cdcccdde8402c14d050690866c0a22456f5bda7ef
MD5 a4561dcb4b3a9974e69fd43a27499ac9
BLAKE2b-256 6680d2f9037929194b24d2096761d193ff4bfea0db37668e36196aa1a1a1c281

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8de215c504b369732cac056b24498cdf3972544f4409a0b76c236da16897a22e
MD5 9648fde1d4de21bf628c8bf5b699d575
BLAKE2b-256 801ad0effc232aa97de408a8ac631221a6b47632941a943413c1677f0cee50d9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3f1ea7c91983ef00ed32dd3320bed065befbb44e7698e7cb7a6a022c70da3f2e
MD5 cf578e25e6367c817cbab3b753d62469
BLAKE2b-256 5fae8652a81d532dc4800e1e5aed17ee832f4082da8ad617190134d97df77924

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e2c2966113b15d5e166637574d6e0b7d67682d191ba91e2384f7fd2beedd2283
MD5 578461212a17a2f028c86fca99b96d45
BLAKE2b-256 c475ed5a7680b82c6344f02f3ceecdf0389e59aff4ee9c193a1756900ccb876f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 969e9331db5dc3ff596c069a22b43fc7cbfe8dd6dce412ae029c1b430257c3f6
MD5 bbbfa854fa87e37ff646e3261844072d
BLAKE2b-256 3fcd99afbf7df009de9e4c02dc513f2fc5d8de623e67486cfc5718b7bff4e08d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fec16f4f5e9ee6528a8014cc61d1293dd056c074956a3fd1dac9105767c87b3
MD5 6434b1132ca2ab9ba58ef10f0b21f1dd
BLAKE2b-256 c1bda67076e3e4cc7e2881546e726023ff9ee2303d784d67f3e5e457de226fd6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7dbbd1b2b1fe0eeeb474a455b0ee26a54a4d62dc91c9f69a321e8b75e4674db
MD5 dbe473a0ff1a3ec7e3d1afa5cb5390c8
BLAKE2b-256 6bd764c5b902a671dc1aa0403d1013096856b14ca96b0a948a588546f77cf113

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d6d089dd72686ad4de34c82043366d323f7797bbea4852909ef6aa76dd18d7e9
MD5 5c90e9b7f7633eb0d9d65f0db98ef1b3
BLAKE2b-256 edd0a720ed586d95763eda84ef5037e126d3ff7586f983f552a7ec61367e22f1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 171f2c35faccb84d8104d2100b8cae4cc9bcd231e909a5876c5f041f795121b7
MD5 f40b96f66b619eca4cb2d3606f74ab2f
BLAKE2b-256 513d4efe60bb8d58e269839557164a86e494552c7d00aed77936b8bcab3efdc3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1b45388267e54085081449d5834c368e7336d876487e1b7fcb90ec6eeacd1206
MD5 03432edf1626212cc17539c0f388d3b0
BLAKE2b-256 11d719b673b725714f0b02685f48d7340aee8eea67f4a4e6e18d280018f3cde0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 54aaf869f3a1f02ba18aaf254e11a0b9b1491b6e04df8fd951d50166dcba9072
MD5 3a3ebec4bb5d263a267b22a34177ddef
BLAKE2b-256 7287027c35ade3c8d901eba0b5e5f561d73c701bd0c7cffc8a78990474596cdb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b8f2ef650ccd0960b5f8f32eb160ff95649039cc794ec4d199018151b62aff1
MD5 e355d3513e7f8e724c6c08729df00701
BLAKE2b-256 a1073a5f24d46e52cd7934606a39f03e09341cc45e8cb9123e8f4b8d1db683dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0642e36cda35980c9e75b66b45a235958cb90b188f3988dd6b3e6867f8b8bd32
MD5 95c5c7136766e46d98c6a7a6584a2e03
BLAKE2b-256 3e031a70abb432aca6c11161cbfcf7a4e21b9fec469ceb67b9cc921c34e8db2b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09045a124184addc16a24e9f2ebb117779508a8b44c4c8b0ad236b989bd56f8b
MD5 67c9062a828356919ec35bc0e7e07089
BLAKE2b-256 e4cea8c251ca4d2eb9162421c8699ce3fe035f8df8199384fced6d0efb48c4ae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 672fd321381fcba47f52c4dd8f43256da1f32bdf355be4ec675c8c33d6dc0c94
MD5 4df4f373e17a7330e9be7ded2037fae1
BLAKE2b-256 f2e268f2c20331cf3a81f011ad62de32840616df859111ec1b03020e3372f170

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d29a9dd8657f132d2dc0009f090532dc022b43b33b50039892931efb29343685
MD5 99de392e433bd34206d0e85e4522ea56
BLAKE2b-256 a2d2cdf911d5022fe47fc5ff2b204447970529061012f4d6f7fb16b7d34eff94

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a2eeea7a9633ef20f937f69f83849885456735ff893e7a236b302c29624a8d4d
MD5 080d5f7d297703026c5f08465b2b11c8
BLAKE2b-256 ac9e4c5617cdd25c10aac8e9076f5294ec4e635f1f3616c0f689af118a5cde5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3227686aa21f13e8ffe14eead097b49f9f57a51e57fc9a1be85e37c999aee996
MD5 b7424a4aa6508c073a7863c15e0b3994
BLAKE2b-256 5bd5431fbcd16065c2ecf99184f56c59082fc7c63187478565d0befad20187f2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74cc5476081df71cd82bc622342a3d3155e1ec7ec0e11a5ecdbe6fec01a8c6c4
MD5 e339dd1881ff797ad9ad907e5aced92e
BLAKE2b-256 e4d48d5269b90599060181b3ddeb4e8e1589432499ca049d06f4bd1e5d9b1db3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41e36bd8099e93748f159e381fe38d1d409731fcd409a863e8214edacc4c5662
MD5 c81072605dde6df78e71c6dd613bd5e1
BLAKE2b-256 e47254b1b2aba0a4c2a9a86bfcc4fc0e697dbecb181aeca940f3b0dbf2efc2a0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c6aed0d11c8988c3ecf7eda4dabd9756f92b7749ff378629394928171f58d637
MD5 dc634945c84e119bd8ad9a07df782790
BLAKE2b-256 83e02f64c1dc6661d4aff4791339d43619003153b8d639ac98587459b0935b35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5186589a2cd13a655e379c7e1bd1716e81938f6f49ab8eb9f715b2c304c2ce78
MD5 794908b1c4cb363a0e7ea8a0cf61e07d
BLAKE2b-256 9623aacc6ea47625e93a4b4fb235bb86c961c318d048d7fb3d0aadb6c5476cbf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2299ea36f88ffc1039dad097e0e21d13483c9000cc6543aa5fd20e15956d9305
MD5 26f325eb2eaf45cd34cba43d6d9e6ada
BLAKE2b-256 7388756433871aa8779233e4f6437f1672c32f23690805f6e14ddc4ab525e513

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b5bd5fa2ca17fd514e8fd56dc18d65105f5d4986a09d0c8179948919d8173232
MD5 7d45cdb047610ff99d50340f786d3ae4
BLAKE2b-256 c486c9fbe8e8851f647f9517b3224d488049ba1b5b817a8b98ec1e03b2b1f1a1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0e8aa363dba5d73e0cb683a30cb1cef60aa2ea92deec1e4cf1f4ecc97dd36e3f
MD5 bdcf5c05827b7e1532c4587287a8abbc
BLAKE2b-256 10dba2cd54677ac20a4e83a4b05077eddd374c75a9ccc3bb021d9bd33190303f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c51e89e7a63238603d8bc60cf35d9fd8708c770b41667e7a5b94f028ba70aee
MD5 2253ba0270f4cd38740cf5b34092759b
BLAKE2b-256 ac07dfc995284965fabac9971852d3d7a6f55e31ce85e0ac259a3b6f6e059fed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2064a272a9e583fdc38391a2607b6ca713dbd9c76dc844ac5b267e0df7e37d0
MD5 7a72a850b38eb23d665b3e55bababb35
BLAKE2b-256 cce1684cb36fe0b22c6035a72fc7e9a9f361e345499aedfb97ff2f39bacdbbb7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fd8649705d99571c0efca9a5152aeb0e052145323289ad82e460cee469b213b0
MD5 2e186a33ca600451a19a3d7c8557c5b4
BLAKE2b-256 1b47a87d226c3caae9f1ce1313cda49d5b4f18cc6e1c5644dacc9d6038a1072e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72ce7cd236e99428a47393e54a8a9705a404f864527d51c4d20f2fc3b9522640
MD5 9a5fb5417671867f1c5a1d3eed7597b4
BLAKE2b-256 bcebe3449f4f02b5ac193a21754d7bafb442a21b9cf1c91cd741966d0494b3a9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 83aa99702005f06c42e7ec2159bee6f577061340f578c6ce90b7ecba8429b428
MD5 283d61d0ac2d478c34d1d37f4115d054
BLAKE2b-256 39f15124baea08cb2f74ab5970b86e3aaa8158dcb6ea6a59f19dd31f336411d2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 63c15c773c2f962d5cdb1087269d2ab2206c90ece3e8160dd7448ca808333f2e
MD5 d7792cd51c20c53ffc327c940af4321f
BLAKE2b-256 e3de412800ebf72633804a662fca0e4b2414c5236e18bcf6db3b7c56e14b7844

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0a2106eec57531999726e612c2c4dd31c66fb1d1894c3cc49b8d13686730504e
MD5 4259786a8f08632ec5e4dcc610f5a5a8
BLAKE2b-256 c360143d16a81a238ee302ea0305208e5cb92fdeb85961b3b6e3ec130b6c9350

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c8a939ffb858693668e4e73d4adde8440515feeb3cc136e81e8700eadcaeddf
MD5 634a909749853946cce3bc379138ca65
BLAKE2b-256 52973475da357b8a1007a7c8986b57e1b0c87aa78496cb9150eabb2c33ba6fc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4bf49c8a74cf8fea1ae00e61d4ca069dd51d95d3ee2a8edc3dd9447664dce45
MD5 f995e0b5b402894de784b9339d20e1d8
BLAKE2b-256 583309e23f21bd2afa566839db428b843860fe5db9749bbfbd55f36815587ac5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f54cb5c7836671c043780ad227fa52ccdbb8729d1aa789165d2f55dfbaf8813c
MD5 a27871f331cf288c9b803aa6e7de0ef6
BLAKE2b-256 7a9ffe441ebadcde8aa36aa507a782668c8cac481dc9486a74d30d01a9e0b96e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85c56bd6c7fa7c504e324c5fdfa0b15207bdccece460bec9e2c836565a0fceca
MD5 91f30ba8f5ea379cdb1e97c8a27f7eca
BLAKE2b-256 bfab02255f34703d0d4aef61de9c8fe45da44e0802f4fac342d415b1a6467cf5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fec8f7ccc5df9dbabdb8cdbe6363b778c38f4b9f45f9b5f4f85066e62c50759
MD5 babd3f27e5aeca9e762bad74b4adfb02
BLAKE2b-256 d79bfd4ac58021eb66cdcfae76672d5c1fc258a649f506dc1e59cdb40a4c5265

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a4786188a3c270faedf24de872665b5f4b3b030b574fd3a9d7d44297efbb805d
MD5 0cc0dcebd325945f8d86e98a693e9643
BLAKE2b-256 6bfe4f6f61908e3c7975c852376386fa58785d1df1f2423729c9f6f883786489

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 df7473d65f4426d31a0c117439c32145edb36c2fafffa9252ddb8c73b8ad9b95
MD5 ad09e9b202908695763d2d1bb19c0b60
BLAKE2b-256 6286a0ac60506e02c4767ff3adeb9a456fcdc4a1a3f2f0afa0d61e39ebef81ed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 903df6bdd030bc50677ad903167c1f776bc6cfe555fad7ad01512c9137ebca6c
MD5 b3e35d692ed3387252f2b657e58208ae
BLAKE2b-256 748aed747c239142396daf4954f0e52742cde5b96617ea98de1dcf9c0715ecda

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5334001535d8edf53944661a80ffce4a6b9b445ae7b66143bfb2bdafddf0c733
MD5 20ea7677e1c9e9052c88ea86a39bbb9d
BLAKE2b-256 80c755a5ae387a879c0dca2990462ef299d8034b0eb54c4f8d56ced79aaf70d0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

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

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4eaa65da98d494358d8106965266195cdc6e45e88ada733bb60d9c503d4907be
MD5 d4e8c7e1e505d180f03dd93c4b890aa2
BLAKE2b-256 c7e7fe9a3432d4d670afdacc5322a55f459d4303da357589d817108fb3b6877c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6083f2810f4aa7ab74342b0c33c473572df7568057e66a654ffaca5c3849cf5e
MD5 161636e0d99e2e0ea9c5571e41da80c0
BLAKE2b-256 74339f2b6f99c8f63a46eea071c0aa2c79d58a7f739cee7036f00b936cbcd57e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f39e9b6c14d1c442fbc5a55795b3d2bba38d914ceaec183060e64ca35076309
MD5 b99ff628e36d31e5fd9ade36ea616971
BLAKE2b-256 d9e5420099c3866c3216bdb5cd683b2153852357205400db8e4392cb7bf622f1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e60c0f76b9e03b36a34c0d3711b9db3c0260d24fe26c8f565eae5dfd01099f4c
MD5 d7ce300ec03a04f56808346a09c07bc6
BLAKE2b-256 6caf6657f47e16c3b3a57c341edd9181f3959110b27a136029a320e5cf6b585d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8289d04656575452efbbff5393d996a71f531f851de20f49f24db02c83d7b32c
MD5 19c65786e73ad0aab976e00d7bb785ca
BLAKE2b-256 0c9bbb922410a88e73b91f03c276ed2faa7223e3d2c16e20c7ff5dc09fc0fb39

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b2ad5e906bce12a841313765d614e85d0359e6e6c6b5a84f45b40a6bd03e650
MD5 0ef5bfa77376a844cb6fa249c2076fb8
BLAKE2b-256 ca796f978e5aeefb3ab6e099f7bddd1e6d39e84484c5e73669d02a4ce5655d09

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/openapi

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

File details

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

File metadata

File hashes

Hashes for longbridge-4.2.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0acb58e2d82bbf06a332379b71d091170130e3e4824f4e1fbfb8897f9e8a6b66
MD5 e90728430a2e0e26e800e33f4d4c5bc8
BLAKE2b-256 daf645ac5b19a62b1454106b9297d919754feb121ac30a10d4c095cf5874af17

See more details on using hashes here.

Provenance

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