Skip to main content

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


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.9.48.tar.gz (29.3 kB view details)

Uploaded Source

Built Distribution

iapp-2020.10.22.16.9.48-py3-none-any.whl (47.6 kB view details)

Uploaded Python 3

File details

Details for the file iapp-2020.10.22.16.9.48.tar.gz.

File metadata

  • Download URL: iapp-2020.10.22.16.9.48.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

Hashes for iapp-2020.10.22.16.9.48.tar.gz
Algorithm Hash digest
SHA256 3877ed60f06a649894690c04829852abfcda6345d82dc69bf63838fc8c3d3977
MD5 0c663e51891ad4c8bcd23cfde59f8433
BLAKE2b-256 2be0833238774dad3ccbc574faa2a360d6050344b337898ed90e1de35dedeef5

See more details on using hashes here.

File details

Details for the file iapp-2020.10.22.16.9.48-py3-none-any.whl.

File metadata

  • Download URL: iapp-2020.10.22.16.9.48-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

Hashes for iapp-2020.10.22.16.9.48-py3-none-any.whl
Algorithm Hash digest
SHA256 f7dfc65452e398f811bcf785a8379c2ed61d4fe129a53b59c420d21f2f4d0b2b
MD5 6ddc7dc33efd0476a2936719e35eba6f
BLAKE2b-256 3d598d519fdfa3f1ccbf38b21c3c66a716883f7ff6bb3c5cc77f8101926bda5c

See more details on using hashes here.

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