You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-2Lines changed: 16 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,20 @@ This program also requires you install PRAW, a library used to access the Reddit
31
31
32
32
And to use the program, just
33
33
34
-
python project.py
34
+
python project.py YourSubredditHere
35
+
36
+
If you want to analyze more than 10 commenters and 10 of their comments each, then add an integer argument
37
+
38
+
python project.py YourSubredditHere 100
39
+
40
+
Careful though, time / requests increases proportional to the square of this number. 100 will take a minute or two, 500 - 45 minutes or so. 1000 - Go put a pot of coffee on.
41
+
42
+
project.py will output a textfile in the folder with the most frequent subreddits commented in at the top, with percentages on the right.
43
+
44
+
#Future features
45
+
46
+
I’ll soon have an “extended user profile” feature, where you input a reddit user, and it gathers the profiles of each of their frequented communities and amalgamates them according to how much the user goes in that community. This will be really great for predicting, say, what subreddits a user would like to comment in in the future.
47
+
48
+
In the not-too-distant future, I’d like to start saving the data to a database, possibly offering the software as a web service.
49
+
35
50
36
-
I haven’t added command line arguments yet but will soon. For now you’ll have to hardcode the subreddit you want to inspect.
0 commit comments