Hello!
I'm working on a project that has sphinx generated documentation and we are trying to also make a JSON output of these docs with a very specific format. Example of JSON format: https://github.com/daspecster/gcloud-python/blob/feba95264f0df14c15d9049598a77bedad47d598/json/master/google/cloud/bigquery/query/queryresults.json I attempted to make a custom builder for this a while ago but I wasn't able to access these pieces of data(parameter types and descriptions, current module/class/method) in a predictable way. { "examples": [], "exceptions": [], "id": "google.cloud.bigquery.query.QueryResults.fetch_data", "name": "fetch_data", "params": [ { "description": " token representing a cursor into the table's rows.", "name": "page_token", "nullable": null, "optional": null, "types": [ "string or NoneType" ] }, { "description": " maximum number of rows to return.", "name": "max_results", "nullable": null, "optional": null, "types": [ "integer or NoneType" ] } If you have any resources you could point me towards or suggestions, I would be very grateful! Thank you! -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/d/optout.
