首页  >  文章  >  后端开发  >  什么是UULE?以及如何用Python生成UULE?

什么是UULE?以及如何用Python生成UULE?

WBOY
WBOY原创
2024-08-18 08:31:36468浏览

What is UULE? And how to generate UULE with Python?

What is UULE?

The UULE region parameter (&uule=) of the Google search engine allows you to see the actual search results by region, which corresponds to geolocation when directly located in an arbitrary region. In other words, it is possible to get search results for your region of interest in your browser without the need for additional plug-ins or directly physical presence in the region. [1]

Generate UULE with Python [2]

import base64

def uule(city: str) -> str:
  encoded_city = city.encode()
    city_length = len(encoded_city)
    hashed = (
        base64.standard_b64encode(
            bytearray([8, 2, 16, 32, 34, city_length]) + encoded_city
        )
        .decode()
        .strip("=")
        .replace("+", "-")
        .replace("/", "_")
    )
    return f"w+{hashed}"

Example

uule('Lezigne,Pays de la Loire,France') = w+CAIQICIfTGV6aWduZSxQYXlzIGRlIGxhIExvaXJlLEZyYW5jZQ

Google Search Results API

With Google SERP API you can get realtime results from around the without worrying about proxy, captcha or limitation.

References

[1] https://site-analyzer.pro/services-seo/uule/

[2] https://github.com/ogun/uule_grabber

以上是什么是UULE?以及如何用Python生成UULE?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn