9 lines
		
	
	
		
			289 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			289 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/Users/souvikmallick/Desktop/cv_project/LiveProcessedVideoStream/myenv/bin/python
 | |
| # -*- coding: utf-8 -*-
 | |
| import re
 | |
| import sys
 | |
| from IPython import start_ipython
 | |
| if __name__ == '__main__':
 | |
|     sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
 | |
|     sys.exit(start_ipython())
 |