Python 一鍵獲取百度網盤提取碼

該 GIF 圖來自於官網,文末有給出連接。node

描述

依託於百度網盤巨大的的雲存儲空間,絕大數人會習慣性的將一些資料什麼的存儲到上面,可是有的私密連接須要提取碼,可是讓每一個想下載私密資源的人記住每個提取碼顯然是不現實的。這個時候,雲盤萬能鑰匙 誕生了,咱們經過安裝相應的瀏覽器插件就能夠自動獲獲取相應連接的提取碼。我在 Github 上看了一下,有 Web JS 版的, python 版的貌似尚未找到,因此我參照了JS 版本和官網的請求接口寫了兩種方式的獲取腳本。python

實現

下述兩種方式的具體實現就不作代碼解釋了,思路都是同樣,經過請求接口,拿到數據,而後返回便可。git

V1

"""
Author:hippieZhou
Date:20190608
Description: Get BaiDuYun shared link's Code 
"""
import argparse
import re
import requests
import json
import time

VERSION = "VERSION 1.0.0"


def checkUrl(url: str) -> str:
    m1 = re.match(
        "https?:\/\/pan\.baidu\.com\/s\/1([a-zA-Z0-9_\-]{5,22})", url)
    m2 = re.match(
        "https?:\/\/pan\.baidu\.com\/share\/init\?surl=([a-zA-Z0-9_\-]{5,22})", url)
    if not m1 and not m2:
        print("參數不合法")
        return False
    else:
        return True


def getKey(url: str) -> bool:
    if checkUrl(url):
        try:
            req = requests.get(f"https://node.pnote.net/public/pan?url={url}")
            code = req.status_code
            if code == 200:
                data = dict(json.loads(req.text))
                status = data.get("status", False)
                if status:
                    return data.get("access_code", "未能查詢到該連接的提取碼,可能緣由是:該連接不須要提取碼或已過時")
                else:
                    return data.get("messages", "爲能查詢到提取碼")
            elif code == 404:
                return "不存在該連接的記錄"
        except Exception as e:
            return f"請求服務器失敗,錯誤代碼:{code}"


def get_parser():
    parser = argparse.ArgumentParser()
    parser.description = "百度網盤提取碼一鍵獲取器"
    parser.add_argument('urls', metavar="urls", type=str, nargs="*",
                        help='設置要獲取提取碼的連接(多個連接請用空格分隔)')
    parser.add_argument('-v', '--version', action='store_true',
                        help='版本號')
    return parser


def command_line_runner():
    parser = get_parser()
    args = vars(parser.parse_args())
    if args['version']:
        print(VERSION)
        return

    s_time = time.time()
    if len(args['urls']) > 1:
        for item in args["urls"][1:]:
            print(f"{item}:\r\n\t{getKey(item)}")
        e_time = time.time()
        print(f"\n\n操做完畢,總耗時:{e_time-s_time} 秒")


def main():
    command_line_runner()


if __name__ == "__main__":
    main()

運行效果以下圖所示:github

v2

"""
Author:hippieZhou
Date:20190608
Description: Get BaiDuYun shared link's Code 
"""

import argparse
import time
import re
import requests
from datetime import datetime
import json

accessKey = "4fxNbkKKJX2pAm3b8AEu2zT5d2MbqGbD"
clientVersion = "web-client"


def getPid(url: str) -> str:
    matches = re.match(
        "https?:\/\/pan\.baidu\.com\/s\/1([a-zA-Z0-9_\-]{5,22})", url)
    return matches[1] if matches else None


def getUuid(pid: str) -> str:
    return f"BDY-{pid}"


def getKey(url: str) -> str:
    pid = getPid(url)
    uuid = getUuid(pid)
    headers = {
        "type": "GET",
        "data": '',
        "dataType": "json"
    }
    url = f"http://ypsuperkey.meek.com.cn/api/items/{uuid}?access_key={accessKey}&client_version={clientVersion}&{datetime.utcnow()}"
    try:
        req = requests.get(url, headers=headers)
        code = req.status_code
        if code == 200:
            data = json.loads(req.text)
            accessCode = data.get("access_code", None)
            return "沒找到提取密碼,o(╥﹏╥)o" if (accessCode == "undefined" or accessCode == None or accessCode == "") else accessCode
        elif code == 400:
            return " 服務器不理解請求的語法"
        elif code == 404:
            return "不存在該連接的記錄"
        else:
            return f"請求服務器失敗,錯誤代碼:{code}"
    except Exception as e:
        return e


def get_parser():
    parser = argparse.ArgumentParser()
    parser.description = "百度網盤提取碼一鍵獲取器"
    parser.add_argument('urls', metavar="urls", type=str, nargs="*",
                        help='設置要獲取提取碼的連接(多個連接請用空格分隔)')
    parser.add_argument('-v', '--version', action='store_true',
                        help='版本號')
    return parser


def command_line_runner():
    parser = get_parser()
    args = vars(parser.parse_args())
    if args['version']:
        print(VERSION)
        return

    s_time = time.time()
    if len(args['urls']) > 1:
        for item in args["urls"][1:]:
            print(f"{item}:\r\n\t{getKey(item)}")
        e_time = time.time()
        print(f"\n\n操做完畢,總耗時:{e_time-s_time} 秒")


def main():
    command_line_runner()


if __name__ == "__main__":
    main()

運行效果以下圖所示:web

總結

v1 版本和 v2 版本是經過請求不一樣的接口方式來實現的, v2 接口的數據要相對更準確一些。具體可查閱具體的代碼實現。json

若是你以爲上述代碼不錯的話,歡迎訪問對應的倉庫地址: baidupankey 進行 starforkfollowapi

相關參考

相關文章
相關標籤/搜索