The README.md is missleading the user, we can read: [in Usage section](https://github.com/HelloAsso/HaApiV5#usage) ```py api = HaApiV5( api_base='api.helloasso.com', client_id=XXXXXX, client_secret=XXXXXX, timeout=60 ) ``` And [in Usage Exemple section](https://github.com/HelloAsso/HaApiV5#usage-exemple) ```py 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](https://github.com/HelloAsso/HaApiV5#authorization) We can read ```py from apiv5 import ApiV5 ``` Where, from my experience, it should be, ```py 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,