simple web scraper - college project

Nandan V7 months ago
Given that all our lectures are online now, I built a script that automatically checks my professor's website and downloads a new lecture video anytime he uploads one. It also notifies me through sound). I think it's pretty cool!

this is supose to be an app runing on my server that automaticly downloads my college videos and files and send a notification to my phone using an api

Receive an instant notification once a document is signed using API
With the signNow API you can receive an instant email notification every time your document is signed or completed. Once your document has been signed by all recipients, download it to your computer or cloud storage using simple API calls.
https://www.signnow.com/developers/features/receive-an-instant-notification-once-a-document-is-signed-using-api
دَرسا - آموزش های الکترونیکی دانشگاه امام رضا (ع): ورود به سایت
https://darsa.imamreza.ac.ir/my/
First web scraper - First web scraper 0.1 documentation
You should now see a list of files and folders appear, such as Downloads, Documents, Desktop, etc. These should look a little familiar. The command line is just another way of navigating the directory structure you're probably used to seeing when clicking around your computer's folders in the user-interface provided by your operating system.
https://first-web-scraper.readthedocs.io/en/latest/
How to scrape a website which requires login using python and beautifulsoup?
There is a simpler way, from my pov, that gets you there without selenium or mechanize, or other 3rd party tools, albeit it is semi-automated. Basically, when you login into a site in a normal way, you identify yourself in a unique way using your credentials, and the same identity is used thereafter for every other interaction, which is stored in cookies and headers, for a brief period of time.
https://stackoverflow.com/questions/23102833/how-to-scrape-a-website-which-requires-login-using-python-and-beautifulsoup
Login to website using urllib2 - Python 2.7
Okay, so I am using this for a reddit bot, but I want to be able to figure out HOW to log in to any website. If that makes sense.... I realise that different websites use different login forms etc...
https://stackoverflow.com/questions/13925983/login-to-website-using-urllib2-python-2-7
How to do web scraping with python
Below I'm going to show you how to setup your requests and lxml on python 3.7 on mac os. Trying to learn python from scratch is a lot of fun, appears to be a bit of a ramp up, but that's why I'm blogging about it every day.
https://medium.com/@itylergarrett.tag/using-pip-to-install-requests-and-lxml-on-python-3-7-mac-os-e6c4d5e860f6
Web scraping using Python
In this article, we'll use Python for scraping because its very easy to setup and use. It has many built-in and third party librariaries that can be used for scraping and organizing data. We'll use two Python libraries "urllib" to fetch the webpage and "BeautifulSoup" to parse the webpage to apply programming operations.
https://linuxhint.com/web_scraping_python/