Metadata-Version: 2.1
Name: renderapi
Version: 1.0
Summary: render.com API wrapper
Home-page: https://github.com/abrihter/renderapi/releases
Author: bojan
Author-email: 
License: MIT
Download-URL: https://github.com/abrihter/renderapi/archive/v_100.tar.gz
Keywords: RENDER.COM,API,WRAPPER
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
License-File: LICENSE

# render.com API wrapper

## Documentation
[render.com API documentation](https://apidocs.preview.render.com/)

___
## Install
```pip install renderapi```
___

### How to use
```python
from renderapi import RenderApi

ra = RenderApi({RENDER_API_KEY})

#get custom domains
data = ra.custom_domains.get({serviceId})
print(data)
print(data.json())

#get jobs
data = ra.jobs.get({serviceId})
print(data)
print(data.json())

#get owners
data = ra.owners.get({ownerId})
print(data)
print(data.json())

```


