I found the following dictionary:
catalog = {"threads":{"39894014":{"date":1390842451,"r":0,"i":0,"lr": {"id":39894014},"semantic_url":"the-g-wiki-g-is-for-the-discussion- of-technology","sticky":1,"closed":1,"capcode":"mod"}}
I know I could access "date" for example by writing data["threads"]["39894014"]["date"]
, but is there some way of skipping the second thing (["39894014"]
,) because this number is randomly generated so the list may change, and it would be a totally different number.