Skip to main content

cront is a library that can make the task apps like crontab.

Project description

# cront

cront is a library that can make the task apps like crontab.

## Installation

Automatic installation:
```bash
pipinstallcrontcrontislistedin[PyPI](https://pypi.python.org/pypi/cront)andcanbeinstalledwithpiporeasyinstall.Manualinstallation:bash git clone https://github.com/asmodius/cront.git
cdcront python setup.py install
```

cront source code is [hosted on GitHub](https://github.com/asmodius/cront)

## Usage

Here is a simple Tornado app:

```python
from __future__ import print_function
import tornado.web
import tornado.ioloop
from cront import cron_task

@cron_task("* * * * *")
def hello_crontab(app):
print("Hello, {0}".format(app))

if __name__ == "__main__":
app = tornado.web.Application()
cron_task.start(app)
tornado.ioloop.IOLoop.current().start()
```

## Using

* [Tornado](http://www.tornadoweb.org/)

## License

* cront license under the [MIT license](https://github.com/gaujin/tornado-crontab/blob/master/LICENSE).
* [Tornado is licensed under the Apache license](https://github.com/tornadoweb/tornado/blob/master/LICENSE).

Supported by

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