Browse Source

WebAPI: moved doc() to __doc__; doc() now prints

pull/6/head
Rossen Georgiev 10 years ago
parent
commit
f5d6bc848c
  1. 9
      README.rst
  2. 13
      steam/webapi.py

9
README.rst

@ -38,7 +38,7 @@ The response will be deserialized using the appropriate module unless ``raw`` is
.. code:: python
>>> print api.ISteamUser.ResolveVanityURL.doc() # method doc
>>> api.ISteamUser.ResolveVanityURL.__doc__ # method doc
"""
ResolveVanityURL (v0001)
@ -51,8 +51,11 @@ The response will be deserialized using the appropriate module unless ``raw`` is
- The vanity URL to get a SteamID for
"""
>>> print api.ISteamUser.doc() # interface and all methods
>>> print api.doc() # all available interfaces
# or calling doc() will print it
>>> api.ISteamUser.ResolveVanityURL.doc() # method doc
>>> api.ISteamUser.doc() # interface and all methods
>>> api.doc() # all available interfaces
Checkout the wiki for a `list of the currently available API interfaces`_.

13
steam/webapi.py

@ -1,3 +1,4 @@
from __future__ import print_function
import requests
@ -124,6 +125,10 @@ class WebAPI(object):
return vdf.load(resp.raw)
def doc(self):
print(self.__doc__)
@property
def __doc__(self):
doc = "Steam Web API - List of all interfaces\n\n"
for interface in self.interfaces:
doc += interface.doc()
@ -167,6 +172,10 @@ class WebAPIInterface(object):
return self._parent.https
def doc(self):
print(self.__doc__)
@property
def __doc__(self):
doc = "%s\n%s\n" % (self.name, '-'*len(self.name))
for method in self.methods:
doc += " %s\n" % method.doc().replace("\n", "\n ")
@ -276,6 +285,10 @@ class WebAPIMethod(object):
return self._parent.https
def doc(self):
print(self.__doc__)
@property
def __doc__(self):
doc = "%(httpmethod)s %(name)s (v%(version)04d)\n" % self._dict
if 'description' in self._dict:

Loading…
Cancel
Save