5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

FANZA動画の月間人気女優ランキングをスクレイピングした

Last updated at Posted at 2018-10-02

Pythonで、FANZA動画(旧:DMM.R18)の月間人気女優ランキングをスクレイピングして上位20名だけ抜き取るやつを作りました。それだけです。

import requests
from bs4 import BeautifulSoup

Fanza = requests.get('http://www.dmm.co.jp/digital/videoa/-/ranking/=/type=actress/')
soup = BeautifulSoup(Fanza.text,'html.parser')
joyu_list = soup.find_all('div', class_='data')


for rank, joyu in enumerate(joyu_list, 1):
    print(str(rank) + "位:" + joyu.a.get_text())

以上!!

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?