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-3.0.7-cp313-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13Windows x86-64

longport-3.0.7-cp313-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.13Windows x86

longport-3.0.7-cp313-cp313-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

longport-3.0.7-cp313-cp313-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

longport-3.0.7-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.5 MB view details)

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

longport-3.0.7-cp312-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.12Windows x86-64

longport-3.0.7-cp312-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.12Windows x86

longport-3.0.7-cp312-cp312-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

longport-3.0.7-cp312-cp312-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

longport-3.0.7-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.5 MB view details)

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

longport-3.0.7-cp311-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.11Windows x86-64

longport-3.0.7-cp311-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.11Windows x86

longport-3.0.7-cp311-cp311-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

longport-3.0.7-cp311-cp311-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

longport-3.0.7-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.5 MB view details)

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

longport-3.0.7-cp310-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.10Windows x86-64

longport-3.0.7-cp310-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.10Windows x86

longport-3.0.7-cp310-cp310-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

longport-3.0.7-cp310-cp310-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

longport-3.0.7-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.5 MB view details)

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

longport-3.0.7-cp39-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.9Windows x86-64

longport-3.0.7-cp39-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.9Windows x86

longport-3.0.7-cp39-cp39-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

longport-3.0.7-cp39-cp39-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

longport-3.0.7-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.5 MB view details)

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

longport-3.0.7-cp38-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.8Windows x86-64

longport-3.0.7-cp38-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.8Windows x86

longport-3.0.7-cp38-cp38-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.28+ ARM64

longport-3.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

longport-3.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

longport-3.0.7-cp38-cp38-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

longport-3.0.7-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.6 MB view details)

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

longport-3.0.7-cp37-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.7Windows x86-64

longport-3.0.7-cp37-none-win32.whl (3.2 MB view details)

Uploaded CPython 3.7Windows x86

