Skip to content

Instantly share code, notes, and snippets.

@S0PEX
Created June 22, 2023 15:06
Show Gist options
  • Save S0PEX/8eaf92b83ba90dda5c157483176c71fd to your computer and use it in GitHub Desktop.
Save S0PEX/8eaf92b83ba90dda5c157483176c71fd to your computer and use it in GitHub Desktop.
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': 'artur@mail.me',
'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