
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.