Skip to main content

A Python library for Longport Open API

Project description

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

Project details


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

Uploaded CPython 3.14Windows x86-64

longport-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longport-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longport-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp314-cp314-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longport-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longport-4.3.3-cp313-cp313-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.13Windows x86-64

longport-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longport-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longport-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp313-cp313-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longport-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longport-4.3.3-cp312-cp312-win_amd64.whl (11.0 MB view details)

Uploaded CPython 3.12Windows x86-64

longport-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longport-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longport-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp312-cp312-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longport-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

longport-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longport-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longport-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp311-cp311-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longport-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

longport-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longport-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longport-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp310-cp310-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longport-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

longport-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longport-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl (10.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longport-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp39-cp39-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longport-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-4.3.3-cp38-cp38-win_amd64.whl (11.1 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl (10.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longport-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl (10.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longport-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl (10.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longport-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl (10.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longport-4.3.3-cp38-cp38-macosx_11_0_arm64.whl (10.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl (10.5 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longport-4.3.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4554f6d9d6d51490f4251e144970888b0c1833b41da504500344eb715abd8046
MD5 c3367649ddc72f6750c41098781ffa37
BLAKE2b-256 247769ff5aaab88c50645f8177414b3f4e14a8f8e277ec91de7461e9492223e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 524489c529192021590abcd8714cdef5a149c4a6845bece699621fd66b5eb32d
MD5 024436f56c71800b5093dc8090bc9d84
BLAKE2b-256 9aa5b68f40c48c4b0a3b8ad0169a83ed8a91e0f84bcb46854f943dce417b2d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2be934215beb6d2458dbba420a155d5eba5bf1c02363bc4c9332f2927348fc62
MD5 69388eb76427fbf3b17240224eecbdb2
BLAKE2b-256 89276242fe079bb7385f09e3ffdf43a5fba106d9c59854c97cfc2fd08aa23adf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 6e7130fc6b4404a2ce83f86e8cc702bafa3eb42459af8e53c8330bba990a7eae
MD5 904b93eb2f7b386c3cd93389151f964f
BLAKE2b-256 b0ba274d57a819c5bcecd551c63c8d04d1f73783e48b3be23eba6b86c05b057c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 4d509cf4f26e884b3fe4852c343ca2b3c019ac42a7a5047f50f14a014b21a041
MD5 c23974a979920106e215a878bda3836e
BLAKE2b-256 04ee2f7a267b55389b5eb0ba4ebdba120b385976f27d1cbdbac414e40ddf0788

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32e7cc4891bc71479f2b7417cc6411748ac85558264287ba643d19255f5bf669
MD5 a2385a661da0d81139271e97519a38aa
BLAKE2b-256 017629b08b8d95a5ce12994fa7ef92a494a48392c108259501b4f9e4f443842d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 888b70c01da3b279d92093369e6f4fee8c3e50586309eb9c14868bd99032a3bd
MD5 bb929caad17a14076d3b1e56a18e6854
BLAKE2b-256 ec5076886bd980c4a4b6b171fff13634968541a4384887c49f688a1b2f57c290

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0218ec61e3cce7172ddea003df3b597bff87ecfb380e7c1085835fbfada34ee1
MD5 658fc36a381da2d43ffeb73fa85a04fa
BLAKE2b-256 adfc88cc128ed154c60fd61c2f64ec662c8b6a19381217b8c790fad15b00059e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 174f6300e4219ad94e94ca610ecd070cea4288e3b39c86266c45164c0a835708
MD5 786b5397db84f6d5d662ff762698cad1
BLAKE2b-256 202d7486871eb8abc674f494ff8dcfae264f652bfc326bb46e319e7563f0f7ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cca6c764d9fca9f9dde5ca6ad3eb4b5e694b0ca41ac381abcbc8b3b72d337930
MD5 855e14dddd2857eb6ec214462b7c2468
BLAKE2b-256 f84f1f147a709fcba0501e5cb868b6455da0e7f50d5f470c5ef1c744a8a70909

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 4816ea0a3fad8b2c5e46b4149479ded64a982e3a0086012bfe70131458a0b27b
MD5 ccdf70d453ce95edf18f0c597150ecac
BLAKE2b-256 a119c10b6ee563ba8425fa979ec3d928d68c1cb2c00a00a5a696a36158d9e25e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 edb482fffc56c0c60b58cce070c3b2016af068d091ec8db95f8016d9528c7d25
MD5 bd925d6c9152836301a2656c589dc1ae
BLAKE2b-256 31efa7e9f7e6d6c5f98cae8df80a41588ed65ed7a16e083cc3996289c789c349

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cdf3c6b7cf2446035369614c9bcbb173a6f1ca876b4b048d71219f33b13802a7
MD5 afcc9fdf6de67e78ec223794dbd18c33
BLAKE2b-256 cdc901aee85eb55ebdfcbe2236f57a88741f549dc9d12b52b1b46fbfd1dc532b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ae8a8791c3ddc0ca278d902ea0def94fcbe387765d63351d6b931f9c482a16c2
MD5 b6294387c86a38c7a403446707ca0f14
BLAKE2b-256 2d16642122cbd65eb1c9c40bdbc3b89ec7dc0d03558ac2d3351948ce1d9a9c65

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d6ebbadb6f29cd567baf7c63558ffabf3d00ca21bcedac6e78ef76cb63e0c295
MD5 9f9ca6a74f2b36f7b438df21706cc154
BLAKE2b-256 50ed074e4afcfae384a1b2b876a2f493e77b352fc2fa2a7631b9f7bce6f1e8a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47cf00dfa9352e8c14a6da2762002a01f1bc738226b1414e6ca4a398c67ab029
MD5 0ece543006709443d56dee42b7d04fd9
BLAKE2b-256 5b4d5e38caf7a00863baec31607a46cbf4c68f9a4be2837fbacbbbd9e874783e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 64863ac81fab7d50ba13bdc02e506abb831d6f66d5f3e2c6ff965edfa4c8581a
MD5 422ac98de1d218fad0fe52d37fc91f26
BLAKE2b-256 afb6a01ed2380f0394805a78ea983e9b34d8a30fb5b1b2b0cf9a965b33a1b9e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 358c40016a62e3bef00b8368f1971aaeac928aa001d7a082eed2a6e9695aff02
MD5 e36d6baad05278c7a287e27aae69518d
BLAKE2b-256 e259bd234faf44d40191c1d16bf70b10a62f9b43616c31c9398d3f2d27b8fcac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 2d330512fa1465324ee9d2de2104ca48365acdb570e7e54adae3c0b4a97202cd
MD5 2241e86e98e98a0d18d9b1ca13cd72e1
BLAKE2b-256 b676e4c85e13d055daefec66bd0d8dc1e899b363e220af1589db8e7b2ab01c76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8365bdb3aaf45492ca102f0dd90adae3ae2d415c0d57583647fff0d42b2e055
MD5 57fe3621692a03cffae9a417c1bddab0
BLAKE2b-256 47f93237090140c2cc56658910465f75405c3322e11fb6c5bbeca7fddf60ea73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7eda3ea13606203e8ef75e515300f1bc06fd08a4bf551604394b3e4bd7f41632
MD5 49cbfa200e56803da4139a77e9324120
BLAKE2b-256 38dbf3bce6968d1223afa65cbe7d2269cfce89cf4f513344d97d258a43a03d4f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1dd8b178fa2b0de9303be4a4cb7c505cbc8c6d215f1847e97fc69b4ecc373af8
MD5 d16952ffbd395270b6b34bdf25eed2c7
BLAKE2b-256 9f1089ff9da7443e006548e1ee143b4d2d523d5eba8fa5dfc352ec6a007621f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b50137d6ecf358e5c7c3138b6285adc25409d4ca1712385d2adc54442add764a
MD5 f4f1f93113c5726a128dec7966dee38a
BLAKE2b-256 da4ff439970efe73bc130c93748c85e1677def86ba17b2f541d0acc4461de7c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 923e0ebab692c34a89e65c4062784037efb6851025c5fcee424ff490d846d694
MD5 d74723aec4db9183dcc70da670aefbbf
BLAKE2b-256 3822001a326484a8a827f6567e36a6fea451126a9a240dece902c58472e23fab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 218e62a4c7b578550c16e2196fb719d200a1ff1fba56f1bd073630ad88beff5a
MD5 c3971856533a49fca3adf72c91a7d11c
BLAKE2b-256 8f1a7f1f870f20a449528f03d21098538b97a1cff1219b4b0a19630e4d21b244

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 ab7b8c490a807a2f8cc2600b81fdc2c34fdb4b2e3e87431782addb47cd54430f
MD5 26a1a09c6c1ed7ac134114476cfab962
BLAKE2b-256 455e42729278da90f4f719c9f97afc1d61441f0d8d17560bb032964b524e186d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b427f10a3555ae4dad42b09ed6106e4f0c819a312d4573c4674e0643bdb70210
MD5 65f02f923792d6d9b0178507035c0cdd
BLAKE2b-256 46afff627dcecb8878147cb3bfaa9a86cdda3d7f76769a78e01deb30cea2fe8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee825451a4d0b449c0cbb6c9fc9644ab060f9780ff7d3104d61360ebb7ca7454
MD5 4a0ebbf21a0801e68aed9c3f6e7b894d
BLAKE2b-256 2248e1e286c97084a03615540f143c21e0c811c3d8f2ee0c78eb1652453472a8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 61b765e51e948d8500c584918763531fc6fc937c144b342808032dda3cb5b5e1
MD5 658d148c89377548ba4f60671d0022be
BLAKE2b-256 0fad15a6c5fa975f83b8333c11619a05b34ea23dd289dd56c249d135575426f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c16ebb26a9eb14ff63d042a2cb29b7ef2f8c22704d4651365ee655111e103f6
MD5 0ec3289d8f2b1d6167a99efef0a7c88b
BLAKE2b-256 3bf481dd29d70db05893245f2c3b5545cbaa5dbcf7aae150b7cd4469b1d42517

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab1b349a3ae740083f2ee51486a19debc64b5ee2cc7284a70c1e8a01121e21c1
MD5 960e79137135a42bb4b589d537bcd80b
BLAKE2b-256 2977f51ce3eafd869aa23853d0e5675628289c8b0b83a9f5d956c5d5ffa3a251

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 f2bab2c09abf191f9368c7e5f630d42cf167ed712d0ea9cb59614962f2a4cc5a
MD5 c83ed87fe987894b0f69b82ec3136f93
BLAKE2b-256 3c03b72c2d85637355869eb3a88ee6328402eb8a6a3fffd4dbaab2dbe8abfc46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 fb8097256be07002f8d8c677c0211502ba0d7d79f8e16f026c777c6d4afe89cc
MD5 eeb0f998374e896cc89a2518f6a1c60e
BLAKE2b-256 326eb715162fbc672a5e44bb46489b167cc72873e91208b1b3633cdae88e707e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6176fc46d013b1c3206abdd3b28d537429bcdd77461f2e91a3459fc5351c20ce
MD5 006946966bd261bf1ba086e697e941a4
BLAKE2b-256 4aff2a49f9077af33000aa5f7b389c8cc4f8005709d0d29e92de3e3ec21c60ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70253dce14087ff2833c422f0d376b3f72717fc8360529993e7a624140914f5a
MD5 c9aa2e903aadca766909745db9eeaef7
BLAKE2b-256 ad216f445e695d7ddedbdd7dfa7989ad1ceebcdc9d402e33aa5ad1a3ad6b1027

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 11.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 241f9f4da604ac309960edf11ba8f7c1561cef7e4c97e2265aabf9ecf842d0e6
MD5 9ca53bf15d881fb66beeba8207237b45
BLAKE2b-256 52a3ddf97fa731e5d61465049ffcff6fc45c1889dd5c914b047da1fa4b55cc8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc69f574715c57616a2d40ef2c4ae2d6698247db6c3716f61acdb31ad81dca1a
MD5 4821b8cfa16afc630a3db0a77c91ebd6
BLAKE2b-256 45a4ea53f070f837be9987f8d590e8fcb33be197d72e09e23cfe3240b558bc8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46bb505dcb82c7acc3a27582e0630835b6d820dc2c95903bacc4394e42c835fd
MD5 3d16eae5805673a692f1822b2bfbe7f8
BLAKE2b-256 8777832bc3efae36d3089596d5673cebf23b87f522c5439899879e5ff881d19e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 3958a265a245a82e8ff0feb52eb569fa752cda539d277fcc7619b072c703ab8c
MD5 08fdd68fb5a881001114edb5e6652b4c
BLAKE2b-256 5ddb2856de8194c2a4936f7c51bdebfdd8a1758f817d04db46c687d6b4a9aa2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 c3f2f16492c5662064bd9a867e3daa0bbc3116a9aafe61b337050ef84880391a
MD5 64886efc6f95cfa52952c6e3870b4c3e
BLAKE2b-256 c2af4b0e55dd8594f2b317001b89010de1c4a89fab81e5e4a373218bc8cfbb6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caf3e30b421146ecc3ddec2b4fabfd828ead7b472905fa24b45a8183ea36a68e
MD5 b7933ffa9af3e6a68a6f3b521e9ffe28
BLAKE2b-256 dc04bb27316bcdd9671a53895176c3967e6e7bd5448ca1c402a5f830b35df97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90db4b81f4c2082074845f35c93009c642120626024d66bdd78e2667853237c7
MD5 aa269dfe331049dc0a7fccfe6e4b331f
BLAKE2b-256 1d6418a581dfd95ed6736e792f1016f272c564e15801ee6d86a657f4c4baa88e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: longport-4.3.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 11.1 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for longport-4.3.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 648d603118141b2db53982c37fedeadcfddac78dfcedca71040c8421f5e3e73c
MD5 48cba7f432c2ee3659ce74512532fd4e
BLAKE2b-256 3d5fd2b98121fbbc57d1b8ea9fef9689cb15872f05beb9ee5777aaf241e00510

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aacb739d74c4f70729e437377d02d2630014b7fce32add1db67539a90095d7d2
MD5 f28fd48cdfc5e3ba2d214640d31d6722
BLAKE2b-256 8d32f0a54c012f58cbf8a476b92e90913959a466e603c5add129f8a6ccfcd130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd3e3f6751302bb24c0fa8bd894eedc9463af8cf20c7022fc54a72333b9f034e
MD5 9f6ce5808267d519bf6140c93c69c7d5
BLAKE2b-256 d2c3c47be7416564f95e34f91464a2c80ca9a30cb956fad523d6fa4008b44999

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 7ee3aea50ecf5140a9609f9931a31437adc0f756be34843d59369edb24b7890f
MD5 493960ae2585e699084be28c41a52bdb
BLAKE2b-256 b1d84752ff5b2f5fa5bf6a8da85705ed7df62291ac05a9628397c9a4e073e31c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 14141cb23cee27798685c3ead80424a288a0752fd902b6427cb7243ecca75067
MD5 5c876cb245320a02f2eaeca3cf581623
BLAKE2b-256 d341993d524596a7b1e3fa73999fa1aab0077f3f4c477995494bd18b85a1ff2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 015a1dd6947a73f1ea9d8b1ad223b9bd119738e89ab4823956264357071db07a
MD5 b2f860907692e4d8ea3e11c724fee00b
BLAKE2b-256 0e3f4a376e481e4368928acc1bdd3adfda3825d3c797cfa589dbbb4938428af5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-4.3.3-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92e53706c0cb65ca2ce492860794fc1ac6da27e6647c8bf895059d89ec5ef4e1
MD5 8b9aec395ae289835d04f29ce8715a45
BLAKE2b-256 9ac5553be979305947d9f6fe79f2ceb29b88f73711c26114be824992b276c6e8

See more details on using hashes here.

Provenance

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

Supported by

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