Pet facts is a simple but fun application that retrieves either dog or cat facts from two different resources.
Click here to see the cat facts api.
Click here to see the dog facts api.
I wrote this application to learn a python module called argparse, and this seemed like the perfect fun project to do this with.
You can clone the repository on GitHub or install via pip
by running pip install petfacts
This is a very simple and light program, to see a random pet fact of a dog or cat variety simply run petfacts
with not arguments.
If you want to specify a whether you want a dog or car fact pass in the arguments like so:
petfacts --cat
will return a cat fact.petfacts --dog
will return a dog fact.petfacts --help
orpetfacts -h
of course returns a help menu and exits.
- TODO: Give it the ability to store facts, why? Just because I'm learning.