Skip to main content

Sinopac All New Trading Api.

Reason this release was yanked:

usage type hint issue

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.7-cp311-cp311-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

shioaji-1.1.7-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.7-cp311-cp311-macosx_10_9_x86_64.whl (825.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

shioaji-1.1.7-cp310-cp310-manylinux_2_24_x86_64.whl (4.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64

shioaji-1.1.7-cp310-cp310-macosx_10_9_x86_64.whl (883.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

shioaji-1.1.7-cp39-cp39-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

shioaji-1.1.7-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.7-cp39-cp39-macosx_10_9_x86_64.whl (876.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

shioaji-1.1.7-cp38-cp38-manylinux_2_24_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

shioaji-1.1.7-cp38-cp38-macosx_10_9_x86_64.whl (948.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

shioaji-1.1.7-cp37-cp37m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7mWindows x86-64

shioaji-1.1.7-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.7-cp37-cp37m-macosx_10_9_x86_64.whl (926.7 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

shioaji-1.1.7-cp36-cp36m-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.6mWindows x86-64

shioaji-1.1.7-cp36-cp36m-manylinux_2_24_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.24+ x86-64

shioaji-1.1.7-cp36-cp36m-manylinux1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6m

shioaji-1.1.7-cp36-cp36m-macosx_10_9_x86_64.whl (926.3 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f302f8101bea6c5ed1d6e3294a0ff53ed4c91d9e231f80c36cec7c372ce3cae0
MD5 60cc023e61de46e9718849f599655713
BLAKE2b-256 d0a79280bd66a1aba7bc2820973562803ad779337d68249885b2e04837bde14b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 a43ac25f42e413ae909f63ffdb4f82dd0c1439f44aaa84053ac75afc04438391
MD5 29812fcef3344146f042c5b4c1c90329
BLAKE2b-256 c2887bb2260218970b47cee29d053b2ac5a4df5bf9a0d3bde6345e067d1be730

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 825.5 kB
  • Tags: CPython 3.11, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b43cb11862aefd15339222c4d6d22ad4790d762bb1b8bbf52c7ecb5b81bf955d
MD5 d1d88c058dd23c5b02ee9dc06c974c1a
BLAKE2b-256 5f36c5a5adffe8b3061de10fe2e05dc90857cc95adf4ef1810c437351ab84463

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3dcace40a26f9afc80b526101d91912956051451c1548ae508152e39cf908bed
MD5 52f1dfef9bec7a2c7d93b7516185075c
BLAKE2b-256 f38dab665932e2259e2dfa38b62f052910b1f05342aa68291c2902056c0bf0c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp310-cp310-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 3db0b8d1dff0429916aca10a7dd7f85b4f540c9f65b59ec17be5f6f71730a4c1
MD5 5bec907e05fb857f5c888927c8138cea
BLAKE2b-256 83ec47ab77cf2c3d1da21f1485fe6396f64f185c528d4729eb5dd6c29190eb9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 883.6 kB
  • Tags: CPython 3.10, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cfbc40a0c224c1087d3283461073d7987f03de8046c4032da1d4a4dbd6c5045c
MD5 2737ba159b92d0cb71b65c4aba861570
BLAKE2b-256 1df0a42831c78e7d4431cfe8ce33053f46c5dbee7b570cd510dbe4698fc1bb0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 02e5de04e6fd30e5669398a419db889bf0b974e1b56f69fb9996e9f0f7affec1
MD5 8a9de0d42cbd3a214328acb1be02c1e4
BLAKE2b-256 355cd6176f5faf99e66532738af5134f45b21c6dfd1854d9b0f9e26d3ec749d3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 3c4a73af77c4d6447cc6d160753cf52154cb4f288c40038b37d0b7833c19d98b
MD5 b82df1fc0ea47fcce31e79a8e94f4dbe
BLAKE2b-256 f1f95e95a6b3ee18fe4d6055f6d9820035d24d1f3ea9ad2710d737c750d456de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 876.3 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 712fe8b29d5cff68ad1466a75214d72cfc520a611ddcc63a42ea3d71fc75e09c
MD5 4534bb1d157cbf793305d570da99e02c
BLAKE2b-256 3d1249f8490b1002ff101069488aa250b4ece5439327c28e058cb35df33851c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b7ce6b50835d1ae95255b75801c63e83fcb615033695167574d71960a7d7ae14
MD5 f706ff957cd6daaeef2344c58a8e1543
BLAKE2b-256 a0425586cd773263d30e97692665179be720e434a43c1e3a740c2ef30056392f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.8, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 bd8eac91188668903ea9942d0937e345a7a3e00304c1cf33b235f3118c1449cd
MD5 6418947d15de781480546b1c13f61bfa
BLAKE2b-256 e73b5d891d15d06dd55ae2be073edde79b267d3cca6aa673c50bccbb5a59fef6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 948.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a5cfb875aa80766fdb6c0d6b70d308bd43798ca6db9cdd7b413b76448a9f11ff
MD5 d7ef4cb6e1172bc6dca183e83c72bbfd
BLAKE2b-256 39932d936929c78d0ce61e73ef0ffe790a88c9acee894232735e791c30e7907c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 02fcf5da042f04246043fd7cf55caf882da56080e78d1396bf95b1b52fd947b6
MD5 55a060e6f43486d0867145b27bc724fd
BLAKE2b-256 5ae1d4fe7a138123a4aa41d0ed518d5b5ddd2df6db0bf52530a43ad2655b22e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-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.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 42785d44259bcc4b9ba5dce363b04c103a512a8aadef920a966b1b58c49c9640
MD5 2c038b5bb3cce91c639dc436a7bdee4f
BLAKE2b-256 eff98b950328f747dbd9cf67b2e4ab5d4e990a7a5c6e7460dcab29632d7fd225

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 926.7 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b5f876dc06f7d3787d1eab23d8b991829499b30b57b77fc2bf2e735f2afd527
MD5 3f15f2ffe7b3c87b86e689224c8a3528
BLAKE2b-256 af856b7952e9d2d6ce8b5b4563576c3fb07bd9f02f2a39a9bc4b4a1af1def877

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 0baacddd4b7dd882101413c2b128480a353c41e81ea3a240d0e5c6babb8f710a
MD5 8e2e3bc2a690eaa2ad08e83b71f7788d
BLAKE2b-256 60c678b2d3995f68c0d15d1b0aba6927b50cc19ce9d9036af4377266d197b7eb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp36-cp36m-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.5 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.24+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8f05cb2119764028c568517e10b8f137ca55a0be704c86931fb05ea3f7008c8a
MD5 9921d63ee9719bcd08670cef79844da0
BLAKE2b-256 0fee6f6f4bdded342bf228ac9cd1dac3bc3037c1937808f09586ddad4595a90e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.9 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a63e3705d98924587c55c7f0f75f7e4f9ea58eb74e9f85c4cc885fbba5d35588
MD5 fc6bb98f0b15b7ffa9f8b50932679b70
BLAKE2b-256 28752fd9406daf7f974513ea0890b4b4ed669449d123215918b4b95a5aa0a189

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.7-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 926.3 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.8.2 requests/2.27.1 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.7

File hashes

Hashes for shioaji-1.1.7-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 38df5fecd37d208076664b787e0409ed0086010b21f67e710728f119d0df94af
MD5 7f039cdbcba9a529be94b293b11d6465
BLAKE2b-256 7446d8663f313ccda3872f957215138c3c5ae0a34b4934ab59a75edde91692cc

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