
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
A package to scrap the GUC university CMS to get the courses and their details
A Python package to scrape the German University in Cairo (GUC) Course Management System (CMS) to retrieve courses and their details.
pip install guc-cms-scrapper
poetry add guc-cms-scrapper
from guc_cms_scrapper import GucCmsScrapper
# Initialize the scrapper with your GUC credentials
scrapper = GucCmsScrapper(username='<your guc username>', password='<your guc password>')
# Fetch all available courses
courses = scrapper.get_courses()
for course in courses:
print(f"Course: {course.name}")
print(f"Code: {course.code}")
print(f"ID: {course.id}")
print(f"Semester: {course.semester}")
print("---")
# Fetch detailed data for a specific course
course_data = scrapper.get_course_data(course_id="12345", semester="52")
# Access course announcements
print(course_data.announcements)
# Access weekly content
for week in course_data.weeks:
print(f"\nWeek starting {week.start_date}")
print(f"Description: {week.description}")
for item in week.items:
print(f"Title: {item.title}") # 1 - Practice Assignment 3
print(f"Clean Title: {item.clean_title}") # Practice Assignment 3 (without the leading number)
print(f"Type: {item.type}") # Lecture, Assignment, Solution, Other
print(f"Description: {item.description}")
print(f"URL: {item.url}")
poetry publish --build
FAQs
A package to scrap the GUC university CMS to get the courses and their details
We found that guc-cms-scrapper 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.