longport-3.0.7-cp37-cp37m-manylinux_2_28_aarch64.whl (3.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.28+ ARM64

longport-3.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (4.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

longport-3.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686

longport-3.0.7-cp37-cp37m-macosx_10_12_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.7mmacOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 df04049e5f99fcc702ea3f2b4c03746aa719bff1232a25ab6722b548393e7bf8
MD5 dd6a66e00e45890b241e377c5adb831a
BLAKE2b-256 c14c491eabdf3263f4bbb42ccb4131ef42185b878ecaa90e2f6c64a4622367cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp313-none-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.7-cp313-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp313-none-win32.whl
Algorithm Hash digest
SHA256 deaf4ccf86a0917fe82f7a7e38bdcf6e219c7e520d807075a44e1a61e04b07ec
MD5 495dd96654b0e8c55d3a426798c06a71
BLAKE2b-256 7bb3758ca932342cb9ece3a6e3f1c829cf399460c7241557f779f11f18d208f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp313-none-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.7-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6dbeb8afa62c7ea2228e8bfd9b8757e1379a109192e469eff3d32cc2d5ae98f4
MD5 23aa6f662924bd83acaedf8e9f83407e
BLAKE2b-256 8a488cf175aa8b818ccd0156c6dfb5804c3c1499b8b3f020e6831c017ec1ab0f

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86de8db293ca63a4c47600863b0b5e6ffdda5ad77ebee8680c646ad824adc76c
MD5 cd5fb4dcffbe29ef2fa1c915cd45c48f
BLAKE2b-256 243d85727f4704b72bc865b5d46a5041008eb5696e58d18bdcd3263329f0b34d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5d4d1aed02a5252c937ec6b03c46f2fcded5a7d83b3e6c9df3bf47a203d2cc6d
MD5 3f884d1551747056132c94ae32b22096
BLAKE2b-256 317c26ce0776023f6b3f2337999cdd9c4353d25ecdffff7c35ed9b06286acbbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cd0e63edcc1401128cde1117436e6ceb0bf7cb0a395ee08a6fd2cd5d2b18ad3
MD5 f3a9b4fcf6b605955f5fe0636effeae6
BLAKE2b-256 5871dd4112fc10cf5d73bbd50c5c057d3507f82b9e90706129fecd93e3cfadd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4b3355c671aa7e78327b15bbee8ac28401be43eabfa32219ba3ceceeadf8b4be
MD5 d545a70947d103748b4222136cc7716b
BLAKE2b-256 832f04d6ab71d6892f9063fbccd46baa7acfb2b00cba40ba69a6dede6007273d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ce407687c59035072f5edae97556d127ce93f3440442fb1f9ac9897311c40a1
MD5 c5d8c6d05530c8072f782344759b6518
BLAKE2b-256 ee80e4ff50efec267dc5fa76974dcc0d7da41e29f6b648ecfafd96ab69ec3042

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp312-none-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.7-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 2929d9d5d06de2ba980b740bcd41e26d5d1d21048e4e07ff54db4588c6202a19
MD5 4adae9e00a0094f8c4b90837bbb40aa2
BLAKE2b-256 cc148ade8ef17560ba4e92f2b4cfca2c693b720396311d153423f0d643ae3d5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp312-none-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.7-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5e778cd9731619d97668685b90955bc8f1969fd706cd001361ec96d1620de37b
MD5 26ff9418429716cc3e69846e4213f32c
BLAKE2b-256 9834e4761573b0e260c3c9fd60cee27d24e6a049d36d80da40cb2bca9b543670

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b28421f1f6375c2d170de7692f740209c358e87dfaa8c33a32cbd0c452ced363
MD5 74d947596596e33a805412a80df23e02
BLAKE2b-256 8fe88c11e5aad421bd954a17c8443f5c211833476ca7931da60fb5f4475cddab

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c7bdd89e0f64c66fc0c805064e68b1fae519b0831127419c16dbfade2243e132
MD5 a7dd863e724450329558e9efdde07b2b
BLAKE2b-256 4bed91f9bae7663ad7c6f47daa802b588f45a92b8a5881bcc1b5b2fabd47e62b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db87bbd3245e19ad8c30a191e93a711f704409b0f42367686cd1768bc35fe870
MD5 18ae5b0e43e461b00c1e97ded09e75be
BLAKE2b-256 c1606f915b2c178d1b494c27c5004e4951230b4d46ba835742995721bc8a57b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ced65c53c90c6c5fba4d6527944898db7a649fd974af8713a720ccae54341680
MD5 a419c9492ca352325728b7773918895d
BLAKE2b-256 4bd8a2b5519fb82d4f63d6ee2486c00de257e8c484955c77a4bdb220cb82d39d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 696e70bd30dfb434f7a0d41a0771bb2d45f7ee3a0851682b87b6a3b5723bc63c
MD5 ec82463237854cc6191b8d282dd40c91
BLAKE2b-256 1f7dbdfde97351e97971981a7a4c73ab8321e7b24a1b5f4c065ddaa1788f0708

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp311-none-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.7-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ce907c30703585de2718fe52da2b4343c52683a4fca1ef2d42f49f8203002ff3
MD5 4c714b56db9cde4c9e8cd3e755d89d5e
BLAKE2b-256 1fe2b50ea45a9d8341c6bff9025038a11baa773a691905920174489c4e55852e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp311-none-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.7-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e0ff0d16ac21543da879d05b3ae4ba290588ecbea967e038f94cf0eddd663c4
MD5 168dbd4970ef748bbb010d4bc9823ca5
BLAKE2b-256 fb67447df652c4ece3d6182a7c7daf0de04c449484bf7663976ba03b99804a56

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4024b017a7914fb8bd25fb35b2cb66e6a868df0623eaf1d13b32df6766298e75
MD5 54b682d9924e2150fff092809c01d925
BLAKE2b-256 7d9a2559f600b0a24d92b9087db770729b34f4c4bbcc026e40385d9ea7d2f582

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 183454a858e93d8440da0534a2b621396a0d2712a39e3718c3566f4afe56faab
MD5 8d606942d2c82a93982c119d0fa5ba49
BLAKE2b-256 f301e79207fc515d00aa2fa14c84252dcd7824c54cbf5c953a3c54d38c404086

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbc2fabfb7954306abc5147c18a077939426032b0697dc25f6a1ea51e2e6ddd1
MD5 e4721e76c91067296009e6b37f165c91
BLAKE2b-256 c1c00ff993bb182d2bade3d7df9255ca96ec137deb8af3c74d8471c1936ffff1

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 fffcfaaf30f7695186a0694d68582c443f27f395c5b86f977a36feae531706cd
MD5 fd1f1fbf903328fde90f22fac830b55c
BLAKE2b-256 83ea935b55c175c33a51e8134d3f2c275c1fcd7bb1baca49f3cca9fe1af4110c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8b4be57ba4f2a75c7dc991b830e734dbbe64d1c20c58184da7d75ee57bccc181
MD5 8a27cc8846dce71d3b94c2435018a791
BLAKE2b-256 a8a410fb97eb65254c54885595b709929b49c102cee4bba85e80a05ad0a80601

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp310-none-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.7-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2dedeea582c806f79ad2598287ca322769b9453d29f45e1952af637cdf780c23
MD5 a21dd3b2e1450dd1f092224b026b36c8
BLAKE2b-256 2b052162bf62c2aacddf8381964f9f2730ec88a5815bccfb0c72b02f78ea670d

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp310-none-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.7-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eed706f733b88a4237c47564c890cb2762530eba3414db7401ab38e6d7ca9273
MD5 935676cade08bb31c9f6fd779f801d73
BLAKE2b-256 bbe841d40998b8fc051e1371ee722b60fd037a93e8acacde96812c4c781d1eb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baaf3ce91b87f60a029587ab12c41d4d6dba2e05a1ada8ae5203f01dd876890c
MD5 67fcc338666d858a657a0e4b97e2813f
BLAKE2b-256 573dd96de2937464a247e9d1774eee863b28a8f0e769ef193ef050ae6be8b177

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1f72d28cc68a1ea45a078e56f5c5e85aa811f489fde29e16570d538b403e9953
MD5 4b3bf7cb7731d1ab06d28e8e11354490
BLAKE2b-256 cbf3ecd0453a0fa334c3f8fdbfd7c68a52cc8d1e9a42cffd9a9188cb9f947460

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c88d6beeaed74bedd1fb7d07b8ef0be5675985897121375349e9240bdf9040b
MD5 0f689e776634e5355429a3a190cdb0a3
BLAKE2b-256 d65a949fac15bf74071bd2c3b417bf018555d55173b415d97ec3656f8f37f03e

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 26d85c7dded71805f42e87ce9c1dda8847e0e713a927520e6f5770487757bcdf
MD5 efc9ef523fd5adefebdadc832feb9bb7
BLAKE2b-256 f9863a44949d8bdfe471fe66f1e4e5e4f6ef8f7433759fa3b0cb7b29528e7e45

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 04ff7e0ee2ca96821a259c60e943fb71a31b4caf225bfa3d3534c5e0de119733
MD5 ceade63fd0c16b2ebad69fb9b192e7b3
BLAKE2b-256 43e90acc27753d6217bd27528da0fae95888cbdc14f38480d999955fc2d70e08

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp39-none-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.7-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 02aa27f5c6be2ab290103d556267a399345ff9302cd7ec6198dfd27874fb46bf
MD5 8f16c2af5bd7953dc0fd997a461c748c
BLAKE2b-256 64e4944053e31992b9ee71cc398564d273d12273c7c6b0732f063c6a29aaa2a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp39-none-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.7-cp39-cp39-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 be355663c16df3e3f870a4c049e0bf7cfcc37b2ae150793db118674033d091e8
MD5 79e675359aa4018048c3b63fd7c29067
BLAKE2b-256 512f8bdeb4c54de38f0b87d9e318da02e831b1b6213b30ac4c70882e695db2ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 092ba6fc53f3fd6ced6deb01949ef28f7e97dfc65f7b53441575020369ead9be
MD5 b7bc3586dfcbce972854f965bb46831d
BLAKE2b-256 387c8b2bf7df2c94d454549323505630ee8853df9d711084a5fab27b14f15369

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1c5516649c926b95fccb5d1bc01d8955ab26b3a014cffe29c2001a87d02a4f27
MD5 1177cb457a7065c3ba9c3b3c482ebd78
BLAKE2b-256 ba4ea8bb4d0f1a88b2a0fe7c0969d3e09a00a8e5f451297ef84c3dc01b56144f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 419308a95861c5945ac2aca5361e0af8b1600618ab8b4e1ba724dc9f49043bfb
MD5 1e107623e31c57b7b926df700bd7573d
BLAKE2b-256 678106d1999ce64b245c55e279420a85bc5ebb8e7d92188aab6ecec7bfb4fa39

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 843dd0f751a2b02e04be84a002f7f318487e03aa37fbdba88db6dd563756d1b0
MD5 881850941c876645a8c8c9267e1b19c4
BLAKE2b-256 d5986b83f3f21f2bc44d66b11c06fde116343d7b60cff90d807ea8e9db6c1333

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for longport-3.0.7-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8c3ffb038d55476c3aae89a4d80f564a8e84d5b7a3bacb67e5728955b89c5653
MD5 659b61e60d693ef9c3a7f81e1881138d
BLAKE2b-256 d596e958ec7a53355c75dff6282894907a707d4efa67c7b4d379d59ba9a85094

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp38-none-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.7-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp38-none-win32.whl
Algorithm Hash digest
SHA256 eb2ad3ead7f0632eb8a0d9ca699b47856242ee98d256c863b493b9f91207a35c
MD5 d601e189673a8cd98d00088e4ecbbfc5
BLAKE2b-256 2283f73110f3f86c9a3f519d8af40c257207fe3161400176fd3ab8a533f3a2f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp38-none-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.7-cp38-cp38-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0dd84a14d704e1252f0abdf9ee1c27841d5923f1fd949349b23cce046296f08b
MD5 b074fe4d98b15ee738ba84a887c9a7c1
BLAKE2b-256 75985dfd4fd18996df0ba891864606212f6074ec598e42dd21d0ee2082653d0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf3670c5c027a434f004bb8f6f84204f096214def4da858c04f3d5f3563a1c8
MD5 1c67446b57905598e46ef01de00f7ede
BLAKE2b-256 789e441c67824ddf83266008fdb3fa5da854fab3deaaad500cf9ea3d14cd6e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 185357f0c5dcb05257edb2f25b29248f62102ae115b590c8f627b0b0fd63896e
MD5 b1a066876773fac5c120aa9cd3c72f74
BLAKE2b-256 d29db0566c3f058c7197c0c42110eef7f3783f315268956ba2de24b5ca9fc8f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for longport-3.0.7-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14047d18e9092d7712fa19a84aa1852a48c93c030998872c0b02388bcdf9e341
MD5 60b0d5d5c99ddee9013a326aaa4cef01
BLAKE2b-256 8b2d81219f8b21d0d5fdaaa66d35dae18570686da3b4918eb1ccce9a58448d31

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-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.7-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 3ab2cba805191e98972532b333761da65b88c78e67162fc83f14ce8c6f44d532
MD5 8e4f60edfbaea0918729dc551680d655
BLAKE2b-256 7847bc47ffc502bad515b6051d05370cab8da8d9d23d90bb2fe9f398baa46add

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp37-none-win_amd64.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 967f9899c02e582f4d6063aefde208c516a9892825eef5b3ec2193a30acc0ed8
MD5 0c713cc487cad521c1f4b9e0c0fc6970
BLAKE2b-256 6dc590b279faab688ff9b55706635369576924a35c81116031e1bbdae688bffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp37-none-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.7-cp37-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-3.0.7-cp37-none-win32.whl
Algorithm Hash digest
SHA256 67cc45238d574ebf27fb4cbbed9e57fc3799d9e3841d75cedf87acb1b905d3a8
MD5 ab88bc6c3bb3c0ab489951d5b9715347
BLAKE2b-256 62d9a6069e0e61d47610ceaa1f65a00115abd8862de1efa68c91e24b8af7a9a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-cp37-none-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.7-cp37-cp37m-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0d4bc46ac37e40870bf5d3de6cb2d56d3c170a5b65cf738098a4ab6acfe2745e
MD5 035e7b0f989b0f5c33fb235f1978158d
BLAKE2b-256 2a72e9e94fac37753a608f88d92adbb0217a42a41f84282426d127f62881db59

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0991e2a2528f6a921d4bbd3933ca869a8d96728771198cd8602d683008d28167
MD5 a71ec212a018c4d89dd45fa05b3c0275
BLAKE2b-256 ee026d3126dac6ca3f7fb44d6260f6615dbd322c9dded5d88772a219ce56144a

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 241cb2996cc0d1eadc6addf5b73f599defc113f3c6b63ec32ad0f72546f78f61
MD5 355666eba89c5a0d6cc0df99d6ca393c
BLAKE2b-256 9f10c60ff6873d470ec9c34ccef3d10c9b37587cd776e7483b61ac94a09fd762

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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.7-cp37-cp37m-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for longport-3.0.7-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 182a60779436728a4c64a48722eae06dfb7739ed69106a5e977f2cb0d7033c57
MD5 81522f7d076dcd92af50105629330e9f
BLAKE2b-256 5f04b5120e942c68bf1db1dfbba7a03a190cbfbe59ccafbf6548813b96958b7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for longport-3.0.7-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page