Skip to main content

Async ntfy client library

Project description

aiontfy

Asynchronous client library for the ntfy pub-sub notification service

build codecov PyPI version PyPI - Downloads "Buy Me A Coffee" GitHub Sponsor


📖 Documentation


📦 Installation

You can install aiontfy via pip:

pip install aiontfy

🚀 Usage

Basic Examples

"""Publish to a ntfy topic."""

import asyncio

from aiohttp import ClientSession

from aiontfy import Message, Ntfy


async def main() -> None:
    async with ClientSession() as session:

        ntfy = Ntfy("https://ntfy.sh", session)

        message = Message(
            topic="aiontfy",
            title="Hello",
            message="World",
            click="https://example.com/",
            delay="10s",
            priority=3,
            tags=["octopus"],
        )
        print(await ntfy.publish(message))

asyncio.run(main())
"""Subscribe to ntfy topics."""

import asyncio

from aiohttp import ClientSession

from aiontfy import Event, Notification, Ntfy


def callback(message: Notification) -> None:
    """Process notifications callback function."""
    if message.event is Event.MESSAGE:
        print(message.to_dict())


async def main() -> None:
    async with ClientSession() as session:
        ntfy = Ntfy("https://ntfy.sh", session)

        await ntfy.subscribe(
            ["aiontfy", "test"],  # Subscribe to multiple topics
            callback,
            priority=[3, 4, 5],  # Only subscribe to priority >= 3
        )


asyncio.run(main())

For more advanced usage, refer to the documentation.


🛠 Contributing

Contributions are welcome! To contribute:

  1. Fork the repository.
  2. Create a new branch.
  3. Make your changes and commit them.
  4. Submit a pull request.

Make sure to follow the contributing guidelines.


📜 License

This project is licensed under the MIT License - see the LICENSE file for details.


❤️ Support

If you find this project useful, consider buying me a coffee ☕ or sponsoring me on GitHub!

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

aiontfy-0.6.1.tar.gz (24.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aiontfy-0.6.1-py3-none-any.whl (14.2 kB view details)

Uploaded Python 3

File details

Details for the file aiontfy-0.6.1.tar.gz.

File metadata

  • Download URL: aiontfy-0.6.1.tar.gz
  • Upload date:
  • Size: 24.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for aiontfy-0.6.1.tar.gz
Algorithm Hash digest
SHA256 01588b10cb0c58def5be1bd40815be72136adc3da659fc9ca4a3437020900312
MD5 abfacd1f67e0c1cf1ffc5489dbcdbdd0
BLAKE2b-256 b9184dcb3195de7435fc85235e8c62453805948cc1c83cd5928d45bd23edd594

See more details on using hashes here.

File details

Details for the file aiontfy-0.6.1-py3-none-any.whl.

File metadata

  • Download URL: aiontfy-0.6.1-py3-none-any.whl
  • Upload date:
  • Size: 14.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: python-httpx/0.28.1

File hashes

Hashes for aiontfy-0.6.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e279afa4651c552a083f63f9631a2cf7e4248b31c97de2c543956108dc2a75fb
MD5 152b755d47fa646c66449e716ab91300
BLAKE2b-256 8fd39cc1ca280dad9574643356d5cbfb3f66aff10e331c79ae11833254c29724

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page