MCPcopy Create free account
hub / github.com/geekcomputers/Python / get_company_list

Function get_company_list

gstin_scraper.py:32–41  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

30
31
32def get_company_list():
33 company_list = []
34
35 while True:
36 company = input("Enter a company name (or press Enter to finish): ")
37 if not company:
38 break
39 company_list.append(company)
40
41 return company_list
42
43
44def fetch_gstins(company_name, csrf_token):

Callers 1

mainFunction · 0.85

Calls 1

appendMethod · 0.45

Tested by

no test coverage detected