Metadata-Version: 2.4
Name: curlpy_nicolaszmarzagao
Version: 0.1.0
Summary: A simple curl clone in Python
Author-email: Nicolas Z Marzagão <nicolas.marzagao@gmail.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/nicolaszmarzagao/curlpy
Project-URL: Issues, https://github.com/nicolaszmarzagao/curlpy/issues
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# cURLpy
A curl implementation from scratch using Python3.

The **goal** of this project is to use as few dependencies as possible (PREFERABLY NONE!)

**Current Status:** This project currently has no dependencies.

### Quickstart
```bash
# Clone the repository using ssh
git clone git@github.com:nicolaszmarzagao/curlpy.git
cd curlpy

# Activate the python3 virtual enviroument then install cURLpy locally
python3 -m venv .venv
source .venv/bin/activate
python3 -m pip install -e .
```
And that's it!
```bash
# use this command to test curlpy
python3 -m unittest
# and this one to run
python3 -m curlpy
```

### Contributing
Feel free to fork and repository as this project is under the MIT License.
You can also contribute to any issues, report issues or suggest features.
