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 invokes LongPort OpenAPI.

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)

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

longport-2.1.10-cp313-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.13 Windows x86-64

longport-2.1.10-cp313-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.13 Windows x86

longport-2.1.10-cp313-cp313-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

longport-2.1.10-cp313-cp313-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

longport-2.1.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.13 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp312-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.12 Windows x86-64

longport-2.1.10-cp312-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.12 Windows x86

longport-2.1.10-cp312-cp312-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

longport-2.1.10-cp312-cp312-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

longport-2.1.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.12 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp311-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.11 Windows x86-64

longport-2.1.10-cp311-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.11 Windows x86

longport-2.1.10-cp311-cp311-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

longport-2.1.10-cp311-cp311-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

longport-2.1.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.11 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp310-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.10 Windows x86-64

longport-2.1.10-cp310-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.10 Windows x86

longport-2.1.10-cp310-cp310-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

longport-2.1.10-cp310-cp310-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

longport-2.1.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.10 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp39-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.9 Windows x86-64

longport-2.1.10-cp39-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.9 Windows x86

longport-2.1.10-cp39-cp39-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

longport-2.1.10-cp39-cp39-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

longport-2.1.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.9 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp38-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.8 Windows x86-64

longport-2.1.10-cp38-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.8 Windows x86

longport-2.1.10-cp38-cp38-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

longport-2.1.10-cp38-cp38-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

longport-2.1.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.2 MB view details)

Uploaded CPython 3.8 macOS 10.12+ universal2 (ARM64, x86-64) macOS 10.12+ x86-64 macOS 11.0+ ARM64

longport-2.1.10-cp37-none-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.7 Windows x86-64

longport-2.1.10-cp37-none-win32.whl (3.1 MB view details)

Uploaded CPython 3.7 Windows x86

longport-2.1.10-cp37-cp37m-manylinux_2_28_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

longport-2.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

longport-2.1.10-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

longport-2.1.10-cp37-cp37m-macosx_10_12_x86_64.whl (3.7 MB view details)

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

