()
| 30 | |
| 31 | |
| 32 | def 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 | |
| 44 | def fetch_gstins(company_name, csrf_token): |