如何从python中的资源URL获取完整的URL

发布于 2025-01-08 05:48:28 字数 659 浏览 0 评论 0原文

在网页上,当嵌入 时,客户端的 Web 浏览器会加载图像、css 和 javascript 等资源。分别是

资源 URL 可以采用不同的形式,它可以是完整的 URL,例如:

http://cdn.mysite.com/images/animage.jpg

它可以是相对路径:

images/animage.jpg
../images/animage.jpg

或者只是对根的引用

/images/animage.jpg

我如何在 python 中创建一个函数,它采用页面的 URL,并且其上资源的 URL 并确保返回完整的 URL?

例如:

def resource_url(page,resource):
    ## if the resource is a full URL, return that
    ## if not, use the page URL and the resource to return the full URL

On web pages, resources such as images, css and javascript are loaded by a client's web browser, when embedded with <img>, <link> and <script> tags respectively.

A resource URL can take different forms, it can be a full URL, for example:

http://cdn.mysite.com/images/animage.jpg

It can be a relative path:

images/animage.jpg
../images/animage.jpg

Or just a reference to the root

/images/animage.jpg

How could I create a function in python, that takes the URL of the page, and the URL of a resource on it and ensures that the full URL is returned?

For example:

def resource_url(page,resource):
    ## if the resource is a full URL, return that
    ## if not, use the page URL and the resource to return the full URL

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

咿呀咿呀哟 2025-01-15 05:48:28
from urlparse import urljoin

def resource_url(page, resource):
  if not resource.startswith(page):
    # doesn't start with http://example.com
    resource = urljoin(page, resource)
  return resource
from urlparse import urljoin

def resource_url(page, resource):
  if not resource.startswith(page):
    # doesn't start with http://example.com
    resource = urljoin(page, resource)
  return resource
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文