Doxygen を使用して Python コードを文書化しています。「リクエスト」を受け取るだけの django 関数がありますが、request.GET にあるはずのものを文書化したいと思います。現在次のようにコメントされている私の変数はうまくいきます:
# GET parameters:
# {
# 'tag_id' : int = Tag ID, used if no tag-name given
# 'tag_name' : string = Tag name, used if no TagID given
# 'last_id' : int = id of last displayed photo (that's the oldest one displayed!!!), optional
# 'max_n' : int = max number of photos to return, optional - def. 10
# 'bigt' : bool = optional, if present then returns bigger thumbs (400x260) instead of 300x200
# 'newest_id': int = newest photoID got, optional. If given call returns newer images only
# }