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

If you're not sure about the file name format, learn more about wheel file names.

longport-3.0.18-cp314-cp314-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.14Windows x86-64

longport-3.0.18-cp314-cp314-win32.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86

longport-3.0.18-cp314-cp314-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp313-cp313-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.13Windows x86-64

longport-3.0.18-cp313-cp313-win32.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86

longport-3.0.18-cp313-cp313-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp312-cp312-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.12Windows x86-64

longport-3.0.18-cp312-cp312-win32.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86

longport-3.0.18-cp312-cp312-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp311-cp311-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.11Windows x86-64

longport-3.0.18-cp311-cp311-win32.whl (3.3 MB view details)

Uploaded CPython 3.11Windows x86

longport-3.0.18-cp311-cp311-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp310-cp310-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.10Windows x86-64

longport-3.0.18-cp310-cp310-win32.whl (3.3 MB view details)

Uploaded CPython 3.10Windows x86

longport-3.0.18-cp310-cp310-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp39-cp39-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.9Windows x86-64

longport-3.0.18-cp39-cp39-win32.whl (3.3 MB view details)

Uploaded CPython 3.9Windows x86

longport-3.0.18-cp39-cp39-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp38-cp38-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-3.0.18-cp38-cp38-win32.whl (3.3 MB view details)

Uploaded CPython 3.8Windows x86

longport-3.0.18-cp38-cp38-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

longport-3.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

longport-3.0.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.8 MB view details)

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

longport-3.0.18-cp37-cp37m-win_amd64.whl (3.9 MB view details)

Uploaded CPython 3.7mWindows x86-64

longport-3.0.18-cp37-cp37m-win32.whl (3.3 MB view details)

Uploaded CPython 3.7mWindows x86

