Metadata-Version: 2.1
Name: pyrac
Version: 0.2.0
Summary: Python RESTful API Client
Author-email: Kearash <hi@kearash.io>
Project-URL: Homepage, https://github.com/notkearash/pyrac
Project-URL: Bug Tracker, https://github.com/notkearash/pyrac/issues
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: build
Requires-Dist: build ; extra == 'build'
Requires-Dist: twine ; extra == 'build'

![pyrac](./pyrac.png)
# Python RESTful API Client
## Installation
First make sure you have python 3.10 installed on your system.
```
$ python --version
Python 3.10.x
```

Then install the required packages
```
pip install requests
```
That's it!

## Help message
```
$ ./pyrac -h
 ____  _  _  ____   __    ___   
(  _ \( \/ )(  _ \ / _\  / __)  
 ) __/ )  /  )   //    \( (__   
(__)  (__/  (__\_)\_/\_/ \___)v0.2.0
            
       [-h] [-u URL] [-H] [-m METHOD] [-d JSON] [-r] [-q] [--data-file FILE]
       [--force-show-response] [--version]

Python RESTful API Client.

options:
  -h, --help            show this help message and exit
  -u URL, --url URL     (required) url of endpoint
  -H, --https           sets your connection to https
  -m METHOD, --method METHOD
                        sets your connection method. [GET, POST, OPTIONS]
  -d JSON, --data JSON  data that want to be passed in json format
  -r, --allow-redirects
                        allows redirects
  -q, --quiet           quiet output (no messages)
  --data-file FILE      data as a json file
  --force-show-response
                        shows response anyways
  --version             shows the version number
```
## Examples
```
./pyrac -u jsonplaceholder.typicode.com/posts -m get --https
```
## License
Licensed by MIT
