
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
icai-ca-scraper
Advanced tools
A Python package to fetch CA member details from the ICAI (Institute of Chartered Accountants of India) website.
pip install icai-ca-scraper
from icai_ca_scraper import CAScraper
# Initialize the scraper
scraper = CAScraper()
# Get details for a single CA member
member_details = scraper.get_member_details(100000)
if member_details:
print(member_details)
# Get details for multiple CA members
member_numbers = [100001, 100002, 100003]
results = scraper.get_multiple_members(member_numbers)
print(results)
# Initialize with custom delay between requests (in seconds)
scraper = CAScraper(delay_between_requests=2.0)
# Get member details
details = scraper.get_member_details(100000)
import json
# Get multiple member details
results = scraper.get_multiple_members([100001, 100002, 100003])
# Save to file
with open("ca_results.json", "w", encoding="utf-8") as f:
json.dump(results, f, indent=2, ensure_ascii=False)
The package retrieves the following information (when available):
{
"100000": {
"name": "JOHN DOE",
"gender": "M",
"qualification": "B.Com",
"address": "123 MAIN ST, CITY, STATE 123456",
"cop_status": "FULL TIME",
"associate_year": "A1995",
"fellow_year": "F2013",
"membership_no": "100000",
"date_of_birth": "01-01-1970",
"email": "john@example.com",
"mobile": "9999999999",
"last_updated": "2024-04-07 10:30:00"
}
}
This project is licensed under the MIT License - see the LICENSE file for details.
FAQs
A Python package to fetch CA member details from ICAI website
We found that icai-ca-scraper demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.