longport-3.0.18-cp37-cp37m-manylinux_2_28_aarch64.whl (4.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

longport-3.0.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

longport-3.0.18-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (4.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

longport-3.0.18-cp37-cp37m-macosx_10_12_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longport-3.0.18-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 7ffd0de73df196065acef226610fb660ed81929dc23e734b268acf4bda8c3c7d
MD5 055188634de7833ec05e4e71e877d840
BLAKE2b-256 39ed0be38eb5ce182bdc51ddad8c130016477c61a301dcf7a44b69140b2990d5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 34f612ccd1b95095677b8a54a75fea771b35e3375a4ea4a71363f8da8a9eeae1
MD5 9ae4c432e4f0873f550961e5f0e2f6ea
BLAKE2b-256 bb4318c47296bbbe26a41e8b821b7583a9d32c51c06292243fd8df2973e870e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp314-cp314-win32.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da607070555b1ad5b67cdcb88889ea678bc426967e87744a300e1ba4211cda7a
MD5 eca527f3b8bf6b7d5d7de7b8b6dfd71d
BLAKE2b-256 1cc4207aa32a32cd4af2a8e6e61ae911b5c8269f19413c303e192b27cf39fbc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba93c5bb5223766109afdebee2e86c95cac0082c6925b930f6e2cb8079c137a1
MD5 6dbbe3b1d2fb26b5166192f44c55442c
BLAKE2b-256 49202b3fdf8990f3e66bc045ccea303b9fc65aa1635ce714b5e34e17e0076fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 214b43da3b29c4f2ba2b14843b3edfcdf401c786a85f0fb295ae514155259ad4
MD5 b7f884482899027b9d6da409b285e911
BLAKE2b-256 4014f047aa0bfcbb42bf5e86afffec9c9534116e8053eebd46eb181086566bc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1f82ca72caced510d0526ded263d8149729521abe203daa4eb07bd2caf5c792
MD5 a0a40af0485a91cca186065470576dd2
BLAKE2b-256 35d8308bdfccba21d1dc37bbfd09b6f8c0fc2b64f5ed5694bddb1cc9323f9dd9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 5310fee1b6d9c50445b4d9ea1d08edb32879e2dd91603e6d6c08e3375a6eac78
MD5 25880d3845e05ab080138a5c8278afec
BLAKE2b-256 4cb574c05f1bbbce3db8b9d53c691c7401bec3a655d9e153cb6562f236ab607a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 595e36dd50f7056dd3b3da65d68be59af2b9940930e8d7a93e05490dd4145639
MD5 9bc0a254d00b4624cf543ec6bd2024c6
BLAKE2b-256 5ec26b9bc28256260682dd5cbf1edf34cdaa2be46915cede524b7b6ccc3265d7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c8cfb435726eba87bb4b49101a74f6c5d58feb5e35104269bed34aa6be67495a
MD5 dbd2b3a46b390c8dee0630a208042b1c
BLAKE2b-256 94f0e8658e5e853b2d93654fc3d4420eeef47ac37cdb4ec87438d11631d5697c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0a053301e0749c0a45d5cc43eb89f3405f4ed8cd73b38203471033f64e656a64
MD5 eb43c8fbd7648c782b9427b05cf67d61
BLAKE2b-256 b45b3475ec713e655ab14c45f62f99cbb106b7356c265bac8b8f986fbe149012

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 866abe73e8db48ac20847b1e186ab8cb0f59c310d723e8c8df90b005ada3e0c9
MD5 6af70d4c164efd643455122e2aadec14
BLAKE2b-256 2293b06a320682acb66b9e4c642da21804833c1027f0d6b4775e0a2d6b375656

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8eb26de09ec019081c5ef543e200a1bae4e072e12f870e934f5bb1d4e547e6e0
MD5 752170e3cc96d1f3aa7fdf7258660f4d
BLAKE2b-256 1c45c95234d2826d71fdf4e2634c5ae1baba21885a859d53fa82613187e53c13

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 01b5721e37ce13d30eb337744e60ce3b6ba0fb8aa182cf8aed237d614dffe55a
MD5 f309fbd509084eba1fafc29d3f93d579
BLAKE2b-256 47f6607b409be694c2ba37503cca41a0aaab472cb3ef0880de1ba475728f9d73

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 dfbedc640e52d979240d8aeb90bf44f8eaf27de2156ae2936f0cf17cb14fdbe4
MD5 276fbb1b78c183545c141c05d3be5d8e
BLAKE2b-256 fda6ab17c7e72426ecd2d1e51c45bb3fd06d99d961f19ecbf3977d8d591cd524

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02db0dda68fb5f818b917de1f2c0654779a5e76b15483a4146c4bfbe8cd93e8a
MD5 a559df4e0d5080704e4ddde192743471
BLAKE2b-256 f67c1a794ddafb74bf96cbf88db73ea13bfcbdac5f86acfbe78c11bcf7785109

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b34b8396cb866b2d9a5506f3c427a3bf2d712972e7ef29cd8915d0881cd353f4
MD5 0e22b50b5138a64d5d42d061dca8cff1
BLAKE2b-256 159570b96357b210ffcd86827401d55ce38aa99ac461079f6fd97cfaba99e95e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2011f6a8a5762b02de676574160596c1d54954e459a6c7437fe8d9688390ae95
MD5 467bde2575355b66826b60c20fc12a01
BLAKE2b-256 c3d3230538734148e6c44e7db09871b26342c8d8e1203b4f1b203c9baaca4ae9

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d458ab5eb2a38f2df85803f9a3aafd93c382ba37602bfef231ab68544d4c09d
MD5 21d63e515243b768e828747c8475e3ef
BLAKE2b-256 697d8d74a6600a097e0815296110027e0ee614607e974ad81bfa6e94c157aa6f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a2e1de8172b47e2e8068744d30590fd6c5d0f6712b8f71dbd35f8d9674cbe689
MD5 18b473bea69544c75c43d29cb21e2c4a
BLAKE2b-256 4f07cfc9a496b323cf1c1b30e275f5958b56cb2114f6fe135e21d91d8edd7471

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e57f0c646c5598199375ceb00ac00aabec68ec15d4ad0b57e83ebbe789adb90
MD5 d427d8df59a8e317f491232e5424e37a
BLAKE2b-256 77ec6b085cc7400e4649db92f9ea46fcfa314c0870d070ef17f6c01a2b4bcf20

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 226653d14558c648931d02205b6174e5ccc664900b7dc78e18aa87896b83e71e
MD5 18c28eda30e7ba552b02bebea23e254e
BLAKE2b-256 18077ff260da30c9454459b629e0da50d3a9836350de5e723b782e4b79d6f565

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 096bc24641c3ab54a5a655338c3b1cb0839686ad2d3f25e7807ee286e5a51994
MD5 679e3cb97915f553d0c27dbc422d7891
BLAKE2b-256 5ac167354b960c6a16723eb538620e919809592e35618aadf34c834d806f85a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b2d9ecfbc8c5ec26730df8ac494f29ed76f8ad907412b2fb5faee2075b0abcca
MD5 1ee10441b1339f45826596d9ff7f0d6e
BLAKE2b-256 83a56a298c88765d6fd87aa180b5e527cb55b77011385f88f79b53235ce4799e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d2beca032a7535c3f07370e60f400927e153ee6f9c6d5eae81f86e3dbf0090a
MD5 4ffaad26f4c99ec799d027e016bb974b
BLAKE2b-256 f4cbc0f472cf7866b2a4916d0a80892f800c44d05a7f4cfd0fcaf4e6cb6fdee7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c70ee4a7134b83c94c50d2fe4bba5944ccbd81c59c2bd9999a37b7d9c1d7d0a5
MD5 d916e99ac5f15ab9642465cc41d88b50
BLAKE2b-256 0c5df234623700b97dc85accc225fd5e3eab0ff45243e3ab4b20765a2995f1de

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc6432a111f3dcbca8205c4a63d613c0a76da7a8e4efa666831420cffe1a19e0
MD5 a144c943ebc1b16112d8b221a9cf309c
BLAKE2b-256 135f8ca82f1fa2a09380033457311361183e3a1cd5114d2cd6241b866b5e88c3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bce72de4604d39303586120ab21bcd44c50d5bf3563514fc01ac3940feb98c6a
MD5 39a747e3c7a16ec19e628eb052a92e62
BLAKE2b-256 ad89613e36009d73fdbfe54bd8dc31257ccc3291f9112c4eb30accda81a78594

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2c3eaa72b12964dd8fc44a0ac62700f7076b8d4a64bc21acfcf2af0929b9122c
MD5 e7c14d7900dbc67a63d98fbbaddaedeb
BLAKE2b-256 8a1dc43538b775aa639108641bf62e83d0f923a3d202dae7d3246985e96d4fc3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0270359fc23162da4dff08b4deb24f6ff2123740406941d4b939b4f967cf1979
MD5 02baf5fdcb97ba1db742934f6ada901e
BLAKE2b-256 da4771a4c5384a677758c023e9b4b878f4b81be009fae416810cfc37fcb4072a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3cbe2c37fa3a524c9edff4cc0fd73cf6dca6f26757d3fd68d4d8b9148a0cd864
MD5 b25aa024296f6351e7dc426cd0280cce
BLAKE2b-256 2ceaa93f66f5170816fe92f115ccecf0ae7e1e20659964af5d69ff1d922ed969

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ca4e98f4d2938b95d842719e8ac7cad4e5f3a52c43223bd6ecd3905181dc06df
MD5 623587791aafd9b9bd0f37c3b677e743
BLAKE2b-256 c3a1ef21e8cb2019966bc5250396cd60320b671505df9d3cf822116d9f6b608b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5f0efd73fba9fe5a42b9ef68028b50131875161364806c25763036f661eb235
MD5 836ab8bf14f59b63794507d2097df937
BLAKE2b-256 be12d03717bfcaecf2515a129c363f003cd804c4b0ed880b6dfe5e1f2cc78bc5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7a71752e7e48beb616b9281f8156edc4aa01e73d16655e240f143726914f599a
MD5 882c879d72d9383e08554abf559c2ed4
BLAKE2b-256 fceee439c859523b8aa7c676ba759134ca6a5df3e9f25859e544040ca8c8a661

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 194240153d0e3bd3cb723ffebb0b0290a3136d1667772449f3b9a6c5eef6dd97
MD5 b48048809560670567e81c8884200a64
BLAKE2b-256 45c8d06ee9a39dd5cc1dfa4002965f43f9db64868028488e7964ccd2a348e356

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 515c61d6b767720efd56216de783e6f6ff04bfea21ae4a6149eb2ba0335e22b4
MD5 ab7bcacace7784c7954eec88ad13fac2
BLAKE2b-256 11dc4f0979147f97753098a20b131899871eb4903a1feef34334869bb2617d01

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 319f6138a6b1c557453f1a77c2903d826c4b41362d6f523c88bf56e28946d9b9
MD5 710e49bfed6dd0bb51ab3b59d6c5c7c8
BLAKE2b-256 a25425c60a6fc0a0a63bf88c9875123d6b529cc0e7c559df21c0fe5cd7a4a3e8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 df85ea008398c86a45f64bc84465d4c8289b9ca22ceb3c68d266290685465917
MD5 b372367ed39d63fdad0bd428865556c1
BLAKE2b-256 c1a27cb3378db076891e5d1bc4f4c6d7d3edf5e2ecc4393e742dce0e1c0821c8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a7266072733cc2a38357ee5adc42dfcc839f278bcafce31ead5c282bdf084869
MD5 5a81182d294ae45931a59627d3900d34
BLAKE2b-256 dd78f164bbf4751e1939067d69971210c6599137cb44ed52d85b31afaa462d16

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac88a3f4d2b21ccaf1ec6c78f71c41853187919211720f9c0798dd6f6f3177dd
MD5 fc80be43b89580aabcd606398ea53de5
BLAKE2b-256 d640a00f2f255dfc2998cc368f36cc3f1c642ffd9fe9abaf3104e7a7da80e967

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 debb19070fa693d4f2b253e95150d4d148752f91bc5bed579b024f67871e4752
MD5 59a0384ae9dbe0cd7a722e3d9e337346
BLAKE2b-256 e41bd6054deb8a050f9d9b10d4eaab07070b24d61f54ad3787dd6e85307f7e79

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7999b845a407f04dd8484df66e8d13a870a0603ab71d43541ae2abd28e0c27a9
MD5 4c4ea0a869ec0cc1ec2b5c54c8e0ede2
BLAKE2b-256 3a3dd17316ba176e98a5c9e0c20a68d2f10e6db5f16562525d4aadf3bc145602

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c9655f3493c74bc12ef42b2b92dbec6c80d7976290f633b0aa93c7d94202996a
MD5 b334245f19f273117223dc2bad713a49
BLAKE2b-256 5bfb55e54bed89d48b581f593ca47523e8ef988d8f53ed57ee9b6286a0690568

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 3.9 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.18-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 4c4dfbf66a46bd7c7dfd033270b71da2c7eb4fedfedf35ccf7d3eaf95bd06dee
MD5 2d64a3cfd03fd074ac55cf117506d0ca
BLAKE2b-256 a1593baa44f47a5b00f429e103dc8e7c98efd9d159b19a227005f6684c9029dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.18-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 00313cfcac1cb476150f9e6e5dfc206f68390aa7c6c5fd7d674f1e22f12f020e
MD5 9a47524f4b5bc039547510dab225f3e5
BLAKE2b-256 629841dc6c290b69c1ed933829837b9c2e080522e34015e0d62fcdc5100bca78

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b2a9f87494510c9e1934479a30ac7a850c5bb0dfa7038c163dcac4942d96fd25
MD5 f8cecf44be8587b6fd264b39fd2b0035
BLAKE2b-256 3435ad27aa68ecee840cee051f4d817298162df99ac404bcb4906edba26afd46

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 305e273d76b8031628abccb6d87e2db3b90afef23d838a7e292bc64e12f16678
MD5 2a2aefbbe0860f51cffbfe62391fe13b
BLAKE2b-256 d2a38b9759419169ccf26818f37d79fa286c6ee194e8a1e31d13edd7d5a1a2a2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9fe6b0794af403a0cdb99036f7deb293b31bb9c467973c2980c349fb26bab9e0
MD5 23758e51551e724270a425fef62f5629
BLAKE2b-256 0a34ef8a9b8a5ab05af6129058505aa7ca125a73860502397583458b60d79929

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2083a6b325395062137145ea8c6c9938f76be3114638d31ede92a4d28e475a80
MD5 a1268ec89e60bf67fcf0c78a495b6181
BLAKE2b-256 fb7b31c9162cc75ec2b2256d19ba40e5b55e8c8524f2f5c23d3f26e186f7173f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8b607144cb19603a95cf50ea3f4098c4700db2dd1f0aed3240ee0df202009a2f
MD5 ebc49203bcf8438c6473a8c72826d629
BLAKE2b-256 55412030e90d1f18e0f9ce404ad5816d3e5efe2f5824fddfcfd69799bd79be0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: longport-3.0.18-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 3.9 MB
  • Tags: CPython 3.7m, 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.18-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4c8384bebfc8806d4f4f507339ad5acd2c7d90afebb7d1a57b961eb0409332be
MD5 1cb1f78ef163b8b6c9982dce58518b3e
BLAKE2b-256 be4f80861b3aecf3b7103bc809ef3b191bd87062b8e0618b229aff8187eff1a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp37-cp37m-win_amd64.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-win32.whl.

File metadata

  • Download URL: longport-3.0.18-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for longport-3.0.18-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 41769f5130a1dc39e4c6e11f45d90fcbf6afcc792c0307cb32aa352f62314508
MD5 e23c2922faaf17d9d78225e1d9f75c99
BLAKE2b-256 4c97f4ff936cc877e2c343df999d0e3ab72babce391a3ecf1afd01cefbcbf9fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.18-cp37-cp37m-win32.whl:

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa3421f8cae434bfff87bea7a382779490c2ef38ba1a39d608ef853918945048
MD5 2c7b63e76e77b57c68065c26165b63f9
BLAKE2b-256 d9c92343ddcdc86bb1d36abbb1638fb5eb13dd25143824ff4ddc76c475499c9b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfe36f31b5c6310f7c6a562afa6874b370a07ef40a0e72d593a942dbbadf6a06
MD5 65fc3cadc42957ab28147f31dd783dc4
BLAKE2b-256 57ddf62301ea012322fcc08bc834b4188bddbb0523473f38e57be9a0909f01ea

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 98c210df3de15c62f69d004bfc26e4cf9a322b93599aff646144cf0931543f45
MD5 2f5f24a79207ca277b7706a23fea246d
BLAKE2b-256 2688648ec07d10cc11faaa3d9a0048299a768407ab958c441cdda73c37add787

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

File details

Details for the file longport-3.0.18-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.18-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 378538c299327b8eb870ce9810dc77e4d0955637a587fb3d87a0e2475c9661c6
MD5 1256e9442fd1decac92c4a96f4331bbe
BLAKE2b-256 45f2c91dcaf79ca2bb9703abdcffeaed41cf16df6cf4540e9cfb53eed1caf01a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi

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

Supported by

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