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(verbose=True)
app.add_route("/", pred1, result_key='result')
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.11.5.17.0.21.tar.gz
(31.4 kB
view details)
Built Distribution
File details
Details for the file iapp-2020.11.5.17.0.21.tar.gz
.
File metadata
- Download URL: iapp-2020.11.5.17.0.21.tar.gz
- Upload date:
- Size: 31.4 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 | ef59d301bcfac5336c0f69529ff36beeea002cc7bd0972ca6246959c1b345d13 |
|
MD5 | e3649bf2f3224ff3b38dbcb6a5fd53fd |
|
BLAKE2b-256 | 02cea56d8e5fedbff0fbc6d5a2a97c4e1055ae1df626c7023d6fdaa45082538b |
File details
Details for the file iapp-2020.11.5.17.0.21-py3-none-any.whl
.
File metadata
- Download URL: iapp-2020.11.5.17.0.21-py3-none-any.whl
- Upload date:
- Size: 52.3 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 | d0ffca73820e89e26953f310ba0efc450aaf6f10db15a1b47b4373165dbc83d0 |
|
MD5 | 553d2ce65bf8301da18c5449d7c7a400 |
|
BLAKE2b-256 | 5e196d022db8129cc9d61722027fee0afb12dc9a910c6cedddb4131935e2cca3 |