The README.md is missleading the user, we can read:
in Usage section
api = HaApiV5(
api_base='api.helloasso.com',
client_id=XXXXXX,
client_secret=XXXXXX,
timeout=60
)
And
in Usage Exemple section
api = ApiV5(
api_base='api.helloasso.com',
client_id=XXXXXX,
client_secret=XXXXXX,
timeout=60
)
api.call("url", method="POST", data={...})
Two different names are given ApiV5 and HaApiV5 for the main class, I found out that HaApiV5 was the right one
In Authorization section
We can read
Where, from my experience, it should be,
from helloasso_api import HaApiV5
The README.md is missleading the user, we can read:
in Usage section
And
in Usage Exemple section
Two different names are given
ApiV5andHaApiV5for the main class, I found out thatHaApiV5was the right oneIn Authorization section
We can read
Where, from my experience, it should be,