Compare commits

...

2 Commits

Author SHA1 Message Date
83af5b33da Improved To-Do 2022-10-04 11:21:51 +02:00
9c93275e59 Optimized imports 2022-10-04 11:21:30 +02:00
6 changed files with 20 additions and 6 deletions

View File

@ -63,9 +63,23 @@ RMV API key. Just use my functions together with those docs, if you want to buil
really sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.
# To-Do
## General
- [ ] Docs in Wiki
## Raw methods
- [x] arrivalBoard (board_arrival)
- [x] departureBoard (board_departure)
- [x] himsearch (him_search)
- [x] journeyDetail (journey_detail)
- [x] location.nearbystops (stop_by_coords)
- [x] location.name (stop_by_name)
- [x] trip (trip_find)
- [x] recon (trip_recon)
## Normal methods
- [ ] arrivalBoard (board_arrival)
- [ ] departureBoard (board_departure)
- [x] himsearch (him_search)
- [ ] himsearch (him_search)
- [ ] journeyDetail (journey_detail)
- [x] location.nearbystops (stop_by_coords)
- [x] location.name (stop_by_name)

View File

@ -1,6 +1,6 @@
from requests import get
from datetime import datetime
from typing import List, Union
from typing import Union
from xmltodict import parse as xmlparse
try:

View File

@ -1,6 +1,6 @@
from datetime import datetime
from requests import get
from typing import List, Union
from typing import Union
from xmltodict import parse as xmlparse
try:

View File

@ -1,5 +1,5 @@
from requests import get
from typing import Dict, OrderedDict, Union
from typing import OrderedDict, Union
from xmltodict import parse as xmlparse
from datetime import datetime

View File

@ -1,5 +1,5 @@
from requests import get
from typing import List, Union
from typing import Union
from xmltodict import parse as xmlparse
try:

View File

@ -1,5 +1,5 @@
from requests import get
from typing import List, Union
from typing import Union
from xmltodict import parse as xmlparse
try: