Metadata-Version: 1.1
Name: cront
Version: 0.1.0
Summary: cront is a library that can make the task apps like crontab.
Home-page: https://github.com/asmodius/cront
Author: Asmodius
Author-email: asmodius.a@gmail.com
License: MIT
Download-URL: https://github.com/asmodius/cront/archive/master.zip
Description: # cront
        
        cront is a library that can make the task apps like crontab.
        
        ## Installation
        
        Automatic installation:
        ```bash
        $ pip install cront
        ```
        
        cront is listed in [PyPI](https://pypi.python.org/pypi/cront) and can be installed with pip or easy_install.
        
        Manual installation:
        ```bash
        $ git clone https://github.com/asmodius/cront.git
        $ cd cront
        $ 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).
        
Keywords: tornado crontab
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
