Metadata-Version: 2.1
Name: PyCronExpression
Version: 0.0.1
Summary: A simple Python Cron Expression lib
Home-page: https://github.com/vubon/PyCronExpression.git
Author: Vubon Roy
Author-email: vubon.roy@gmail.com
License: UNKNOWN
Description: ## Python Cron Expression
        
        This is a simple library for making cron job expression. 
        User need to pass timestamp or datetime object to create cron job expression. 
        
        ## Example 
        ```python
        from datetime import datetime
        from py_cron_expression.py_cron import CronJobExpression
        cron_job = CronJobExpression()
        
        timestamp = int(datetime.now().timestamp())
        res = cron_job.cron_expression(time=timestamp)
        print(res)
        # Output 
        # 10 55 13 2 5 ? 2020
        
        # If you want to remove second from in your cron job expression. 
        # Then you need to add cancel='second'
        # example
        cron_job.cron_expression(time=timestamp, cancel='second')
        # Output 
        # 55 13 2 5 ? 2020
        ```
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
