Skip to main content

Get URLs to your favourite HTTP Cats easily!

Project description

httpcats Badge Badge 2

Getting URLs to your favourite HTTP Cats made easy!

Installation

Installing httpcats is easy, just run pip install httpcats!

Usage

I've developed httpcats to make using HTTP Cats simple and fun.

Currently, you can get your cats using one of two functions - cat_by_name and cat_by_code

cat_by_name(name: str) takes in a sole parameter - name, which is the status code name to get a cat for. Upon finding a cat matching the name, it returns an HTTPCat object. Here's an example -

from httpcats import cat_by_name

my_cat = cat_by_name("Success")

print(f"My cat has a code of {my_cat.code} and means {my_cat.name}! The URL is {my_cat.url}")
# Prints - 
# My cat has a code of 200 and means Success! The URL is https://http.cat/200

cat_by_code(code: int) is extremely similar to cat_by_name, just using a status code value. Upon finding a cat matching the code, it returns an HTTPCat object. Here's an example -

from httpcats import cat_by_code

my_cat = cat_by_code(404)

print(f"My cat has a code of {my_cat.code} and means {my_cat.name} :( The URL is {my_cat.url}")
# Prints - 
# My cat has a code of 404 and means Not Found :( The URL is https://http.cat/404
The HTTPCat object also has an image attribute

You can use this attribute to get the image bytes associated with the cat. You can then save it or view it, like in the example below -

from httpcats import cat_by_code
from PIL import Image
from io import BytesIO

my_cat = cat_by_code(302)

cat_image = Image.open(BytesIO(my_cat.image))
cat_image.show()

# Output below -
Cat

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


Download files

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

Source Distribution

httpcats-1.1.1.tar.gz (4.8 kB view details)

Uploaded Source

Built Distribution

httpcats-1.1.1-py3-none-any.whl (5.5 kB view details)

Uploaded Python 3

File details

Details for the file httpcats-1.1.1.tar.gz.

File metadata

  • Download URL: httpcats-1.1.1.tar.gz
  • Upload date:
  • Size: 4.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.4

File hashes

Hashes for httpcats-1.1.1.tar.gz
Algorithm Hash digest
SHA256 9eeb879fd80d969f46ce21c31f78c4c94a990889d22fd33bec476c639122ead6
MD5 393cce56733518094e0513f16dd69db1
BLAKE2b-256 2f6cde35724b035db86b4b3f2eabe7b9754fce5118fe8ba9476a1bd408524610

See more details on using hashes here.

File details

Details for the file httpcats-1.1.1-py3-none-any.whl.

File metadata

  • Download URL: httpcats-1.1.1-py3-none-any.whl
  • Upload date:
  • Size: 5.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.2.0 pkginfo/1.6.1 requests/2.24.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.51.0 CPython/3.8.4

File hashes

Hashes for httpcats-1.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 afb9f28812599e6cbadbba31e739f7c88a3fa0d3564df9c9f8026aa8039b0f22
MD5 46fb1d676427368fdb4ae6d44f237a02
BLAKE2b-256 b2c0572e9941bed69fc4b93177d49f00837c0ab8b20663a87c25a8ff816b3ced

See more details on using hashes here.

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