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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

longport-4.3.4-cp314-cp314-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longport-4.3.4-cp313-cp313-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

longport-4.3.4-cp313-cp313-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longport-4.3.4-cp312-cp312-manylinux_2_39_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

longport-4.3.4-cp312-cp312-macosx_10_12_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

longport-4.3.4-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.4-cp38-cp38-musllinux_1_2_aarch64.whl (10.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-4.3.4-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.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: longport-4.3.4-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.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b89e2952906e91ed01f1d2bf3a3b6c225ba7bd97b32f3fd45a5f9fef9cfe222b
MD5 a4d55d3aa2a86643aa6f3607a9c43830
BLAKE2b-256 210cd281a9e38813132d76cf5868ef1ce1c2e1d7e5a67dec29110aa76d49c7c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75aa62b207c1932d83572fc4445a6ec43c740f761e796553d6c29d9ccf8ed009
MD5 4e401b8de9e8cfe8681946dce94f58c9
BLAKE2b-256 34cf066d76bcb751bc770f9c58ec16ec011667f6d566a056f764b4c122a48ce4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b6db6f20486f2ab0d9ae144a42bf69565e320b05c656dc6679826254434e35b
MD5 3c4d8b6853c9e207b81a78bd93ab22bf
BLAKE2b-256 5bc066488105d9f2078c3a94a11ff803213abfd49b092c99188f30849ad29e1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 51cc0c3aa4873a07779a5587db8905cfe4581fb199717030dae4d0946c123fd3
MD5 3b8291f4af5e0f76bb22dc0a0c665f71
BLAKE2b-256 4c71c2cfe65ba5ca84d2ce53b09ec8d212f594138aa32e8d542726608414ac98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 b56497bed80f23904ec31e29b44d0d6df35e345ddca97be35486c7602c504394
MD5 c89b6e2a48fee49064146fd7000a7674
BLAKE2b-256 8d38cf8530e4e7b69ba3bdba9f1d41aa3e13d758d98056722247ccb6618444fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d1e8e1dfc2b8e44e428cb7df83edfecc153c345f657debc0325c3f80180e134
MD5 bf35dccf7dc6f3824d397b0315061859
BLAKE2b-256 d45dd916d397fdc4f5325c220ebf44058c75beb205774143467a18422ed3b30d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8951192dc6705c75c9ec57c0e3115ba63b21a7575e4eefef46d55e2cb556855c
MD5 37553fc53e0d44bc405a5974e34e8498
BLAKE2b-256 a631411aadfca6a1be0bf21d6b5e94b7b630746a77348420281fb95dde59a2e3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c2bd1bb95a2d2336319f6aa67d41a952b14104ce42b7d5c914d7ea1056ea6765
MD5 46681273c7be20eef713848cedcb1004
BLAKE2b-256 58794eb8be394401b8a22b1c463cab987a031dbb4b43154b47a3c41fb4b309cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fbf82712287bc7ecc5f5bbae2d7c0f7fe5283e267af831baeb34c02883d2f4b0
MD5 08ad6bbce06b637b80ee13e1eaae5ea0
BLAKE2b-256 e6760f6ea549fd9c0d84a5f46275773fb3d417e4bd19090eeb09d944cd7a3a3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c3d5cb5f687392c49febebd73fbffc955b61d4f1b754aaf15e1b4ad42fefb55
MD5 9e4f7142b56a91c6503255cb344f2f31
BLAKE2b-256 6d117f229a7e5e7a65a98bc27c86251429138b8fb8cd69b7370c6f59669905c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 92b35f396c3566a85d3b0b48d8a54dcff898970a78b958b02c56b5ea276dc2b2
MD5 ad07ad14674a5ebcf46d48052fd9b201
BLAKE2b-256 1a8111b12065f8b7fcdaa01cce61b58c88a2b2ceba4e05ce2cf5a321971e5474

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 0750fb60a9c682203565994d925e976209dfadd2e943041da89570378bc4dc51
MD5 378e817082fe48095a34b3d45d82260c
BLAKE2b-256 b3871ddb5b1fc4c2789671145de5d9036c0e6449b4b1d899f1996865d7160170

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bba2e8264392bb7a0b0fa6e4f2b6fbca701d95583d8d1ba3178dcb90f58b54aa
MD5 54a968f7a03b5781acefc3c9f9679459
BLAKE2b-256 5a061c714887e0811bff91498bbf362de25aabf871985dab86c0c1462eb7caf6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88f93ea32f3d1040e1df0d9703a480c77427fba9da4a6cca3bae4de6624c1289
MD5 3ba9173901c5ef3baa2bf2b0a1134c15
BLAKE2b-256 91e0b2a73ec1af67d49b2e3bf4c6042e572e2642d848b6732f6b0b8bf99fe4e2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 616f0e36fa9610ec28556c180cca8709148b365cbceaca521a4b790779e85ffb
MD5 28df59c782dd77719c97efea24a7c9b8
BLAKE2b-256 d9e242eb904e361a3a29feaa07dba9383c5b674e5cafb8ca3cb2242a34212a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37db830bc703c54c863f05a4add3bcc7d54569f7281633c69a1ba909f60daaf9
MD5 a6452966d90ae4f6a4e4baeec0a1581d
BLAKE2b-256 e7c079a4465fba4c5148029fea08121158d9b0daefe6cc633e18abf72099a077

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c1a185537cbc61299a7f293b6ebef2c844511c3824729910c088ebc053d71fd
MD5 bfd10dbef649edebe5d7fb45f6807e50
BLAKE2b-256 ea45cd627820f9b08711584ab18bbeff2ef6c5cdf64793112974ec4a5a1e0569

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7a24976fe7dd521fdf86d35bd64d5ef44e3a7cb56fea94392a9aff18be1b193d
MD5 18c9203618b55f35a207bd455e00c4d5
BLAKE2b-256 1c05f0adb983d6c34bc8fb99888022b5c9e3f459ee58d8705ee8ced86eaecc17

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 37936d415046f26ea1b85566abf7d201f965416dae1cac9a871f9e1061b9d8da
MD5 9078984bd6b7877f8ee86ff61296c145
BLAKE2b-256 2a9db91981287c6981940ed1cebbc08c63de0bfa8885fcf3fbf802459d825d97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7da2d4bc16369a6d4fcfc9e1cf52e9da84167eb0616e690271018fe1d9bbd69
MD5 9a7b51825c3e019d7713d7a5ce2bb7b7
BLAKE2b-256 22174abc3f2406b20e4cc0556158fc0db251ef268d32b300105a82c52d169b3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 877b1326ad8c6a2e6f26994bfba310c6e5e9537f2e0849bbe444635500951ae6
MD5 80f2b6d1cbe35959e20ac1e749f80d72
BLAKE2b-256 277f11a193ef0a8ebf9cce3d002d700c6e9b98e1232204752c9c4a0cedd327f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 78012350946b90e89ee9da6a8402f35d18b3f26b64aa53d5f5a311106a686036
MD5 f24ad4e815c1a87b44d568a80ddfca91
BLAKE2b-256 6df550beea36e750ca3317979c1f0a774dd4aca6d88269e0076db3dd9132b413

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe6b9bf80778a5de69781db0cbcf670600094985427d7185cb961ac84f435a6e
MD5 7252987fc0a0b467b30fac96aed02387
BLAKE2b-256 e20751d897aeb6ccca56d4e14135748f5a3c0cb62d0d1eeecf2096fef0e01f9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00d64265075625e7d22989c19f8a3a85ca885ef1eaa72bfba5a80e5f6e33bc52
MD5 67bb5d588a59475242bc873dcfa0dd8f
BLAKE2b-256 faa964c92d52f917af4bceb10b39ccc0855189b437fc541fed4a19fa5133cc4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b9edf8802a6155bd4249e41feb19d1da8af672f5555bb999ed2fa6b798b604fd
MD5 be358b1e4c5b56da054b04161c8c06f0
BLAKE2b-256 87ed20950aacef6a3b596f755982367982565dfd9dc6779c1d3e8077a876c709

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 69243c02fec39bbeecdd15f75b088ff8abf9787b97a0c3291105a64613cbfc5b
MD5 4d2cbf7cdb62bf4d17a3d8593bee18ab
BLAKE2b-256 f9dffc8785d93f9ea6d488de0067abf9f28118201f59dc8f0b52f44b05d2d4b7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9d79fe8c27b51d9d0193dd1172756be6a56758403e194295d79cccc3ad335bf
MD5 05d6a931000f7f3fafd826f2df436f61
BLAKE2b-256 9cd45efbfbb7443f7592aac282cd66591c636f95c9952acdf6b8140c43978f15

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 785c4b519955c3554aa588a26e3d4ab91bfd62339ba5bfddc995d6e05d211436
MD5 ea6193f6d5e386e60593779ddecb77f6
BLAKE2b-256 b7730b289f3713b0a338abd42fa189d2d1b773e773a81b9ced2912413a120406

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 704aab64c57d58e0e7d9dd5a1b09076f56460eaa4e151cb5b121fa2586ac1c81
MD5 13b90c823396fc15401b2eae59f89978
BLAKE2b-256 c82259e789c5922f34a57149104406ecf002ed9ae9cd360d75c3ab97378596af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 51d918fdb0d6b004412bbc72334c0bd24f45691538cf164e4e94dcf445d14958
MD5 b0a11ba9c8d88f6fecc530c9d9e684d5
BLAKE2b-256 94848c417d94763c4463e14bc85f0d576fb9da27959d99443b9b0de429ffb75a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1662b2a28996c6f11463b5139d5e8656db75c76911cab2b9e7c3035060b0e7d0
MD5 2ecb5fc62c889fc329f3d60d3ef1e2c9
BLAKE2b-256 ed9d760dcb3b1f127f0a32bf553c60ec7adfc3acf0c9120c5790276664699ecc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a4ba9c6fde56dd2903b8e1251718b3f71f5466876032196a262f137743bb038b
MD5 7448ee5e53068343d891b233f7c20cd0
BLAKE2b-256 3dfaff836b3e1015f27a84324a14949c327643ba994320d2bb71513367c48977

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 01fa9f505ab665a38c40b1f0eac7b917fd59e26eed6df9fe9bb6e665c7f77253
MD5 49a975c7a0a8c736a6731404b1d9ed74
BLAKE2b-256 12cf592c7aba22367613595b16658f71c52111343c6197026efcfe71f5300471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 524678ea3f030bb3fec26a64af6782bd6f2403ab4fb2ec7a7518d007e327c9ad
MD5 007235a0cdb4bfbed864f237833d7cd8
BLAKE2b-256 78eb913d474823e2bce95905641e98f24e99b0a94ce94e7a9af5e09233f31e16

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5aa52b130494c77d0b29a181834c435a5101727c6a3cd70c6395c918a22466cb
MD5 dfe5c170055fb2d2180cfe01dc48a7ae
BLAKE2b-256 27c75e2e19e22a6ca20706a202b489ab27de98a9bd516bf3460efd60bb4e08b9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 540c030f5faaa00b80814a92bafb0470d485a88f23bbc408f9961564c0400da0
MD5 a7dab5c4b2d58567d66bbf35ef0b4106
BLAKE2b-256 21857d7778b367f6b6536167246a07f0fc48525d8ca589e895c70390ad336c0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee4775a4bdcf3d441c1344f08fdd70133b26cb8c9bdfdd7a28fb72f4178c7623
MD5 ba0fc67b1a623226c926931936518341
BLAKE2b-256 671ed1d1502010f0c0699d50cb0945e42762fc1aaa2c829d50e7f76214e40e32

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6acc70a6584935378d5e6dd0fb80433b04f041401dfb86bed829232c1d2cc835
MD5 d9f1b37e736cfc4804b3862a689d225b
BLAKE2b-256 fdbbe14717a1701a7be580ad3e109fb9a681c91f35994a1ba179eb897fb20dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 a39a5f0ff07c8114887798c8b898b26aa3dc4b32fa4f7e57752d4313a48d859d
MD5 14ff206ac577ee17b4c939d5f725446b
BLAKE2b-256 1bed6b743b71b19bdcb501751ea87f4d0d19fd0e4b8f66dd6e3b75505b1918f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 8bdc911c705e94a65d98277c156450892e51c9aa5d7d3a063b821d2431bf4b27
MD5 f8936c22cf15aeb9c6cb705b07c75783
BLAKE2b-256 830dea64aa07c70606262cb2a4f8a242686dadf1b2a43eeb76d38d1409bb6663

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e6526809d7425954bcc9ccf48337897b9971409ad916a5d2115326f759e5337
MD5 33af34b5d67323f64262f36c11848e20
BLAKE2b-256 61d5a79c2c5e5edf2aa77fb51b6f74c08bbfee33c78158c78bb8c0dddd7983ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82632574aa7272a999c2ae23c9fa0e1cc03c4e91e99600f194f5d82a914d681b
MD5 370623485de00f5c85e7374bfb223f9e
BLAKE2b-256 c90239e11b15ea5a0b0fb635e1f5db90ab9ee6aa3bcb49d2a259db3937dbf802

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.4-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.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4db2db7aa8493b8c7421fcfd34cb5ab4c01c0c10b625391b8d19ed006cbd9294
MD5 a2ecf8ff5f034f80f67a4956103dc734
BLAKE2b-256 ed4c4116f3cb52c92754e571384c577cd6e530841df17f693196eee8a7c61e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d06dd174cf0f9d7438a6a337736ab5b1cb179571dcccc3e00d34f0cae7a129b6
MD5 a56e87d05a8f42b4391cf4acfb5c235c
BLAKE2b-256 aba44cd43828a64494c13430f4784a6d5f50a2f4117d2c73870e64d8babb0a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3f32846466357e17e49eabf9c7519008e7d92657a1bd44e3bc839132b84ead4
MD5 28ea75adeb384fd23bb452b3af729d5b
BLAKE2b-256 f0ccee1d3f0ddaa9e28c20f3bbeaf75fbee75bf4efb3c70c90747958531ef7d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 e573bde612e3c84c1b2749576dbc33a9389bead9aee19dd4df93d4e6a9171632
MD5 6b62ee77faabcf9369876f025be6d529
BLAKE2b-256 220ffbf6685c6056836168862687788754ada261fef148c271399df2d6dc6c88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ab57552b6d62387212d5e48a493458ad59c46e125e81ca6788658420d5a0abbf
MD5 7fb645bedfa06e740a0911199d0f43f2
BLAKE2b-256 5645b6fed1a58468a13f4e08eb8e11e10b6730d04dab6fe967a9a497ed7c82b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc6e3940070aa893a10bca15fa08eb80961350378cbacf6b43d1e1b1ef87102
MD5 0822dc918b0b505c90ac31fea10f93bc
BLAKE2b-256 05b8116b72a95d10020fd3d144dd85b5a93f2f7c124429ceb81b6eee98634f9b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.4-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bdd7bf16b03efa4e745055616fc7c33dd3d167118f4d49f83fdf201515b58b7a
MD5 f59efe40e33f428032e7fe14c7440a1c
BLAKE2b-256 5d821dda919b6b970c2f9a308a22f065f80ea3802f1944c960fd7645e87e4725

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

Release history Release notifications | RSS feed

4.3.7

49 files

4.3.6

49 files

4.3.5

49 files

This release

4.3.4 This release

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