-
Hi,
I'm trying to run the sample code in readme for getting timetable. The only thing I changed is the username and password arguments.
I get the following error.
/node_modules/edupage-api/src/Ed…
-
Is there any way to filter done homeworks in forloops (code bellow)?
**for hw in homework:
print(hw.due_date)
print(hw.title)
print(hw.description)**
If not could you add it?
-
Add the ability to mark homework as done, invisible, important (and liked?)
-
Right now we're only using `api/tta` with offset 0. Thus, we only show current week. We should extend this functionality to allow users to choose a week for which they want to view the schedule.
De…
-
**Is your feature request related to a problem? Please describe.**
It's possible without but without events you would need to save the last ID you handled into a file and then watch for new stuff con…
-
Hello,
so I have this code:
```python3
from edupage_api import Edupage, EduTime, EduDate, BadCredentialsException, LoginDataParsingException
edupage = Edupage("#####", "#####", "#####")
try:
…
-
So this code that i found in the readme does not work.
The error code:
File "main.py", line 4, in
edupage.login()
File "C:\Users\PeterKučera\AppData\Local\Programs\Python\Python38-32\lib\…
-
When i use `edupage.login` as showed in the documentation, it gives me this Error Message:
```
Exception has occurred: JSONDecodeError
Unterminated string starting at: line 1 column 130169 (char …
-
This is my code, I blurred the credentials.
```
from edupage_api import Edupage
from datetime import datetime
EDUPAGE_USERNAME = '###'
EDUPAGE_PASSWORD = '###'
edupage = Edupage(EDUPAGE_US…
-
```
homework = edupage.get_homework()
for hw in homework:
print(hw.due_date.day, hw.due_date.month)
```
Printed: 04 14 (example, 04 is month, 14 is day)
so .day is month and .month i…