Skip to main content

A Python library for LongPort Open API

Project description

LongPort OpenAPI SDK for Python

longport provides an easy-to-use interface for invokes LongPort OpenAPI.

References

  • Config

    The configuration of the SDK.

  • QuoteContext

    The Quote API part of the SDK, e.g.: get basic information of securities, subscribe quotes...

  • TradeContext

    The Trade API part of the SDK, e.g.: submit order, get order status...

Quickstart

Install LongPort OpenAPI SDK

pip install longport

Setting environment variables(MacOS/Linux)

export LONGPORT_APP_KEY="App Key get from user center"
export LONGPORT_APP_SECRET="App Secret get from user center"
export LONGPORT_ACCESS_TOKEN="Access Token get from user center"

Setting environment variables(Windows)

setx LONGPORT_APP_KEY "App Key get from user center"
setx LONGPORT_APP_SECRET "App Secret get from user center"
setx LONGPORT_ACCESS_TOKEN "Access Token get from user center"

Quote API (Get basic information of securities)

from longport.openapi import Config, QuoteContext

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

# Create a context for quote APIs
ctx = QuoteContext(config)

# Get basic information of securities
resp = ctx.quote(["700.HK", "AAPL.US", "TSLA.US", "NFLX.US"])
print(resp)

Quote API (Subscribe quotes)

from time import sleep
from longport.openapi import Config, QuoteContext, SubType, PushQuote

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

# A callback to receive quote data
def on_quote(symbol: str, event: PushQuote):
    print(symbol, event)

# Create a context for quote APIs
ctx = QuoteContext(config)
ctx.set_on_quote(on_quote)

# Subscribe
resp = ctx.subscribe(["700.HK"], [SubType.Quote], is_first_push=True)

# Receive push duration to 30 seconds
sleep(30)

Trade API (Submit order)

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

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

# Create a context for trade APIs
ctx = TradeContext(config)

# Submit order
resp = ctx.submit_order("700.HK", OrderType.LO, OrderSide.Buy, Decimal(
    "500"), TimeInForceType.Day, submitted_price=Decimal("50"), remark="Hello from Python SDK")
print(resp)

License

Licensed under either of

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

longport-2.0.5-cp313-none-win_amd64.whl (3.7 MB view details)

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

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

Uploaded CPython 3.13 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13 macOS 10.12+ x86-64

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

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

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

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

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

longport-2.0.5-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.1 MB view details)

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

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

longport-2.0.5-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.1 MB view details)

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

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

longport-2.0.5-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.1 MB view details)

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

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

longport-2.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.8 macOS 10.12+ x86-64

longport-2.0.5-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (7.1 MB view details)

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

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

Uploaded CPython 3.7 Windows x86-64

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

Uploaded CPython 3.7 Windows x86

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

Uploaded CPython 3.7m manylinux: glibc 2.28+ ARM64

longport-2.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (3.9 MB view details)

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

