description
Project description
:rocket: App :facepunch:
Install
pip install iapp -U
Usage
- Rest Api
import jieba
from iapp import App
pred1 = lambda **kwargs: kwargs['x'] + kwargs['y']
pred2 = lambda x=1, y=1: x - y
pred3 = lambda text='小米是家不错的公司': jieba.lcut(text)
app = App(debug=True, verbose=True)
app.add_route("/", pred1, main_key='main_key')
app.add_route("/f1", pred1, version="1")
app.add_route("/f2", pred2, version="2")
app.add_route("/f3", pred3, version="3")
app.run()
- Scheduler
from iapp.scheduler import Scheduler
def task1(x):
print(x)
import logging
import time
logging.warning(f'Task1: {time.ctime()}')
def task2():
import logging
import time
logging.warning(f'Task2: {time.ctime()}')
def task3():
return 1 / 0
def my_listener(event):
if event.exception:
print(event.traceback)
print('任务出错了!!!!!!')
else:
print('任务照常运行...')
scheduler = Scheduler()
scheduler.add_job(task1, 'interval', seconds=3, args=('定时任务',))
scheduler.add_job(task2, 'interval', seconds=5)
scheduler.add_job(task3, 'interval', seconds=1)
scheduler.add_listener(my_listener)
scheduler.start()
while 1:
pass
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
iapp-2020.10.22.16.12.26.tar.gz
(29.3 kB
view details)
Built Distribution
File details
Details for the file iapp-2020.10.22.16.12.26.tar.gz
.
File metadata
- Download URL: iapp-2020.10.22.16.12.26.tar.gz
- Upload date:
- Size: 29.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.42.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 157b3da5f0ebe618279945c41e9468027ed3ed359bd0c9669875cd54b28e68e1 |
|
MD5 | 266c9b9e5c6a7682e2b5db663244257e |
|
BLAKE2b-256 | a9356e1622e91ffd3bf03d594b6addcf90be021e04c0c69f1ccb75475e00b0f7 |
File details
Details for the file iapp-2020.10.22.16.12.26-py3-none-any.whl
.
File metadata
- Download URL: iapp-2020.10.22.16.12.26-py3-none-any.whl
- Upload date:
- Size: 47.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.1 requests-toolbelt/0.8.0 tqdm/4.42.0 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a59596d5b1e2e214e792989ccc18c4af09c718b6431bd41a1579ce790b237e2c |
|
MD5 | 302636fa1a20a4c45b9bba726a68add6 |
|
BLAKE2b-256 | 074a4173c7b674c024effa6a48e5e422dc1edb9eb0839bf822062b1bd48b3a9e |