Skip to main content

Sinopac All New Trading Api.

Project description

Shioaji

shioaji-logosinopac-logo

PyPI - Status PyPI - Python Version PyPI - Downloads Coverage Binder doc Telegram

Shioaji is a trading API provided by Sinopac that offers a comprehensive and user-friendly platform for accessing the Taiwan financial markets. With Shioaji, you can trade a variety of financial instruments including stocks, futures, and options using your favorite Python packages such as numpy, scipy, pandas, pytorch, or tensorflow to build your own custom trading models. The platform is easy to use and intuitive, with advanced charting tools, real-time market data, and a customizable interface that allows you to tailor your trading experience to your specific needs. Shioaji is fast and efficient, with a high-performance core implemented in C++ and using FPGA event broker technology, and it is the first Python trading API in Taiwan that is compatible with Linux and Mac, making it a truly cross-platform solution. Whether you are a beginner looking to get started in the world of trading or an experienced trader looking for a more powerful platform, Shioaji has something to offer. Sign up for a free account today and start trading with confidence.

Installation

Binaries

simple using pip to install

pip install shioaji

Docker Image

simple run with interactive mode in docker

docker run -it sinotrade/shioaji:latest

or

docker run -it sinotrade/shioaji:{version}

run with jupyter lab or notebook

docker run -p 8888:8888 sinotrade/shioaji:jupyter

Quickstarts

Initialization

import shioaji as sj

api = sj.Shioaji()
accounts = api.login("YOUR_TOKEN", "YOUR_SECRET_KEY")
api.activate_ca(
    ca_path="/c/your/ca/path/Sinopac.pfx",
    ca_passwd="YOUR_CA_PASSWORD",
    person_id="person_id of this ca",
)

Just import our API library like other popular python library and new the instance to start using our API. Login your account and activate the certification then you can start placing order.

Streaming Market Data

api.quote.subscribe(api.Contracts.Stocks["2330"], quote_type="tick")
api.quote.subscribe(api.Contracts.Stocks["2330"], quote_type="bidask")
api.quote.subscribe(api.Contracts.Futures["TXFC0"], quote_type="tick")

Subscribe the real time market data. Simplely pass contract into quote subscribe function and give the quote type will receive the streaming data.

Place Order

contract = api.Contracts.Stocks["2890"]
order = api.Order(
    price=9.6,
    quantity=1,
    action="Buy",
    price_type="LMT",
    order_type="ROD",
    order_lot="Common",
    account=api.stock_account,
)
# or
order = api.Order(
    price=9.6,
    quantity=1,
    action=sj.constant.Action.Buy,
    price_type=sj.constant.StockPriceType.LMT,
    order_type=sj.constant.OrderType.ROD,
    order_lot=sj.constant.StockOrderLot.Common,
    account=api.stock_account,
)
trade = api.place_order(contract, order)

Like the above subscribing market data using the contract, then need to define the order. Pass them into place_order function, then it will return the trade that describe the status of your order.

Conclusion

This quickstart demonstrates how easy to use our package for native Python users. Unlike many other trading API is hard for Python developer. We focus on making more pythonic trading API for our users.

More usage detail on document.

doc

Communication

Telegram

Releases and Contributing

Shioaji has a 14 day release cycle. See the release change log. Please let us know if you encounter a bug by filing an issue.

We appreciate all suggestions. If you have any idea want us to implement, please discuss with us in gitter.

The Team

Shioaji is currently maintained by Sally, Yvictor, CC.Chiao and Po Chien Yang with major contributions.

Release history Release notifications | RSS feed

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.

shioaji-1.1.12-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

