File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1111[ build-image ] : https://github.com/hnrkcode/python-loading-sdk/actions/workflows/build.yaml/badge.svg
1212[ build-url ] : https://github.com/hnrkcode/python-loading-sdk/actions/workflows/build.yaml
1313
14- ## How to install
14+ ## Install
1515
1616```
1717pip install python-loading-sdk
1818```
1919
20- ## Usage Examples
20+ ## Usage
2121
2222Instantiate the client and optionally provide login credentials to be able to use methods that requires the user to be logged in.
2323
2424``` python
2525from loading_sdk import LoadingApiClient
2626
2727client = LoadingApiClient(email = " your@email.com" , password = " your_password" )
28+
29+ response = client.get_profile()
30+ ```
31+
32+ It can also be used asyncrounously usage:
33+ ``` python
34+ from loading_sdk import AsyncLoadingApiClient
35+
36+ client = await AsyncLoadingApiClient(email = " your@email.com" , password = " your_password" )
37+
38+ response = await client.get_profile()
2839```
2940
41+ ## Examples
42+
3043### Requires Auth
3144
3245``` python
You can’t perform that action at this time.
0 commit comments