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
# Will probably trigger rate limiting. | |
# It would be a lot smarter to mirror the whole history and then search offline. | |
from mastodon import Mastodon as M | |
from optparse import OptionParser | |
import sys | |
import re | |
parser = OptionParser() | |
parser.add_option("-a", "--api-token", dest="apitoken", |
OlderNewer