Skip to main content

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)
LONGBRIDGE_PAPERTRADING Enable paper trading mode, true or false (Default: false). See Paper Trading.

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.

Paper Trading

If your account is a paper trading (simulation) account and you want to place orders, you must explicitly enable paper trading mode. When enabled, all API calls target the paper trading environment and the server validates the token — if the token belongs to a real-money account the server returns an error.

By default this option is off: the server imposes no restrictions and accepts requests from both paper trading and real-money accounts.

Via environment variable (applies automatically to all constructor methods):

export LONGBRIDGE_PAPERTRADING=true   # macOS / Linux
$env:LONGBRIDGE_PAPERTRADING = "true"   # Windows PowerShell

Programmatically:

from longbridge.openapi import Config

config = Config.from_apikey(
    "app-key", "app-secret", "access-token",
    enable_papertrading=True,
)

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

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

Uploaded CPython 3.14Windows x86-64

longbridge-4.4.3-cp314-cp314-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp314-cp314-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp314-cp314-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp314-cp314-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp314-cp314-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longbridge-4.4.3-cp314-cp314-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longbridge-4.4.3-cp313-cp313-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.13Windows x86-64

longbridge-4.4.3-cp313-cp313-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp313-cp313-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp313-cp313-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp313-cp313-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp313-cp313-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longbridge-4.4.3-cp313-cp313-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longbridge-4.4.3-cp312-cp312-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.12Windows x86-64

longbridge-4.4.3-cp312-cp312-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp312-cp312-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp312-cp312-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp312-cp312-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp312-cp312-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longbridge-4.4.3-cp312-cp312-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longbridge-4.4.3-cp311-cp311-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.11Windows x86-64

longbridge-4.4.3-cp311-cp311-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp311-cp311-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp311-cp311-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp311-cp311-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp311-cp311-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longbridge-4.4.3-cp311-cp311-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longbridge-4.4.3-cp310-cp310-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.10Windows x86-64

