Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: Error when running .py file but not when entering exact same code in CLI
Post: RE: Error when running .py file but not when enter...

Just in case there was a problem with the python3-lxml package, I removed then reinstalled it, but the problem remains.
Broadsworde Web Scraping & Web Development 3 2,751 Dec-11-2018, 09:06 AM
    Thread: Error when running .py file but not when entering exact same code in CLI
Post: RE: Error when running .py file but not when enter...

Yes indeed. $ apt list | grep python3-lxml python3-lxml/bionic-updates,bionic-security,now 4.2.1-1ubuntu0.1 amd64 [installed,automatic]
Broadsworde Web Scraping & Web Development 3 2,751 Dec-11-2018, 06:37 AM
    Thread: Error when running .py file but not when entering exact same code in CLI
Post: Error when running .py file but not when entering ...

Code: #!/usr/bin/python3 import requests from bs4 import BeautifulSoup url = "https://pythonprogramming.net/parsememcparseface/" resp = requests.get(url) txt = resp.text soup = BeautifulSoup(txt, 'lx...
Broadsworde Web Scraping & Web Development 3 2,751 Dec-11-2018, 06:11 AM
    Thread: BeautifulSoup4, How to get an HTML tag with specific class.
Post: RE: BeautifulSoup4, How to get an HTML tag with sp...

Thanks stranac! That seems to have done the trick. It's a shame the BeautifulSoup documentation is less than optimal!
Broadsworde Web Scraping & Web Development 6 10,982 Nov-22-2018, 03:35 PM
    Thread: BeautifulSoup4, How to get an HTML tag with specific class.
Post: RE: BeautifulSoup4, How to get an HTML tag with sp...

Thank you Larz. I did try: test = soup.find('img', {'class': 'this'})But that returned just the first instance of <img class="this Which happened to be a <img class="this and that" and test =...
Broadsworde Web Scraping & Web Development 6 10,982 Nov-22-2018, 02:52 PM
    Thread: BeautifulSoup4, How to get an HTML tag with specific class.
Post: BeautifulSoup4, How to get an HTML tag with specif...

I have HTML code like the following from a URL: <img class="this" alt="this" src="this_source1.gif"> <img class="this" alt="this" src="this_source2.gif"> <img class="this" alt="this" sr...
Broadsworde Web Scraping & Web Development 6 10,982 Nov-22-2018, 02:26 PM
    Thread: BeautifulSoup4, How to get an HTML tag with specific class.
Post: BeautifulSoup4, How to get an HTML tag with specif...

I have HTML code like the following from a URL: <img class="this" alt="this" src="this_source1.gif"> <img class="this" alt="this" src="this_source2.gif"> <img class="this" alt="this" sr...
Broadsworde Web Scraping & Web Development 6 10,982 Nov-22-2018, 11:31 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020