# learn-pyo3 **Repository Path**: hedonwang/learn-pyo3 ## Basic Information - **Project Name**: learn-pyo3 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-08-29 - **Last Updated**: 2024-08-29 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # learn pyo3 ## string_sum ```bash ➜ learn-pyo3 cd string_sum ➜ string_sum maturin develop zsh: command not found: maturin ➜ string_sum source .env/bin/activate (.env) ➜ string_sum maturin develop 🔗 Found pyo3 bindings 🐍 Found CPython 3.12 at /Users/wangjiahan/rust/study/learn-pyo3/string_sum/.env/bin/python 📡 Using build options features from pyproject.toml Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.01s 📦 Built wheel for CPython 3.12 to /var/folders/by/48rhyclx34ngfhf9bqldr2k80000gn/T/.tmptshJlY/string_sum-0.1.0-cp312-cp312-macosx_11_0_arm64.whl ✏️ Setting installed package as editable 🛠 Installed string_sum-0.1.0 (.env) ➜ string_sum python Python 3.12.4 (main, Jun 6 2024, 18:26:44) [Clang 15.0.0 (clang-1500.3.9.4)] on darwin Type "help", "copyright", "credits" or "license" for more information. >>> import string_sum >>> string_sum.sum_as_string(5,100) '105' >>> ```