We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
replaces #12
In Version 2, we've introduced the Station enum, providing a more structured approach to utilizing the VVS API by replacing string identifiers.
### OLD from vvspy import get_departures deps = get_departures("5006115", limit=3) # Stuttgart main station
### NEW from vvspy import get_departures from vvspy.enums import Station deps = get_departures(Station.HAUPTBAHNHOF__TIEF)
Please note that the enum might not encompass all stations you seek. This limitation arises from parsing an older CSV resource to compile the enum.
Also note that there may be multiple stations with the same name for different cities, directions and types of transport.
The text was updated successfully, but these errors were encountered:
zaanposni
No branches or pull requests
replaces #12
In Version 2, we've introduced the Station enum, providing a more structured approach to utilizing the VVS API by replacing string identifiers.
Change
Data completeness
Please note that the enum might not encompass all stations you seek. This limitation arises from parsing an older CSV resource to compile the enum.
Also note that there may be multiple stations with the same name for different cities, directions and types of transport.
Get your station identifier manually
The text was updated successfully, but these errors were encountered: