We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9147408 commit dfefcc6Copy full SHA for dfefcc6
13.py
@@ -2,6 +2,9 @@
2
3
proxy = xmlrpc.client.ServerProxy("http://www.pythonchallenge.com/pc/phonebook.php")
4
5
+methods = proxy.system.listMethods()
6
+print(methods)
7
+
8
evil = proxy.phone("Bert")
9
10
print(evil)
README.md
@@ -1,13 +1,22 @@
1
# pythonchallenge
Solve Problems in http://www.pythonchallenge.com
+#### 14
+result:
#### 13
result: http://www.pythonchallenge.com/pc/return/italy.html
```
11
import xmlrpc.client
12
13
It's amazing that RPC tech has so much long history.
14
15
16
+>system.listMethods
17
+This method returns a list of the methods the server has, by name.
18
19
20
POST below with application/xml to server.
21
22
<?xml version="1.0"?>
0 commit comments