An open API service indexing awesome lists of open source software.

https://github.com/torokmark/builders_in_python

Repo of blog post.
https://github.com/torokmark/builders_in_python

Last synced: about 1 month ago
JSON representation

Repo of blog post.

Awesome Lists containing this project

README

          

# Builders in Python

Demo repo to the builder post (https://torokmark.github.io/2019/01/08/builders-in-python.html)

# Usage of multibuilder

```python
print(ResponseBuilder()
.header()
.add('Access-Control-Allow-Origin', '*')
.add('Accept', '*')
.body()
.add('body', json.dumps('hello', default=str))
.status(204))
```