Skip to content

Commit

Permalink
Adds nikkemobile subreddit
Browse files Browse the repository at this point in the history
  • Loading branch information
unknown committed Jan 4, 2024
1 parent c721654 commit d5bd799
Show file tree
Hide file tree
Showing 4 changed files with 38 additions and 0 deletions.
1 change: 1 addition & 0 deletions reddit2telegram/channels/r_nikkemobile/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Just empty file
35 changes: 35 additions & 0 deletions reddit2telegram/channels/r_nikkemobile/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#encoding:utf-8

from utils import weighted_random_subreddit


# Subreddit that will be a source of content
subreddit = weighted_random_subreddit({
'NikkeMobile': 1.0,
# If we want get content from several subreddits
# please provide here 'subreddit': probability
# 'any_other_subreddit': 0.02
})
# Telegram channel with @reddit2telegram_bot as an admin
t_channel = '@r_nikkemobile'


def send_post(submission, r2t):
return r2t.send_simple(submission,
# Submission should have at least min_upvotes_limit upvotes.
min_upvotes_limit=50,
# If you do not want text submissions, just pass False.
text=True,
# If you want gifs, just pass True or text you want under gif.
gif=True,
# If you want videos, just pass True or text you want under gif.
video=True,
# If you want images, just pass True or text you want under image.
img=True,
# If you want Imgur albums, just pass True or text you want under albums.
album=True,
# If you want Reddit galleries, just pass True or text you want under albums.
gallery=True,
# If you do not want other submissions, just pass False.
other=True
)
1 change: 1 addition & 0 deletions reddit2telegram/channels/r_nikkemobile/tags.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
#nikke #mobile #shiftup #rpg #mobilegame
1 change: 1 addition & 0 deletions reddit2telegram/own.cron
Original file line number Diff line number Diff line change
Expand Up @@ -813,3 +813,4 @@ MASK submodule_name
59 * * * * r_pokemonmasters
59 */2 * * * r_badcode
59 * * * * reddit_argentina
59 * * * * r_nikkemobile

0 comments on commit d5bd799

Please sign in to comment.