Metadata-Version: 2.1
Name: joker.py
Version: 0.0.1
Summary: Python package to get jokes and puns.
Home-page: https://github.com/diwash007/Joker.py
Author: diwash007
Author-email: diwashdahal75@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/diwash007/Joker.py/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Joker.py


## About

A simple python package to get jokes and puns.

## How to use?

You can use this by package from [Joker.py](https://pypi.org/project/joker.py/)
```sh
pip install joker.py
```

## Why use this?

To fetch jokes and puns on your projects.

## How to use?

```py
from joker import Joker


joker = Joker()
joke = joker.joke()
print(joke)

puns = joker.puns(5)
for pun in puns:
    print(pun)

```

## Want To Contribute?

You can send a pull request or open an issue to contribute.
Check out [Code Of Conduct](CODE_OF_CONDUCT.md) before contributing.

