Lib1 [python/lib] fake-agent로 웹 header의 agent값 임의로 만들기 # 설치pip install fake-useragent# 사용법은 매우 간단... from fake_useragent import UserAgent ua = UserAgent() ua_arr = [] ua_arr.append(ua.ie) ua_arr.append(ua.msie) ua_arr.append(ua['Internet Explorer']) ua_arr.append(ua.opera) ua_arr.append(ua.chrome) ua_arr.append(ua.google) ua_arr.append(ua['google chrome']) ua_arr.append(ua.firefox) ua_arr.append(ua.ff) ua_arr.append( ua.safari) for item in ua_arr: p.. 2019. 1. 10. 이전 1 다음