Skip to main content

高校数Ⅲレベルの数式処理ライブラリ

Project description

SymBuna

SymBuna は、C++による高速なバックエンドと、Pythonによる直感的なフロントエンドを融合させた「高校数Ⅲレベル」に特化した軽量・高速な数式処理ライブラリ(Symbolic Engine)です。

特徴 (Features)

  • 直感的な人間スタイル入力: 5x2pi といった省略された掛け算や、sin(pi/4) などの直感的な入力を自動でパースします。
  • 自動簡略化: 分母の有理化(1/sqrt(2) -> sqrt(2)/2)や、三角関数の特殊角、対数法則などを自動で綺麗に計算・整理します。
  • Jupyter Notebook 対応: 自動で美しい LaTeX 形式($\LaTeX$)で数式がレンダリングされます。
  • 高速性: コアな AST(抽象構文木)と簡略化エンジンはすべて C++17 で書かれており、Python 側との連携は pybind11 を通じて極めて低オーバーヘッドで行われます。

インストール (Installation)

ソースコードをクローンし、pip で開発モードとしてインストールします。 (※ インストールには C++17 対応のコンパイラと pybind11 が必要です)

git clone https://github.com/wagomuchan/symbuna.git
cd symbuna
pip install pybind11
pip install -e .

使い方 (Usage)

基本的なパースと表示

symbuna.parse に文字列を渡すだけで、自動的にパースと簡略化が行われます。

import symbuna

# 1. 自動簡略化と暗黙の掛け算のパース
expr = symbuna.parse("2x + 3x")
print(expr)  # 出力: 5 \cdot x

# 2. 三角関数と特殊角
expr2 = symbuna.parse("sin(pi/4)")
print(expr2) # 出力: \frac{\sqrt{2}}{2}

# 3. 有理化と立方根
expr3 = symbuna.parse("1 / sqrt(2)")
print(expr3) # 出力: \frac{\sqrt{2}}{2}

expr4 = symbuna.parse("cbrt(8)")
print(expr4) # 出力: 2

Jupyter Notebook での利用

Jupyter環境(JupyterLab, VSCode, Google Colab等)では、変数をそのまま評価するだけで、美しく数式が描画されます。

# Jupyter セル内
symbuna.parse("(-b + sqrt(b^2 - 4a c)) / (2a)")

(上記を実行すると、二次方程式の解の公式が LaTeX 形式で描画されます)

サポートしている記号・関数

  • 定数: pi (円周率), e (ネイピア数)
  • 四則演算・べき乗: +, -, *, /, ^
  • 関数:
    • sqrt (平方根), cbrt (立方根)
    • sin, cos, tan (三角関数)
    • log, ln (自然対数)

テストの実行

pip install pytest
python -m pytest tests/ -v

ライセンス (License)

MIT License

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

symbuna-0.1.0.tar.gz (12.6 kB view details)

Uploaded Source

Built Distributions

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

symbuna-0.1.0-cp312-cp312-win_amd64.whl (125.7 kB view details)

Uploaded CPython 3.12Windows x86-64

symbuna-0.1.0-cp312-cp312-win32.whl (102.4 kB view details)

Uploaded CPython 3.12Windows x86

symbuna-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

symbuna-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

