Metadata-Version: 1.0
Name: schedule
Version: 0.1.8
Summary: Job scheduling for humans.
Home-page: https://github.com/dbader/schedule
Author: Daniel Bader
Author-email: mail@dbader.org
License: The MIT License (MIT)

Copyright (c) 2013 Daniel Bader (http://dbader.org)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Download-URL: https://github.com/dbader/schedule/tarball/0.1.8
Description: schedule
        ========
        
        Python job scheduling for humans. Inspired by `Adam Wiggins' <https://github.com/adamwiggins>`_ `clockwork <https://github.com/tomykaira/clockwork>`_.
        
        Installation
        ------------
        
        .. code-block:: bash
        
            $ pip install schedule
        
        Usage
        -----
        
        .. code-block:: python
        
            import schedule
        
            def job():
                print("I'm working...")
        
            schedule.every(10).minutes.do(job)
            schedule.every().hour.do(job)
            schedule.every().day.at("10:30").do(job)
        
            while 1:
                schedule.run_pending()
                time.sleep(1)
        
        Meta
        ----
        
        Daniel Bader – `@dbader_org <https://twitter.com/dbader_org>`_ – mail@dbader.org
        
        Distributed under the MIT license. See ``LICENSE.txt`` for more information.
        
        https://github.com/dbader/schedule
        
        
        .. :changelog:
        
        History
        -------
        
        0.1.7 (2013-05-20)
        ++++++++++++++++++
        
        - API change: renamed ``schedule.run_all_jobs()`` to ``schedule.run_all()``
        - API change: renamed ``schedule.run_pending_jobs()`` to ``schedule.run_pending()``
        - API change: renamed ``schedule.clear_all_jobs()`` to ``schedule.clear()``
        - Added ``schedule.jobs``
        
        0.1.6 (2013-05-20)
        ++++++++++++++++++
        
        - Fix packaging
        - README fixes
        
        0.1.4 (2013-05-20)
        ++++++++++++++++++
        
        - API change: renamed ``schedule.tick()`` to ``schedule.run_pending_jobs()``
        - Updated README and ``setup.py`` packaging
        
        0.1.0 (2013-05-19)
        ++++++++++++++++++
        
        - Initial release
        
Keywords: schedule,periodic,jobs,scheduling,clockwork
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Natural Language :: English
