Skip to main content

Fast option pricing Greeks calculations using Black-Scholes and Bjerksund-Stensland models

Project description

stock-options-python

Fast Python bindings for option pricing Greeks calculations, powered by Rust.

Installation

pip install stock-options-python

Or build from source:

pip install maturin
maturin develop

Usage

import stock_options_python as sop

# Option parameters
s = 100.0      # Current stock price
k = 105.0      # Strike price
t = 0.5        # Time to expiration (years)
r = 0.05       # Risk-free rate (5%)
sigma = 0.2    # Volatility (20%)
q = 0.01       # Dividend yield (1%)

# Black-Scholes (European options)
delta = sop.bs_delta(s, k, t, r, sigma, q, option_type='call')
print(f"Call Delta: {delta:.4f}")

# Get all Greeks at once
greeks = sop.bs_greeks(s, k, t, r, sigma, q, option_type='call')
print(f"Delta: {greeks.delta:.4f}")
print(f"Gamma: {greeks.gamma:.4f}")
print(f"Theta: {greeks.theta:.4f} (per day)")
print(f"Vega:  {greeks.vega:.4f}")
print(f"Rho:   {greeks.rho:.4f}")

# Bjerksund-Stensland (American options)
am_greeks = sop.am_greeks(s, k, t, r, sigma, q, option_type='put')
print(f"\nAmerican Put Delta: {am_greeks.delta:.4f}")

API Reference

Black-Scholes Functions (European Options)

Function Description
bs_delta(s, k, t, r, sigma, q=0, option_type='call') Delta - sensitivity to underlying price
bs_gamma(s, k, t, r, sigma, q=0) Gamma - rate of change of delta
bs_theta(s, k, t, r, sigma, q=0, option_type='call') Theta - time decay (per day)
bs_vega(s, k, t, r, sigma, q=0) Vega - sensitivity to volatility
bs_rho(s, k, t, r, sigma, q=0, option_type='call') Rho - sensitivity to interest rate
bs_greeks(s, k, t, r, sigma, q=0, option_type='call') All Greeks at once

Bjerksund-Stensland Functions (American Options)

Function Description
am_delta(s, k, t, r, sigma, q=0, option_type='call') Delta
am_gamma(s, k, t, r, sigma, q=0, option_type='call') Gamma
am_theta(s, k, t, r, sigma, q=0, option_type='call') Theta (per day)
am_vega(s, k, t, r, sigma, q=0, option_type='call') Vega
am_rho(s, k, t, r, sigma, q=0, option_type='call') Rho
am_greeks(s, k, t, r, sigma, q=0, option_type='call') All Greeks at once

Parameters

Parameter Description
s Current price of the underlying asset
k Strike price of the option
t Time to expiration in years
r Risk-free interest rate (e.g., 0.05 for 5%)
sigma Volatility (e.g., 0.2 for 20%)
q Dividend yield (e.g., 0.01 for 1%), default 0
option_type 'call' or 'put', default 'call'

Performance

This library uses Rust for calculations, providing significant performance improvements over pure Python implementations, especially for batch calculations.

License

BSD 3-Clause License

Credits

Built on top of the stock-options Rust crate.

Project details


Download files

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

Source Distribution

