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.

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

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"

Quote API (Get basic information of securities)

from longport.openapi import Config, QuoteContext

# Load configuration from environment variables
config = Config.from_env()

# 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

# Load configuration from environment variables
config = Config.from_env()

# 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
resp = ctx.subscribe(["700.HK"], [SubType.Quote], is_first_push=True)

# Receive push duration to 30 seconds
sleep(30)

Trade API (Submit order)

from decimal import Decimal
from longport.openapi import TradeContext, Config, OrderType, OrderSide, TimeInForceType

# Load configuration from environment variables
config = Config.from_env()

# 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

Note: The async API is currently in an early experience stage; we welcome feedback.

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 and may be invoked from internal threads.

  • Async quote: create with ctx = await AsyncQuoteContext.create(config), then e.g. await ctx.quote(["700.HK"]), await ctx.subscribe(...).
  • Async trade: create with ctx = await AsyncTradeContext.create(config), 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

def on_quote(symbol: str, event: PushQuote):
    print(symbol, event)

async def main():
    config = Config.from_env()
    ctx = await AsyncQuoteContext.create(config)
    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-3.0.23-cp314-cp314-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.14Windows x86-64

longport-3.0.23-cp314-cp314-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

longport-3.0.23-cp314-cp314-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

longport-3.0.23-cp314-cp314-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp314-cp314-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp314-cp314-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

longport-3.0.23-cp314-cp314-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longport-3.0.23-cp313-cp313-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.13Windows x86-64

longport-3.0.23-cp313-cp313-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

longport-3.0.23-cp313-cp313-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

longport-3.0.23-cp313-cp313-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp313-cp313-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp313-cp313-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

longport-3.0.23-cp313-cp313-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longport-3.0.23-cp312-cp312-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.12Windows x86-64

longport-3.0.23-cp312-cp312-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

longport-3.0.23-cp312-cp312-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

