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
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
# 簡易HTTPクライアント | |
# required: Python 2.6 or later | |
# urllibを使っていますが、これはパッケージインストールの手間を省くためです。 | |
import urllib | |
URI = "http://www.koemu.com:8888/" |
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 sys | |
import re | |
# ---------------------------------------------- | |
def parseFile( path, result ): | |
""" |
NewerOlder