symbuna-0.1.0-cp312-cp312-macosx_11_0_arm64.whl (146.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

symbuna-0.1.0-cp311-cp311-win_amd64.whl (124.3 kB view details)

Uploaded CPython 3.11Windows x86-64

symbuna-0.1.0-cp311-cp311-win32.whl (102.1 kB view details)

Uploaded CPython 3.11Windows x86

symbuna-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

symbuna-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

symbuna-0.1.0-cp311-cp311-macosx_11_0_arm64.whl (145.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

symbuna-0.1.0-cp310-cp310-win_amd64.whl (123.1 kB view details)

Uploaded CPython 3.10Windows x86-64

symbuna-0.1.0-cp310-cp310-win32.whl (101.0 kB view details)

Uploaded CPython 3.10Windows x86

symbuna-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

symbuna-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

symbuna-0.1.0-cp310-cp310-macosx_11_0_arm64.whl (144.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

symbuna-0.1.0-cp39-cp39-win_amd64.whl (123.3 kB view details)

Uploaded CPython 3.9Windows x86-64

symbuna-0.1.0-cp39-cp39-win32.whl (101.2 kB view details)

Uploaded CPython 3.9Windows x86

symbuna-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

symbuna-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

symbuna-0.1.0-cp39-cp39-macosx_11_0_arm64.whl (144.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

symbuna-0.1.0-cp38-cp38-win_amd64.whl (122.8 kB view details)

Uploaded CPython 3.8Windows x86-64

symbuna-0.1.0-cp38-cp38-win32.whl (100.9 kB view details)

Uploaded CPython 3.8Windows x86

symbuna-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

symbuna-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ i686

symbuna-0.1.0-cp38-cp38-macosx_11_0_arm64.whl (144.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: symbuna-0.1.0.tar.gz
  • Upload date:
  • Size: 12.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0.tar.gz
Algorithm Hash digest
SHA256 48d7e07bd86a59d3f04fb96a334027db3435c497c5b84effd7549543cbf04059
MD5 c651c25b6476b4baf81a228ed038966c
BLAKE2b-256 f9fb4119c02be943b26ecacefd5e7ff5ef076f638d3e61e6d2804b96663d2b85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symbuna-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 125.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ca24d120e4960a1dd915ae87d367d53fab742f9cead199ce45b0eb3f29cb63fe
MD5 25fc560f26564fcbe40f2c93441ba9cf
BLAKE2b-256 2f6130e078478e1a5bb1cd04b1a0023ba8a6523cd622b793644ed81eaabacb1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symbuna-0.1.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 102.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2732e90cbe18871f85622a4e4e2c3a7700b5e9a3f52ff6d4b007d598ba459558
MD5 d702e853815a309ffb7ef40a5a8a264c
BLAKE2b-256 f7b4920538f7f7d4dac0d07e6ce32ab02681d8d95fa9d732162453ca379b2809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b3b59cac926dfca660b538ad6c106fd8f92651b23d66b2c7e56aa929d6f938ba
MD5 f2d61d9910fb0d8ddd923038210817ea
BLAKE2b-256 73e0128980d78113739ec45d8f13a912748e19d1f1e82549d00ca96c18b33e35

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5dd4a8d687dec1bda5e6e1b62ce479939ca4a8dd4e7a135cebe3a53da7789ec3
MD5 fa28db44c56050f1adbecc6907233edd
BLAKE2b-256 b54edaa5d096786c7605ac54df58d91d968309c2926616c1b291545f43425b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfd0db1ede8214f0e68ac9eb00a4963a3f6e4b238b8c6a2a7c66c6196b30d0a4
MD5 6d78fedfb76ae8373773e8fd2ff255fa
BLAKE2b-256 49e849286a58840072c2e05ccc6de5f4949a3e1375d080199d2c9047b5694019

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symbuna-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 124.3 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9a7c75ff507129e7ca4d827b7bb7fde061735497c82251ad26b9e3221af7290b
MD5 6121fe0cb4d02d533641d5308865746b
BLAKE2b-256 6b631e19eb5a4c923b00a06811488865cc22393cfd72d56f1d1a1670c1ff0bd5

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: symbuna-0.1.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 102.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea3939aadccdb81401b824a6a05462a9e41a2e0206a4529ecbfd77eba54d076a
MD5 74d043e491affc3128ecdad034abb8ab
BLAKE2b-256 596795e1bce03624b422d760b26940ddb58042176cb694ff0e98b1ae721bbbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b6e6e94d70f21a00542b5853e1b7a167cc622dd873a0dcb6b25e7701842d252
MD5 60b0851037be6be977e328d15e76e558
BLAKE2b-256 3bd9ec4e0e79a7dd3c47571cb7831892328aa7d841b535d4e95ff8ce00964ee4

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 adf9f4e67f0421c0015631c0ab2b6961b6f86c8cfde8338edc5336e6e9b32af7
MD5 56f8b290d9612f0178f9e565510c7f89
BLAKE2b-256 82e1b6de161d53c85fddea26a64ff7765d871f3d6b6cec84335b755aa093660b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9342985c1f8a72acbd5212a11c07dc6b380f9ef5d918c222c5c7c76310ed5d6
MD5 ae22227b83c03d91788175398986d9df
BLAKE2b-256 8c2507b3e8c7545edd313ebff93dbb94eadd840aa6731bd5278dd4e5911a4099

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symbuna-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 123.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 183a90fef4f1f91c68ed4edd121ab30babd907763ba3b7e34ae57011ed5d80d2
MD5 4d800a2d774d31209ce6cbffe02f2220
BLAKE2b-256 cee5a3db9a997e29edc182dc9d2d9a050dd32e7ced5cb06c7525e6fffb53e816

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: symbuna-0.1.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3910381621162d158f55f0aeab3f807bcff0ff41505e5a8460de0ff0c0b235dc
MD5 29e73630a78621f25e1d0fe45a4e3afe
BLAKE2b-256 739fd042760c1659633e0e4d7b775981a53a560828a9fa98819d387688ccba2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddf0c8b22e517be5489f9d93b2e37541291b09232e1f29010dd5c970eb637ef3
MD5 732798c43a6c0604190ad475d6a7ee62
BLAKE2b-256 8dcfee07b74364a3c03ed189a3ac7b8263d7de30caa1bba09c78d13a4c648ac9

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47dcf4e133175be5d24ddb883eb6170616b63f947d9230822c5f11bb2ab21c61
MD5 ed02f4a18a2f0a227e366694c6cf7ab0
BLAKE2b-256 611a9966fe712e288cfe746a2a16a342bcaac0de4ac1a258bda4d837e8012885

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e46926de94ed4d9172f21b67dc93ca2af5d35558413546d50bf693c73e21c61
MD5 7d55edca291ce52f34c7ab82c171d490
BLAKE2b-256 3aa34b2932569dec3c4a74f06749228a9afbd5057b09ada9a0a63c9519451eda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: symbuna-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 123.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 aaea8ad20a99bbbc00c74b4ad4eacdde76b34054505e21c8ee4e076e1bc166ce
MD5 912a9b2d9d390891adf2665bef2e1f0c
BLAKE2b-256 10375781923a42a753d819a267427dd644019e548a4636e388f9929be5a70f8b

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: symbuna-0.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 101.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 5496e3095a60035efc89aa4d9bbd724265256fb1f6c44a26112056bcf9e9c618
MD5 050af20c86966b9978e5607c03dede5d
BLAKE2b-256 4a02b21eede9f72e47e017416b99b2a984d9ea3c4df0774ddfa94293220815b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e96aaab66639c78fb7165093691bcbd266fe8b670679db6b6f6d02f4c77530df
MD5 1f95f42ba2cdadc0a8b728a842b3b48d
BLAKE2b-256 6a62017b162d559e68d68589dea690445a543308688da514f72604614e8c1efb

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 32189622c5f70afd315e947ded73477e626a80c2100d9922e44b738ea405a173
MD5 802d23d1a95ab091935cd223e9845a4f
BLAKE2b-256 274a95dd8e01c81b768adb8a7e7a55704429e4b45a45baa44d10bd8d26a2ec75

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b6b502be2e90d80241d5e38bae86a59f79b51807ff3da33eb3b9be9e68fb97e
MD5 70c4a92cac290649884a0ed6d5ef4dd1
BLAKE2b-256 fb42c8a066604690b05ce777338a0e7d70ad0586714c7ebe1159eab72cac3c8a

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: symbuna-0.1.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 122.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b4933857f2467bad5c73995628647ca98612f4a1d3a1b80eae4989618f945f34
MD5 508d6e92b1f67c9c088d24f80cfbc7f8
BLAKE2b-256 c3e6e8bd1dc0f9feb32e94b9aa289a060f09b1ffa8bb5afee2caa8c9875c6a5f

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: symbuna-0.1.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 100.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for symbuna-0.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f97a2e1da88feb067c1024337d0c4daf3d82ff71c60f5b57118b4cf09935cf9f
MD5 c11f6e7947e5cb4d48f8f703ea6a2d3b
BLAKE2b-256 3768d2e2d4549d3b0fa7d88322ef37a83b8916fb5ca85d587ad6cefe22e50828

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for symbuna-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8bf4ca990bcc2b5e265dc243dde5342e636ca936e864428d87a32ca106e058e
MD5 42c2aee19079ebf403eb0fe6e71f0058
BLAKE2b-256 bbd2ea4a0061a1ae664d6592d6e0e61f772c80e5da549786346b07cd15090b52

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0405a4fd374ceb6f83e5becc1564517e08af057a1ab4353b831d48ba96b40d6a
MD5 b8a0dfb0b9e9f3ad0dfb058654996b64
BLAKE2b-256 78e6ee5b6564d9d381ef195f053890d1e7d3591487b1ad1b14eda40e883855fd

See more details on using hashes here.

File details

Details for the file symbuna-0.1.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for symbuna-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6b21739ee78570b6e7df2e144036d30c505e568b1f7b7864fbfa890b057a76b
MD5 d2dec4d9020314bd0fd2852b391d4295
BLAKE2b-256 a8b05a5be0103544582a83d5c5e14d25307db4b82d461f0ae9389ec30ba0efda

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