https://github.com/dps/webalert
https://github.com/dps/webalert
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/dps/webalert
- Owner: dps
- Created: 2013-01-31T02:28:42.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-02-02T02:16:47.000Z (over 13 years ago)
- Last Synced: 2024-04-17T16:10:25.150Z (about 2 years ago)
- Language: Python
- Size: 105 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
webalert
========
Simple python client for `webalert.davidsingleton.org`
```
from webalert import WebAlert
class DemoListener(object):
def __init__(self):
pass
def hit(self):
print "Hit!"
listener = DemoListener()
w = WebAlert("Your webalert client token", listener)
w.loop()
```
Each time your get a website visit:
```
Hit!
```