stock_options_python-0.1.0.tar.gz (9.7 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

stock_options_python-0.1.0-cp314-cp314-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.14Windows x86-64

stock_options_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl (259.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

stock_options_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl (265.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

stock_options_python-0.1.0-cp313-cp313-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.13Windows x86-64

stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (303.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (317.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

stock_options_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl (259.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

stock_options_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl (265.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

stock_options_python-0.1.0-cp312-cp312-win_amd64.whl (159.6 kB view details)

Uploaded CPython 3.12Windows x86-64

stock_options_python-0.1.0-cp312-cp312-win32.whl (149.9 kB view details)

Uploaded CPython 3.12Windows x86

stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (329.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (303.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (295.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (317.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

stock_options_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (260.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

stock_options_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

stock_options_python-0.1.0-cp311-cp311-win_amd64.whl (161.4 kB view details)

Uploaded CPython 3.11Windows x86-64

stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (302.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (318.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

stock_options_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (260.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

stock_options_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (265.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

stock_options_python-0.1.0-cp310-cp310-win_amd64.whl (163.2 kB view details)

Uploaded CPython 3.10Windows x86-64

stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (415.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (321.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

stock_options_python-0.1.0-cp39-cp39-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.9Windows x86-64

stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (307.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (324.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (304.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (296.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

stock_options_python-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (323.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file stock_options_python-0.1.0.tar.gz.

File metadata

  • Download URL: stock_options_python-0.1.0.tar.gz
  • Upload date:
  • Size: 9.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for stock_options_python-0.1.0.tar.gz
Algorithm Hash digest
SHA256 7b5684109beb28addc09adadc8f66e9cb6089fb8f83ea8296f1956f98ad50ebd
MD5 ff9097f08278b09382fb9b27f999ad7d
BLAKE2b-256 8832a96b8c7966701a86fa947a774243f7f4b678bcdbcc133beb340e7c23b323

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5ee066bfdda25985a759b85aca099fb9d90fda55035afc283483fd13ca1d3c13
MD5 8a34591a76db1594a68dee46d3f2ef9c
BLAKE2b-256 1340f2fd0b1dc3adf0f15480c0cb82964fd1af704e928382b49e425a2e2b077e

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb93ed056e73ea3e95e179dd1aaec263e32ae019989b64f42e8e79761edc12dd
MD5 4fc4ba11a3a105efe9b46785fb9be164
BLAKE2b-256 4f9c03e458d7fe1c795c4f2d902a2c5fddfd0bb4615abdaad7b264ff3434a3c0

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3df1b5857410f53deb4ace10338e696d3688b182ba274f0cca27b695c7d51b0e
MD5 12aca2d14383a24190950ff1d5559e0b
BLAKE2b-256 d3d58045e1b337d356aa654845220523129e6890226ab04b962c0396f4bb322f

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 181c7434dddde771032a7970ae18135eda772b80adc872c830d5b13e51c63fa5
MD5 1ead66578b44551c4262bdedd14c4869
BLAKE2b-256 ead2f80d82f750e46a786ca3d391dca78f65c6836e65784f9aad7d3554dff758

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f184bdcd3cc327bcb1435189774d150b0db2d7818e2a92ca9f1b29a8a77f293e
MD5 41f6f14b0f71d174b68517cf0faf1d3e
BLAKE2b-256 2fd310e182fe6b2819ae411e8b6eea6192dd7c717a9cd2781ddfdccd29d5405f

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 00a6b220f4f39b996805ecd217f8ab1aa13e2af2cb6c5bc73abe255f022342f3
MD5 8ab8313fa2a8bcb50e62d2d1bb35b773
BLAKE2b-256 aa0fe58255cf644b3a8000ee027fd2b75146f8258cb9ade1e4d073d33433e5ed

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f71a01ece6a2ccfc8741dc276d7e82e47acf778c86662353eea2e66a532bc6cb
MD5 42cf4c6021a7ae2778c73840ee4f2dfa
BLAKE2b-256 0188aa67eb5b0259570c288269fb858e4b40d816d7bb57e76db3f444a90b14ac

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f00db7f98a8b1307422adfedde754070f7c3801b241f39da80c10a38c49c76b3
MD5 87a0d9ec8be845400872c4e4bfb5ca95
BLAKE2b-256 b3b2e16762376b4cc65a6a89a0c2957efe7708f3018955504764ca66c9b97248

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fee141714fc98e5877a94216ba5a3cf1398e0bd0af4099e352e8297475c2656
MD5 5ada692fd17b38a328fe1dcf298c6334
BLAKE2b-256 fdf040239d565204480e29643e4343343fce06c690e5a67bbeace7b19d0c9c5a

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60e38f86743abdc236bac598d02f160594310a76446552960546e6b812895cf8
MD5 d84ffea1fed93558fc9e733a70ca2a48
BLAKE2b-256 2c9b5708b5a5eca321c24efce7338ef6252b8975d9a8cd6058a6f459f9a693b8

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9175c09c3ab647557ee4a3ac386b81f4bb9e6c520fb6fe21e8a183f8ad37a0fd
MD5 7b5fcbcbced5453906453a6193e902ef
BLAKE2b-256 816983b1fd0b2225a6a9e785704e8eacfff1868f56967e6338f1b51b6eb5cc72

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fe13795e451d3d9b3080bba8b229ac040e39031388f02921bb74a8e68926cb4
MD5 71c76c504e88ced9064a6871ed776773
BLAKE2b-256 acc351f44a47a5331012a7a2c8a8246d909bfa17ec1ce7c5c6283d7a4e954a47

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 33bafa1a456b1239ff6bc9aa85bbcb791209976b27e81080e79d20f7c59bfe26
MD5 0fe4adc1065c30a049826ed7cd5bf619
BLAKE2b-256 df0e62c7a7316bbf918b850765f0caab4a01d1af3e34b117540e305e291d16e1

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 547a0f8a4eb2868ce8718a2354ee1bbf2065f7177316bcbeb5ccf9eb24c69f7b
MD5 f2838c478a2326e55376c8db6a17af17
BLAKE2b-256 6e78d5e52608df085dd16c34802e5eb02b34f65a42a6282fce87a7cbb8beca6f

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63b9e44e720fec032f03bff88ad2903278fc7310dbcf5d088db377a3856d9a03
MD5 d8a9d1670843824ed1ea04a3cd6e2cd1
BLAKE2b-256 5c73c31b48bc49b5a77f8eb9d47966f855f9149fa44d0485f543a4b3cee06d40

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c813df10a35aec425ac199f8e97adde1303560f8c427b8b8f7d002366c1baf6
MD5 d178e7a71078a9613804ff5c6e296ac7
BLAKE2b-256 c2116a604b5ad14b6f1cc2a25c35926271a3654a674be92b137b548a992596c2

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 89a011bf883ee27bdbdc6b99e15cf5e4568a9b39236ea27dd7b885e0016ffe1c
MD5 f145eb4c475933eeb4458273bc1112d1
BLAKE2b-256 3c6b05c5175401cd73160488c6af9bc9b4433bd5ef2630199c7eeba62f0521ff

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8a8a9b0133de2886c083f7ff075947a4f3061b81aec7c6cdc66ffd8986e87c80
MD5 1d6fc092b040ab218e7523c5bce92074
BLAKE2b-256 b9e89638a227245801498006e57cadd14b798052a7466863b5a37e5213f73be3

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df55b2b31898113800151b3f5c034e97f3de78fe79224bda490acc8341699696
MD5 aac160f04a0c82a1435f72033e1eba29
BLAKE2b-256 214ab5129651e9b529e53187062dd2f69819d3e53bd178852ff9fd1c97cb19a1

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73a33090b4144ded6c5500dc3c37de7e3f363c412f5679de09cc76734de08314
MD5 3858c1f42a92aa2d06e022e7b5484717
BLAKE2b-256 5db821e6365fdf2311c7a3f611ee9ee4712c85a5426c45ee2ab7502d0c2e3881

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63735d09b700fb540df9f2d59ed2c4c2d96d3929fd7a4fde845e14b360eaa61e
MD5 fa94f20077d2f2bbb69070873ace8251
BLAKE2b-256 93c0b85587773e8fb14bfe1155462eb7f577ab9a50fa983b76feb23b1ef0170e

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f667f1d437b2284280f46f589af94b71dd8e171fd6e7f490e29ed2f0b4e8aa91
MD5 441de1248b62aa056a314183f18b7857
BLAKE2b-256 9c93b40025149547ff18e37228954b4286dc3ba67469d8d4ff59169af0e2e066

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ce7391ffcd92ee58d79253f5d08c951e6cd2fc8c2c3c32cb10a522ab8bc18799
MD5 3994c3599bf452ecdf4d7c11c70a7a77
BLAKE2b-256 7e9ce9f903d56d1cd0457010bfee5c0f8f396d1b26d85324e93518ce8f8109d9

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c35a36708715529f3f8bb273b30c30cb10b7c1ce44221660e3e0116948fcfaba
MD5 e2a09b54e1f82a9ade677a2fb65ade81
BLAKE2b-256 7d0507181ce3939c794eaa410c4b47f81f7d8e9ee4c9ff0ee20e7266976b37f5

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c5803f988655c26d359beb421f3195b3c41fab1f464326fd8410ce52764de81
MD5 92609d9ac29f6b14cfd27ffceb14a278
BLAKE2b-256 f3061500d52adb11c80b32124030dc146a251fcb70f14e813c203ae22f088539

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59210462cdc55ef87b8ef4a456564e51b3ee37255fee738edf2e9120134433da
MD5 a8ecf5c8e45f7ce0cc8527c4c617d9ee
BLAKE2b-256 94da174407532ad3c7b51530a02522745d6876f945a4b356820b89c0e61d4870

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eec5f7a957770ddaf58a3dc67867825ac756f484ecc115757046f4c1cf338bc6
MD5 4750108f4c720ea25307be5ea03f0b08
BLAKE2b-256 ce7772869192f7b3747e2dd66e458b33c7a2a27d07ce7659a9a587ddecf93cb0

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4184e1ae80b8299664d617175e963b367746a877f93cddc691b956739707d5b
MD5 a8d5951733bc1010a728023852a39f95
BLAKE2b-256 074a605fee090b3546fa15480d107975cc05b0b3d46e5f5d5fe5baed2aba9305

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51a29362e1799d81778632049f00198ef2cb318b69d3d604144bffa8a8effae2
MD5 d0416a0341a231aea44742628bb48619
BLAKE2b-256 d2b6b68b6d6b734c622a37ffd39abc802bc81c5a4c490bd1f23fa351a9df5747

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 537b88ecfea0d04edc2b4e9905386125f44fe369ffb20265da7a533555565699
MD5 521a6b59146e6c9674ea515314be0efc
BLAKE2b-256 3e445f6b4f4de5e2423b5ebb860124f68db91ac1ac78d109812746c726c02ed0

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 faef8d0b214ab60cb0f8a3d005cd23424cbe532393c408d9975728c229f73c40
MD5 5e10c74857df5bf3153f74c7e356f8d9
BLAKE2b-256 79b68b21ed4fc55f264c37b917d0d264c84bd2a1e136867c1e742a171c0cb38c

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ea2a5287af87aafee999319cbefb5d558201944f18e8bf0a11d424200e3ab1bc
MD5 d81b8d1af7ee4bb6756b6af4e0fd240d
BLAKE2b-256 b2d6060ce45847eba4c1fd85fa1c0ae3a376a77e2a121e8ba9ba0449b5f5313d

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0f978d1993ca5b21fcb1050434ed9100583f6d6b9d8754e9273de512c72c845b
MD5 4e5f13c4117c5701303f8e2fd15b218e
BLAKE2b-256 230644554a010b7a628b834f3cbf05b26091597b3c6872790bb735ef2ef8e7db

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7a3a9d46614861e0f4cccf5ed4c4a324d16fc22c5eadbf01fcd2b2a6ec7ce9d
MD5 7d8208bda98606c3424d64651b140beb
BLAKE2b-256 1f3d53c44c5c11504d4bb90eb049e938e8593a0c809e5fb1960bd2ee10761eab

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df8667caed19c1f2fde0053ec971f3c4b09a2adecc41327685374d1daac4668b
MD5 92e754e64a6d87193ce1772c5ebb91c0
BLAKE2b-256 fec05bd03d13b425d86d3bf55c55a6c7584e654fd8f82ca84dd32b55cd8f0008

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c93095ddce2f1c85c79f190d6ddae5cd6504dcfc59e8381bb02ab28a4a843699
MD5 ba90fcba75d621bf2f3866a708135d34
BLAKE2b-256 2dd5f39310ebb951fc2af0da5a5bc3cd3c25cbc713e33f67b99ed667ec00fdb4

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aaca9b04dcf80f993b465987edb720e4e103cc40fd75547812e0538172b8997
MD5 166994e0f9e411ccbf5cfde7efffcdf2
BLAKE2b-256 aa022b61a5f66df66f9b0749e2080528aa986b7ea83b4173ac268dbfbe917bc5

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2680f514f487e8983d2378809dfecb963f3ca73f52d4adf514a0facaf5f9483f
MD5 21442a7e2c9ca9fde82bf92766bf64ed
BLAKE2b-256 ffb6b81fc947a13abdc683910e8d05934c46b6dd8228a00fa6736b46bff1203f

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 12d9cdbef6e333db879c8d4f296a4831434fa111182001ef498253316c968e02
MD5 b87b03f026813b4c8eb39f002e47b7ba
BLAKE2b-256 e4b949cb67af8b83ccf134095f6a26f5668c9884c19a636de38f5dc8e9eb64b9

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8f96ffdaafab0cffe384665d5b898f2c0dd7c99e76eb647c8d4f7c9dfb9b2aa
MD5 cef5bb3973901f4da6d775c7188bdd03
BLAKE2b-256 2b598d95a4527814f123fd607b3e638f174c6839233f081cb8a5c597a49ab593

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 352f4f737873396cff66f9072a4cb3b0f2bc99805fa199ac727c4f3eb46be737
MD5 88674c15dfd872142cfe376652d909f3
BLAKE2b-256 734aa0c03425ac989d1fcff98ee0e1482fd6a2b57497ce1a5e542758585c8e26

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80e019a02ba0d6884af74a4e4d8d824021a51fcf0eb1f47848314a435f720e26
MD5 52c048b25447456bffb824fb3432b677
BLAKE2b-256 3f137697ebe3000eb6966a50c914a1fd768578cf332e44b9fefc45297b2178c1

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9230a5dc838973bb9ce254984bd69c3870f3b36e8b0016cc2f59cd547253c3b5
MD5 2a800d0c5f272044a36320752a4029a9
BLAKE2b-256 691b32fc5aad9329954fa44af361521b6119bc2616ab48bb5982a5e8a1079208

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b70527679e0de8d3d9d8f8f53d3f4c4b7697d4e72d06444545023ae9311fc815
MD5 2b4bf196adacf71a627f30f0a607725b
BLAKE2b-256 b4cb5d0bb83dc866536b22efab076c4c7c9dd987aa3290b74dfb41e3521b64b6

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1cc2d6c1e6cd913219a570acbde1f261e59e7d53a4fd89895a7e0b8d79b760ab
MD5 32fadd8c8453f0ab5c16ec4efb7498ac
BLAKE2b-256 f0975c1c4603d2fba4a562a9d2417f863c21c7213753a5810c901189d4c61866

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59b5d3ad3781f6281bfc55eeed08c8114e0da4c8e2c92142d4b870ec00284508
MD5 6bf6f8371cd9c571c8dd19ef7c671311
BLAKE2b-256 a42bec33da4e97c78faffb87ce395a001b81c410b8a512409022025f78ea7ac3

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b713497a093342627b1a2dff57df0e61c42b7926da25a0a1146e7b4e102b0a43
MD5 109cd28e77f384bc26c0e675a71020b1
BLAKE2b-256 79b9994029861662351871b1d41645459aebe6d3cfd5b7d664e527d49682ba49

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e0b302fa8ba9ff73ce9ebb8e3b01935a236435d0639ceb7a40cc692a6369961
MD5 c1fe61f96c6117f7b5fbed3017c34227
BLAKE2b-256 e52ada3049297937c02bd7bc25fdaea3ff2d2e7505f9e21e29ae739c8c476eba

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2961769d86d7ab246a5d72aa40206dea810a0925685ea8a1f10cdbb14ee9b6cd
MD5 ce0f13afc56e0355321314b57f700367
BLAKE2b-256 180a1271eae009a0ed9c87320dff1a006219cbdb959ca382e7d9606393a2cf79

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bd5a8c0b5b16930e3a2af6c423bb6b3022df87bd211f211596df67a79a53f92
MD5 990d7f86ef67392ce864ab02a8d496ce
BLAKE2b-256 ae37e0054a31168515a162b3aaf7171f4579bd2a79d79c111250ac5c7baa9f7c

See more details on using hashes here.

File details

Details for the file stock_options_python-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for stock_options_python-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92d8a2ffee09245e6d58fe5eac309c2985d5233c2debf6b900f27d84b34cf623
MD5 a49ed45c4971e8c1f76c0199cd4151bd
BLAKE2b-256 08922aef1bb9a724a35e66082072f8cc104e1c7c4c56f844775ae5fd0fc4f1b0

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