This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=UTF-8 | |
| import urllib | |
| from anonBrowser import * | |
| import json | |
| import re | |
| import urllib2 | |
| class reconPerson: | |
| def __init__(self, handle): | |
| self.handle = handle |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # coding=UTF-8 | |
| import urllib2 | |
| import optparse | |
| from bs4 import BeautifulSoup | |
| from urlparse import urlsplit | |
| from os.path import basename | |
| from PIL import Image | |
| from PIL.ExifTags import TAGS | |
| def findImages(url): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding:utf-8 -*- | |
| ''' For avoiding keyerror ''' | |
| from gevent import monkey | |
| monkey.patch_all() | |
| import gevent | |
| import sys | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #coding=utf-8 | |
| def function_get_args(a,b,c): | |
| print a,b,c | |
| return_val = a * 5 | |
| return return_val | |
| def function_get_args_return_tuple(a,b,c): | |
| print a,b,c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding:utf-8 -*- | |
| """ | |
| Date 15-11-11 lastest progres | |
| """ | |
| import time | |
| import sys | |
| import re | |
| import gevent |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #-*- coding:utf-8 -*- | |
| """ | |
| Date 15-11-11 lastest progres | |
| """ | |
| import time | |
| import sys | |
| import re |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding:utf-8 -*- | |
| """ | |
| Date 16-Jan-3q lastest progres | |
| """ | |
| #from __future__ import print_function | |
| import gevent | |
| from gevent import monkey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding:utf-8 -*- | |
| """ | |
| Date 16-Jan-3q lastest progres | |
| """ | |
| #from __future__ import print_function | |
| import gevent | |
| from gevent import monkey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import random | |
| def getproxy(): | |
| foo = ['124.200.33.146:8118', '112.90.72.83:80'] | |
| rand = random.choice((foo)) | |
| ''' Get a dict format proxy randomly ''' | |
| proxy= rand |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #coding=utf-8 | |
| import urllib2 | |
| from bs4 import BeautifulSoup | |
| def get(url): | |
| req=urllib2.Request(url) | |
| req.add_header("User-Agent","Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)") | |
| req.add_header("Referer",url) | |
| req.add_header("Cookie","jyean=flVZbRitNuOM44i3VjCPjP93MgxEj24GZ8yvM6fZ9HM4MfiQXQP6_eTlsA1lvSOqypz4l1Dj8OV4X-1xEwkoKZ6P1SyGgiNtNxi3n50-q6H_cTMs3jTa8oHBA47MLuyU0; JYE_FP2=58f1a56e5f3cea7fd10be747461acba5; CNZZDATA2018550=cnzz_eid%3D562178188-1448873225-http%253A%252F%252Fwww.jyeoo.com%252F%26ntime%3D1448873225") |