Home>
I'm learning basic scraping in python.
I have a question because the program cannot be executed due to the error of the following module.
Since I have just learned programming, there is a possibility that the terms etc. are wrong, but please forgive me.
File "chap2.py", line 2, in<module>
from bs4 import Beautifulsoup
ImportError: cannot import name'Beautifulsoup' from'bs4'
Corresponding source code
import requests
from bs4 import Beautifulsoup
#Get and analyze web pages
load_url = "https://www.ymori.com/books/python2nen/test1.html"
html = requests.get (load_url)
super = Beautifulsoup (html.content, "html.parser")
#Display the entire HTML
print (super)
What I tried
I searched the net for the error code and ran pip3 install bs4, but it seems that bs4 is already installed and the error did not go away.
Supplementary information (FW/tool version, etc.)Development environment is atom
os is Mac OS.
-
Answer # 1
Related articles
- python - an error occurs in the if statement program that compares the size of numbers
- python - web scraping what to do when a webdriverexception occurs on starbucks hp
- python - an error occurs when django's summer note is reflected in admin
- python - how to import a file (py) i'm having trouble with an error (probably due to the path)
- python - in raspberry pi, the error occurs only in the case of the automatic start program using systemd
- python: an error occurs that the type is different in the output using dict key values
- error in import xlrd of python file from cakephp
- python - i get an import error on an installed module
- python scraping error
- python - error when scraping with selenium and firefox
- python - i got an import error even though i did pip install
- python max () arg is an empty sequence and an error occurs and it cannot be processed well
- an error occurs during python scraping (retrieving property information from suumo)
- python 3x - an error occurs after registering a dictionary with a read-aloud bot on discordpy
- python scraping error
- eliminating pandas install and import in python pyenv export ldflags
- python - tuple error does not resolve
- python - error in image binarization using cv2adaptivethreshold function
- python - idle cannot resolve the "rootgeometry" error
- python - an error has occurred in yolo v3
Trends
- python - you may need to restart the kernel to use updated packages error
- php - coincheck api authentication doesn't work
- php - i would like to introduce the coincheck api so that i can make payments with bitcoin on my ec site
- [php] i want to get account information using coincheck api
- the emulator process for avd pixel_2_api_29 was killed occurred when the android studio emulator was started, so i would like to
- javascript - how to check if an element exists in puppeteer
- dart - flutter: the instance member'stars' can't be accessed in an initializer error
- sh - 'apt-get' is not recognized as an internal or external command, operable program or batch file
- i want to call a child component method from a parent in vuejs
- python 3x - typeerror: 'method' object is not subscriptable
Capitalize S in the middle.