I have a list of URL-style company IDs and need a small, fast Python script that loops through them, opens each page, and captures three fields—ID, company name, and email—only when a real company is present. Pages with an empty company name should be ignored, and any URL that times out or throws an error can simply be skipped so the run continues uninterrupted. The script must: • Use standard libraries (requests, BeautifulSoup, or similar) so it stays lightweight and easy to run. • Write the results to a .txt file, one company per line in the format: id, company name, email. • Validate that the company name is not blank before saving the record. When you hand it over I’ll test it against my full list; once everything parses correctly within the agreed budget range (around two thirds on delivery, the rest after a clean test run) the job is complete. Message me and I’ll pass the base URL plus a sample group of IDs so you can get started right away.