Metadata-Version: 2.1
Name: inford
Version: 1.0.0
Summary: Simple module for sending dsicord webhooks
Home-page: https://github.com/Prathamesh-B/inford
Author: Prathamesh Bhaleakr
Author-email: prathameshb1704@gmail.com
License: MIT License
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENCE

![GitHub](https://img.shields.io/github/license/Prathamesh-B/inford)
![PyPI](https://img.shields.io/pypi/v/inford)

# inford 📬

inford is a python library for sending dsicord webhooks.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install foobar.

```bash
pip install inford
```

## Usage

```python
from inford import DiscordWebhook

web = DiscordWebhook(
    webhook_url="url",
    username="inford",
    avatar_url="https://avatars.githubusercontent.com/u/55992548?v=4",
    content="Lorem ipsum dolor sit",
    title="Hey!",
    color="#0099ff",
    description="Lorem ipsum dolor sit amet, consectetur adipiscing elit.",
    author_name="INFORD",
    author_url="https://github.com/Prathamesh-B/inford",
    footer_text="thank you",
    footer_icon="https://user-images.githubusercontent.com/5679180/79618120-0daffb80-80be-11ea-819e-d2b0fa904d07.gif",
)
web.send() #or use send=True as a parameter
```

![Image](img/example.png "Example")

## Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Please make sure to update tests as appropriate.

## License

[MIT](https://choosealicense.com/licenses/mit/)


