Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,20 @@
| **BUDY_USERNAME** | `str` | `None` | The username to be used for authentication. |
| **BUDY_PASSWORD** | `str` | `None` | The password to be user for authentication. |

## Example

```python
import budy

api = budy.API(
username="my_user",
password="my_password"
)

api.login()
api.create_voucher_value(10)
```

## License

Budy API is currently licensed under the [Apache License, Version 2.0](http://www.apache.org/licenses/).
Expand Down