Python 构建URL
Python 构建URL
Python requests模块可以帮助构建URLS并动态处理URL值。可以以编程方式获取URL的任何子目录,然后可以用新值替换其中的一部分以构建新的URL。
建立网址
下面的示例使用urljoin在URL路径中获取不同的子文件夹。urljoin方法用于将新值添加到基本URL。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.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
执行上面示例代码,得到以下结果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.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
分割网址
URL也可以分为多个主要地址。如下所示,使用urlparse方法分隔用于特定查询的附加参数或附加到URL的标记。
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.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)
执行上面示例代码,得到以下结果:
# Filename : example.py # Copyright : 2020 By Codebaoku # Author by : www.yapf.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='')
相关文章
- python字符串定义的方式有哪些
- Python修改列表元素的方法
- Python Pyperclip模块怎么安装和使用
- python中的Pyperclip模块功能是什么
- Python异步之生成器怎么使用
- 如何使用Python点云生成3D网格
- Python混合如何使用同步和异步函数
- Python迭代器如何创建使用
- Python数据可视化之Pyecharts如何使用
- Python 网络编程
- Python IP地址
- Python 请求状态代码
- Python 连接重用
- Python Socket程序
- Python HTTP客户端
- Python HTTP服务器
- Python SFTP
- Python 线程并发
- Python 线程通信
- Python 基准测试和分析