longport-2.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (3.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.7m macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 4cbeb14812a56c10315462139b02149fa1b1ba06857aaa2ff7b583db2dc14437
MD5 b1b154a5fa87d605eefce7a583f350f1
BLAKE2b-256 4604c27a004709ac14e95a2d97d6b2179ba1394fc8131aa708114fe6c8f18da0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp313-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp313-none-win32.whl
Algorithm Hash digest
SHA256 44f09ebb92c0e8759cd6500eb469a54e836d8a65487f784406f1787117ff4eae
MD5 b6bcd72692e97d13806af3257f80c0d1
BLAKE2b-256 58d384a265564934e064a2da5cfc043a1cef9b9c03fc4d087d4245f2aa21cef5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4f8e66a23fde2bc04242cd4797ef12a63cc449401653284836e9739f77487025
MD5 03abea4733045f00f708a69104d5eadb
BLAKE2b-256 73ae3051658370f056100c3898c15b59e739cea180f39a76808b28dee06acc87

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9554bcedc323536f348fe1372abdaf9897b87fad32b86b8e91c695aecf071e39
MD5 b601bb3ab2e5692c20298d91bd3d580a
BLAKE2b-256 bc531ac8d8fd7243d6b1c0c1b22da7d9d93d3ca634efd6df7488f31ed987cc91

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c90518ce7723ffb3f0610671184855c0dd3e00fd51d97ecd70262c2f60879c5
MD5 d7e2edae3f6afe61387132bc36f59d4a
BLAKE2b-256 5ea99676cc4b217b5f2cbc06d32c1e65e0da4e112909f1a7141ea5e4252edeae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e6ad61483e28401961a9186e3e079be3e747e9fdf5b687d8bcc30074b4e1a5db
MD5 4f38cc7ca93ee8306c235736d17fe6ef
BLAKE2b-256 91e7769f9c9393a7dabe0adcec61cb6691fcc8795a2d48b28fdaacbf4f8e1673

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8e081137c25412a55e93518206e24ad063a75fd661a9c46ff0b79a220794087d
MD5 dbc0c7430e1c2a71b3a565b266a75a61
BLAKE2b-256 5387b39b22b911917b95ec4e9da80228aae93563578d993507eb43d887dba177

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp312-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 694f0b3ccf5c1ee940e7c7f4fa7f86d33f30e3550f23c8f05b500ac74503ab1b
MD5 09d04fefe47bdd2d176c6b3f00803b69
BLAKE2b-256 b9327f24929fc00c82fb93c0ef27c24452e833db8a8ea483a776902a2ad40b04

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f036e9639329a059e836598806c784e792697851a078ed54be24e76f06576876
MD5 7860818bed336011b78b439b0b23484d
BLAKE2b-256 b73c7331c9be37e2c2c5ad698caf5e6bb4f5a26f758e1f755041de1fff2c0b3b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e3555976aef966a318e32631da71fcbc1544f61fae5c0365d501f60f5612ec0
MD5 7dc70c26ec5dfe1fb28fd55cdecc9834
BLAKE2b-256 15dcae0befe3c49b7474627f3d0c1847422891fdc4f9c61c15d63fbd37b1c66b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6a68e1b6ec41661458070fdfb9e8c913e72d8aa76184d4bc3d1e9ec4e1c25cb
MD5 1f1a80a51d8614cac39fd55ce1e6ed22
BLAKE2b-256 7dcec2c2ad0b3250d7e038a960f5af3e246b989bc81fe965dacba6034b3db3a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 60f8241b47defa608b00f3da2cb20df3b644556b4e5e3d541366311a27b46e87
MD5 8c92aa396f9781ab6f826c15955e1fb2
BLAKE2b-256 78e21572f1458723b69403ed12699d660a10f479f96734a3146e37b977cabcab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba389add074f73f8c699fb27d8c49f1b2a15e6730faba852881e210ac91c4f76
MD5 63a3790faeb0a22334080318d6c9ffe8
BLAKE2b-256 edf94f5ff723cdd427f3f4e7c6b9a34e18987328e9b00213292c067cee8ea938

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 4044bb1ac47f625274aa1127ab34c28545349b204ec9034d19c5d0e1babe21c6
MD5 34f570cabeec938c27ee8919d24736a3
BLAKE2b-256 4b75f5f6a472c42d73902d457fbdea0402de107f70519d2903ab495dba8f0273

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp311-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a685a7cc8e27ac7bbb7c034276d994cb25aacbdb4c615214511b5c8f614de45f
MD5 4f26d7d6d340c94a515975e964ec3f5e
BLAKE2b-256 8efa9e9f1f074c7950d2177ee2798070ceb25636bdbcb40496842ebff1c1101e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7da9925f03d5bfd78da2cdf7f91bd9cc3caef67ddea9fbc059fbcf23f1ce8f5f
MD5 cf62ecea0fb5a30899ac0d2500356a27
BLAKE2b-256 3daeeeeda4fa2d2b2bc9e5fcd9c274c726bc857a8b9c154ac8ec7fb38acd9129

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f6248bdcf12dc40e822d61ea71746c15e8729a219b537b257cdd91f03cf2149c
MD5 433e23d619845cd563794b66b5334aaa
BLAKE2b-256 47a5b7fedef96364e3159d49f53d7ccec5e2d99d51da3a3985e77bd98e7b4f89

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f945a4f34f211b32a2b0b8e2f81bc10e4c42b53ef71e9552f195828628acc2d
MD5 f827b930303a981236b3b5aa9e0d75a3
BLAKE2b-256 032a1180d79db47f5c23f5b0b6bcd3561240cde9415f71ff6bfcf09abdab40fb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 57fbe2086e9ae8c6e25aa0271bebb967dc547b4ded04df62cc8e6438cc165ca3
MD5 adfce1649ce88248dffadd709ea9e4b1
BLAKE2b-256 d7a8acc1ee88cb2fd141528ecc0cf7ac6503a89a5e8961c67779e3c910d85615

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a6826b6518a3a871ced256ee25838c489cc4bedaeace9150a12bb91e8e0fa79
MD5 8701e5fc12b1b7e2efa06f83099efb36
BLAKE2b-256 9387c0f74b14f1c7bb104841c7255657b85455b49d182950628a11ece2b6c334

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 b5f23077cf1fc76a8d28c8ce077ce05fcf7e0c1761425f377f669fcb44e225f9
MD5 151809ac037041b85097c7be5d9967ab
BLAKE2b-256 7b4cc1ab98665f481532f8aab0afaec77965d85ebb5d2617f076b6c15ba2ebc5

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp310-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8605d460b09c985e24b8cb83fd249b373b75130d597ae88b25d84e33004c5efb
MD5 d0defa1c65bd2975a565d74c167aae57
BLAKE2b-256 3bd0e49b41f729b9bb3dbd259c795be51d12f2d6803c6f8a8b0f1db3a9d6ffb8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a68274942ee18a9a3378f370a2165af3e7768701992bf943deffb132d492449d
MD5 5da79aa750817324e588752b95c878fd
BLAKE2b-256 6519024ed94164f3d786a9952492e0e5c7367559dcfc28e6fde4f13ccbcee330

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 917e3fa6b96fee690dff6fbb6385eb2917661f93bf16c84cd4256b2e4aca2587
MD5 fbf7f33bbc64d306a68cd0dcccd48d46
BLAKE2b-256 382fae398a83662c26b99cb18852221f6327e0ca1ab21bd49a3a18c135fb9145

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f4a98f1ec77cf269e4ee937ea428e0206b0cf80f6413b92927b0093bb6d6691
MD5 36c714f8a98962486a860084e01fbbf9
BLAKE2b-256 e0bb0542290c2cb8c66ea0ff472baee1737b4ed87fb88301d5a369dc63070792

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db10aa73d5bee964fff686aa0a271bca8221f78af0514ed21bbab4dae25bf078
MD5 1ca4d1954578810393531391c7ea7272
BLAKE2b-256 6793096764d13c23c5f41991fe350b4a599294f6fa91dc4347f03c461b284c4f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e3f9105be8110b92dc5a74774f77333a8ce6a991459753b05e69d5cf3da45d6
MD5 73374f0882e6ae649b1b2ab257d646d9
BLAKE2b-256 0d54f1b75c86c7c554d4682ac20ad2126ea99ea66a6b7d40e3f92fe25c834bed

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 45e9d21258ee95b877d2af59289aa476b0310578485c54910625ea10a13ca4c2
MD5 2c662f919f83eaca032f20312eabdd4c
BLAKE2b-256 565e34dbead5d12436875e161969271830300f3be3d7b3c10d5864dc91a53929

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp39-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc13610cb2d71dbf3d2fbc5a71f12933c61fc0b8f60d6d3904508a877a07427d
MD5 c2ebdc8f0835bb3d1f755e54e741ebba
BLAKE2b-256 70aaa254f8c946baf557171510d50688875592a6137d252fa0bfe01ad4685007

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 877dd8c7aeff10d691f189f6705e050031ea157610af72db8f366032279688c8
MD5 a730d90267ff81237506091774cda2de
BLAKE2b-256 337644980e1ad50430e8b455dafd2679fe7a6de344664a4c13944bc81a161bda

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp39-cp39-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eab3bab4adbd10fadee1a525f5a5cca0ebbccca57f427a1369c7c848757eecca
MD5 d938904830af2d97e4c58576b8a67599
BLAKE2b-256 af97f3b8e6cd8d7a85425a5e940e8796d78c13d3940f5b49ed74648eeec04edb

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 58a0acb7bd9a3fc4563b244f43a1cfeddbce1e1780413c3bcc2f0c601b50eeb2
MD5 a3076a888241c30aa800bdc1e16b482e
BLAKE2b-256 ac85d59e9c52d194ae59b02a89d04980b53b452953f34a436fcc2cf1900ddf44

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fa08365eaf7a41594d61e8e4fc04df95b209510e6345b7228472e4c9d8c2211d
MD5 71497cafbd24f32b224d20eb5c2df1af
BLAKE2b-256 94025eb66e55b984144cceaec871640e0bb1f0a8260bf446d187e00580b1a4b1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f0ba04604bb0fbec786c7ef00e0b482357aa9e65e0218cb06a23ad900ce01d3
MD5 b8bd146361d1120578b8858ebc6165c7
BLAKE2b-256 63b48edab42b96686d57ccd581d503d4fd7d9b88e6b451e6abc34f36bef623e0

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp39-cp39-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 735c70d57f64add2db92be6a386eb8a6c627b32e42e2b6d6abaa38831d2c87e4
MD5 9f8bf7c06546d7c5656af31d437caeba
BLAKE2b-256 50a93f013ddae89675a1139467504c7a08249b7b7e75a48501c0145f65d1c5cd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp38-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e554f772e4584dbbfea007c3cb50c475e4d957a9055bd89388d04dd75d107df8
MD5 36cc2b414e185feb79eff1155ae4db84
BLAKE2b-256 9f2061eb965548b8227ff23cd6d7dee986095af5dafd68cc2e73a71f947588dd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp38-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp38-none-win32.whl
Algorithm Hash digest
SHA256 dd32e5d9bca049224c6dd3a7d122ddc43ed2eedbad2d852c0147b832eac8bb0c
MD5 de353a21bb4934bab343a831228c0be1
BLAKE2b-256 77bfafdbed63c71a604cc8ad361ee4f1b3fc37746252f2093d75504ddf7f64ef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp38-cp38-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b6ba2cf771f5a596587cdc7800874e214394fafbba52eb68dc32474fbed91969
MD5 320e4e3403b5fb8d79cfb15c3e110c58
BLAKE2b-256 0300168860d9270e53a95a0e8407a03a525d75faca33711e9166029250d73e51

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b22634852702ae828e191ce26719ac6886032c44da8d9b2328da75a6ebd547b1
MD5 8e5bd5ca1e67b90afb6a23d13c6b5d4a
BLAKE2b-256 1f91c1801990349d309d45112738212e1f529d96777627e6bdcce55f90fc7145

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 926e6a27d706fc383d84b6d3807ba11189f5bf3b097d6d0d3c02761ff3c7598f
MD5 b5819e84f072a7fe67d9542642b09089
BLAKE2b-256 9652841b81e4f43f37d774afa2d0116f0690dac2e9876ee3ec77256c17a8717b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc9ce842e5947a625416632d8720ac4e8f7205765af302045407bf591a2f410a
MD5 45fc44ee218b4bdc55f56da222cbc920
BLAKE2b-256 015a1458a98cc506e738a1ce2b37174935a548dc514546533f81fad2785c4166

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp38-cp38-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 85bcbcdb94733d04f5fc3fd263c5c9142410b5c38114b144faffddf0ea718a1a
MD5 3949a182cd2fc100f21d4a1d73f63526
BLAKE2b-256 5f6a929146c7324221c3ccfb05167ebdc6e75a4dabba42ba5594c811d700f670

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp37-none-win_amd64.whl.

File metadata

  • Download URL: longport-2.0.5-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/5.1.1 CPython/3.12.7

File hashes

Hashes for longport-2.0.5-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 29b7d050d52910f3755bca5cbac7c40950a4cb263a1eb1f3fd1a3f7ba875f95c
MD5 45120d1c6850a3d876bf247ec78d57ab
BLAKE2b-256 9736a5de2fe110c718f21ce9fe221c781b77962f3b074305b54e00f37c47d293

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

Details for the file longport-2.0.5-cp37-none-win32.whl.

File metadata

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

File hashes

Hashes for longport-2.0.5-cp37-none-win32.whl
Algorithm Hash digest
SHA256 9b8c07067ec70ce3a14bb6d79765e075d2fbcb85177a6c2e83ac7c1a17350797
MD5 923fd71086bfe8901d7703ba9f4d05e8
BLAKE2b-256 dbfa17fb82f8182e89e72cdc22dfcf659836c4a7ac4f62abd49e86cec7ee6c35

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp37-cp37m-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff1a10c7a94c056d7191912dea1fed8dcda1e769e46ee244d6e2f7f0dbcebc4f
MD5 e7e9303d0122dfbc061d78c6eb5ba9a3
BLAKE2b-256 6966db9d038130f914e98d6381b6f0451a96dbf242cc921df1298da1200eac1c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 09c3a5a53595fa6e155b549538086c58f36dd6c34dca6483becbd81b33e564bb
MD5 237abce6dd8267d13d82db0047f52053
BLAKE2b-256 e215804a632b986a936774556933a902853f91e04d7c1212e2405680a1ef7d9e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0b840ab3348cd429b0a37dcda646fd81387c43d5e57611b4f097e4bab13e7b58
MD5 5fda3623be540ace4f3024ca0c8cebb1
BLAKE2b-256 c880ce03decabf1386cb20a8ef78d8a619dd12456c1bfa5f0d77bedd7c05cb13

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

File details

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

File metadata

File hashes

Hashes for longport-2.0.5-cp37-cp37m-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a40431592b886243dd0635cb28ff70cdf37d938868b54c26a2a1275dfaaf090
MD5 5f13ca933df0fa65499a0afe7fbc74a5
BLAKE2b-256 f40e035608505ef639537c599b3fc56a21a4a28cf3bd62b9ca8c134edf68c9a4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on longportapp/openapi-sdk

Attestations:

Supported by

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