Created
July 12, 2015 16:48
-
-
Save zopyx/3983d1b76b70f2d8d12a 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
# 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