UULEとは何ですか?そして、Python で UULE を生成するにはどうすればよいでしょうか?

WBOY
リリース: 2024-08-18 08:31:36
オリジナル
530 人が閲覧しました

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 中国語 Web サイトの他の関連記事を参照してください。

ソース:dev.to
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!