longbridge-4.4.3-cp310-cp310-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp310-cp310-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp310-cp310-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp310-cp310-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp310-cp310-macosx_11_0_arm64.whl (11.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longbridge-4.4.3-cp310-cp310-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longbridge-4.4.3-cp39-cp39-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.9Windows x86-64

longbridge-4.4.3-cp39-cp39-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp39-cp39-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp39-cp39-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp39-cp39-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp39-cp39-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longbridge-4.4.3-cp39-cp39-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longbridge-4.4.3-cp38-cp38-win_amd64.whl (12.8 MB view details)

Uploaded CPython 3.8Windows x86-64

longbridge-4.4.3-cp38-cp38-musllinux_1_2_x86_64.whl (12.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longbridge-4.4.3-cp38-cp38-musllinux_1_2_aarch64.whl (11.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longbridge-4.4.3-cp38-cp38-manylinux_2_39_x86_64.whl (11.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longbridge-4.4.3-cp38-cp38-manylinux_2_39_aarch64.whl (11.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longbridge-4.4.3-cp38-cp38-macosx_11_0_arm64.whl (11.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longbridge-4.4.3-cp38-cp38-macosx_10_12_x86_64.whl (11.8 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longbridge-4.4.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8992140f98dcfb1b9430307ce6ce0df3a418d454872492e047d1b17aa70fc92d
MD5 c4485229c2e3c299c2cccc1f99c07bc2
BLAKE2b-256 6e282eba0a32f853661503c57ab9ee8b84d8c86db8e7f9b38239bb53aa9f2d0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6e033a28f86b6b298074bfce1f1696a181d41beb3834e5536225599c17d9212
MD5 8a9fa55e8cd523c6480c25ea93cf7236
BLAKE2b-256 f52bcb1b51988985bcc7a117825aa5b73646bed114fc9eafbfd0e046024fb067

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a31306f9dee53264810a9c766464c9ded18d0f2aedd4c7f2fce09dda9c856a8
MD5 9f10d3c10d803da0297b9e83276f8a51
BLAKE2b-256 4f376821a049c0d9a3caec18655478bc3ccb3921b3cd98d3dc888836d9522459

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 38a13a4682a9e4c094277a5e3192c602264594112ff9451318a3c7e5fa539384
MD5 7b9b66258025d23ba50909e7c5af1d85
BLAKE2b-256 cf163faa23e06b2ff519a048b46dc6273eb00645c4ef08dfac374f8f553a2ea4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f0fdcda6b3df8bfd5a0c628e175382c5044e3eb31f291f5a3f1640d7a595dce1
MD5 323689749cdce00716098e2c83bfcdae
BLAKE2b-256 b534168c444b80ad51374bd287d758a93928e122fef03b2307018f0f106958f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 121d4ae0532f2f4401d78a77d4b5456ec84220a21314c35de9255ae390b70954
MD5 207a3a88a4bb7ad324579978151eda4f
BLAKE2b-256 b4781fd0c32c56f396e9c1e1f3b3923c1b38524ebff21ab6405fce6988de8a2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dde215868abbbad49dbde4062c6fd34a85ace12569dee2f189f49c65785e6cb8
MD5 c151d1af6e65afa7d02e25c43ab711c3
BLAKE2b-256 e5d11badb4f2b2ff84652bc5f2271dc97ce83f58025757c745c663926f98d925

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 426a3d56616af73048774ec96819e6b469c5e32986f9d0e2bec74ede7d418b3f
MD5 e52cbbec4e227583f162247e8a03c2f3
BLAKE2b-256 a5f9a42599e3d1a5a3ca01d40e3c4bc5a3859dd2106443994f71e49de37ec755

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c7f443832a742a48180dff4e15e98e7eced5373536322ffbeb00513a31ba791
MD5 5112347afe501912cd9017d57677df90
BLAKE2b-256 8e0249f8d7a2b9ac9eaef23e04ce6e667b024ccd3db3ebe6143f059063745fb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bda9cd2feda414d1215b8041651bf4f1646ae0d79e9218a3a9ec7a7c689fe52b
MD5 dfeda46d8e36b01f5fa7c9a65cda51a6
BLAKE2b-256 5c69c25b997eee16ea5a74fa03debe32a1d9597bf09f93b5695bd3abfeec8a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 51d9e3a7481f0527719808ff0a44107d268c978cd966128bfe64090a4c08993f
MD5 bc48724831952fd8f6b6438c62cddc20
BLAKE2b-256 6cd8cf3e0cd6c2eca0dcdd8ec307dcc6576038c02964c032196de4b9bfa32f20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0271b78227898a696ed4e8e2138e978d49680a0c7637d5c5767fb7df0aaa0a35
MD5 cf0b062a6c8ceaa5cbea1b4215d2e1a1
BLAKE2b-256 19ad12afa2bfdff059b48f3ae14e3aca0c8194344145634154be17c93e60b260

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5c2c98551b34a40cd895f84efc3e04281cb4bb10d9142945aad4d7e6d577598
MD5 1ed781cf91991a38af206d398c07bb70
BLAKE2b-256 05f7084b54c096feb48689bec601b0183ad86d0fc40fcb271c032b009d987083

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 08beaf9652dc3f5b1be9472d352f87f8fa13cffb3dd707440135a2ddad73d8c3
MD5 e13bd7649fcca5ee482f0a66804219d2
BLAKE2b-256 ac831a916bfbb72469251bf5fd04c41451b6707d8c32d4153d775c1703cda798

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c1edf467d9ce64a1f477d9e69c40edbd0ddb14727601368c9bf28f35a6adeee2
MD5 f30bd31772f8159fce118f3b23c94d1a
BLAKE2b-256 8e7b9b0a78e0e79835241b1d1e0acd4b07bd7525dfa2793ea5312f5f387b5888

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 abcd5bcab6f8f62e476eca473d6a7685d090c275a6f7143408aed3f7fafda6c8
MD5 7b0bc7d22257a8b040c56f0f5da876d0
BLAKE2b-256 78cbaab240d34a22483283b68495c25d80de218a40148531481dfa9cb3b79c30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7aa46fd5236be13cd626616a502b86c98ecce64ea9f38d80b396c12e4e0c02c
MD5 1be24a5ecbb5c58f2a570b93cbc2e895
BLAKE2b-256 50458594dbaec1bcde0f42d445268b11e9914202c6e209744df15b46af1f755b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 07faabf68f5234aa18495370b801c722dbc2507c3e5558d2e7d285a13a9a9ebd
MD5 4afb309200381acfdb84325519f580c5
BLAKE2b-256 2759390b1a10a2ea38714f038c73ca11b68c17a4a10d554362542cbb1a50aef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b0e2e8a71a7db8830f621b45d88f8519bbf6445007d2d13983bde2aab422f3ec
MD5 96969d774e28cdc1331663bf0061d092
BLAKE2b-256 485ee1236ae9c516af971a03c0b7270ec35a8a7b7ee0dd6e18e1cbe3994318aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e12b84038cbfc070607c4c63538dbdf54cc64038499d5aec9322f75051880de8
MD5 5ea1c74bd868e5ecd0ab9fe6ccd2c335
BLAKE2b-256 13356ed67b885908111f7289c0f2f462e01a294efd2ef84c2b7bd55197115e7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90a5afe0c9bde8ddce4bb0d83fe8b933a4cb317ede3fb9445483cbc37267af32
MD5 a36ee4f0d5905f01f02254c7cf08406f
BLAKE2b-256 cefe87ff682af6bf2df3abfdcff050701f3289eab2c8f3a913073420918d87eb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa57aeb04a00a87934120487f9f41d743eb75f1ce2768380d6d9c9952f7fbebe
MD5 32053d6395e5c157dff1f403907e1500
BLAKE2b-256 e1dbd773e386210b1382c2ab002f815e8a3ebf7783c9b9401c43bb604226ea7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a481942556414b946442c135fc80aab7ae9ed172dd5f0843536bb7dccc92959d
MD5 11297d85827e7e0f19c127b73b8904dc
BLAKE2b-256 62b736773f66a41713ee28a07431df13408162a4f342d6aa3c42b7caf9592a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd340424442464d6a23c6fcc317daddac58b3be180bd8f697fd7d7496b650bce
MD5 57e5b0e9a4fd3a164388e53fc4017de2
BLAKE2b-256 113136d09e499417e13a218a54da2757bcbcb20948672466139c71837a35b7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3abf007fab88654cf7bf718bced8a38d7263229c2827281baaeeb753106f44f7
MD5 cb855a2ad01870bf55575af8ce8196db
BLAKE2b-256 b5a7fcc523098b808a20ea2cbbbd7fff121f74b8f85995772060da77a4475c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4d1281c249cc7950f0ff9df45b73427e5aecda46543225cde40edb80ff267973
MD5 e8221821c5bbb0fe56ec46d951b6f6e0
BLAKE2b-256 eb2033a092f5da5900df5dc07b2554e0a5bccf7646321e10fc870d15744a848d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20d19acd95c851f85cfc2d443bdd271644e10ccc347da5faba893e347374b937
MD5 a4ae559fea7b5cc044cf561ae43973b2
BLAKE2b-256 6befa1618f226e3ad1d1eee28c242c4648b0c25f67b293ddc3b4688831cebfb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 173636f54ea0fbdef78ec18199ba1d0902885d11fc7a9698135d3be4a297cc1f
MD5 c765d24be1c8ef7311fa3a9333bdbce7
BLAKE2b-256 f61964783b341cc1dba006b53dc9cc951c6a535f242449052668d230896b1f57

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ba16b6a183ffbec40ad214660ff1044dd2988e9765edfe493e8a24eab8e16642
MD5 6fd5939960c9806d4c117d089b00b76c
BLAKE2b-256 f77e3f19e895dc1100a4e478962973507ba2d9cd5e49ef66b690d8a3dd6ba534

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 915e7e3b479b0267ef9e9dd41c8df460e6dbcced2ce40064e335f2ded7146a38
MD5 1d043a11791ef3649d5589ceb3337e43
BLAKE2b-256 f9314d8c9a9e646c4fa6335bff20a4d00fbbbe2eaaccbb54bf0856a7cad4c127

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 32f7c1dfa94c037bc80fcd158b89d2849000e68aaef153f136ef4a6584df5a33
MD5 3fc0d45ed78bfa1344935480d0189f16
BLAKE2b-256 47841fa69c440183baac8495c68f1e6db8f4bf48eb6e162ab9c7a0ab5dcaff75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 565d94ad1f7bc85d0342ea7271092a58ad179247d94d4fd0bcce8c092ae7a60c
MD5 dd67cc25067ade40205328f6156f987c
BLAKE2b-256 a61c70479109f43a5d5df5e777af6003c568b1debd7447bdee657c691e479cb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 517f3ae9066e41bba07576089d7a7637c3d0a42116133ed9493c90cf536f385d
MD5 c95160b0fc2309b590c2de714310c58f
BLAKE2b-256 211348e1dd0a3280126979f36ff3f3953e86b999f860c593dc260a18033d4e50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43a55670114a2efbc145bf084a8d96ddd61cf9647f2d53faea33b937d97709fe
MD5 4d801a7b589b9d45e8ca18d81bb6e834
BLAKE2b-256 59ff130808fc4726412556ccf18931e10ac1a1c388a0ed5be27c4c9c76707aca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e98584f27c361a8264f35bda23ff32eca2198deb071f051f42372b4414e8ed55
MD5 4772ea29114651be69ea860fe14cbbd5
BLAKE2b-256 190e778069607bb7a38adb6f790421bf574aecfad36abbb80d3a08c7a19f4291

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 98f891f01b6037f0e2ab1d6bc1307506aecb89813b3627347c587b9ce26f4575
MD5 967cb34fc409c6aa613b9b0a92f6a6ce
BLAKE2b-256 41623c71eb862c54891f0da9086f9bffc1cde454e63da3a916f6cace733be36a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62b55d9fb4861719920357a1efde311ef30dc1024ec26aeeae18b2409a2f6f04
MD5 0b9acd62d37b10ae7b32f7836be59671
BLAKE2b-256 6e3accb2186afdad70625761849fd148ec71720b1a355191d7f5b0a70cb9d6f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 795b974cde2cbec6328f4f69811e93e8948b69a83986fe413e6784df36e9b8ed
MD5 cb3bec49b1ff5afc16d9357ec4558e34
BLAKE2b-256 9fdf5dfe6c2f118f73b1df94795693eca4baf6516e43b3c015c69279b3c2b56e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2d26ed7bb43d4e9b6393ab77a618f2ad28d974ec0614b4d946e11e9f9f8e7d6c
MD5 a9ac2fbb727df1e4a99e23d0980e4f73
BLAKE2b-256 646b36c3abcaf556fa97bf852deb5fb63ff33e6d9e5fba39cc0718cc6836fa1f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 52fecfc8a0af942a7913516ff3077f22d360f2a2fc63817b124a37694713cdfb
MD5 2a4910a09a2696760ea010fe382cc058
BLAKE2b-256 4926413eceb2965336a04f1e1cb4591aef2d90591324adab8d39af6080bf2c61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 950f00b24a22840f8cbd8fde81b4eeb86d2a43162987cf82400aa381ab71f8f1
MD5 d5179bdce36f8a9d9c9b865fe7060851
BLAKE2b-256 ba738f6f9b872d32767fa2d44dd92955b9cb129c980391a500fea086ec329ca2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 26624d09293342108dca31d81841b2d514d6fdd0459912c1b890ec3e7ed4f2f8
MD5 7e992d15fdadc55147adbb746172dbfd
BLAKE2b-256 9fe531974a5dcb3185e2474be60db77f1d53161a6539a9d161c222f8809c8577

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longbridge-4.4.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 12.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 71e9bf7e364b72e235c3f374ccc83a835be988864291af4973120e16f3230800
MD5 12f586d08ae161efbc60f1350f6dacd0
BLAKE2b-256 08ef6c6351e6b8520b5fa329478aa0999797d1bc0ac3c42a58f013316aa85356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a4ad7e9648b916b75c3eb74f932fd7d68150a686cac509252623b8f0a92872ea
MD5 289c71bc680a89b5fb214c2403393758
BLAKE2b-256 e0feae84acb6c9843afcb169eb5a531f268eb9296c0c662f28c0385c2b5cfabe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 25d7ca824f21d48129ce0c7abda15baed1fb61303f3f327c1a7d46b97073163d
MD5 39f5914a44bc22c54e7b141572c5707c
BLAKE2b-256 e7d7794534090663d40e72b51db93441f62f188a1281abc8ea016b36c7b36dc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 075938406e94d1a4cfafe1fa21d3c75149f0e140ad652a91b83af2175b900e1a
MD5 7c5d21b3591b312d94f63f22d753b57a
BLAKE2b-256 55ba39f34bd9c463986e0c3cc55d9e171e8ab9e2273f0d2c3f6ed292a1d66203

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d62608f493491808129c6901144840de7bb3fadf356cdbb055497775ab5e26cd
MD5 f905c0b7c543f36c7d2c87810f90f80c
BLAKE2b-256 872e32123f6b80e82403ada9b0a429ad3172b17bdfd87349e355268996d5421e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a06c13db41c1e061e7f6e9bdd862d67b4aa5f3690a0f6de680043a78a95b0dd6
MD5 46cebd52ccfcd4523c2c4762757c5b5a
BLAKE2b-256 46d23d21656b9c1270708cafeca63ec9b7a0b469deaa94fdfe2046f1a855ead3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longbridge-4.4.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbbb463603bd34a262ec62a7e61f7dd822b97b05899d5ea9b0950af75ff7207f
MD5 81b477422b034a3391f0e1a11c1c3305
BLAKE2b-256 f6a205ff13789934bc66434eb1bb2dec31cf7214bc11b9944f2689d227714957

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

4.5.0

49 files

This release

4.4.3 This release

49 files

4.3.0

49 files

4.2.2

49 files

4.2.0

49 files

4.1.0

49 files

4.0.6

49 files

4.0.5

49 files

0.2.74

33 files

0.2.73

33 files

0.2.72

33 files

0.2.71

33 files

0.2.69

33 files

0.2.68

33 files

0.2.67

33 files

0.2.66

33 files

0.2.65

33 files

0.2.64

28 files

0.2.63

28 files

0.2.61

28 files

0.2.60

28 files

0.2.59

28 files

0.2.58

28 files

0.2.57

28 files

0.2.56

28 files

0.2.55

28 files

0.2.54

28 files

0.2.53

28 files

0.2.52

28 files

0.2.51

28 files

0.2.50

28 files

0.2.6

28 files

0.2.5

28 files

0.2.4

28 files

0.2.3

28 files

0.2.2

28 files

Supported by

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