How can I report the API of a class programmatically? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T08:46:18Zhttp://stackoverflow.com/feeds/question/1081392http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081392/how-can-i-report-the-api-of-a-class-programmatically4How can I report the API of a class programmatically?roder2009-07-04T02:59:38Z2009-07-04T03:34:01Z
<p>Dear stackoverflow-</p>
<p>My goal is to parse a class and return a data-structure (object, dictionary, etc) that is descriptive of the methods and the related parameters contained within the class. Bonus points for types and returns...</p>
<p>Requirements: Must be Python</p>
<p>For example, the below class:</p>
<pre><code>class Foo:
def bar(hello=None):
return hello
def baz(world=None):
return baz
</code></pre>
<p>Would be parsed to return</p>
<pre><code>result = {class:"Foo",
methods: [{name: "bar", params:["hello"]},
{name: "baz", params:["world"]}]}
</code></pre>
<p>So that's just an example of what I'm thinking... I'm really flexible on the data-structure.</p>
<p>Any ideas/examples on how to achieve this?</p>
http://stackoverflow.com/questions/1081392/how-can-i-report-the-api-of-a-class-programmatically/1081395#10813958Answer by Paolo Bergantino for How can I report the API of a class programmatically?Paolo Bergantino2009-07-04T03:03:39Z2009-07-04T03:08:45Z<p>You probably want to check out Python's <a href="http://docs.python.org/library/inspect.html#inspect.getmembers" rel="nofollow">inspect</a> module. It will get you most of the way there:</p>
<pre><code>>>> class Foo:
... def bar(hello=None):
... return hello
... def baz(world=None):
... return baz
...
>>> import inspect
>>> members = inspect.getmembers(Foo)
>>> print members
[('__doc__', None), ('__module__', '__main__'), ('bar', <unbound method Foo.bar>
), ('baz', <unbound method Foo.baz>)]
>>> inspect.getargspec(members[2][1])
(['hello'], None, None, (None,))
>>> inspect.getargspec(members[3][1])
(['world'], None, None, (None,))
</code></pre>
<p>This isn't in the syntax you wanted, but that part should be fairly straight forward as you read the docs.</p>