Mercurial > hg > AuthRPC
comparison README.txt @ 16:686b998428de
Update typo in README
author | Ben Croston <ben@croston.org> |
---|---|
date | Mon, 05 Sep 2011 21:23:53 +0100 |
parents | 3c19ae16fc7a |
children | 0dacc8e37fd9 |
comparison
equal
deleted
inserted
replaced
15:3c19ae16fc7a | 16:686b998428de |
---|---|
21 def do_something(self, myvar): | 21 def do_something(self, myvar): |
22 """Your code placed here""" | 22 """Your code placed here""" |
23 return 'Something', myvar | 23 return 'Something', myvar |
24 | 24 |
25 application = AuthRPCApp(api(), auth=myauth) | 25 application = AuthRPCApp(api(), auth=myauth) |
26 return simple_server.make_server('localhost', 1234, application) | 26 simple_server.make_server('localhost', 1234, application) |
27 | 27 |
28 Example Usage (Client): | 28 Example Usage (Client): |
29 | 29 |
30 :: | 30 :: |
31 | 31 |