longport-3.0.23-cp312-cp312-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp312-cp312-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp312-cp312-macosx_11_0_arm64.whl (4.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

longport-3.0.23-cp312-cp312-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longport-3.0.23-cp311-cp311-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.11Windows x86-64

longport-3.0.23-cp311-cp311-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

longport-3.0.23-cp311-cp311-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

longport-3.0.23-cp311-cp311-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp311-cp311-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp311-cp311-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

longport-3.0.23-cp311-cp311-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longport-3.0.23-cp310-cp310-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.10Windows x86-64

longport-3.0.23-cp310-cp310-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

longport-3.0.23-cp310-cp310-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

longport-3.0.23-cp310-cp310-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp310-cp310-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp310-cp310-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

longport-3.0.23-cp310-cp310-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longport-3.0.23-cp39-cp39-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.9Windows x86-64

longport-3.0.23-cp39-cp39-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

longport-3.0.23-cp39-cp39-musllinux_1_2_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

longport-3.0.23-cp39-cp39-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp39-cp39-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp39-cp39-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

longport-3.0.23-cp39-cp39-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-3.0.23-cp38-cp38-win_amd64.whl (5.0 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-3.0.23-cp38-cp38-musllinux_1_2_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

longport-3.0.23-cp38-cp38-musllinux_1_2_aarch64.whl (5.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

longport-3.0.23-cp38-cp38-manylinux_2_39_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ x86-64

longport-3.0.23-cp38-cp38-manylinux_2_39_aarch64.whl (5.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.39+ ARM64

longport-3.0.23-cp38-cp38-macosx_11_0_arm64.whl (4.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

longport-3.0.23-cp38-cp38-macosx_10_12_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for longport-3.0.23-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8f2ce62d71fea45fbd76028ed5b1105bd5b796ed6ac3e12a89bccf8a74c54e3c
MD5 57504e7b48297ad0cf10e544162ee669
BLAKE2b-256 95daddde98d8c7d637c18a88f56a90ece2cffa8f5a7835bfa1c908d82a0cef73

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63b8b06854ddf6bb800b4340fa385688ce28418b86f3b44fecff6ae7bba26e3f
MD5 a8c574c0f8e80f0b63d8064021835aa5
BLAKE2b-256 2563cbb6571370ebd001d19b5f582ec194ae45870d4f7a342a5762d9abc63a86

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a05ab58e2dc95924ba35ccf8254613a30c927bdd6735aeb17ae1ab23a4ec7e86
MD5 5796f6a9b88b61f000edd0832079e743
BLAKE2b-256 076e9847a4f05b08df17c06ac6d0ffeb4079aafbdea87839a2c831da76302374

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 28445eb0849f65ca517bec1af92f9208c08123b74d5bbc8f4a59f7960f81d745
MD5 58c4681208bacc69e68494586a5e94ed
BLAKE2b-256 7196de4bedc87c603b9ed0e62822e2ccb50b72526b8aa27522cdf410ac84dc8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a6deedd5e1f77eaabd262e8a1ec26396666d16cedaf97eb780ef8e3c266eec2f
MD5 e507c9fce284273c15c858c22c9a7ba6
BLAKE2b-256 d0a82f7a92f5d8e2b91e0c12dcd53468307cac9804c56bdd3242cee6e240229d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0595c50b751ac5d936dbec7b296c5d085cd02d161e5cc534debf2e95a4fe251
MD5 d9c75da46679e57f201c1bc0287e507a
BLAKE2b-256 aa5d664803d25119cef02e261ee50f7c86a3e5a64b4e58e67a68506ac5faca18

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f49539bb6a11ffee7f4aee40abe6e428c948ee7dc62c5f27ab56cd64bfab670
MD5 66511970ec37e7d7070f95596214bb1c
BLAKE2b-256 1e1d46ce5bbd3aa3165ee8b1ae576d5826bb008aaaba9a68faec2b08218f3d95

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8d55d9947d4ecec1b435befb1c9e47f98a6e152fdc11af939a4441fddeb059c4
MD5 3087719091a3e5a0acae6fb1748b2094
BLAKE2b-256 df4ac85a738d59065471231513d897526cfadbfc8d6525f8471c5440daadbda7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7840611a0b7b5e4b65a9d0501b2fae981773fa2795a5ff51724f19e612ddf952
MD5 5c53d7f06c3932ecf7f7145e8a18338f
BLAKE2b-256 653983079c351fc331a1fd57005b6405fd66ee4b3a3fa78cd3af398311ae0b70

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 edc0841cd72c9594e460a1562806c8673d6b7c8a3a415d3131ecd14ab2c91980
MD5 615b29d0a1b3fe4f95e16b2d11d252b9
BLAKE2b-256 7c240427facd08496fbae79538f123015926412294c8e4bbed05454217a0599d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 34afcb92b70f5bc0fbad97edf4fa064342b9c3191e9382009120ea35700feb1a
MD5 c9fb31c1eb01477fe9314fb861692984
BLAKE2b-256 23cbc6575c03c069188528e0c2798d2c7514c4c02bdc1456df17f7e9ac70a365

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 a804b7d3be52b25ea1bbe6d7ca4790b8cef850a558f1cb5097f8b28c13088730
MD5 e2ba79e86a6c7a1b8f7e695d958a5a17
BLAKE2b-256 1eeee0f849d424ee44c56a6601dc8eed4cdac4ee90c82bad42000d7a7b9f14f6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9699fa35fd2c3009eca744771bd0be775218b11903580dda8236464103db5aee
MD5 67b60cf2daa9d8a4f72ff06239900aa6
BLAKE2b-256 3b3d93950f2ddf998db8cf37a7456060471d19d6d033c61d0830f96e522d44f9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6c58c4b4d97d0770c748fd2abb001b9555e1f1e24c47d09be9769e68086f86d
MD5 25a028d61572fcc6bea69e4e1ddf1894
BLAKE2b-256 2506b9604463cd6f7621764481e6098da1ec5949d1435b23242c56d63ea0144a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2bafae720d3dab2b0b6856d4488d19f15eff78d4df2bb079cdae16180264474b
MD5 b60424098df9944657424000a37d3dd5
BLAKE2b-256 783489830518a2ef4cbc9336e41aa117b12d0024fb96d7294108858c986bcb97

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa8a843ed29b41b1797683f0692c545db0ed517752ed139681b5ac173a6afd8e
MD5 71ad79158f69d9b435423aa0033f2fbb
BLAKE2b-256 99e3259970a37c6dff6c701dea78ecae7070d08b8d59e8ee0cceed7b9cd5cb86

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa5e40a4661bd8af23e7f80e60786c4e6a60c22a2906832d766c973c64aa799b
MD5 09b71f3d14806920af066d259cb71515
BLAKE2b-256 48477c56a8883ca0bb3228309d4370f2326b120bbef1e23135a35ae086e6500c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 02d5e351d316e5ab958f6ea9356b91ae14c9c216d34214303f1db4af53a5f319
MD5 785973ae1d7c0c3e39bad989803d7ead
BLAKE2b-256 453e3ab5c58a7df699ffce0b1d80fbf0054c96764653b236d233823f25c84245

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 f97e0d86ce262e120004ea2da17311a5df8451e85c515a95c1c4dbd3d7b94cca
MD5 91cc1065d97c2f182e6ea54743917b61
BLAKE2b-256 9308d62d694c3b7213e7b97a4a52e31373260672b5ca518b3c30ffb5b6e08daf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c20f64bc81110142c03fbb3bf1b623ce64c1d4f2f66d6d70995c16862d3f6a2
MD5 e5d0b1fb28f68edd92cacb7ab58f7c60
BLAKE2b-256 abf0783ce4ed0600749b58e660ab4b88d50f6944d584e41c09884cf5cb80988a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 449009000d757cdbaecdd4bd890bdbdf0daa27aeecb470fae16c6d9e014242fc
MD5 f35ca8a3bfa0f030a7b48482f5196002
BLAKE2b-256 8c28969319dcfd2c7aecfa972d49c71b55d51f0299dcc69b3faa60ce16986394

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 394e66c006728840c6901ad301c3efa26de79de47ddc36753db462dec48657e0
MD5 770d42c8cabe09511b81f7e09b79ae39
BLAKE2b-256 d51a1e251f523174f57821b7a4fef989c7ffdeb401fedca588b89c44707568e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 965ac3faaae41c4929756d1f56072a00df685b6a187bf2dc59eb89f69cdd4f20
MD5 fdbd181c5333a30f66e418fc5edcb2e6
BLAKE2b-256 1c7847d40bea8a1f57023de72fd32b95f039a987ced37d8765e1e49dc2d1065b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fefdfc2fce09ca47255a60edaf12e5b48c71ed30c706aada666c33c9af03e974
MD5 9c37f7bd621da236aa70465fb2290ad0
BLAKE2b-256 ef19c7b15b3f86a9d8f9b697d57303473fd6d9d06c0f5509ec4507de2fd007c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 43e0565d544a6e33601ab52c8c584c076bb613c0d346dcc839b1eecdd9d08ac0
MD5 cdeafa97c39f2d842f7609de0ab583f5
BLAKE2b-256 7bad37a7a963bbc853d1ff97c9e19835267b067ba9d679462cf87ebc76ed67da

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 e365673c74791984ab5a765e6d5b31556824ebb2daa7ffe7df5bdc29f4cdeee3
MD5 a8b64f9697584153e2e692173e740b0b
BLAKE2b-256 b26c911c5ae11bcbf596b1f850eaa8bd2259a1553178cda3710af509791b7eaa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edfcb0f5efee58aa510ce9b35a046d28c2acaaf863b5bc07362f47f41a03377c
MD5 553e5e9f7ea05c9cb929ffdac30233eb
BLAKE2b-256 c44aee54b1ee8cbac75b2fccd298ded1813aafe74c6b1a749e66875c5680fafe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69364ccd79e7880542baeaa38e9c13cd2dff79aff6b570b59d115667b10d9040
MD5 7f6b5f587a10c62165c709a661e027dd
BLAKE2b-256 ba6fe02d6165d2ad4d1ec5642a89e78c12d17c1e860aed000321f342799ec17e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 522d3909a2d52f6810a888b99fbfa35f3670f3485962e454dea54e6b1fb512be
MD5 133e4969c5df11277311c1c18f1d5991
BLAKE2b-256 f7b579022ca4f884dfa2c75d85bd20a0daafe7772237a798c56670d4fcc5268e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed30fd75dd818c7f7e6358eb2e537fc19834ce1a87b8cc5ac645ffc37a60d6ad
MD5 a2ae9c83b4633ded45e8d3a24fa880f1
BLAKE2b-256 5acd675fa03067145a2373665e6b92c9b1d4443881e863b555e343f148e60ae7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0deaf515acabeebc166775c294c49a15de32d6346e52e53e8090cb73c1f90768
MD5 c3ac32a6d20205032cabcc727349af49
BLAKE2b-256 9b31284fc354b56f473a8f5833dfec79f2779375bab2a5683372f11ee5e095ab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 b5f1bd6a55501041bfd5fcc20d92465b1cefbb4a7b9fc699ad46f8500217c4c7
MD5 f6c2a37101a4850aacabd070dcc97a38
BLAKE2b-256 724d38766fb1808fb04ec88c87f14114085846d490cffd35052858e48ed75e34

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 6bfe601518fd95c7e9eeb8bb123649a42de63b1c1064a67e338fbdd210cf0e22
MD5 4810e412b76094d774ffd4ed2ad67b25
BLAKE2b-256 84c851bcdd005bc1c0b5439cb2c58a03181a5f8c885af758411bc7c206fc6bc5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a763d46a1dcae3b2a346b08cbd86ae7780284c675a5cb2894c1533bc541a3f8
MD5 7663b8e5188332046fc80adebf3cb93b
BLAKE2b-256 90d75c28b05ea773cc5a245f7d68a0d06fa2210bf391032d65afee52f8010b67

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5e8805cdad003d2a750f2bcc74dcd455549582c55534e2ca78f9d83fbfa79c3
MD5 86b4ff553b87c750d519a06a1ccdf872
BLAKE2b-256 d66d7a1cecfd8e7565413e003279d7476b01e05935e63eaf059e134cd35f0b84

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b214e47f7b2c87e18731747ca3690959293c4be0fa91cb7248a87b7d7fffa611
MD5 fd9dbfbac2ea4b345d53fcd0c79bb286
BLAKE2b-256 c268148505219ddfdcd2666a94dc326eb2a0800fadee91d297c4a09365d0ece7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae6acf5b62f3026966118c630d88a229c34dfb6d1338624685bd94a8a86304b9
MD5 738f45aacc0e4e62f16a118481d6cb0d
BLAKE2b-256 b5467dc1752cb009ee5b55a534f9a9af42f4309dc11c518ce83faf1bc25646e6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2bf001b918da1355643ee0a002a4702d7ed9597eb8b99d298dac807eb9259bb
MD5 e0cf648df33cb03f42655a4e617aca17
BLAKE2b-256 efb1730ff97a2b0e361c3edcb2e0c4e958a70bf9594a5a38200f7cb50f1fe394

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 94cb91cc17ca7d1b96bb0cc5d66b90faffb3135410df71cbebb9690e66417214
MD5 005ab31ff0ef1f2b6e88419475f61981
BLAKE2b-256 c078007f1c3d35662b79c9182e0c666006d0b86c72c63f43d93ba84bb895d407

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 cee1078c3a2521b1ac49027cfd9b1ec63ff5dd98a36da933e14910601caeb213
MD5 7cb8483ee7925239c91ce979eeb5ff9a
BLAKE2b-256 0e9ebc8643d55fb31937282922780d084f19a9b39f85bfcde92ff0dcfe2621aa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c95f017a5eaba8e053072b09def85eed2ad2c4c4e997e45b6a2bf8ea813edc9b
MD5 d79a640f058f631d4e22c3c36ec76bda
BLAKE2b-256 b4058070e826cced236dd5cdced8e383bb5fa992f83568e3add48b232e405412

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f39209f2509e5ceb51673892951e6850e986e6689423575d0588b91e77f8e0a5
MD5 a746c57099750f3fb3ded6de2a4d8ee6
BLAKE2b-256 5ae2280492a134a9ea804bec0b7489af4788e89b8afb880b23da01db9c1cac1e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.23-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fd6b498ba25541cfb1b3eb8b2c2238514338154ae109d3fcd53de1b3eff7f662
MD5 491ed7da254800cbe1f4534f01cb3afa
BLAKE2b-256 d7e8681c1fc442c22b5a470d15fc3a64cee004d0c08bda4a55005be6476fc508

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f68a8df1928f51d20d62a41269bfd80c6b9de3202eac63b769c89502a01f2916
MD5 8baab5a87900ac86932f8e7cae419013
BLAKE2b-256 6503e5947d961ed30e413b3dfd9bd81c2d2b26237bd5f36fbf852780e29ee60b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7de81fbefb4002f10479bf903c8298159bd6c525c415cc000b7c8e245948f7ba
MD5 e75dac53ac4d4970b545e3847b041f72
BLAKE2b-256 a5c2040664c59fd07a6d289cf146d23c50ed74fec8eee47905016d1f0ebd72bb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-manylinux_2_39_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-manylinux_2_39_x86_64.whl
Algorithm Hash digest
SHA256 8f58142c547cea2e96ea62b13a0392ea4030c59279d86895e18c225af9f02249
MD5 f4ce4aa75839c426c3b245a216785b76
BLAKE2b-256 fb06c1c8c65016caf7cd9c94eee9bdc600a5f28c26ab198aea0c3b2e7457f612

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-manylinux_2_39_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-manylinux_2_39_aarch64.whl
Algorithm Hash digest
SHA256 495a92de162a025ad5a51e4f4276aa25a9359872975206eb6e8be51b730d0e7c
MD5 790b0deed47eb172cbab43b23a133410
BLAKE2b-256 87229bf0404ce8b87104f66e9a4fada817ca818c86b3c2233b1d21fdab1ef5c2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d405252a036f517d85f3f23766aab4477c894e71e85c2a242d092bedd9b672fd
MD5 d240cffd91fffffc721d52aa6795450d
BLAKE2b-256 6fe914e41584e3fb3c2c6c5e6f7691a79cc83b46a42f359d9991664016245dbe

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longbridge/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-3.0.23-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.23-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 884eca3f3369d1707a69c7d232871f2baea50331e969c7262771998454274783
MD5 79d6997d4446e1a814ea5694dca53f90
BLAKE2b-256 b98119f209f0dc6bb43240e2b93e4882c11bdc15eb0cce90ebd0e4c22e33db1e

See more details on using hashes here.

Provenance

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

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