Skip to content

Instantly share code, notes, and snippets.

#!/bin/env python
# coding=utf-8
import sys
def main():
print "hello world!"
if __name__ == "__main__":
main()
@olsososo
olsososo / spider.py
Last active December 20, 2015 05:09
一只简单的爬虫
# -*- coding:utf-8 -*-
import MySQLdb
import Queue
import re
import requests
import threading
import time
import sys