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

Uploaded CPython 3.14Windows x86-64

longport-4.3.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

longport-4.3.6-cp313-cp313-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

longport-4.3.6-cp312-cp312-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

longport-4.3.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

longport-4.3.6-cp310-cp310-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

longport-4.3.6-cp39-cp39-musllinux_1_2_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

longport-4.3.6-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.6-cp38-cp38-musllinux_1_2_aarch64.whl (10.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-4.3.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f5bc1efe68ad7ea4b1eec82e8c342f0090d27b462d5a11abab4b928318a5cddf
MD5 e5b333a859cba02caf6c11c43826bc95
BLAKE2b-256 e6e63a8158585cbfb824b23bc8ddcccc176464ca78d4f4b73807c6166adc0b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 01b50024ace998d4677a92848d50d69efac49398381be9f4168346618bafac99
MD5 078d9870114cc16be9e5834a2a681f05
BLAKE2b-256 ac4002727165df6efa70266e15d2d5f2c1fcb3b56b9a48ad8cedfe0cefc0324f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 086e2983cd2495ea57c68f567950b843baee7e6b8118482417d4bdbfe898f30c
MD5 16bd2121fa484ee7cfc3b17f53aac7e1
BLAKE2b-256 53c0b6cecb7b65672f23e655ac85d93b92c087ccf355a8bea1c3844865abf374

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e07ab7db1d24e9f68f0ec6f45abbe608cab743e9c3777c1559c5e167c2628610
MD5 76becc20f6eec456dd7e7be39874fe6f
BLAKE2b-256 216f966b9a5c834d75fee10699f61fef2cf5f590c835d8ccf4b2c299d2b9b86a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 3d665b087fed14b5b637402afd8a1b5af792382ad891fd1ad0a5499908e3fd48
MD5 90e8a43851d9047313591269c1f4097f
BLAKE2b-256 fea422fcc866c76c2466fad6335bbcc15e4398f8f1f6540573d45a4bfb3f1dd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b0b6ed04f3df1746bfc60ba292ff2b731eee15399b944c810d37718d6404fb3
MD5 e6fd5c557db0a2b7726c6f8c99899deb
BLAKE2b-256 f41d42a5eaba688f41b5a2885956a6a093d4a002b05d5a4ecdecd03a8d9bd546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 424992ddf626a0afacd6b21c9fc782b6e6861a9bc7c5aecfff230eb71a337def
MD5 187cb8cfb071040596250890a9c36a65
BLAKE2b-256 7ee43f446ec20d6f7a7fd1b23868028bd73f6b5e56c74d978e08e86f67cf6d78

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 abcae18b71e489ad7dd43afa79257b02e0398259e4312a6e6239051bb626d984
MD5 c983e04496f7977b1e9629ffa8a034b9
BLAKE2b-256 38462e55179bc7df83924fab812cfe8af0560a5e435b9eb6726aa8e54c47d89e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e29c029c5f45a62b3b2d262863e88040e8aeb8f427fdcac10c84f8454b6e7057
MD5 397fc7e3e0310b913c10b81a96fe7b40
BLAKE2b-256 be3448a44f3304b238a72c93229fb314e22003214dc27bdcc9f0d6d979aed187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c2072970b35892e32791f320cea0f10438ce9c747bacb6b2b0c3d14a7deb3c2
MD5 fd474dd10932685dd6a1a8e3ccd0fa9c
BLAKE2b-256 2307f5b6eac67f04946295759587a5558d51b67de052c6567f998bf7bc6d6528

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 296ea174bd8cf88d9120a3d016f42dfd7592d89748f88008acf0204d1e924527
MD5 c633c1990d1455bc46ee8cac101dd555
BLAKE2b-256 b8a74ce7fa3d904112b4ecdd0acf04cb8436b527da304aedba7d823ba7cff44e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 5d321f2e603b5fe093f16d4461064bb976182e4b6971ddacafecfb23d7166157
MD5 84dd02a6d8e747ccb2af13969144fd7e
BLAKE2b-256 7df7be467f7a82bbec2bc049eb76d1d4cba4a314d5d54cefead78505babc7a90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 267c5cd0f47d905817219b2dac1970260480466f13edb03c271d7495b4db5676
MD5 78b9450dbd1591523358e7cdceb0ab90
BLAKE2b-256 bb9b9b852d109092be691027c6835e2ccea40e8583d35a15b39c4270924bf96c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c05a41867196e8486e785d8e66a82b7f47268368bfa4051ce1615f9b0228ccd
MD5 c9085a242ccccf55ff6d626b5d781336
BLAKE2b-256 72a729866239e909211c9d1ef53d501a5d64fedf325be5aa4ad66a08ca2d47d9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1fb686e1974749e2a7236d75d145edcb24466b2d3e8905dd4ecebdba4a293745
MD5 194a5815d852f71a67f0818929eeeec9
BLAKE2b-256 0b260f8861e41362cf1e0e6eb9a955c3d807a5185724072336e802afc484a3f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c7dac4a9d859ddb3af8d16132dca2ed55004fc6ef4170c17dc7220d7ba765cd
MD5 18810606425d1f05504798d8416874ca
BLAKE2b-256 d14336a568c45c28c90e67597329fd0518d303aec706721acb4c406a10797229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 385657683f61e9abab3eec74e393e4382f3b29c179ccbef9c72a286462e36801
MD5 212801db1aa63bb3bc8d5ad7a75c3b0e
BLAKE2b-256 b0e67cfd6c167bcf907076720b2b1e884fadd027103ac8e84e3e91fae384fddc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 1945113d3e616a947555230f71be6e5f61d0d4a1dc1fc3036d5051f4f0858069
MD5 33fd9b7799613b8245e13de5d5e09b0f
BLAKE2b-256 058f1f86c10e98309eb49b1e427cd802f1444d7042460ab8c217a106e658bc4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 63c1586c5b018be2e06ccd1c743006e07dc2314f32cbcf3dd06cded856eaa96c
MD5 a9b76bbb83c8e3ba37dc5204e455b64f
BLAKE2b-256 93469a2011d69d2535523988296ed9eeb307f305cdc3a2b055e957cd40a4f9dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4098d305375bc60e8b4cb06b0c9dba4ca817cc11d033d846971ed2220eb3ecf2
MD5 9c0330e10901ae4e955231d343d869cd
BLAKE2b-256 f19f7cf3d1d3458da6ecfa79cfc53af016f1d07e397a0cf7a07860a5144e2998

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a19352faabb7de17fef0ff5129f8d3f412f8e7c7135d090e0d697a47711eac14
MD5 4c6134e7433616fe93be3d5076b700a2
BLAKE2b-256 ff98918e6d791c6ff807747c9002495baf473bbfcfded235b51285048faf53e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f8771b359c3e10d9a0c7a2d0f085df068a18a50997153e891425ba92ebeefe24
MD5 9947e5551353643e245357de7e38ec71
BLAKE2b-256 4c502ddd73ad2637ed895a89645a9be91fc41ec840498d9cd419d1b488c5a1e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11b6231538ffc465d8353eb9b406c98db5d274a16b6b3b60ed6d1a1cab3ecb4f
MD5 489362f6a81fc7287e95c0060edbcd17
BLAKE2b-256 5aaee5439eba336bb023d6032dd11a42b1a3cadba97611215079994611c456bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2061824a1c4ae579ee02f4091e8b532fa77e4ebb93babc96965edb92c50cacd3
MD5 dbc9cb52c3601a62efc68bd7de2e6722
BLAKE2b-256 62c654f1e96bcecc42ca21c5ff299031c3c226a9ec608b5d766bf53dd622ff10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6d8edfd1e59ff1b207877362ed81d140bda401cffaf918f88a8459eaf290afec
MD5 3f2725424c880113a6c1f946a7978425
BLAKE2b-256 6dc3944a5b0d4f33813efbe79042158d1e5141cd6871dd7d1e71980e59833f98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 48730b59434c0ec8b2e01e5d9bcc0650d78b8b3d69cadde8e672fa4d178b80b8
MD5 ca88528705b45fe43c53e8fe5f3fadff
BLAKE2b-256 7e5fa6921a5cbadd425fb45d0ab9d19c75e7b03da44ed2b3af4194cbdc6a2c4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d3760685a68526e5307c288639346dc70f8d0052a092ac31e628c4c825bb00f
MD5 254dc2196604cef7303d22cb60af4673
BLAKE2b-256 545ad6efdbb7f393f6284f11b4538b3f9a1e67625a876374a653f1567adc0222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0975154beb87a63fb87e22fcaf5ca2368e486b92c5ed41e4d1a8999be67ea5fa
MD5 6f09df9ba2992ed17227567e879aec34
BLAKE2b-256 d2b21a94f633efd4c7ed4b5705e75fa6a5ddaba512744858fb038258b08d7646

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c2aadf4377a35fb3b34f543a33ee42adb4ec34cdafdb7e15593ac5d60515bb18
MD5 c2f2ee168e5dbd62202acd1b18b8aa8e
BLAKE2b-256 daa0c38d1bcef203d8f4e0174c2d9ddcade90d8e163078e7245bc10969ee0f1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 52b96269ec0c94c92f59c27796f775dd2998b388fc17bdaac08c0e6c8878f66f
MD5 481bb3988ebe65dc67b9e8c860768032
BLAKE2b-256 b6e2254922bbfd787d3770bd01f5cc2fee5cf7ae8bcd57d2e99e8726e91fe876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a02918e2a26e061956a498f70193dd77ab97160b0a00de11c36c961b2a5b2ea
MD5 e2e6a6133a2b8963966d8235f266a11f
BLAKE2b-256 5703aaaed88100ddcce29d43644307baeef6f1599e4cf0f0fe1c0683bafa7cd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 57618bb021e11f5c96426e608063f20a960806e12ed0b393c6cbf5e51bdf76b1
MD5 bb526b31342b1590551a91d0edf40683
BLAKE2b-256 775a6fe7ccbab5c2510d536cc4e297869f5402434ceb5be243472f27ce351aad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 cc3201a6479ee32a8c56579d7821c10dd0baa0af7d5cd72cabfae5a6a2f385a0
MD5 0750618ff0c56ac705f7781d4a877b8a
BLAKE2b-256 ca40eefeb2f9c422a94240571d591aa4fc743e6a649cf8b4104b60dd15788aec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15e1e347d904517c915d16dd72a983fcf91a49adb7f213f85b9902f7a94a72af
MD5 983122213d7ac43356559342cb1ef583
BLAKE2b-256 03a96abd6796f19c8fc8f1df1593f3d0972f98f47021ad6469f8123a4296ad69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72fc26691b312e09110173811c74387c1a8d40c634eed77037d9d5a8f1dff7bd
MD5 b1e281954631faebfd38eeea9771acf1
BLAKE2b-256 05fb3b21efeee5139af9e786ff441163c9d91111445a08ba857ace54fc501cad

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 950769289628b6f8242cba02eab5523a9e6353add4faa4789bf43d8b0ae2be01
MD5 e9f922d3031a218147e3604813eed3b1
BLAKE2b-256 f2b2a33904eca437f6ed6f31e620b8d2e25fe831d127b4dcd42e7e7fb112c5f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ec507e4458e9916977703cadbc5f90ee132d50ce726573acb50a06296d18955
MD5 05156744d656cbaab23e0b4f654d7e85
BLAKE2b-256 8fcc867e46e65421afcd92e90174e6811ebd0f1aea1ba69ab54789eae7d0e07e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71192aa99fe77254af3635f5d9efc645112eb29dde66747cde19712d209dc2df
MD5 a0365c723482a9d9b7d2572e68ef5199
BLAKE2b-256 2bfe4968770ea04b8abe37e9aeb638f89f2d51a789d43e401e29bb2478114d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 128487b71f01cb92ba90db3361d1ab6c4ab9df88c7b3ebb4b30f7833b7da0ffa
MD5 8f02cd534b3ec3e3906f03ae9d837bc6
BLAKE2b-256 95da3193b63550a2760e0d60a32d4cb8c1877d3e899500be33c24a7df8c6c6e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 17187a892c535ba15ecac5387dc8947811a84a334afc6ba7591f7b06054aa75b
MD5 f41eaf4941eff4b761d3bd8a83f08780
BLAKE2b-256 0bae44ee27fee98f94e33e409aa32abe21d455e0aebc0b3c513ba5f3e2e9db22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e1a7ae05832cbc93e0c3e287d3beafa21ec113b62bd7a4209671aa78e630162
MD5 d17bbc2941858337abeb52971554c389
BLAKE2b-256 58421248fb6fc66fdcb9deb3d3ccb5d703d0457bbaf95cfe49281baa8f7708e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f57e3e8728dc67911d45b58a6970c2de5123bb920acb81f6ddd4220a54d2150b
MD5 272a157caecf7374d1048aa07815ec1e
BLAKE2b-256 a860213f1b8dfa9db6ac2f670cac5fe63b6bcf74e0b2f544f7459c0b4e1981e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.6-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.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 415847440898eee2e7729967f0c1f93ac280017502f173bd7cc9a679a460bfdd
MD5 74e7fe1f343eb032a1e2029a922055d6
BLAKE2b-256 4156bb1901765a3a0fbf3321d39615489ba0ce7ce70652e35fbe3115f63241b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ef369cb50d0d5da8458e7fffd8434774e71b999d6d8b1c38a440c95df7f633d9
MD5 4e11085aec039f9a7bda9a3770e30823
BLAKE2b-256 449d4494e2c04c6860e6491abeafc6c80483723be9f1eea0c08b38958e8e84e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 565a59cabac6b313b7154f7e46d1a3967e0b0a8630837001de993bb5bb5e50ad
MD5 e81d0d27dc65c1c61e637cf1ddb0a09c
BLAKE2b-256 cf2f6ffb6e43a2840c9259745d2ca1452c31652f117cbfefd81994da9b18d93e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 ed95b325b425b0797d5f7a0641378dafa13a4b6119e8e57e351bc631bc8fa242
MD5 a9bba99cbc7980a54baf6ed94eff7043
BLAKE2b-256 9514cc90a2917f58a3507137c3ccb1361d42687e79ad509ceff26cbdd9581692

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 33976d40488723fe27890a0e4154b90b31c20c0aedf236de16e6f8955bf80e4f
MD5 4f347615e85d03a56f0ea376c899c08b
BLAKE2b-256 a9b7938d6dec38fcb86b9799c4728437211f3255420fee298d4f81e892eea6b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da88bfa056ef9b670bd8e284679300fdf222c18a897c1cc144c33208d0e28bd5
MD5 ca64f4ade6f8a5b0ad3a14acca1f5a3b
BLAKE2b-256 632e04627a62d8e9163b12669a8e1adb1f29161138b16201b1a3d7e0caea896b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.6-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 172aa7f95ba4ea9d24be9320db9d528e0458e09611b11c1fcd6ba731edc93018
MD5 bee175dff69b4b50ca006a6f3ec54402
BLAKE2b-256 998daee95dd7abc468dc1aba7e8cf07a1571df04a372d90705b7942658a1c0e5

See more details on using hashes here.

Provenance

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

This release

4.3.6 This release

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