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

Uploaded CPython 3.14Windows x86-64

longport-4.3.7-cp314-cp314-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp314-cp314-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

longport-4.3.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp313-cp313-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp313-cp313-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

longport-4.3.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp312-cp312-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp312-cp312-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

longport-4.3.7-cp311-cp311-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.11Windows x86-64

longport-4.3.7-cp311-cp311-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp311-cp311-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp311-cp311-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

longport-4.3.7-cp310-cp310-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.10Windows x86-64

longport-4.3.7-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.7-cp310-cp310-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp310-cp310-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp310-cp310-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

longport-4.3.7-cp39-cp39-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.9Windows x86-64

longport-4.3.7-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.7-cp39-cp39-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp39-cp39-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp39-cp39-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-4.3.7-cp38-cp38-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-4.3.7-cp38-cp38-musllinux_1_2_x86_64.whl (10.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longport-4.3.7-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.7-cp38-cp38-manylinux_2_39_aarch64.whl (10.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longport-4.3.7-cp38-cp38-macosx_11_0_arm64.whl (9.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-4.3.7-cp38-cp38-macosx_10_12_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longport-4.3.7-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.0 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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1db15c18acbf3655f4102eacbdf2e599c219d4b18aa2365caebcb803af490bed
MD5 ef3711bde532299c0ec6a7b1a541e9ad
BLAKE2b-256 5c185c2b527c8161c6c906af65abd46da4882d5bd69d1ee103714dbf9c392880

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c148f7ac141f3480ee5a405543d32f1a921f1b0c389b6d0f3b4f5119df045aad
MD5 c8b86240fcabebf8f502361a192e8295
BLAKE2b-256 c52dbf5177694ef18a153a48f743a722b6e4bc8901de5b035f13d5f7a95c0b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2f765e483bb066bd43e405fd76c6da9456a4594456a3526ae945d176f6358e4c
MD5 40259754ff5fb78b67af715ba76d7096
BLAKE2b-256 359707366bf1544bb0cd5a53f1b8a8b7e176770579e64800ea752d38288a1984

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7257dd8d7dd84f289f34c61e667333aede79b5849a4e9170c09b1023c84bf4f5
MD5 f242f84a34ccb1ac44cff72b3235fcbf
BLAKE2b-256 19e88415511b9db1829cacdb8efefcad9b97c3e50992cae99d24cd73b2f9b5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4d00e03691d20fd65b51b1255d00e52c77273d68721a869929de46e28e549fb3
MD5 3f563cf7fbc6e5fa3ca97869087846aa
BLAKE2b-256 7559db23b2c6753f4cc666aedc971a1ec509c7402ff638b3da37195d76983a4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a0d4fcbf79083dbd6454b70bf402792a71eff08c4de964177523de7a87c3865
MD5 45f39584ce09e2fbec6a32c055603aed
BLAKE2b-256 8d82d2e617e2ed8a163d5a8e8982ecddc95908ed5452ecaf7a7c08b6f4c5f79e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 474d7518445a8fd551e369e252bd59b2691604c9d89e62c94558680ffdf35c54
MD5 45f440085e7aa1871b273314553acaca
BLAKE2b-256 9d49e48a95d8eba37a9ab2c32c9f87ea8ffa976f77a9b3efea21e32513b56ea3

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7b666938bf292ca17e62e54f75f864983c3d8c0f2acbfb1dd578b9c3ea9c6427
MD5 9f20892178a781b94ec8723c0e8d9dbf
BLAKE2b-256 0c9226e046a0c6d0a6b5e98ae066acf096173d954efc389fde0801f28eb50cd1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3446854cdd8bf0ce13f7f6090f425849931c7a688a50d7dca0db6dd162790f11
MD5 8e64e30b63ad16d1f3e48f251171a94b
BLAKE2b-256 bb675d2a8c5d942288f35d31cc58e9391a9cc3d4dab44376ba4e288437e2519b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 37fdf20b27b78feec1b619dde3ee9f0c5021b80b87c10a865447d2eb5f8504e4
MD5 98857718411e7781f17352d2c6e9d25e
BLAKE2b-256 b677b58078031d7a0d8ed823a425cbf9f9c71bc6b583a7734ab3e2ed95f909db

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 0af4508502f73b2c66c2c68e04a589cf9834049c9b8b5b29c190c3a1effaf902
MD5 9f8d8c58c7ce6c2b3d2189438fbfc158
BLAKE2b-256 cd6762307ff0e4bc93bbf4678299413ccfe33aa6a78bc295373a43b58dfca9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 1f226b2073dc43a17fa654dae730323e3962d9fd828615854fb0e79293f4ef95
MD5 e2a7d3ef57d73e5804844065298d8081
BLAKE2b-256 6312c78c9d6067232978f83a0cf6c47f5d936da8ca2cda00d297af70a03c60e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be62ba7077719b37739b2d91d3bc1d69f93db94ad89174f95541c93b128449d0
MD5 88902eb79d277f97a483163b647a8b5f
BLAKE2b-256 5306cf1ed29b0962c31166ce3c244679d14725187af4c4d8e8f28d4e2145ec60

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31b05db2d2442249556762c792986af62739b1e8b2c9b30c8f1be764332065b1
MD5 f39d39cc1591ee30b06246985088fbc4
BLAKE2b-256 c8072cdb14c1a38a4a034b44b0bad5d526373eba4badfdc032841f49ebec3898

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ef3fa39d319e3daca6902c01f6b0045414ae580367aedb90bca43bab32bd2acc
MD5 aa6cf89d58fdd82df285f1ab66476ea9
BLAKE2b-256 2731370758b2ad0181414fbed253ae2086d37bb280e49dad9510887732696b31

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 53b4a9f6490d1f0a46ae6344ad51d3a2d15ca7efdce81d6a22c2b3db69861893
MD5 38708056d3af192b6a559c6a4da454fa
BLAKE2b-256 63f2e21d85c445c76f40af866cb3c78a0010560bf06360f2cab3eee651bfd707

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4aecffb7fe178cbfa8add408399e644fba2131c787fa84c64cff62149d998a45
MD5 086a6c5a4387569511e998e0a749d0fc
BLAKE2b-256 2df05ee5860307663595039e2fbd085790e40e5e0f8aeea1d0efd0978793f2af

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 2b8de13d906202d792645f71134191cf06b0f99532551374a4404a3938f5f0e0
MD5 9175f30a5bbdd0127d01c0bc45bd9285
BLAKE2b-256 7eb9681e15f5c349d98f1ff41b790f3b19b9e236424de2b245f0eff2085711f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5333b24189381f0bb2cca8b731f7ec5b162f899c2ffafa2b29dfaf4d6e3ece2e
MD5 351221caebd5af5bf3efd89932dcccbd
BLAKE2b-256 d7b060800b73c6bd48a47e987153a4340028f03f23758bd8f075c6fcf947326c

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6dcb3ed72a99cfc2f6585f193e7d0d4d21bec4caaef9cf6ea8085eb549ec6ca1
MD5 b4f186433ae1fd33665578bd4ee47864
BLAKE2b-256 912613e1e7b04c4c3398be256ad6e607bf8f4fb2e7f713c4ddd9ba1a0653b3ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d65032742977248db8fa5f4f69d8b2ceff5a0db97bb0384ba661df6702d92ca3
MD5 ccd81be753b25c813e15ff174ed225db
BLAKE2b-256 973a2da8544744af7ff2b6a5fa3a705730a3fc2a52ee777df1532e3ca5af2542

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.0 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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eeb989129b4b036ddf715ed2d1e67c3a86e9a15eef41790336278c498406c008
MD5 23271cd5deab4b51ff28d4dffa40a8b6
BLAKE2b-256 7d4600568fd3d47aba26cb1bd966d13a30538bdc34284c00c7242eeb7ffff760

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 043719c94eb39f18d3946b49006d6744903d1c247173076b03f3426541afe950
MD5 97f7d1a85e30c8397d1c7040046505f7
BLAKE2b-256 2c8dad8f655d7ee1f16bdd00ff334733951f32423398b654ce54f805a9431a2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2780069de028f0e24413628c7d5181c29ed30161e6eea6a866a9dd1076078e8e
MD5 9ff3458b234bc86864a8ae6ca3f05ceb
BLAKE2b-256 49075242b99471c4a5da8d0a815e15025ff29c6d0d37bd5ec4365749b24348ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 5999c06273a77f1273042fc802a5342f1e9ea6aa11d19c99e65805c883a51152
MD5 1a33833b1453963cc77e8a3e126659c0
BLAKE2b-256 5ddedbdf38cac854a308bd12a2829524e8bd62585c7589a0cd19bf7f1e4a28ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 57d0224ef769307b06af35136081825af2fcec646bd51fa7de7cfb5a47d6f12e
MD5 45c835b209cf30af92c4eee920258f1a
BLAKE2b-256 16b60e94c5553c5bbe93366a700348164dd90b40277bc4c220a0e9bad2abebaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a32a21a63b91c0971e8f7e0544475e9f4fcc1d9b12de579946d2b5080082051
MD5 0cbefb538969d915ed6f535cdbb48885
BLAKE2b-256 d269b3b4d3de1296d8494d67e8e647f31419868f4c236bfba14aaf0fa046c2e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7fd58bc0e5f3e60c6e2e272d7b6ef473eaac282d7849b9a174bf09e2a10e75b
MD5 b87c843534e0c40b5201097cd3ed47ac
BLAKE2b-256 084c28231c92cc4cca9998d115ed5d26b1abd7d004821bc3c5332c9bc5ccfb14

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.0 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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0816c9925b8cebe5c1ad997118c1295c819029d9dd568b72c30d8d5efc6146a0
MD5 d2b9165b0d047e01f4c4ad1b38dc180f
BLAKE2b-256 91a9b3a652906587765193b3ca3fbef480e49ee933b1fbc11342fa961757c051

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c0432e7c500631e0a04095d2c181e03983d39f6d1c1412b655f7537d7a055c1
MD5 1ac2c3ab8770d733d18cb9aab754c433
BLAKE2b-256 c197711253f80a77065bca7cfa2818ca04d9fbac99d32cf84ee9db45c0960329

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2653d9c1866a21fc9706a3981d46c440c358a55bbdb75441afd025473f537240
MD5 c6355619b62da700686b96803a2dbecb
BLAKE2b-256 526056641b662f33a3b08fa896f22f0d062789b8597af69afed18d315689e572

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 52bc397a2dd02e8bf5ef9b6ab976434e078e962bc66463d0434209745eaa7b76
MD5 276f705ed42119723b23defdf53f8a53
BLAKE2b-256 ccc6288b5080863f615f6fd85f9f20179bf3f0c5f235c50dfa7b4d22bb5eb905

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 939739f111e9c320c5eba2a3df08ac6ae84baae0317d1e037735350d190534f0
MD5 60df2a7aa4eb1dee29a5f34160349b2f
BLAKE2b-256 cc80f9552f369caa86f5a92446251ba9eb5084b16c44a28e847d7dc751fa36ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48034ac8b98a1c6172a85091d1bfa3d3eb18f9b61caaaeacd82dace9d6b0c056
MD5 729581feff999a11e0d35a75bbaf1b37
BLAKE2b-256 81fd4344e9cacc95f9f0486c0e869aee5617694849fff161094dd1ba8dd144c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8496b7bfe86371f4008bc5ede1f85d7b81bed1cbcb176ba6aaa8ce07500855f8
MD5 40fa8488c6b293a6a3daeceef55e6008
BLAKE2b-256 8b48fcf44ede9eebeea689c0449e9afb4a716897b29dc328a081791371ac888f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.0 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.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a2538aba57609525cad6cbd98bc2e4ad4142a2ede821c92559d64940fa25e437
MD5 591fdb38cc8829d4edcb5cfec65ffe6b
BLAKE2b-256 0150f28165f2537956cb08be6d83b73293243cd1d8f60bce3be4f5a869156c8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fd8937c8b35853a9e426ad6bd0bd417f8c74e1611d887c6c080f09665dff135e
MD5 926e40857836f0e7216b23a36cd1e471
BLAKE2b-256 5a5f5d94cb585aebc55192c72cd84df6e90b4fc24f4f617dda8a973c7184cc34

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1d8f7a9d90ae09ebb009f217541b44cb602e5cd456835eb43eab7a5381c0a6f
MD5 80b890efb75b79736ea25d47ea80d52f
BLAKE2b-256 32c80a58c2158636cc99c07871c00f93dd3d7f834edac97feed30ef76090a881

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 d3f6284ff48d8be913cde81ace1372c641689b4e1092a365e82b2116922a2a62
MD5 8dc188740ad983f049a2c2cd09d2471a
BLAKE2b-256 3f2b62c7bb05978384c6e08a6d1197e596f7269b8dd5e81d13cc72ff41ab79db

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0f4c4fa503d55fa663e4e1455b80a465a8283438b56d7965b3de890fba715da0
MD5 10ee47a7d45db0371430d5d77eabb01a
BLAKE2b-256 b28b0df7516df9c2517ce97b865c935367ccd52bb5e236ca20dd3aa02eb0d8ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02381554191d67199f084970995053d5b72161b1cc3bddc94fbdd7a38a9b7a77
MD5 76558061e0cc30470f7eb92cc70d9f4b
BLAKE2b-256 ba0a74a9bc43ce0a3dfae1f39aa0904b894fdda33a1c3b61990d00dd977f4a9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f8bf0372dec6cf5ccf7f4d9cc5b372ba84a37be12b74befeb95730d2919ab37
MD5 192fbe6cbd09fb0d9185c5318ed8b896
BLAKE2b-256 f904faa2250327f67c0c73e146591055093f8532a6944a2134844747baef666b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.7-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.0 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.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b28afc3b4a724ae67c389ff3330bfb1a0754b48f4770032e83663308396ee890
MD5 0dcff64053ab96e940e6b6f988b2909b
BLAKE2b-256 7bc16b7252610bc830415d7fbf0baab71d0e05b6ebf8110a291c3c66462fbbaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c834bb883e0b35d056dc2fb3e4a8ff1bf42b974d47753496ca74effb9d5577af
MD5 9b90c0aabf89114c88fe19e44a616d7f
BLAKE2b-256 7b9726b809bbc3de5222d720e925f102f44502507fff9d699b1c095b8fb17d78

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 079fd6ad21f866de4139e92caa7eeaa0762c4ff199bdfe39252e8eb03c012e0c
MD5 3ff822c1ca7685f58f2cbc74f44f7a57
BLAKE2b-256 6d05ec1a12d1e890b41e811b1f7465b6d68d8a30501c1002c624d0d57a39ff9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 35eee823d172a48ea3d12a2f0fb391bd7c3d228acd7b654b980f9a21a817b34c
MD5 a0de8ad576ac5ef1907824e68b15679b
BLAKE2b-256 8284dc97343fd545040dae30428f846e7404d255671d6ead4c6cb061af582d29

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3a579dba13c7939663b351477c71b92030f71c38cc024db67c6bbfd835ee8852
MD5 8019df81502c611c8277a22a05624266
BLAKE2b-256 bf109e2853acad7a3c461ee4784b13fb02d143c04193dbe7d2536349de34ea3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d43971699d0890d5314a99ae775ce8935441e59e73c2b559f9c5ad1f03302312
MD5 af0e0543c16bba733dec8db49c0dcb43
BLAKE2b-256 11225be94b918a7a4b91bb96911cbf26a0241decff5212e937dfb4cef3221f25

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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.7-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-4.3.7-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 254a9e48e6bce8c542e0f1601169dec13d9a53a1dc99ffa6d91af6e9af625a2c
MD5 1953024560eb9b9541beb201c326faaf
BLAKE2b-256 556096d37f3f532aaec86015b0457bc8edb41e6ed911f6957262f96fc770f741

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-4.3.7-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

This release

4.3.7 This release

49 files

4.3.6

49 files

4.3.5

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