This repository contains a simple web scraping script made with Python, to gather the best movies from all countries in the world and save them into a usable JSON file. This work was done to help with my final project Moovli at Makers Academy.
- Download and install python at this link
- Install the BeautifulSoup library with
pip3 install bs4
- Install the Requests library with
pip3 install requests
- Install the Unidecode library with
pip3 install unidecode
- To run the file and generate the JSON file type
python3 webscraper.py
- Python: a general purpose programming language I have used for web scraping.
- BeeautifulSoup library: a Python library that allows you to pull data out of HTML and XML files.
- Requests library: a Python library that allows you to send HTTP/1.1 requests extremely easily.
- Unidecode library: a Python library that allows you to make ASCII transliterations of Unicode text.