{"id":24549335,"url":"https://github.com/afk-procrastinator/crunchbase-scraper","last_synced_at":"2026-02-14T17:32:16.170Z","repository":{"id":272631050,"uuid":"916708917","full_name":"afk-procrastinator/crunchbase-scraper","owner":"afk-procrastinator","description":"A Python-based tool for scraping company information from Crunchbase.","archived":false,"fork":false,"pushed_at":"2025-01-15T16:37:14.000Z","size":14,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-09T11:04:44.308Z","etag":null,"topics":["crunchbase","scraper","selenium"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/afk-procrastinator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-14T16:10:03.000Z","updated_at":"2025-01-18T17:09:46.000Z","dependencies_parsed_at":"2025-01-15T18:58:29.168Z","dependency_job_id":"1990d68b-4cba-4629-aeb2-884de98975fc","html_url":"https://github.com/afk-procrastinator/crunchbase-scraper","commit_stats":null,"previous_names":["afk-procrastinator/crunchbase-scraper"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/afk-procrastinator/crunchbase-scraper","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afk-procrastinator%2Fcrunchbase-scraper","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afk-procrastinator%2Fcrunchbase-scraper/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afk-procrastinator%2Fcrunchbase-scraper/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afk-procrastinator%2Fcrunchbase-scraper/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/afk-procrastinator","download_url":"https://codeload.github.com/afk-procrastinator/crunchbase-scraper/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/afk-procrastinator%2Fcrunchbase-scraper/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29450884,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-14T15:52:44.973Z","status":"ssl_error","status_checked_at":"2026-02-14T15:52:11.208Z","response_time":53,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["crunchbase","scraper","selenium"],"created_at":"2025-01-23T00:15:13.320Z","updated_at":"2026-02-14T17:32:16.154Z","avatar_url":"https://github.com/afk-procrastinator.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n\u003ch1\u003eCrunchbase Company Scraper\u003c/h1\u003e\n\u003ch4\u003eA Python-based tool for scraping company information from Crunchbase.\u003c/h4\u003e\n\u003c/div\u003e\n\n## Features\n\n- 🔐 Automatic and manual login support\n- 📋 Batch scraping from company list\n- 🤖 Anti-detection measures with randomized delays\n- 💾 CSV export with detailed company information\n- 💱 Currency conversion\n- 🌐 Proxy support via Selenium\n\n## Data Points Collected\n\n- Company name and legal name\n- About/Description\n- Funding information\n- Location\n- Employee count\n- Company type (Public/Private)\n- Website\n- Year founded\n- Company ranking\n- Acquisitions count\n- Investments count\n- Exits count\n- Stock symbol\n- Operating status\n\n## Prerequisites\n\n- Python 3.8+\n- Chrome browser\n- Crunchbase account\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/afk-procrastinator/crunchbase-scraper\ncd crunchbase-scraper\n```\n\n2. Create and activate a virtual environment:\n```bash\npython -m venv .venv\nsource .venv/bin/activate  # On Windows: .venv\\Scripts\\activate\n```\n\n3. Install dependencies:\n```bash\npip install -r requirements.txt\n```\n\n4. Set up environment variables:\n```bash\ncp .env.template .env\n```\nEdit `.env` with your Crunchbase credentials:\n```\nCRUNCHBASE_EMAIL=your-email@example.com\nCRUNCHBASE_PASSWORD=your-password\n```\n\n## Usage\n\n1. Create a list of companies to scrape in `company_list.txt`, separated by newlines:\n```\nCompany Name 1\nCompany Name 2\n```\n\n2. Run the scraper:\n```bash\npython main.py\n```\n\nThe script will:\n- Log in to Crunchbase\n- Process each company in the list\n- Save results to `companies.csv`\n\n## Project Structure\n\n```\n├── src/\n│   ├── auth.py         # Authentication handling\n│   ├── models.py       # Data models\n│   ├── scraper.py      # Core scraping logic\n│   ├── selectors.py    # CSS selectors\n│   └── utils.py        # Utility functions\n├── main.py             # Entry point\n├── requirements.txt    # Dependencies\n├── .env.template       # Environment template\n└── company_list.txt    # Input companies\n```\n\n## Error Handling\n\n- The scraper includes automatic retry logic for failed requests\n- Manual login fallback if automatic login fails\n- Graceful handling of missing data points\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## Disclaimer\n\nThis tool is for educational purposes only. Please review and comply with Crunchbase's terms of service before use.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafk-procrastinator%2Fcrunchbase-scraper","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fafk-procrastinator%2Fcrunchbase-scraper","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fafk-procrastinator%2Fcrunchbase-scraper/lists"}