Skip to main content

GUI Style Events for Web Applications

Project description

FFIRE
=====

Ffire enables you to use GUI Style event driven programming in your web application with
10 lines of code or less.

ffire can be summed up by its simple API.

## Installation

```shell

pip install ffire

```

## Creating and Firing Events

```python


#: Order Creation API/Engine

from ffire import fire

#: Create is idempotent. You can call create multiple times without side effects
#: in addition it is more advisable to use constants i.e. ORDER_CREATED not literals
ffire.create('order_created', category='event')


#: Do application logic here

payload = {"order_id": "abcd", "client_id": "1234"}

ffire('order_created', payload)
#: OR
ffire.fire('order_created', payload)


```


## Subscribing to events

```python


# Biryani Client

from ffire import fire

endpoint = 'http://api.example.com/order-created-handler'

fire.subscribe('order_created', endpoint)

#: Ffire assumes a handler for the payload sits at that endpoint.

```



Ffire assumes a handler for the event exists at the endpoint submitted with the
subscription call.


```
It is advisable to have a message broker as the endpoint. However this is not
mandatory especially for cases where handling the event is not an absolute necessity.
In such scenarios any endpoint is sufficient.
```



If you wish to consume events from ffire explicitly you can do so.

```python


from ffire import ffire

fire.consume('order_created', ffire.TIME_INTERVALS.ONE_HOUR)

```

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

ffire-0.0.3.tar.gz (8.6 kB view hashes)

Uploaded Source

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