Created
October 16, 2017 14:45
-
-
Save mursts/d7a8aa4d44a4ae541ccb813c0d221776 to your computer and use it in GitHub Desktop.
Python Boot Camp のテキストのタイトルを取得します
This file contains 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 | |
import requests # pip install requests | |
import re | |
# liタグのclassが"toctree-l1"のタイトルを取得する正規表現 | |
rgx = re.compile('<li class="toctree-l1">.*>(.*)</a>') | |
def main(): | |
url = 'http://pycamp.pycon.jp/textbook/index.html' | |
# 象のページのHTMLを取得 | |
r = requests.get(url) | |
# 文字コードを自動認識させる | |
r.encoding = r.apparent_encoding | |
# 改行コードで分割して1行ずつ処理を行う | |
for x in r.text.split('\n'): | |
# 正規表現に一致するか | |
match = rgx.search(x) | |
if match: | |
# 一致した場合 | |
print(match.group(1)) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment