Metadata-Version: 2.1
Name: redditsfinder
Version: 2.0.7
Summary: Archive a reddit user's post history. Formatted overview of a profile, JSON containing every post, and picture downloads.
Home-page: https://github.com/Fitzy1293/redditsfinder
License: MIT
Keywords: reddit,webscraping,reddit-crawler,pushshift
Author: fitzy1293
Author-email: berkshiremind@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: requests (>=2.27.1,<3.0.0)
Requires-Dist: rich (==11.0.0)
Project-URL: Repository, https://github.com/Fitzy1293/redditsfinder
Description-Content-Type: text/markdown

# redditsfinder - reddit user info
**`pip3 install redditsfinder`**

**A program to get reddit user post data.**

```Running redditsfinder

Test it on a user to make sure it works.
    redditsfinder someusername

Basic usage
    redditsfinder username
    redditsfinder [options] username_0 username_1 username_2 ...

With an input file
    -f or --file.
    redditsfinder [options] -f line_separated_text_file.txt

Examples
    - just print the summary table to stdout
        $ redditsfinder someusername

    - save data locally and print the summary table to stdout
        $ redditsfinder --write someusername

    - just save data locally without printing
        $ redditsfinder --write --quiet someusername

    - download pictures
        $ redditsfinder --pics someusername

Optional args
    --pics returns URLs of image uploads
    -pics -d or --pics --download downloads them
    -quiet or -q turns off printing
```

