Skip to main content

Download images from shitpostbot database

Project description

pypi

SPBDL

Download images (custom/random) from shitpostbot database!

SPBDL Module Installation:

Install with pip:

pip install spbdl

Install from source:

$ git clone https://github.com/boidushya/spbdl  
$ cd spbdl
$ python setup.py install

USAGE:

import spbdl
import requests

def dl(url):
    r = requests.get(url)
    with open("randomImage.jpg","wb") as f:
        f.write(r.content)
#Random image download
url = spbdl.randImg()
#Queried image download:
url2 = spbdl.getImg("epic") #Uses the default arguments for getting image url
url3 = spbdl.getImg("epic",review="accepted",sort='top', order='created_at',direction="ASC") #Passes custom arguments for getting image url
dl(url)
#dl(url2)
#dl(url3)

ALLOWED VALUES FOR getImg ARGUMENTS:

  • query:
    • <your search query> (required)
  • review:
    • accepted (default)
    • awaiting-yes
    • pending
    • awaiting-no
    • denied
    • all
  • sort:
    • random (default)
    • top
    • bottom
  • order:
    • total_rating (default)
    • last_reviewed_at
    • created_at
  • direction:
    • DESC (default)
    • ASC

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

spbdl-2.0.1.tar.gz (2.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page