Good resources related to AI
Stable Diffusion - How to build amazing images with AI
Every web scraping project should start with a goal in mind.
The goal of this beginner guide is to collect faculty details from a college website and save data to a spreadsheet using python.
College website: https://www.ifheindia.org/icfaitech/datascience.html
Python code used:
Explanation:
| Module | Function | Purpose |
|---|---|---|
| Python | requests | to send http request to https://www.ifheindia.org/icfaitech/ and recieve data as response |
| bs4 | BeautifulSoup | Parse HTML response |
| Python | xlsxwriter | Module for writing data or creating XLSX file(Excel) format |
| io | BytesIO | BytesIO objects can be used to read and write binary data in this case for reading image data |