Python 構(gòu)建URL
Python 構(gòu)建URL
Python requests模塊可以幫助構(gòu)建URLS并動態(tài)處理URL值??梢砸跃幊谭绞将@取URL的任何子目錄,然后可以用新值替換其中的一部分以構(gòu)建新的URL。
建立網(wǎng)址
下面的示例使用urljoin在URL路徑中獲取不同的子文件夾。urljoin方法用于將新值添加到基本URL。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 from requests.compat import urljoin base='https://stackoverflow.com/questions/3764291' print urljoin(base,'.') print urljoin(base,'..') print urljoin(base,'...') print urljoin(base,'/3892299/') url_query = urljoin(base,'?vers=1.0') print url_query url_sec = urljoin(url_query,'#section-5.4') print url_sec
執(zhí)行上面示例代碼,得到以下結(jié)果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 https://stackoverflow.com/questions/ https://stackoverflow.com/ https://stackoverflow.com/questions/... https://stackoverflow.com/3892299/ https://stackoverflow.com/questions/3892299?vers=1.0 https://stackoverflow.com/questions/3892299?vers=1.0#section-5.4
分割網(wǎng)址
URL也可以分為多個主要地址。如下所示,使用urlparse方法分隔用于特定查詢的附加參數(shù)或附加到URL的標記。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 from requests.compat import urlparse url1 = 'https://docs.python.org/2/py-modindex.html#cap-f' url2='https://docs.python.org/2/search.html?q=urlparse' print urlparse(url1) print urlparse(url2)
執(zhí)行上面示例代碼,得到以下結(jié)果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.slktour.com # Date : 2020-08-25 ParseResult(scheme='https', netloc='docs.python.org', path='/2/py-modindex.html', params='', query='', fragment='cap-f') ParseResult(scheme='https', netloc='docs.python.org', path='/2/search.html', params='', query='q=urlparse', fragment='')
相關(guān)文章
- python字符串定義的方式有哪些
- Python修改列表元素的方法
- Python?Pyperclip模塊怎么安裝和使用
- python中的Pyperclip模塊功能是什么
- Python異步之生成器怎么使用
- 如何使用Python點云生成3D網(wǎng)格
- Python混合如何使用同步和異步函數(shù)
- Python迭代器如何創(chuàng)建使用
- Python數(shù)據(jù)可視化之Pyecharts如何使用
- Python 網(wǎng)絡(luò)編程
- Python IP地址
- Python 請求狀態(tài)代碼
- Python 連接重用
- Python Socket程序
- Python HTTP客戶端
- Python HTTP服務(wù)器
- Python SFTP
- Python 線程并發(fā)
- Python 線程通信
- Python 基準測試和分析