This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"accomplishment_courses": [], | |
"accomplishment_honors_awards": [ | |
{ | |
"description": "Awarded “Gem of the Quarter” in 2013 for for building a custom tool named FASTRACK to observe data movement in Oracle SOA based application", | |
"issued_on": { | |
"day": 1, | |
"month": 10, | |
"year": 2013 | |
}, |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author : Niloy Chakraborty | |
# AWS Schedule Expression cron expression validator | |
import re | |
from voluptuous import Invalid | |
import datetime | |
minute_regex = r"^([*]|([0]?[0-5]?[0-9]?)|(([0]?[0-5]?[0-9]?)(\/|\-)([0]?[0-5]?[0-9]?))|" \ | |
"(([0]?[0-5]?[0-9]?)((\,)([0]?[0-5]?[0-9]?))*))$" |