shioaji-1.1.12-cp311-cp311-manylinux_2_24_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl (839.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

shioaji-1.1.12-cp310-cp310-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

shioaji-1.1.12-cp310-cp310-manylinux_2_24_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl (898.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

shioaji-1.1.12-cp39-cp39-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

shioaji-1.1.12-cp39-cp39-manylinux_2_24_x86_64.whl (4.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl (893.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

shioaji-1.1.12-cp38-cp38-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

shioaji-1.1.12-cp38-cp38-manylinux_2_24_x86_64.whl (7.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp38-cp38-manylinux1_x86_64.whl (5.2 MB view details)

Uploaded CPython 3.8

shioaji-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl (965.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

shioaji-1.1.12-cp37-cp37m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7mWindows x86-64

shioaji-1.1.12-cp37-cp37m-manylinux_2_24_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp37-cp37m-manylinux1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7m

shioaji-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl (940.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

shioaji-1.1.12-cp36-cp36m-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.6mWindows x86-64

shioaji-1.1.12-cp36-cp36m-manylinux_2_24_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ x86-64

shioaji-1.1.12-cp36-cp36m-manylinux1_x86_64.whl (5.0 MB view details)

Uploaded CPython 3.6m

shioaji-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl (941.8 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file shioaji-1.1.12-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6205ce40ab6da10d19f6cf5f977e25e7c9c5fe18d0ca5b5cfbb7cca390eba09a
MD5 ae9cc8ec1a95937000e08d2fcf01a57c
BLAKE2b-256 da387ad2b1e8dd60e4c8291ab9e1b11d53bb6f7e2b112baea7788bf0c293598d

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp311-cp311-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp311-cp311-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.11, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 83dd100dc0135f55db8e92c71b6a73d80ea19e2591f9c3eeb7e76832bba74ab6
MD5 ba856cf95a600155fcf6ca527c8afb5f
BLAKE2b-256 6f2394e6bb0572525cfcf03554a60a3d64b35b41311397ea341f578c45842616

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 839.0 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3914b1d2686f066753cd889d99c664fa82361d7cb6f5f860ac24e604093c805
MD5 4a5f8a4e348dfb8bc7c0dc0182bc4736
BLAKE2b-256 c46619d0b591d74eb17482dae8487ef8515038372a3059049e2c164b03fba41f

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a35ee2ed5b15f3863e92cb6b6d856ac76e73613d9f11613ccc88ba915160bf4f
MD5 a56982f9ec28a19f0b2296782b869850
BLAKE2b-256 eaedf8f8c34b63f3a2a1cc75aae76d184924cfc99962c7964d7625353bc1830a

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp310-cp310-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp310-cp310-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 80c8391d290876aa86d5e435b400fa997d0472833f88f964d2870cce41c6631b
MD5 6e376a17c253ea9092b75b29767881ac
BLAKE2b-256 4bfc95550878a07b4125ad2dde398532d2b106c847d019f9bb25df8a071bc921

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 898.0 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6c88cc9fdb74871acab43aa99c61894c6bc63e9c99d02766b3c805c5f42c8117
MD5 9d162838ceb2fb1aacb73fb82e3b248f
BLAKE2b-256 eb78037e2b1e16795a4dd5251f80ba8b1bfd7b2ddaa37cd49f278c7d19735558

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 85dc67edb8f99660bf2d1b71ea2932c163de3bd3ec344af41de1c1e5ef6498fa
MD5 04a13ee8b331e344ef8c6299b9b4ad46
BLAKE2b-256 330ec8f5a2be721158692382280548561e40282a4c850eb956cecf9131429a3b

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp39-cp39-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp39-cp39-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.9, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 eea39bf0e0050bf9999bef1628228aaf1e65ae24eb5853f27a2603483a5bfa93
MD5 5eb893a0602978c46b4d4ac0cc553333
BLAKE2b-256 76529ff65f03d5d8596eeb2bc5fceafcf19a7573444ee4f213afe9f6d8d165b9

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 893.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fb62af7e7fc531f5875f00fb562a4ae6517f64fa8d8538ae542be881e1db5da
MD5 5bdffeb33421f5ebf43e6c6b5270bef1
BLAKE2b-256 ad525a8c209fc058e5793bbfb899b6ebc697b839dd9e38961f56d4a18ed4da15

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ba4b8d170a871de2f11e678ca3bad8047a07dd489a92356b502b272cd8b0c2bc
MD5 19af0fb2504bdcbe6b3b0660e7c2ea3a
BLAKE2b-256 1f88440890e13bde2fb7b8ec545922578d42be7697bd3e37d8dd8d265a3fed85

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp38-cp38-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 7.6 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b3a0386e4827bc7aa4104009b43b30a70d8fe7a2ef08fa06f8509ebbd9ec0a6f
MD5 484d8a63d5e30824149486230c0854a9
BLAKE2b-256 19667a379d0b51873c66d84c18691af23706079b00f718837b9ee4d91447e8fd

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47bdfafc3c09c7bc8230ca6ea271f0b611eb8d47f159c7829f30264bce5edd8e
MD5 793a3cbdf9f7fdda271571bde8db090d
BLAKE2b-256 bc4133ffa6b34550e8f4d77d7a01458b7a8453f4cae74ac2370e3de595a692bf

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 965.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1ec59874ad68b86021652eda7bc2a1b7873c4d595be7966b1adf9fb8191187d2
MD5 97dd8d5b0cd073fc7b77e866b90daa7e
BLAKE2b-256 e3690f4aba9b47070a7ee3688080bef5cfe3c6ba20007cd14a3c4bbd1f3b93a0

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 1cc90b4c8b610da062dede47c1017ab25042ca429e11c32d985fb34759045562
MD5 79ab5e9d7af357a6a5d89529f583a0b8
BLAKE2b-256 b8d3c074805d818210315005ccd403ef5be08f5a7950e5bc3a8a0b0a7d3d8f3d

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp37-cp37m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp37-cp37m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e258c1d2883844757aeb9c1e3c9e974a75be7a3d6469643ff8faa42d86ec945d
MD5 fbcd45b1afeebcec87d4f6392fcc8590
BLAKE2b-256 591c820c9f8b4de379be3121dffe80d4e2dc5051db2f53855f39d15ce5f35211

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 69264247015d4ce315d5e376218a1264e2a381b21f55d347cfa196d8cb98baf9
MD5 24a5d1d30c5ae5edde3333ab4c4222e5
BLAKE2b-256 abadb4a855d1d7a1136dfeed3f2ce7354cc0601890a7fd8ba1a44c16145239ee

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 940.1 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fef3c28f478a06414f77b30f9e90b3af6683cca7112339d3e21e8c4dbbef0a09
MD5 ac5db04b028d5a9933978a2e9073f8f7
BLAKE2b-256 d044a1a0f30dcb78740a2b1fb36d832ccca101c46eb432960cfad3762365bbd7

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 c0bbd1713dd90935a9e9fc22f0cdd903be7efa6ee1dc54033dab88ae8d94e03b
MD5 a23a0f4a2e833a31234332bb10ba907b
BLAKE2b-256 1675ffe51b2d110ae002989a64b6e8663a136cf21f99da8febb5ca42e60201d0

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp36-cp36m-manylinux_2_24_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp36-cp36m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.6 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 57e70cb36772ddbc2f6adfe47430dfa64b40d20f062c443246c06a43aaa20fd9
MD5 526d615d3a42e4436b9862d59c0eadac
BLAKE2b-256 53f8bb7f34a3714f39be4b8799ae89d558e56ccae8a06cb812379b055a1f04ab

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.0 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 72e3185155753f9598d7d90d4c912c3bbac7b3a8e21b38de25266cd45f3d248b
MD5 c9757ea3e08a200c8963fbc63ae74411
BLAKE2b-256 577c87f9e37c9abfabe2742dba845538a66d87d396e9aff2123541080dc47c82

See more details on using hashes here.

File details

Details for the file shioaji-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: shioaji-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 941.8 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.9.6 requests/2.31.0 setuptools/46.1.3 requests-toolbelt/1.0.0 tqdm/4.65.0 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.12-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 105ba934fbce0cbfae64a4ad3ebacf51a913f5c819038e9c3b0a6220b43afeb5
MD5 a1ae718fc8504a34cb40d639ffd22fa0
BLAKE2b-256 d807199c6f9095f15519cc1e0ea2251bc21795a6d8edd2cd9f5311c825fd4440

See more details on using hashes here.

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