Metadata-Version: 2.3
Name: curl_pyo3
Version: 0.1.0
Classifier: Programming Language :: Rust
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: Intended Audience :: Developers
Summary: libCURL Python Binding
Keywords: curl,rust,ffi
Author-email: Jiacai Liu <dev@liujiacai.net>
License: Apache-2.0
Requires-Python: >=3.8
Description-Content-Type: text/plain; charset=UTF-8

* Curl Python binding with help of Rust

* Development
#+begin_src bash
sudo apt install -y libcurl4-openssl-dev

python -m venv .env
source .env/bin/activate
pip install maturin
pip install maturin[patchelf]

# Install wheels
maturin develop

python -c 'import curl_py; print(curl_py.curl_get("http://httpbin.org/headers"))'

#+end_src

* Test

