How can I report the API of a class programmatically? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T08:46:18Z http://stackoverflow.com/feeds/question/1081392 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081392/how-can-i-report-the-api-of-a-class-programmatically 4 How can I report the API of a class programmatically? roder 2009-07-04T02:59:38Z 2009-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#1081395 8 Answer by Paolo Bergantino for How can I report the API of a class programmatically? Paolo Bergantino 2009-07-04T03:03:39Z 2009-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>&gt;&gt;&gt; class Foo: ... def bar(hello=None): ... return hello ... def baz(world=None): ... return baz ... &gt;&gt;&gt; import inspect &gt;&gt;&gt; members = inspect.getmembers(Foo) &gt;&gt;&gt; print members [('__doc__', None), ('__module__', '__main__'), ('bar', &lt;unbound method Foo.bar&gt; ), ('baz', &lt;unbound method Foo.baz&gt;)] &gt;&gt;&gt; inspect.getargspec(members[2][1]) (['hello'], None, None, (None,)) &gt;&gt;&gt; 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>