Jul-01-2024, 09:46 AM
The following code will get you all of the links:
from bs4 import BeautifulSoup import requests url = "https://pokiesman.com/real-money-pokies/" response = requests.get(url) soup = BeautifulSoup(response.content, 'lxml') links = soup.find_all('a') for link in links: print(link)returns:
Output:<a href="/"> <picture class="render-image flex flex-align-center flex-justify-center picture-image-logo"> <source srcset="https://pokiesman.com/wp-content/themes/pokiesman-com/img/logo.svg" type="image/svg+xml"/> <img alt="" class="no-lazy logo" height="57" loading="lazy" src="https://pokiesman.com/wp-content/themes/pokiesman-com/img/logo.svg" width="67"/> </picture> </a>
<a href="https://pokiesman.com/free-pokies/">Free Pokies</a>
<a href="#">Software</a>
<a href="https://pokiesman.com/aristocrat/">Aristocrat Pokies</a>
<a href="https://pokiesman.com/ainsworth/">Ainsworth</a>
<a href="https://pokiesman.com/pragmatic-play/">Pragmatic Play</a>
<a href="https://pokiesman.com/bally/">Bally</a>
<a href="https://pokiesman.com/igt/">IGT</a>
<a href="https://pokiesman.com/konami/">Konami</a>
<a href="https://pokiesman.com/playtech/">Playtech</a>
<a href="https://pokiesman.com/microgaming/">Microgaming</a>
<a href="https://pokiesman.com/wms/">WMS</a>
<a href="https://pokiesman.com/online-casinos/">Online Casinos Australia</a>
<a href="#">Other Pokies</a>
<a href="https://pokiesman.com/no-deposit-free-spins-pokies/">No Deposit Free Spins</a>
<a href="https://pokiesman.com/mobile-pokies/">Mobile Pokies</a>
<a href="https://pokiesman.com/new-pokies/">New Pokies</a>
<a href="https://pokiesman.com/offline-pokies/">Offline Pokies</a>
<a href="/" itemprop="item"> <span itemprop="name">Home</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/richard-casino/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/wanted-win/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="/go/staycasino/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/neospin/ " rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/dundeeslots/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/casinonic/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a class="btn btn-orange" href="https://pokiesman.com/go/lunubet/" rel="nofollow" target="_blank"> <span>PLAY NOW</span> </a>
<a href="https://pokiesman.com/">best Australian online pokies reviews</a>
<a href="https://pokiesman.com/free-pokies/">free play pokies</a>
<a href="https://pokiesman.com/mobile-pokies/">free pokies for mobiles.</a>
<a href="https://pokiesman.com/aristocrat/">Aristocrat free pokies.</a>
<a href="https://pokiesman.com/new-pokies/">new online pokies with real money</a>
<a href="https://pokiesman.com/no-deposit-free-spins-pokies/">No deposit free spins pokies:</a>
<a href="https://pokiesman.com/free-pokies/lightning-link/">Lightning Link</a>
<a href="https://pokiesman.com/free-pokies/lightning-link/">Lightning Link</a>
<a href="https://pokiesman.com/free-pokies/wheres-the-gold/">Where’s the Gold</a>
<a href="https://pokiesman.com/free-pokies/dragon-link/">Dragon Link</a>
<a href="https://pokiesman.com/free-pokies/5-dragons/">5 Dragons</a>
<a href="https://pokiesman.com/free-pokies/big-red/">Big Red</a>
<a href="https://pokiesman.com/responsible-gambling/">Responsible Gambling</a>
<a href="https://pokiesman.com/privacy-policy/">Privacy Policy</a>
<a href="https://pokiesman.com/contact-us/">Contact Us</a>
<a href="https://pokiesman.com/our-team/">Our Team</a>
<a href="https://pokiesman.com/sitemap/">Sitemap</a>
I don't see any link with a class named 'next-page-link'