I'm going to touch scraping and try using Python's Beautiful Soup. For the time being, this time from preparation
・ Python3.6 ・ Beautiful Soup4 ・ Anaconda
From building a virtual environment
conda create --name [Environment name] python=[version]
Actually built
Various downloads and end
pip install beutifulsoup4
Install with the above command
Enter the virtual environment created earlier and install Check if it is installed with the following command
pip list
I was able to confirm that it was installed, so this time it is up to here
Next is actually easy, but I'll try it!
Recommended Posts