Skip to content

Instantly share code, notes, and snippets.

@zopyx
Created July 12, 2015 16:48
Show Gist options
  • Save zopyx/3983d1b76b70f2d8d12a to your computer and use it in GitHub Desktop.
Save zopyx/3983d1b76b70f2d8d12a to your computer and use it in GitHub Desktop.
# Read member authentication data from DGHO member backend
# python read-member.py <username> <password> <fachgesellschaft>
# <fachgesellschaft> 0...N
import sys
import pprint
import xmlrpclib
proxy = xmlrpclib.ServerProxy('https://mitglieder.dgho.de/xmlrpc')
result = proxy.dgho.getLLPerson()
pprint.pprint(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment