├── .gitignore ├── LICENSE ├── README.md ├── reddit_user.py ├── requirements.txt ├── sherlock.py ├── sub_data.py ├── subreddits.csv ├── subreddits.py └── text_parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/README.md -------------------------------------------------------------------------------- /reddit_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/reddit_user.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/requirements.txt -------------------------------------------------------------------------------- /sherlock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/sherlock.py -------------------------------------------------------------------------------- /sub_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/sub_data.py -------------------------------------------------------------------------------- /subreddits.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/subreddits.csv -------------------------------------------------------------------------------- /subreddits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/subreddits.py -------------------------------------------------------------------------------- /text_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orionmelt/sherlock/HEAD/text_parser.py --------------------------------------------------------------------------------