摘要: 输出 其他: 阅读全文
posted @ 2018-09-11 10:39 公众号python学习开发 阅读(1276) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*- # @Time : 2018/9/11 10:18 # @Author : cxa # @File : tool.py # @Software: PyCharm import sys from functools import wraps import inspect def get_method_name(): return... 阅读全文
posted @ 2018-09-11 10:29 公众号python学习开发 阅读(362) 评论(0) 推荐(0) 编辑
摘要: from requests_html import HTMLSession class UrlGenerator(object): def __init__(self, root_url): self.url = root_url self.session = HTMLSession() def __getattr__(self, item)... 阅读全文
posted @ 2018-09-11 10:18 公众号python学习开发 阅读(355) 评论(0) 推荐(0) 编辑