“Retrieving Data from ‘View Course’ Pop-Up Using the Pronotepy API” #326
Unanswered
KheroubiAymen
asked this question in
Q&A
Replies: 1 comment
-
Hi, not at once, but you can get the contents for a particular lesson with client = ...
lesson_content = client.lessons(today)[0].content
if not lesson_content:
print("Lesson does not have any content")
else:
print(lesson_content.title)
print(lesson_content.description)
print(f"Lesson has {len(lesson_content.files)} file(s) attached") |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I would like to know if it is possible, thanks to the Pronotepy API, to retrieve the data displayed in the pop-up that appears when clicking on “View Course” on the “Cahier de Texte” page.
Beta Was this translation helpful? Give feedback.
All reactions