Skip to content

Instantly share code, notes, and snippets.

@fushime2
fushime2 / get_images.py
Created May 16, 2016 08:01
三者三葉の公式アイコンをダウンロードする
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
三者三葉の公式アイコン
http://sansyasanyou.com/special/twitter.html
を全部(333個)ダウンロードする.
"""
from urllib.request import urlretrieve
@fushime2
fushime2 / anime.md
Last active June 18, 2016 16:56
見たいアニメ

見たいアニメ

  • SIROBAKO
  • プリティーリズムシリーズ
  • マイリトルポニー
  • あいうら
  • GJ部
  • ゆゆ式

また見たいアニメ

  • まどか☆マギカ
@fushime2
fushime2 / getcsv.py
Last active January 22, 2017 03:43
getcsv.py
import re
import urllib.request
import csv
from bs4 import BeautifulSoup
# page = 1,2,...
# prefnum = 01,02,...,47
BASE_URL = "http://www.aikatsu.com/stars/playshop/list.php?p={page:d}&pref={prefnum:02d}"
rows = [["店名", "住所"]]