Skip to main content

Longport OpenAPI SDK for Python

longport provides an easy-to-use interface for invoking Longport 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 Longport OpenAPI SDK

pip install longport

Authentication

Longport 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.longportapp.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.longportapp.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 ~/.longport/openapi/tokens/<client_id> (%USERPROFILE%\.longport\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 longport.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 longport.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 LONGPORT_APP_KEY="App Key get from user center"
export LONGPORT_APP_SECRET="App Secret get from user center"
export LONGPORT_ACCESS_TOKEN="Access Token get from user center"

Setting environment variables (Windows)

setx LONGPORT_APP_KEY "App Key get from user center"
setx LONGPORT_APP_SECRET "App Secret get from user center"
setx LONGPORT_ACCESS_TOKEN "Access Token get from user center"

Other environment variables

Name Description
LONGPORT_LANGUAGE Language identifier, zh-CN, zh-HK or en (Default: en)
LONGPORT_HTTP_URL HTTP endpoint url (Default: https://openapi.longportapp.com)
LONGPORT_QUOTE_WS_URL Quote websocket endpoint url (Default: wss://openapi-quote.longportapp.com/v2)
LONGPORT_TRADE_WS_URL Trade websocket endpoint url (Default: wss://openapi-trade.longportapp.com/v2)
LONGPORT_ENABLE_OVERNIGHT Enable overnight quote, true or false (Default: false)
LONGPORT_PUSH_CANDLESTICK_MODE realtime or confirmed (Default: realtime)
LONGPORT_PRINT_QUOTE_PACKAGES Print quote packages when connected, true or false (Default: true)
LONGPORT_LOG_PATH Set the path of the log files (Default: no logs)

Then create a config from the environment:

from longport.openapi import Config

config = Config.from_apikey_env()

Quote API (Get basic information of securities)

from longport.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 longport.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 longport.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 longport.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 LONGPORT_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.

longport-4.3.5-cp314-cp314-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.14Windows x86-64

longport-4.3.5-cp314-cp314-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longport-4.3.5-cp314-cp314-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longport-4.3.5-cp314-cp314-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp314-cp314-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp314-cp314-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longport-4.3.5-cp314-cp314-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longport-4.3.5-cp313-cp313-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.13Windows x86-64

longport-4.3.5-cp313-cp313-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longport-4.3.5-cp313-cp313-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longport-4.3.5-cp313-cp313-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp313-cp313-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp313-cp313-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longport-4.3.5-cp313-cp313-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longport-4.3.5-cp312-cp312-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.12Windows x86-64

longport-4.3.5-cp312-cp312-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longport-4.3.5-cp312-cp312-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longport-4.3.5-cp312-cp312-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp312-cp312-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp312-cp312-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longport-4.3.5-cp312-cp312-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longport-4.3.5-cp311-cp311-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.11Windows x86-64

longport-4.3.5-cp311-cp311-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longport-4.3.5-cp311-cp311-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longport-4.3.5-cp311-cp311-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp311-cp311-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp311-cp311-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longport-4.3.5-cp311-cp311-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longport-4.3.5-cp310-cp310-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.10Windows x86-64

longport-4.3.5-cp310-cp310-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longport-4.3.5-cp310-cp310-musllinux_1_2_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longport-4.3.5-cp310-cp310-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp310-cp310-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp310-cp310-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longport-4.3.5-cp310-cp310-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longport-4.3.5-cp39-cp39-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.9Windows x86-64

longport-4.3.5-cp39-cp39-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longport-4.3.5-cp39-cp39-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longport-4.3.5-cp39-cp39-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp39-cp39-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp39-cp39-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longport-4.3.5-cp39-cp39-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-4.3.5-cp38-cp38-win_amd64.whl (10.9 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-4.3.5-cp38-cp38-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longport-4.3.5-cp38-cp38-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longport-4.3.5-cp38-cp38-manylinux_2_39_x86_64.whl (10.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longport-4.3.5-cp38-cp38-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longport-4.3.5-cp38-cp38-macosx_11_0_arm64.whl (9.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-4.3.5-cp38-cp38-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file longport-4.3.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-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/7.0.0 CPython/3.13.14

File hashes

Hashes for longport-4.3.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dfd547a6f4c79a5d82b35aed8b16e3f671eb9b02e54843fc15bd0464fdef6b2f
MD5 56ba8c597c252468f1a2014d00619509
BLAKE2b-256 2d75eae60f8ecd993d3eab7fe835b08aea952297c8807cbdbca82482f317450e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94b9131bc5250d5c5e6d8ade006149c02c30add5062a348f30fe411e771d6bd6
MD5 e5d5a6526b6a1214b141236629fbb8cb
BLAKE2b-256 e19339b1279540bd36b3a666f5207c305c457f277f60144a3ae3377a77cb281d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70e68571b772d1c386691b2b443bf4390237c6fcf72f47873884bc866536f5df
MD5 0f7d78b3b0ad1b83aaff197591d6a806
BLAKE2b-256 4d82ec31e2441e660378c583f76229360435c4170f5d9456f25df0a03b34bb9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7eb981035be3104677738189b5019e0d8a750ad489dabef8139b0f1d17a3bbbf
MD5 f63e7f6ad1e4456bbd43a211fe4503b5
BLAKE2b-256 34c7ab28be1f4b5f0a7135ae6055fcb15494d22e06683f1e8cf0760c078aa3e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 d3f535ff2785c66532a786681bef5d6291ba72b8a528015cb2aa330dea11445e
MD5 4b65e54e397a09d186cc25ac5340c2ac
BLAKE2b-256 d580400a859b3bb93ec4c9a7ec934b1cc588970a3ff3f859c379f119255e4cc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42b6f981e0dc0843c184569c485beb72c8a9796f8642c44c39f9bc1ca0a15182
MD5 e30cd51a99a75f0aed7ee659989e517c
BLAKE2b-256 e37d24023d7b631d4da7bc03be82f364e6ab291ebd9645a0331ba59be6aaf492

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de697d46bcb62ea16caee7ed6f627e6539ece93e3410efa013ba15901c7b8d3e
MD5 158593730ea27027638229cdfbf9ea44
BLAKE2b-256 3ccc18a777c5565e88ae90cafb7a8a75efb037529e0217b99471ddf2d9e0ae75

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90c30e9eb5793be48c55ca66a687c8f4c3bb7672e17085c32df5e9a034abde95
MD5 e1013ce075a14e9f2aa85e1c5d7d8c48
BLAKE2b-256 ed0afa47362ba3944228a1438e8cfcdd3d79c5837910a6b0dc7d22441d2bf170

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5c6d1d3b7ae7464772cfe023cf93442fa1583b3b5219b5ddee98665f1ea2b60
MD5 d24f45f7c5670749ceba717d66493688
BLAKE2b-256 906967a6a36ca343d6658091ec5a5c70c8e8a012f57c6b92562cbfc7f8612b20

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8dd00a1d3e88f417b88daf29292bb5231fd6dda75d5ea1255a7a7abfbd28792
MD5 23bea97ae80593cf821c523bf1b6fc1b
BLAKE2b-256 236b05f07a7504889edcd1312d0b011fad5bbdb5d4035631604f4ecf43253711

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 503aa3797aa7b08cc87dc15ad7810078dfe9273ec312d14b8d250ae1ace0d8ec
MD5 0bb13e3c4c84b17615ea996171931321
BLAKE2b-256 73b3e97977ad628b4b93ea250584c42a46acad49e6b1cde7b36785ccdfdab6d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b5ec2c9fb36b04761c7723d5a1e68aad3f0c23f8751123f66497d034f59caec5
MD5 9d8b500cc017e5760e6e2390d3e5d22e
BLAKE2b-256 f3d1c2a053d13aa3752b61c1ad8bd37532dfdbc8486fa901027ad08d010bad1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 133348e47f82de6b681b44c802f16065f37a5ca94f523e3f5a4eb341082a05d5
MD5 79904570ed38c89ced2e77af85c78846
BLAKE2b-256 07dbdd2a561abe88a3805aa24e01fc2416ce345d94a3ad4d6a1506d5e86c360b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7b10d9a52b17d4af0541f940e43df057fcacd33a8c1c99431c934e921c5cee7
MD5 c0da2c10f8cb92a9474a801ce91b0540
BLAKE2b-256 7364718ae78136de0a33d1b613b94c2dba5c19c9dbdc26f7703964b9a6d2dcbf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a1077a15c8b5b3de0d8f4fd31b2780c8776d2b0a40e7a5872e372ca0ee4bf558
MD5 fa3547457a584584dda07c2495ea768e
BLAKE2b-256 2dce383d0160f978d07313964637ecd64419f0cbae55f3489a3a481c4a1764f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2fd7908eff1bff92819a549e9785361acfb4cef95cbe815d2c385aa81f63c77c
MD5 1ce03866d245726ac3b1518894839d80
BLAKE2b-256 7fdd9c12fbd3b708f0f2f42c42df0aa458372d2e009ebeb1b0229348b90fddf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7102ea8c55956bf2deca849d06422898b122ba95ae61ab1ca77e5c21accf4fc
MD5 039e71c9b54adfbe909f557e84bb907f
BLAKE2b-256 23a04fd426f001ecd1ce46706f699c80b00b2a317cff8a4a34234102863a6e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0056f10e8a0384c8bb3cf2e4170922997e24251981cea2ac612a03bf471c6543
MD5 67d5acb8c37552748a5b59297899f02a
BLAKE2b-256 d9bb34ebaadc8e79f0420587245e49e8e11ad8a4d65769029bd9deb2426a7794

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ffa511c4338607297d3d419b5c716a35f73547d98276b50574322683717a5f5e
MD5 0f5c68197ed71d7e3b47d11af18594ae
BLAKE2b-256 e1b4eb993fa34cbb577a6ca349c060d4d85100d07f1c7c7d3d43f647ed25e263

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1ebede73b90ad90fb97e109f85712705a71a5c9bde32666c8650ece41cb3a9c
MD5 d4414b7c224913a70167d96fa85b361f
BLAKE2b-256 dc3aad433a30d6785f116ae5e17375dbb3a42e4db53e36b652eb7b6beaab2b27

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce5dd947bdd02e19fc206bb0bc111e5e16fef224e00ff6c2b7ca2d07af4b8717
MD5 213d871c8e76008df99dad4c9a9df382
BLAKE2b-256 759aac9e6112a4089b57a3b0921bab135031f9dfae4848a485a954d142b8d741

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4d1c7843fd7eaa96b22e77dce780035b3cfbda8540256d8221dbc558d86a1d0a
MD5 1c38c7e58899ef82b2277dfa62c7c4cb
BLAKE2b-256 415ad1cf3a015780afba3b073ca897d2830693ea630bc9bba4bb06413c9d77bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bad7a0eeb591a2d4fbb36b51d0523e424313c5bb29c901a7d1566855d7c5e28a
MD5 6eb80623576b2f444ab48b5198515d1f
BLAKE2b-256 bc86832dc1a323d4942b9f7758bd897e3d816bd552a5899975e36323ce86ed12

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dee5668d73461493fc8ea9a3beaf7ba4eb6f82331d8637d44e1bc7dc7f917848
MD5 d4691030b4a1cd49370160c34f887e6b
BLAKE2b-256 d9179e1db067b2ff809fd6aa3466acf3dc523cf4c827c63ba71178d73323357a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 66f8fc4e9a3c0faf9bac5ba3511fbae0a59fa44d8c7d095f4e0814e83a6030f7
MD5 c4d411223367005a2a810b6577cc70b4
BLAKE2b-256 15c33ebe7cde47f50302428cfae7578128b564569abacde7456c740f66197868

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3aeb4df6069f8ea9a3defbc6c1cb33eb2107d65808ab017b782cdffff925cc3f
MD5 08d7e05326598acd5fa352b0b7e319e8
BLAKE2b-256 34506945672a561b7c8fb822a2e1b344ac7c2cb4f95152a7f22990348f1e0047

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 489ae6f23f585e8a19c53e5c1efc0ae106db824e56c5df817695e4c8a2998aef
MD5 ef0f73f42a9be63f7b94727a9da0fe0d
BLAKE2b-256 c81a199334ec0a1290b489dc131c8d63b1f6c462f61bdd4ff1767503e0711a85

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b742ee9b31d53435606258d2d1051a70ee0f499fe97871bb7b518108cc7b2d1
MD5 6086bac302e85ec341a72eaabd89da7f
BLAKE2b-256 cd012d03e498e5ac62b5c7384af1ac7179c4de920665d2942e68ba9c980f6984

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81decae0a177d9451b764792c857bd36e2c0acb35b0f572bcd240412dee0d9a3
MD5 963367878c05284e71bebcd5a098656a
BLAKE2b-256 fc968d072a91860c1f895f358412c381c035925078262d9f804b0057e69b60fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f18d6dc2dd83c3676d469b75688490f1cabe02944d3cb623409af0937b40ed7a
MD5 24b9bda7b5642f64c3805c2d8ea70b2f
BLAKE2b-256 ab21e86dde23e3dbeff2020a555808418dc855b89e8bed703beddfabc18f35a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 035e667223e1853a20f116fad4a6fee3b683308d6243c52bbf15581c9ac0aa1e
MD5 ecf37fbb59a1525727a423de7d368706
BLAKE2b-256 af7d47268707cbb7967ef2ad31145b474af3c17f179549e072bbcd9252bf4964

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f56b4ab8cba44e5a2a10c502170189f13553767ebf69c6afc4b02d5e046d6256
MD5 d5c7537b8bff9169c27ebcabf64f5996
BLAKE2b-256 1f28715d9844312e71737d6be5a28cb7483d2255c80f42d57ef17866f34b5c47

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 17c581fa2d23dac36ffa01dda11e7459aae8eab3e228e773477a9324a82c643b
MD5 c99d5b32f9315b8c51218221161e35c4
BLAKE2b-256 c73b46062de809b17180d17746182a16d7c41de8053c177f5c5d37825f4acd7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f023552b45944b6279b0bdf8967aad09d55448eeffc3e6e5e09f898c7774d6be
MD5 c2fdf66803713b7c8d939704c09ad626
BLAKE2b-256 043b55fdac9ba9ca4451ddd0d60605460fa07b51f51fb711b576d118648a95a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98580acf80c6b637a1aaa91387ea1fe6ee4a892adf4f75f9223f2403b3b27b29
MD5 97015738ddf8814de2a006a4664ac255
BLAKE2b-256 71c8803b610060ef40913cbff8efd8a7831d9122d238a5115257f663e4aaa121

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bfea1b84da643fdfb5fd5b21dc26df469494b1eb1ebb0ab6b6611def7f28c815
MD5 7aff2f8485a1e0eb140abe3d03e0afdd
BLAKE2b-256 98d27df73e58f96889fdb2fb8836963dabd0b06a193c40f960fa92d9a916cbf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fe42697ea41696ddaba4cb6187eda673f804afb182b0ebe3531fe9f410a0a5d
MD5 724d3be4b8f4bdd0b90d0a8fc3fd10c1
BLAKE2b-256 9b7243bf7be978f60d69907aa8f57f5f90fa62b2c3b181065a78a2277f4df105

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ba20823b10f633d8b02e3a319cf5cb687df97fde564bf587dc92803b90e19107
MD5 9eba1bdde5788f3bbdca84e8b9ed486b
BLAKE2b-256 ad141e94be17a9421b18ef4fd5913af0d8fe3f6f2e2de797eb3d8944ab53c23e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 47085f5251e2668df597cb946be0c0da42e4286ac67a58dc628a6e9979b1f770
MD5 1a87eccca37aab552829cfbea194c369
BLAKE2b-256 6c57aac9404cf37c09565665a7a1f167a62e3b38524e328317f30476d2156f38

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 48caa75adf34b803d1bafd87692b22002c1449ae99955f42d259613a173e649d
MD5 6bedeb0cada06ddc0bf1678bd3e7bf39
BLAKE2b-256 f3b3812e57e5c6cba6a27f09084283b3472765af4e9985ecc9525a8fcc4bf6ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4b8a4b4217efcda3df2127ea3754276d5c661600da1cd79be7d751410f72200
MD5 72b9f8fbfe28e4c55573eb2a727a71a5
BLAKE2b-256 2d1b22ad48a49a077bdc371143bf3ccd2bf8cc96d632ac4c083403ae8146a318

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0218c3b7b277e5bded0381c2f07fe94ccc97d3b9ca5cb795439e7612b147040
MD5 4d039d37e6d7e7c54fdc46ba18da43b7
BLAKE2b-256 26c22f303b3acb48f4cb4d7482d064bc2653d5b98cd810d08a6c9e288ae5d0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.5-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 10.9 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 longport-4.3.5-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 dbcdf504ed639574117fee47cbfdf75fb815f5a9f2e84944f9398df28dd0de08
MD5 9722f497a80c15543002e2686827c82b
BLAKE2b-256 a095bbb1f685b81952ccd6f6d9f7a91752c7412a438a781f4a0ba408c826c004

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-win_amd64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 48a996f637a8861e49e02b0cd41ea02ad031ca1c2757ea9fd7d59987ea92be14
MD5 c5898e2a5e179b18bc33e75fedc87166
BLAKE2b-256 7e6a24bb95bfbc52cf9ba19cfc6a5422747bb335cc93160bdd68bd697045ae5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d6f882034cc0a6579597b629bcb96e9b3bc757ef47154124a385ccc8985080c8
MD5 50a30c5cb6f9d1e57938e41da48e791d
BLAKE2b-256 ff5f31b7546f5a955a44e3081ade29a43581dad06bce59ca75deb4d2e36ee50d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 dca705911c0eace38b596540b09dcd8d6a2d60a4d9b43a701a157956e0b81c06
MD5 2aff650abc87330b06fec331ed0649eb
BLAKE2b-256 a941c3048f6f815d438bb6ee42edac37a217df26e24e75b4f9659a8fa434e6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-manylinux_2_39_x86_64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4e6f685860ec6327425f55d917d613cf39eb16473efa456476ce9a8f3d2d692c
MD5 2b9b75f7a7ef52a6969ba6ecdc9c05d3
BLAKE2b-256 a28d95f7f89aa2677c8848c053a05f9c80c674d1beb590fe0601b02262f568d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-manylinux_2_39_aarch64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc775740847006476db2ac67c360d454dfc95f373f1eed219a0aa1fc13ed322b
MD5 e4add4a56c607b4b559dc411e1d98eb7
BLAKE2b-256 f4b825b892cc638dca478f30756879a7180e249850d99a7de45f5a40f85231cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on longportapp/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 longport-4.3.5-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90fcbba51631a3ea82e4033aa7d2f3fbee6e81d9ad359f9706171e18a39c4e31
MD5 2446706043c0efb8a2c692331a179326
BLAKE2b-256 40fd45765564b3010d2b543827e0db7d6bdf7e668fb5a19317018a21d42aa6c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.5-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/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.3.7

49 files

4.3.6

49 files

This release

4.3.5 This release

49 files

4.3.4

49 files

4.3.3

49 files

3.0.23

49 files

3.0.22

35 files

3.0.21

35 files

3.0.20

35 files

3.0.18

55 files

3.0.17

48 files

3.0.15

48 files

3.0.14

48 files

3.0.13

48 files

3.0.12

48 files

3.0.11

48 files

3.0.10

48 files

3.0.9

48 files

3.0.8

48 files

3.0.7

48 files

3.0.6

48 files

3.0.5

48 files

3.0.4

48 files

3.0.3

48 files

3.0.2

48 files

3.0.0

48 files

2.1.12

48 files

2.1.11

48 files

2.1.10

48 files

2.1.8

48 files

2.1.7

48 files

2.1.6

48 files

2.1.5

48 files

2.1.4

48 files

2.1.3

48 files

2.1.0

48 files

2.0.5

48 files

2.0.4

48 files

2.0.3

48 files

2.0.2

48 files

2.0.1

48 files

2.0.0

48 files

1.1.7

48 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page