Bringing you closer to your favorite HTTP Dogs.
Project description
httpdogs
Getting URLs to your favourite HTTP dogs made easy!
Installation
Installing httpdogs
is easy, just run pip install httpdogs
!
Usage
I've developed httpdogs
to make using HTTP dogs simple and fun.
Currently, you can get your dogs using one of two functions - dog_by_name
and dog_by_code
dog_by_name(name: str)
takes in a sole parameter - name
, which is the status code name to get a dog for.
Upon finding a dog matching the name, it returns an HTTPDog
object. Here's an example -
from httpdogs import dog_by_name
my_dog = dog_by_name("Success")
print(f"My dog has a code of {my_dog.code} and means {my_dog.name}! The URL is {my_dog.url}")
# Prints -
# My dog has a code of 200 and means Success! The URL is https://http.dog/200
dog_by_code(code: int)
is extremely similar to dog_by_name
, just using a status code value.
Upon finding a dog matching the code, it returns an HTTPDog
object. Here's an example -
from httpdogs import dog_by_code
my_dog = dog_by_code(404)
print(f"My dog has a code of {my_dog.code} and means {my_dog.name} :( The URL is {my_dog.url}")
# Prints -
# My dog has a code of 404 and means Not Found :( The URL is https://http.dog/404
The HTTPDog object also has an image
attribute
You can use this attribute to get the image bytes associated with the dog. You can then save it or view it, like in the example below -
from httpdogs import dog_by_code
from PIL import Image
from io import BytesIO
my_dog = dog_by_code(302)
dog_image = Image.open(BytesIO(my_dog.image))
dog_image.show()
# Output below -
Contributing
This package is opensource so anyone with adequate python experience can contribute to this project!
Report Issues
If you find any error/bug/mistake with the package or in the code feel free to create an issue and report it here.
Fix/Edit Content
If you want to contribute to this package, fork the repository, make your changes and then simply create a Pull Request!
Contact
If you want to contact me -
Mail - wulf.developer@gmail.com
Discord - wulf#9716
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file httpdogs-1.0.0.tar.gz
.
File metadata
- Download URL: httpdogs-1.0.0.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ca4b5899050b7e92bd7ea66a304b887ae37af0080f2d792d418daff2363fea88 |
|
MD5 | 401006362b3be94bf5616211f7f8bbc7 |
|
BLAKE2b-256 | 67d5d5ae8d8d75576ab4f93ee7dcdf6fdca15101cf71c2aca12177d9840c7b0e |
File details
Details for the file httpdogs-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: httpdogs-1.0.0-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.25.1 setuptools/49.2.1 requests-toolbelt/0.9.1 tqdm/4.54.1 CPython/3.9.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 421da350cfab77c7081b2a0d1c774fcc6bc9a215c50911e400eb961234bc16b4 |
|
MD5 | e6362c88e67c1dde93bdb7b54bb2acc3 |
|
BLAKE2b-256 | ee723e6361f86eb1aba85234cf0ea7786f230c7524c06bd5a5f27c007a665dc6 |