Skip to content

Commit

Permalink
Update examples of EVChargingStationsApi
Browse files Browse the repository at this point in the history
  • Loading branch information
abdullahselek committed Oct 3, 2021
1 parent d5e0d24 commit 09fd037
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion examples/ev_charging_stations_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
EVStationConnectorTypes.small_paddle_inductive,
EVStationConnectorTypes.large_paddle_inductive,
],
maxresults=50,
offset=0,
)
print(response.as_dict())

Expand All @@ -23,6 +25,8 @@
EVStationConnectorTypes.small_paddle_inductive,
EVStationConnectorTypes.large_paddle_inductive,
],
maxresults=50,
offset=0,
)
print(response.as_dict())

Expand All @@ -33,12 +37,16 @@
EVStationConnectorTypes.small_paddle_inductive,
EVStationConnectorTypes.large_paddle_inductive,
],
maxresults=50,
offset=0,
)
print(response.as_dict())

# Based on the results of a search for charging stations, this method
# retrieves the full/updated information about a single charging station only.
response = evcharging_stations_api.get_station_details(
station_id="276u33db-b2c840878cfc409fa5a0aef858419037"
station_id="276u33db-b2c840878cfc409fa5a0aef858419037",
maxresults=50,
offset=0,
)
print(response.as_dict())

1 comment on commit 09fd037

@abdullahselek
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.