Skip to main content

Gevent Crontab Scheduler

Project description

# GeventCron

### 使用方法:

```
#coding:utf-8
import geventcron
from datetime import datetime
import time
import os
import requests

def func_1():
time.sleep(2)

def func_2():
time.sleep(2)

def func_3():
time.sleep(2)

if __name__ == "__main__":
scheduler = geventcron.Scheduler(logger_name='task_scheduler')
scheduler.schedule('task_1', geventsheduler.every_second(4), func_1)
scheduler.schedule('task_2', geventsheduler.every_second(1), func_2)
scheduler.schedule('task_3', geventsheduler.every_second(1), func_3)
scheduler.run_forever(start_at='once')
```

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

geventcron-1.0.tar.gz (2.9 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