Details for the file longport-2.1.10-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f0d11ee526d0cb11e6346757a80f885c76ca978b2f7f87ab047c4945f048361
MD5 6772a1dd0f4274df42d455f3bca1da9a
BLAKE2b-256 0c743dd9147e70b10677226d5b1350d46e5b0c0e174955650646392f5fb5a33e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp313-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp313-none-win32.whl
Algorithm Hash digest
SHA256 0a5bdced43a2cd61fea4212d932095f295533eeb7bc68c92821008a7d66e9a3a
MD5 5ec24a01c1319f16a36497ac4f6a9c05
BLAKE2b-256 e5ca227ee53304ded35ad1aba5989cd85a6f850a7ace1f340ff95bec5a6cc020

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp313-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d9a2d209972bfc3a70da60c8bfe716423e4bb31749e1af285b44d96722ebf7d2
MD5 23a24ff4051cd2b3a1187a15a5237b26
BLAKE2b-256 d4c1872e63056ffb7e9b23a1bb76e52181cf55280f47032319dfad089cbb3f68

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9bced11a941785c80e94c4a5211a4e3ffe12f0731e12e1edb9bdc7871a874a12
MD5 d79ef1dcb9b7b8b0199a795d057388e3
BLAKE2b-256 1b71f506d5547d4daf52a3b33fafa60e13e1eb48c3506ba3e30611d3c4b86d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 654106f80a586383d137c21df544b6c004e679bc2382960b1140dfe996125d6e
MD5 5cd0fc2c8c60ab79cb367a2fb7b984ea
BLAKE2b-256 f9c67a4cbbf7f93d3e3ddf631c161d519059edfc0faaddb7e6cb306b7c171db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4a60e9f0f4c3d3b47cc1c53861875edab881f20e8955ef0f548d0b037ead24de
MD5 c54475f68c40190fe0cb909e80a260a1
BLAKE2b-256 55ee5fcd8dd4c3a1cdf1e17e1a2b3dd05dbb8d993747949e1866ef536a6814e4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7f3cba24fe7951e04848b3cecc635dacf2185bda00e253c45b4fc38d3f5ab183
MD5 c2bf7ffc04e130bd6dbb36f2f8436a68
BLAKE2b-256 47909b820af7fb0dc90bab18532be3abf8a5d7db015f8ba7feca29dc414ad1d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 90fce84b23276bffbba5ff56a2faf076f0bb2b135f111c1340af00b7fe47879a
MD5 1e48f538033b949cf247b07f4b1bed7d
BLAKE2b-256 2511fdb3c399f2f45f33a60d9848d06d48d9eda45897518d82782f70eeb2388a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp312-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp312-none-win32.whl
Algorithm Hash digest
SHA256 28798cfd95c758b66851d2202332a726c3f5f0aa1a3434f3eeadde5dc96f790d
MD5 cdcfddea0acafbe26a600eb70069741b
BLAKE2b-256 6ba352eaac4f44d622b04f0cd15e37c9706b0e21fb4deb62c9b26d1d275afdc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp312-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 682bc673ac8c9149edca473c2c94abc2a5069417a4e18446ced0e70d59f35e54
MD5 b7f66d12624893df75a619a124bc30b3
BLAKE2b-256 66d1d270aeffcdc8aa3568458c1288cd2c90b5abe042c72a402a15467466fa8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b91aa3943fc3eabf0269aabd31879cdbb1ee7d9c6ea1045785a077465b94132
MD5 6951b5771cca4ee648e65b10898cc477
BLAKE2b-256 e4752c9aa1483957dc54b01b77d8162ec504b119297d5af3debffc16a14a5fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e35c4e3a6677271e0b75873386f50519d37c0e01671d9b871348dae4bdb2763a
MD5 40c68a5ede5370bc1dfe726e7f0017cc
BLAKE2b-256 ca69d5c8ad640d5fe0e03375fc990c2c159c7b1a93a196fbacfd0b3ba1c4557f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7eda69877364dc866224259a0fff81c13aac507295263f8b20d9d3dcca8186e
MD5 276a8540323ed20e0c4abea96fb01a4b
BLAKE2b-256 4f0c2428d45c6ae3ad6e339a79cced89c14dded761ce99cebcb134120c3dadcb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 1b215a6d90d1990ab3ff8f120b0390f705134878970c96279254c9d6d320dafe
MD5 4918c2e3c0c3120ee82f223da805822b
BLAKE2b-256 9e7514f27d9a9e734b17afb42273c696251375318384233cf5435be9071976f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1fbc9bdbb250731179d2faef044d955019fc30a424312442c40c552b24eabd2b
MD5 06a3576b0e4e8324b124a74ccac6036a
BLAKE2b-256 789d39862a424f086bfdf2795646d5bb6c29d3d273529db8885298ea02544cfd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp311-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp311-none-win32.whl
Algorithm Hash digest
SHA256 622a34db34198dc6b4c552d0000b2b825a3ac04ebcb3f7c3e0cc353e2f95ad9c
MD5 09cd43877f96fc7e13ccb8c6d195da9f
BLAKE2b-256 1aad73e0eb4e3f269b19ab408d897a84af61293dad0d69b503fd96f392cc7b96

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp311-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c88307346da3c049f2899c4d428e3e4a64e84305c8b76b1e9fd2d9d1ea976521
MD5 ae3156667910721c5a8bea351609aaf3
BLAKE2b-256 820415725736b91b8decf1115b4c83995fa25aa7596111db3cd9f1b0dfa0282e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb09ef0af915af10673d7fdcbf5afa48ff2b4681878dd7f86e0e262398505ee6
MD5 571eaa40e3c9958bc28a3484e9ecbd36
BLAKE2b-256 28ee835eba367ec95455af6141d0ea2b223ea08b1f77caf648e95102439dce0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0deac073950477acc5007fb50532b6b008f544cce5d99ee2ce397332249e0286
MD5 fcd8d2b8adf007ef07b36448cc72c582
BLAKE2b-256 1e4e0ebe926baaa300f916b585c9e7b692ebbba65fa3f4d3b3addad059dcbcab

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 851d2fd019a82dded89b597b7e96810a5b29095c64ee6cc11b71d4c205f412ee
MD5 3036d13755bddf3d53374879ee3fd55f
BLAKE2b-256 1de1dfe085932d05dc6cf1d3f27c6adf8a6775a9727ae944f33e12b1e5aab85b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 a2125b3ab5b10803bf6588ed9bb80fde733cb571ac7dd5dcb81ab9ffda4ce5e9
MD5 9a944030ccb86941cc2b89fb4ca9d5a5
BLAKE2b-256 3084f38557544f3d93e08f092003943c71c3cf453850e2c921fd50bfac540c93

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 780e5f93077f70c0f8883c045b94cee78cedc89e08bba6a11f45f77d709a31bf
MD5 43fd186ce4e19860b257a7385cfcffef
BLAKE2b-256 fd04d82e4b57002790dc9ba622e3f1d8552254d389434fe814f114e401993172

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp310-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp310-none-win32.whl
Algorithm Hash digest
SHA256 877ee371776958b48b0c619f55c566e6527065ef543863d296f201033e6c49d1
MD5 630c5371e2650d5c65ee77cb947549dd
BLAKE2b-256 1bb244f4be49101aba9d6b506f9b1a273704facb4b7d37281489e130b4c72727

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp310-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86ca5047b1262d10be635f492c6e432e7b42a10d07043d88b9ecbca63394e003
MD5 a0905a7d1285c8d97b7ef410756585f2
BLAKE2b-256 3c80bf2afb5ce4a62e670f6c67c58c6f00fa121660df7293e337542b077be51e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ef575be08f9dc2614249768f06ab80eaa525cd4301d892bafaa2f5b3573e8a8
MD5 791875bbccdd7ac25115d9a2c8956e85
BLAKE2b-256 ba971b01572e68cf929afad0af9dd4cb0320bf2da4f0bd14817e8cc265dcf3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 063ae64ce61bc63fdf449e11ce09da1dcfa31327bd1b966d355b004334741c0f
MD5 2946e2e30bcf87b335c2b171d4689748
BLAKE2b-256 c8058186757cfa06240b850b17e8b75e7d16e07b5fdf9304acaeb7912a47a1ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba8f42cd4ff5aaefb1800253b8fff4f17ff19f126421c7f16cdd1fad3df5be10
MD5 5b6d4ba98e64a855a749d3701198055c
BLAKE2b-256 b8a5d4b5c64408d2e164949c64ca13af3d59ee996f0bad09c936ff8c996573a3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 70a49fe29f0f6b86955b0976b291c85137473ec86267d524fe15ca7082b9127d
MD5 2982d68125859f0386d0c04122cd2dce
BLAKE2b-256 4c931d6f45ad0a58e92e77102179820c683ccedbd11d06a78b56aba0f552cd76

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-2.1.10-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 45082f976b808e06b074993a033e233ecc9c960a8fe5cbe6f8099d0a63edfa21
MD5 2ac315a9662b1b733159d12373c39d12
BLAKE2b-256 cd290308caad8c44dea7beab3f08238807c43fee235292a70580770ea4d29ec8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp39-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1d6016c6e9e3daeda2b900862659eed5f5032ec5f89e157dbfcb950b7a56c525
MD5 0b16f76261387cd20b440d94c7a34657
BLAKE2b-256 c9df7b04188dd2218ee7fd7948f84d9a47b417bd5c38d479717ac2d288a6a930

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp39-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccaa681cf9b34d875ff0c2c8b871a1fabf5a773e6b138a2c402ba2d390747590
MD5 4e9c1981c945427d9c8f88348156a2ca
BLAKE2b-256 4d7dc4589e71a5b4cb584f545b35fb6645c124890c82cb5c3818e04be08e3975

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp39-cp39-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec8254c17b383a9705ccc5906a506c4252ce16b743a78b72ccbc70cb35304618
MD5 cb0cf025da94163b5b661977a3947c98
BLAKE2b-256 ea95ad4d4fef9d17fb8c0a128ad280355dcd97e5fcf4d595bad92923c0edb157

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9a5d1954a65954dbb18ab1fd38efc28945dfcc286e33e0bcefba7f7af4e3c57d
MD5 acfaa23290308e96d4449b99d1651b55
BLAKE2b-256 5a1614dc30d1034579107b7cb475a20daf805246d02b46fb4f1e1cd3d613dae1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf355b733f4dbc4cddcb24768fb8a6ff674569e4c105df00c567c42266cd3545
MD5 28faf34fbd0c64eaa8a88a1926b5571c
BLAKE2b-256 bbd72cd730cc5658bb429f8f76b3d708918a353d168c49eb6bc30ac2221fca66

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 d6de8ca5644987e8a0d79a10c28da4af85c94f9c5ab2d188747822e8a651c170
MD5 450cf6ea17555369f66261af4cd30d4a
BLAKE2b-256 f3a6b86e55e378c0d66a3a20c2d9af539580f67b9d56b1487fe7c70ad78a6acb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-2.1.10-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1ba2fbb87f054518c8b4025c4ff6c10cbe77e22b7c0c556e4f4700e67afed280
MD5 6106ba57f5ea02ec48b040585674801f
BLAKE2b-256 aca4dacc262a0b5e7c4504f85a896be27c4367346e098a8f13f4cf5b3ca23a8b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp38-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f77ad1cd330977d67c51aefa6f745dc86505cba0dda615a8829baab5c40b41c1
MD5 0862139c8eb420a728e41b9bacebede8
BLAKE2b-256 3e2b44253f93e894a11eb8b028397d7f59d7cb0a3b30510208f8cedc026a5eb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp38-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 555163324fe61d02309133d14c41060982d40b07da6b8456dd0d45c4ab396720
MD5 26765853110d377d514b94c866def5e6
BLAKE2b-256 f42e37d08c5f287dba07ce59b040b0a3d22ec291fc6b49c934b0ca655dec1510

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp38-cp38-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a00a1fa17693352f28208df9edb50e1fd524c5aaa356f4c7ceccd052b26afcec
MD5 5e9d9034c83ea529cce008ebcd316468
BLAKE2b-256 93c3fdd6cb6cbcec5bbabd3b10c49bc63f67e952a547391e9c8f7f92d27bc53e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 883c427d8b94061b40cc1f2620cbe62b75549b9057f59431178bc990589ef6a0
MD5 9189cf46ef5ff62713f8a1f185944ec6
BLAKE2b-256 f43b5d75b89c69997dfbc5cfd726084cc0f628d38d825c9b1662117cc0256a47

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1986196be3f0fba6411e27ecb88afa0d215e3516f8c1181da64163a114a943a6
MD5 7f22d74f51a89e90418156d432f47edf
BLAKE2b-256 0446170266d296e5fe101f02467d40d850469647f2ad0f877e54138413b8498b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 13eb75101021730d834f11ea8f205f9714af901457eca8a6e3bdb69ad5349295
MD5 0b0596444a3dd886242ebfc9ae3eef16
BLAKE2b-256 8d13cb05d7de5fddbe18256993adbc533c3797e15b0b5500154af7f547f6c14e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.1.10-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1f22beadea7a456580234c10120105db78b6424770f4d89d3714bfdafb3bcd21
MD5 2e718e763a8233b6d0f2f2ca56aa26a6
BLAKE2b-256 69be363cc49f4c0a148881580346268cf3817f2bd67d5ad247c2669b9ea87ae5

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-none-win_amd64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-none-win32.whl.

