Lukas0025 / python-pixabay

Unofficial pixabay python API client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

issues closed issues size last commit

python-pixabay (pixabay) is unofficial API client library for pixabay API (https://pixabay.com/api/docs/)

Install from pip

pip3 install pixabay

Install from source

git clone https://github.com/Lukas0025/python-pixabay.git
cd python-pixabay
make install

Getting started

simple example

download image

import pixabay.core

# init pixabay API
px = pixabay.core("YOUR API KEY")

# search for space
space = px.query("space")

# get len of hits len(space)
print("{} hits".format(len(space)))

# downalod fisrt image
space[0].download("space.jpg", "largeImage")

download video

import pixabay.core

# init pixabay API
px = pixabay.core("YOUR API KEY")

# search for space
space = px.queryVideo("space")

# get len of hits len(space)
print("{} hits".format(len(space)))

# downalod fisrt video
space[0].download("space.mp4", "large")

Getting help

Reporting bugs and contributing

  • Want to report a bug or request a feature? Please open an issue.
  • Want to help us with build? Contact me

Licensing

python-pixabay is licensed under Apache2

About

Unofficial pixabay python API client

License:Apache License 2.0


Languages

Language:Python 99.1%Language:Makefile 0.9%