This repository was archived by the owner on Jul 21, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -45,6 +45,9 @@ heron.basic_auth_password = os.getenv("HERON_PASSWORD")
4545heron.provider = " plaid"
4646```
4747
48+ Alternatively, set ` HERON_USERNAME ` and ` HERON_PASSWORD ` as environment
49+ variables which will be automatically picked up.
50+
4851Then you can issue API requests using Python classes:
4952
5053``` python
Original file line number Diff line number Diff line change 1+ import os
2+
13_base_url = "https://app.herondata.io/api"
24
3- basic_auth_username = None
4- basic_auth_password = None
5+ basic_auth_username = os . getenv ( "HERON_USERNAME" )
6+ basic_auth_password = os . getenv ( "HERON_PASSWORD" )
57provider = None
68
79from .category import Category # noqa
Original file line number Diff line number Diff line change 1414# This call to setup() does all the work
1515setup (
1616 name = "heron-data" ,
17- version = "0.1.0 " ,
17+ version = "0.1.1 " ,
1818 description = "A client for the Heron Data API" ,
1919 long_description = README ,
2020 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments