-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add: praw.ini so we don't have to rely on a specific site-package path when using the default one
- Loading branch information
Showing
3 changed files
with
83 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[DEFAULT] | ||
# A boolean to indicate whether or not to check for package updates. | ||
check_for_updates=True | ||
|
||
# Object to kind mappings | ||
comment_kind=t1 | ||
message_kind=t4 | ||
redditor_kind=t2 | ||
submission_kind=t3 | ||
subreddit_kind=t5 | ||
trophy_kind=t6 | ||
|
||
# The URL prefix for OAuth-related requests. | ||
oauth_url=https://oauth.reddit.com | ||
|
||
# The amount of seconds of ratelimit to sleep for upon encountering a specific type of 429 error. | ||
ratelimit_seconds=5 | ||
|
||
# The URL prefix for regular requests. | ||
reddit_url=https://www.reddit.com | ||
|
||
# The URL prefix for short URLs. | ||
short_url=https://redd.it | ||
|
||
# The timeout for requests to Reddit in number of seconds | ||
timeout=16 |