Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Substring extraction
#6
(Apr-23-2019, 06:56 PM)nevendary Wrote: Buran i guess we could communicate in Czech but lets keep it this way.
No, I don't speak czech. And you are not listening what I tell you
import requests
from bs4 import BeautifulSoup

url='https://filmovitica.com/film/domaci/'

resp = requests.get(url)
soup = BeautifulSoup(resp.text, 'html.parser') # if you have lxml you can use it as parser instead
div_items = soup.find_all('div', {'class':'item-text'})
for div in div_items:
   link = div.find('a') 
   print(link.get('href')) # this is the link
   print(link.text) # this is the movie title
if you want, you can replace domaći film gledaj online with empty string to remove it or you can use slicing for that purpose.

Also you can replace the last 5 rows with
h4_items = soup.find_all('h4', {'class':'entry_title'})
for h4 in h4_items:
   link = h4.find('a')
   print(link.get('href'))
   print(link.text)
i.e. search for h4 instead for div
If you can't explain it to a six year old, you don't understand it yourself, Albert Einstein
How to Ask Questions The Smart Way: link and another link
Create MCV example
Debug small programs

Reply


Messages In This Thread
Substring extraction - by nevendary - Apr-23-2019, 12:39 PM
RE: Substring extraction - by buran - Apr-23-2019, 01:35 PM
RE: Substring extraction - by nevendary - Apr-23-2019, 05:14 PM
RE: Substring extraction - by buran - Apr-23-2019, 06:23 PM
RE: Substring extraction - by nevendary - Apr-23-2019, 06:56 PM
RE: Substring extraction - by buran - Apr-23-2019, 07:30 PM
RE: Substring extraction - by nevendary - Apr-24-2019, 05:41 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  extract substring from a string before a word !! evilcode1 3 593 Nov-08-2023, 12:18 AM
Last Post: evilcode1
  [SOLVED] [regex] Why isn't possible substring ignored? Winfried 4 1,127 Apr-08-2023, 06:36 PM
Last Post: Winfried
  ValueError: substring not found nby2001 4 8,045 Aug-08-2022, 11:16 AM
Last Post: rob101
  Match substring using regex Pavel_47 6 1,489 Jul-18-2022, 07:46 AM
Last Post: Pavel_47
  Substring Counting shelbyahn 4 6,193 Jan-13-2022, 10:08 AM
Last Post: krisputas
  Python Substring muzikman 4 2,367 Dec-01-2020, 03:07 PM
Last Post: deanhystad
  Removing items from list if containing a substring pythonnewbie138 2 2,242 Aug-27-2020, 10:20 PM
Last Post: pythonnewbie138
  eml file data extraction ajetrumpet 2 2,704 Jul-04-2020, 04:34 AM
Last Post: ajetrumpet
  Substring and If then Condition to create column Chandan 2 2,377 Jan-23-2020, 08:40 AM
Last Post: buran
  ValueError: substring not found hoangthai10788 2 4,641 Sep-23-2019, 05:34 PM
Last Post: ichabod801

Forum Jump:

User Panel Messages

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