Created
June 22, 2023 15:06
-
-
Save S0PEX/8eaf92b83ba90dda5c157483176c71fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
data = { | |
'state': 'studentAnmelden', | |
'type': 'student', | |
'offerCourseID': ' 169 ', # Entsprechend die ID eintragen, weiß nicht für was die offerId=36 war | |
'vorname': 'Name', | |
'nachname': 'Nachname', | |
'telefon': '0176000000', | |
'matrikel': '74XXX21', | |
'email': '[email protected]', | |
'hochschulen': '1', | |
'hochschulenextern': 'null', | |
'office': 'null', | |
} | |
response = requests.post('https://anmeldung.hochschulsport-koeln.de/inc/methods.php', data=data) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment