BeautifulSoup webscrape .asp only searches last in list

def get_NYSE_tickers(): an = ['A', 'B', 'C', 'D', 'E', 'F', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0'] for value in an: resp = requests.get( 'https://www.advfn.com/nyse/newyorkstockexchange.asp?companies={}'.format(value)) soup = bs.BeautifulSoup(resp.text, 'lxml') table = soup.find('table', class_='market tab1') tickers = [] for row in table.findAll('tr', class_='ts1',)[0:]: … Read more

Publishing MVC app that uses python script

I currently have MVC project that calls python script via Process (new processStartinfo(“/path/to/python.exe”, ” /path/to/script.py”). Which works perfectly fine in visual studio.
When i publish this on azure how will it be able to call python.exe? (Im probably not constructing this question accurately since this is my very first web to publish and do not have full understanding of publishing)