Compare commits
No commits in common. "83af5b33dab3ab6993ece24c965c686b5efd6a9d" and "7d5454a5dfbf5cb06bef9c54845234a463a46093" have entirely different histories.
83af5b33da
...
7d5454a5df
16
README.md
16
README.md
@ -63,23 +63,9 @@ 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.
|
really sophisticated. However I'm not sure whether RMV supports that many HAFAS features publicly.
|
||||||
|
|
||||||
# To-Do
|
# 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)
|
- [ ] arrivalBoard (board_arrival)
|
||||||
- [ ] departureBoard (board_departure)
|
- [ ] departureBoard (board_departure)
|
||||||
- [ ] himsearch (him_search)
|
- [x] himsearch (him_search)
|
||||||
- [ ] journeyDetail (journey_detail)
|
- [ ] journeyDetail (journey_detail)
|
||||||
- [x] location.nearbystops (stop_by_coords)
|
- [x] location.nearbystops (stop_by_coords)
|
||||||
- [x] location.name (stop_by_name)
|
- [x] location.name (stop_by_name)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from requests import get
|
from requests import get
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from typing import Union
|
from typing import List, Union
|
||||||
from xmltodict import parse as xmlparse
|
from xmltodict import parse as xmlparse
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
from requests import get
|
from requests import get
|
||||||
from typing import Union
|
from typing import List, Union
|
||||||
from xmltodict import parse as xmlparse
|
from xmltodict import parse as xmlparse
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from requests import get
|
from requests import get
|
||||||
from typing import OrderedDict, Union
|
from typing import Dict, OrderedDict, Union
|
||||||
from xmltodict import parse as xmlparse
|
from xmltodict import parse as xmlparse
|
||||||
from datetime import datetime
|
from datetime import datetime
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from requests import get
|
from requests import get
|
||||||
from typing import Union
|
from typing import List, Union
|
||||||
from xmltodict import parse as xmlparse
|
from xmltodict import parse as xmlparse
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
from requests import get
|
from requests import get
|
||||||
from typing import Union
|
from typing import List, Union
|
||||||
from xmltodict import parse as xmlparse
|
from xmltodict import parse as xmlparse
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user