reddit-analyzer
reddit-analyzer copied to clipboard
find out when and where someone is posting to reddit
``` --- fetching data for user: ?? --- Traceback (most recent call last): File "reddit-analyzer.py", line 64, in lastpost = postdata[0]['created_utc'] IndexError: list index out of range ```
In the event that an account does not exist, reddit returns a message of "Not Found" and an error of "404". Added an if statement to detect this returned json,...
Any idea what dependency will resolve the following error? `Traceback (most recent call last): File "reddit-analyzer.py", line 190, in timeGraph(timelist) File "reddit-analyzer.py", line 142, in timeGraph d.append(tuple([g, tgdata[e][1]])) IndexError: list...
Would be a good idea to add a `requirements.txt` file to the repository, as well as a short note in the README about how to install the script. For instance,...
There is some kind of bug when processing accounts that haven't posted much. The script crashes with the following error: ``` Traceback (most recent call last): File "reddit-analyzer.py", line 192,...
The script was broken because the Pushshift API is offline. I have: - Switched to the official Reddit JSON API so the script fetches data again. - Fixed the graph...