App to keep track of course availablity

Hello, I was wondering if it's possible in C++ to create an app to keep track when a closed course becomes available for enrollment. I want to create this so that I don't have to monitor the website every hour when I have free time.
Yes, it is possible, but the difficulty varies depending on which libraries you decide to use and how the website is structured. If no login is required and the website doesn't require JavaScript to display the data, it could be as simple as downloading the page with cURL and parsing with an XML/HTML library. Otherwise it becomes significantly more complicated as login, cookies, and JavaScript are involved.
Topic archived. No new replies allowed.