Find Image
TNFSH Python教材
1: import requests
2: from bs4 import BeautifulSoup
3:
4: url = 'https://moodle.tnfsh.tn.edu.tw/index.php'
5: response = requests.get(url)
6:
8: soup = BeautifulSoup(response.text, 'html.parser')
9: imagesElements = soup.find_all('img')
10:
11: for x in imagesElements:
12: print(x)
13:
<img alt="" id="logo" src="//moodle.tnfsh.tn.edu.tw/pluginfile.php/1/theme_adaptable/logo/1624531833/%E7%B7%9A%E4%B8%8A%E5%85%8D%E8%B2%BB%E8%A3%BD%E4%BD%9CLogo%EF%BC%8C%E5%AE%9A%E5%88%B6%E5%B0%88%E5%B1%AC%E6%96%BC%E4%BD%A0%E7%9A%84Logo%E8%A8%AD%E8%A8%88_%E2%80%93_DesignEvo.jpg"/>
<img alt=" " class="iconlarge activityicon" role="presentation" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/url/1624531833/icon"/>
<img alt=" " class="iconlarge activityicon" role="presentation" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/url/1624531833/icon"/>
<img alt="admin Yen的相片" aria-hidden="true" class="rounded-circle w-100" src="https://moodle.tnfsh.tn.edu.tw/pluginfile.php/5/user/icon/adaptable/f1?rev=21" title="admin Yen的相片"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"><a href="https://moodle.tnfsh.tn.edu.tw/blocks/links/follow.php?id=8" target="_blank">CPP教材:考試用</a></img>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="" aria-hidden="true" class="icon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/block_links/1624531833/web"/>
<img alt="討論區" class="icon navicon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/forum/1624531833/icon" title="討論區"/>
<img alt="網址" class="icon navicon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/url/1624531833/icon" title="網址"/>
<img alt="網址" class="icon navicon" src="https://moodle.tnfsh.tn.edu.tw/theme/image.php/adaptable/url/1624531833/icon" title="網址"/>
Author: Yung Chin
Created: 2026-09-01 二 20:01
Validate