python で相対 URL を絶対 URL に変換する方法のメモ。
urllib.parse.urljoin() で相対 URL を絶対 URL に変換することができます。
urllib.parse.urljoin() で相対 URL を絶対 URL に変換することができます。
import urllib rel_url = '../test/test.html' base_url = 'http://localhost/dir1/dir2/dir3/page.html' urllib.parse.urljoin(base_url, rel_url) > 'http://localhost/dir1/dir2/test/test.html'