摘要:
import requests from bs4 import BeautifulSoup import os class DownLoadImg(object): def __init__(self): self.url = 'http://jandan.net/ooxx/' self.header = { 'User-Agen... 阅读全文
摘要:
#encoding=utf-8 import requests def fanyi(): while True: context = input("请输入翻译的内容(退出q):") if context in ['q','Q']: break else: url = 'http://fan... 阅读全文