APIを使用して、redditから上位の画像を取得する関数に出くわしました。
sr='pics'
sorting=''
url = r'http://www.reddit.com/r/{sr}/{top}.json'.format(sr=sr, top=sorting)
ただし、元のコーダーが早い段階で次のような投稿をしたことがわかりました。
#'sorting' is whether or not the sorting of the reddit should be customized or not,
# if it is: Allowed passing params/queries such as t=hour, week, month, year or all"""
これらの他の「並べ替え」コマンドの使用方法や、それらの使用方法に関する詳細がどこにあるのかわかりません。json/reddit/python表記の一部として「ソート」についてもっと調べる必要があるかどうかさえわかりません。
私がやりたいのは、sorting='' で定義された上部の画像だけでなく、別のクエリを使用して下部の画像も取得することです (可能であれば、他の方法で並べ替えます)。