How to easily replace host:port of a url in Python 发表于 2018-12-31 | 更新于 2019-02-09 | 评论数: 本文字数: 207 | 阅读时长 ≈ 1 分钟 for python3 1234567from urllib.parse import urlparseurl = "http://example.com/about"parsed = urlparse(a)parsed = parsed._replace(netloc="localhost:8000").geturl()print(parsed)# 'http://localhost:8000/about' 相关文章 Python重构代码的一些模式 如何使用sqlalchemy构造SQL语句 SQLAlchemy 使用自定义 Query 类 org 文档使用 ob-ipython 进行 python literal programming Python 动态创建模块