>  기사  >  백엔드 개발  >  UULE란 무엇인가요? Python으로 UULE을 생성하는 방법은 무엇입니까?

UULE란 무엇인가요? Python으로 UULE을 생성하는 방법은 무엇입니까?

WBOY
WBOY원래의
2024-08-18 08:31:36534검색

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으로 문의하세요.