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

Uploaded CPython 3.11Windows x86-64

shioaji-1.1.2-cp311-cp311-manylinux_2_24_x86_64.whl (4.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64

shioaji-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl (814.8 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

shioaji-1.1.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl (872.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

shioaji-1.1.2-cp39-cp39-manylinux_2_24_x86_64.whl (4.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64

shioaji-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl (867.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

shioaji-1.1.2-cp38-cp38-manylinux_2_24_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64

shioaji-1.1.2-cp38-cp38-manylinux1_x86_64.whl (5.3 MB view details)

Uploaded CPython 3.8

shioaji-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl (936.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

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

Uploaded CPython 3.7mWindows x86-64

shioaji-1.1.2-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.2-cp37-cp37m-manylinux1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.7m

shioaji-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl (913.1 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

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

Uploaded CPython 3.6mWindows x86-64

shioaji-1.1.2-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.2-cp36-cp36m-manylinux1_x86_64.whl (4.9 MB view details)

Uploaded CPython 3.6m

shioaji-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl (915.0 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 84619381b607d9d5262119f20c8c06ca60242d6e98c7b20de63133bc4ba9344d
MD5 995c5258f52e84eb7c772064a345e078
BLAKE2b-256 4bea6718b26e0dbd9f908f1e84ff474b943bceb96cc8261c66e4aaec4c392d71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp311-cp311-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.5 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.2-cp311-cp311-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 10611e78dc60ad0048dd86d09410d4c38d776c1c0404d736929d57eda6322bd0
MD5 f22381bddde4a9122f15f7ce6a4f82b3
BLAKE2b-256 41f7a5e32b99dcf415e82cc8d2a8d61f4fed01e125bfbb0b211b2ee852495466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 814.8 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.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 df83187d99373a36102fe66fb9981ca5369a3b07d2f3f6de107d2a191e3fb8b7
MD5 f48099615de550ba09cb4bd126935414
BLAKE2b-256 7c3b8392ba9e99c96e1ee3a955e9783aefcc27983efb05d086bcb0b42016f740

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f30d6a78bf1affb4e673c7e2b91b11a348315ce90b0c99eed0d8ec8cc949421
MD5 55bc5737a03c0d2a2f39d4d8bbd54f39
BLAKE2b-256 4a3064bad3ffafe53afc55041a6b36929f31a102362541601c10a9cabea3bd36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp310-cp310-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 b42989d4b6f13eb7d2d2b5a8b3f3354f3ea817b1431308a907aa3f8b27cf4070
MD5 c92c09b2211969cb53609e8053e1b1fb
BLAKE2b-256 f3d7dde15619ba83b7a102e696c1836bcbbcf9ce28d7eb795155b482809daded

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 872.2 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.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b6e6e42fdca5de7822b812093467979a55c074a75eee278828fa0b7cadc568fc
MD5 0e71f0202b9baf264d407860105fe8f9
BLAKE2b-256 cf3901eb026a339fb49424d02da6404525c9728ad2474e784e52d20c05cf4504

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fad566a147c4c5c52a3e93d64c8a44cd03bc3ac8c506f752181ace416cc65ad3
MD5 c13c830965ac1eb288153fff419d7d28
BLAKE2b-256 597cd1689a51872d928ffd24f64ee189bc453f44d3e07480476797f9ed890266

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp39-cp39-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 4.6 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.2-cp39-cp39-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 da4bab8b0c601c64c662a5b2d6f88afc081b5c4a7e181b504766696e57e2dc45
MD5 62bd8c307e2a5de7e879ca4fea4c730e
BLAKE2b-256 7254fdd24b13680d8a375cec4990d84a1626ead1c1aa720528e5228b883360fc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 867.2 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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea665445676eaf2deec8379579251d7d025365e689d69a3b7979e9a0eb1d4797
MD5 4ee7251f8b8d17e9149974009b6bf049
BLAKE2b-256 d14651b76a7c3b2dc15b4c04cedd3bd18b9e2012c907d2e8873f6aa2f74a8ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 97b9495a2808bce430d8243f57c90f73caebb8624723ec21bfac3bed21c0e5b8
MD5 d00a75e82c7d6575c4359d0ac9260da6
BLAKE2b-256 b2ad99f7f907ee02ecf8c6e27cfedd76bb078e084c4cbbe7dfbb5820d118f896

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp38-cp38-manylinux_2_24_x86_64.whl
  • Upload date:
  • Size: 7.9 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.2-cp38-cp38-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 8f83a99cfb9b60f05df33f499ceeae83788327d2153ce2bc4707dbfdbfa14f04
MD5 101698cbb9c32c23841a2c6ea01f0f43
BLAKE2b-256 b26fbf0991d2385c1c84b53fca42853daee8fec08d3229dcc0d609ae49b51592

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 5.3 MB
  • Tags: CPython 3.8
  • 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.2-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d7ecbc018a2da52f828aaa389dc2287e0ab4d58eafb768919863638b42e5db00
MD5 b3e77626c6ec8d745638311c0ba69fdf
BLAKE2b-256 a623d39f8cd3eca90ea29dc906f9b4ed84a51afa01b9f7e45960a253f33f0646

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 936.9 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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ef1133d09a6042899c54e9b2dd0077cc7d2089a537d9686881eccccfdadaf7f4
MD5 6b2c4ab67d3f908f712dd3244a209959
BLAKE2b-256 beef1ba0644badbbf3c3d00bc7d282498cf6dccf9a7e3ec161fdad9b8d5ed944

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a1ba10e74a755618f0c3f8de11545bce1f5eb9ff406229b00572e74c264c450c
MD5 069954421bcee8bbca996675f62b69a8
BLAKE2b-256 d52099ce816eb709b797cd6e4b061e97911735b9855cb6657811f083f947481c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp37-cp37m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 c475dbcb48a53ecf0bb4afb11b136fa6219df7a38400feb40bc155993aa53375
MD5 7439b2d41230fc3d0200d26472fa5fb1
BLAKE2b-256 3621d2f515e1ea7ce13a0e3bf34de132c0a1d304310146b456326c60708fcd94

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.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.2-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 6b1b3a53faf9cbe227905aedfdde52407245129af7b966e4bb13991ff7671c3f
MD5 21868324d77ab7c02c490bc6e3a04e04
BLAKE2b-256 9dd3756b16ec259f1b51b8a7d09d6dfda61fdbbd7b4e6a8814b8e030bebdb83c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 913.1 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.2-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ea646a3074811514d7bf6cf178ccb70b6912ad8a47aae27173a0c6bb66fedd6
MD5 28b67042ddc619e6a0ba45b8e364f11a
BLAKE2b-256 f35f353e8a0386772336ecf278ccf95b2da29425923fa3c931121c75e6a4bec8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d38907dd157b48bebd8fded5cca65026a34ea245c79d9e57d845b3fa9b60501b
MD5 58a241776f6884451f0e482c1b771d96
BLAKE2b-256 cdeaddbe82c79c18e4c6020dffebcf9071e72f015d6310b725e6e7212ac51827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp36-cp36m-manylinux_2_24_x86_64.whl
Algorithm Hash digest
SHA256 e11fc8c6ed496f801aeaaecc87c7d039e4c73a4ba57f62875ad7997c9c334bbd
MD5 5a8e6401f768eba6e9987f5b615a32d4
BLAKE2b-256 e3c1ec51602a52c21c34197c51a9194aecef4c6cff2283ce2e272a1466547bdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-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.2-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0cf657a0771d4f3fd7fc9ae3ea8d7d3035b4fdf9c70798ba63b828bc7a766abf
MD5 ab0f9517f1725c40ab7431e3bc0625c1
BLAKE2b-256 587954a6be3b7dc6ea84a3277b5123a6c476674104e29a3374f2882601c0b1ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: shioaji-1.1.2-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 915.0 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.2-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13b83c383c44f1e6c5292d8062a9741ad341315b2650b292f9fe25cc3aa53aba
MD5 1bf1d5ac0597b9edc9f0659be59b490d
BLAKE2b-256 31f5a9e83fcc5c786024e949623c8b3967bc2a2a258f996a19dfce0a0dd2468b

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