File metadata

  • Download URL: longport-2.1.10-cp37-none-win32.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.8

File hashes

Hashes for longport-2.1.10-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d05f4cdfdd37d3f1cfcab6b67c95f01c8aa897bcc27a3038eaf122ec991050c1
MD5 4a1056df578ef5481257dcdba9b025fc
BLAKE2b-256 e407534ddad5d69f8cc826ea0dc98829ce0c75220dce99705f13019cfd2a8932

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-none-win32.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b5fec475d557bfffffc1dfd7b6c12ebdb31e54b11de958cd589d1e091973cf8
MD5 454a49c9516af1d42c2dd50f0658950e
BLAKE2b-256 7459ef83e8c909a5799eb26fcbc4a87390732b8875d755d596b0e53ca17b9b43

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-cp37m-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6dfd35f6c5f9710b9c7bf77fdea413ea8c8fc2a7655ff3e45d3d661980e9752b
MD5 e22b13cd59d5cd23b772647377834e03
BLAKE2b-256 32eadf8df47495e176148139b4c1f3f885373cda2301a711dec9fde3dc252a5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e94bcb23af4bffa5c9c5ad07e858d732c209807a9dc356fe0c3f48e0769b75a3
MD5 8bfe7ed18ed74b884dbc38e3f02b32d0
BLAKE2b-256 2d3e435e3693cc3827a20c3cd2871c8b84f2336a1f65ead9e6e070be9ce2a1cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi-sdk

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-2.1.10-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-2.1.10-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 147b6aa6260d6e158127fe4fc40b0b7647fda2a64a53fe57715fd81945309ece
MD5 00bb90aa71a1184ce5ed507bb7b2dde0
BLAKE2b-256 2e2b948146f3fb9d295db9ab1850431835a98c26c1aece606bf0c2ccc0a191b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-2.1.10-cp37-cp37m-macosx_10_12_x86_64.whl:

Publisher: release.yml on longportapp/openapi-sdk

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

Supported by

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