Skip to content

Instantly share code, notes, and snippets.

@mursts
Created October 16, 2017 14:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mursts/d7a8aa4d44a4ae541ccb813c0d221776 to your computer and use it in GitHub Desktop.
Save mursts/d7a8aa4d44a4ae541ccb813c0d221776 to your computer and use it in GitHub Desktop.
Python Boot Camp のテキストのタイトルを取得します
#!/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