Skip to main content

emp hooks

Project description

Emp Hooks

Emp Hooks is a collection of hooks designed to work in conjunction with empctl. This library provides various hooks to handle events, schedules, and Twitter interactions.

Installation

To install Emp Hooks, use pip:

pip install emp-hooks

Usage

Onchain Hooks

Onchain hooks are used to listen for events on a specific blockchain.

from emp_hooks import onchain

@onchain.on_event(
    event=V3SwapEvent,
    network=Base,
)
def log_eth_price(event_data: EventData[V3SwapEventType]):
    event = event_data.event
    amount0 = event.amount0 / 1e18
    amount1 = event.amount1 / 1e6

    price = abs(amount1 / amount0)
    log.debug("ETH Price: %s", price)

Scheduler Hooks

Scheduler hooks are used to schedule functions to run at a specific interval or cron schedule.

from emp_hooks import scheduler

@scheduler.on_schedule(
    execution_frequency="0 0 * * *",
)
def periodic_function():
    print("Do scheduled task")

Twitter Hooks

Twitter hooks are used to listen for tweets matching a specific query.

from emp_hooks import twitter

@twitter.on_tweet(
    query="simmi_io",
)
def on_simmi_tweet(tweet: Tweet):
    print(tweet)

Running Hooks

Make sure to import the manager and call run_forever on it. This will ensure that all hooks are running indefinitely, and will handle the SIGINT and SIGTERM signals to stop the hooks gracefully.

from emp_hooks import manager

if __name__ == "__main__":
    manager.hooks.run_forever()

Contributing

To contribute to Emp Hooks, please follow these steps:

  1. Fork the repository.
  2. Create a new branch for your changes.
  3. Make your changes and commit them.
  4. Push your changes to your fork.
  5. Create a pull request.

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

emp_hooks-0.0.12.post2.tar.gz (9.9 kB view details)

Uploaded Source

Built Distribution

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

emp_hooks-0.0.12.post2-py3-none-any.whl (17.4 kB view details)

Uploaded Python 3

File details

Details for the file emp_hooks-0.0.12.post2.tar.gz.

File metadata

  • Download URL: emp_hooks-0.0.12.post2.tar.gz
  • Upload date:
  • Size: 9.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1013-azure

File hashes

Hashes for emp_hooks-0.0.12.post2.tar.gz
Algorithm Hash digest
SHA256 508abaf36145ec2e8523ac3e145670ad33dd9ac8c04622f620bb9a97957a7165
MD5 a23a747a916c91ec262372fb42e3160b
BLAKE2b-256 0a2e619cb226470755cde505a6b1ed1778d137edc4f27c1cc0f69f552d5fa9e2

See more details on using hashes here.

File details

Details for the file emp_hooks-0.0.12.post2-py3-none-any.whl.

File metadata

  • Download URL: emp_hooks-0.0.12.post2-py3-none-any.whl
  • Upload date:
  • Size: 17.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.1.3 CPython/3.12.10 Linux/6.11.0-1013-azure

File hashes

Hashes for emp_hooks-0.0.12.post2-py3-none-any.whl
Algorithm Hash digest
SHA256 f95ecdfc0fa733fd7720674b8c3d1c372e4f06ca75e3aff9d3dd43400a041063
MD5 e49fb6f3ddf530069389eb26403141a8
BLAKE2b-256 388eec013a2d69e30e2fd4b59a08ac4ba74a2910b7afcfaf74db53fe9ab2c983

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