Metadata-Version: 2.1
Name: redditsfinder
Version: 2.1.2
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.28.1,<3.0.0)
Requires-Dist: rich (>=12.5.1,<13.0.0)
Project-URL: Repository, https://github.com/Fitzy1293/redditsfinder
Description-Content-Type: text/markdown

# redditsfinder - reddit user info

It's in a good state again with some quality of life improvements. 

**`pip3 install redditsfinder`**

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

```
Running redditsfinder
---------------------
    Test it on yourself 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 -pd someusername

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

```

# Demo

## Downloading Images

`redditsfinder -pd someusername`

![download](./imgs/pics_downloader.png)

## Creating a command 

`redditsfinder someusername`

![table](./imgs/table.png)


