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
#!/usr/local/bin/python | |
''' | |
Main page for UI : https://www.ustraveldocs.com/in/in-niv-waittimeinfo.asp#waittime | |
Check center codes : https://travel.state.gov/etc/designs/travel/TSGglobal_libs/data/PostsVWT.js | |
To allow SMTP client to authenticate and send email allow less secure here https://myaccount.google.com/lesssecureapps | |
configure here for center and type of visa | |
''' |
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
hh1 |
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
#!/usr/bin/env python | |
#-*- mode: python -*- | |
all_okay = True | |
from subprocess import Popen, PIPE | |
import sys | |
from termcolor import colored | |
syntax_checker = "pylint" |
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
#!/usr/bin/env python | |
#-*- mode: python -*- | |
all_okay = True | |
from subprocess import Popen, PIPE | |
import sys | |
from termcolor import colored | |
syntax_checker = "pyflakes" |