LAW(S) GOVERNING THE WEBFORM Pursuant to Section 196, 197, Schedule V of the Companies Act, 2013 read with Rule 3 of the Companies (Appointment and Remuneration of Managerial Personnel) rules, 2014. Purpose of the webform On appointment of managerial personnel such as manager, managing director or whole-time director, the company shall file a return of such appointment in webform MR-1 with the Registrar within sixty days of appointment. Important Check Points while filling up the webform ü Please read instructions and guidelines carefully before filling online application form. ü Please attach the required mandatory supporting documents in the specified format only. ü...
import requests import xmltodict # Replace with your actual API key and request URL api_key = '579b464db66ec23bdd000001cdd3946e44ce4aad7209ff7b23ac571b' request_url = 'https://api.data.gov.in/catalog/ec58dab7-d891-4abb-936e-d5d274a6ce9b?api-key=579b464db66ec23bdd000001cdd3946e44ce4aad7209ff7b23ac571b&format=xml' # Set up the headers with your API key headers = { 'Authorization': f'Bearer {579b464db66ec23bdd000001cdd3946e44ce4aad7209ff7b23ac571b}', 'Content-Type': 'application/xml' } # Make the API request response = requests.get(request_url, headers=headers) # Check if the request was successful if response.status_code == 200: # Parse the XML response data = xmltodict.parse(response.text) # Extract and print the relevant information for record in data['result']['records']['item']: print(f"Company Name: {record['company_name']}") print(f"CIN...
Comments
Post a Comment