2016年7月21日 星期四

python-url download code

import urllib2
import os
url = ('')
file_name = url.split('/')[-1]
u = urllib2.urlopen(url)
f = open(file_name, 'wb')
meta = u.info()
file_size = int(meta.getheaders("Content-Length")[0])
print "Downloading: %s Bytes: %s" % (file_name, file_size)

file_size_dl = 0
block_sz = 8192
while True:
    buffer = u.read(block_sz)
    if not buffer:
        break

    file_size_dl += len(buffer)
    f.write(buffer)
    status = r"%10d [%3.2f%%]" % (file_size_dl, file_size_dl * 100. / file_size)
    status = status + chr(8)*(len(status)+1)
    print status,

f.close()

python-telnet code

import telnetlib

print("beta version:1,date:2016/5/22")
x = raw_input(">>> Input Host IP to test: ")
y = raw_input(">>> Input Port to test: ")
tn = telnetlib.Telnet(x, y)
tn.write(b"ipconfig\n")
tn.write(b"exit\n")
print("test is ok~~~~~~~~~~\n"+tn.read_all().decode('ascii'))
try:
    input("Press enter to continue")
except SyntaxError:
    pass

2016年2月13日 星期六

python IndentationError:expected an indented block

撰寫python時遇到了

IndentationError:expected an indented block

經過google搜尋後查到下面這篇來暫時解決問題,但是沒想到tcp&udp client擷取封包的工具程式也有問題,這下有得除錯了.

http://blog.csdn.net/hongkangwl/article/details/16344749 

2016年2月12日 星期五

Mac上撰寫Python的方式

[轉貼]金魚人備忘錄: 【Python】在XCode上寫python
http://celinechiu0809.blogspot.tw/2015/07/pythonxcodepython.html 
 
sublime test 3安裝python相關設定筆記:
1.安裝Package Control https://packagecontrol.io/installation#st3
2.安裝SublimeREPL,環境設定部分目前沒用到,參考網址:https://packagecontrol.io/packages/SublimeREPL