前提・実現したいこと
seleniumでスクレイピングしたデータをDjangoORMを使ってadminでスクレイピングしたデータを一つ一つ格納したいのですが、データがまとめて格納してしまいます。どのようにすれば一つ一つデータを保存していくことができるのでしょうか??
少し説明が分かりにくいのでadminページのサンプルを下記に記載させていただきます。
発生している問題
ブラウザからadminページを見ると何もスクレイピングしたデータがない状態でmodels.pyを作成しただけの状態だと
ーーー
氏名:
住所:
誕生日:
ーーー
と表示されています。そして、seleniumでスクレイピングしたデータをadminで表示させようとすると、
ーーー
氏名:[氏名の要素1,氏名の要素2,氏名の要素3,氏名の要素4,氏名の要素5]
住所:[住所の要素1,住所の要素2,住所の要素3,住所の要素4,住所の要素5]
誕生日:[誕生日1,誕生日2,誕生日3,誕生日4,誕生日5]
ーーー
とまとめてデータが格納されてしまいます。僕としては
ーーー
氏名:[氏名の要素1]
住所:[住所の要素1]
誕生日:[誕生日1]
ーーー
氏名:[氏名の要素2]
住所:[住所の要素2]
誕生日:[誕生日2]
ーーー
氏名:[氏名の要素3]
住所:[住所の要素3]
誕生日:[誕生日3]
ーーー
と一つ一つ格納したいのですが、上手くいきません。こちら、どのようにしたら一つ一つスクレイピングした要素を格納してadminに表示さすことができるでしょうか??下記にviews.py、models.py、index.htmlを載せさせていただきます。
ぜひ、何かご教授いただきたいです。よろしくお願いします。
該当のソースコード
views.py
from django.shortcuts import render import chromedriver_binary from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.chrome.options import Options from .models import Hito from django.http import HttpResponse from django.urls import reverse_lazy from django.views.generic import CreateView options = Options() options.headless = True options.add_argument('--headless') driver = webdriver.Chrome(options=options) driver.get("動的なwebサイト") class Create(CreateView): template_name = 'index.html' model = Hito fields = ('name', 'link', 'date') success_url = reverse_lazy('lol') def lol(request): selector = '氏名' element = driver.find_elements_by_css_selector(selector) element = [a.get_attribute("href") for a in element] date_element = "誕生日" dates = driver.find_elements_by_css_selector(date_element) dates = [b.text for b in dates] i = '住所' adress = driver.find_elements_by_css_selector(i) adress = [c.text for c in adress] b = Company.objects.create(name=adress, link=element, date=dates) b.save() zipped = list(zip(b.name, b.link, b.date)) param = {'date': zipped} return render(request, 'momo/index.html', param)
該当のソースコード
index.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="/static/admin-lte/plugins/fontawesome-free/css/all.min.css"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>sample</title> </head> <body> {% block content %} <div class="container-fluid"> <div class="row"> <div class="col-md-12"> <table border="1" style="border: crimson"> <tr> <th scope="col">氏名</th> <th scope="col">住所</th> <th scope="col">誕生日</th> </tr> {% for x, y, z in date %} <tr> <td>{{ x }}</td> <td><a href="{{ y }}">{{ y }}</a></td> <td>{{ z }}</td> </tr> {% endfor %} </table> </div> </div> </div> {% endblock content %} </body> </html>
該当のソースコード
models.py
from django.db import models class Hito(models.Model): name = models.CharField(verbose_name='氏名', max_length=255) link = models.CharField(verbose_name='住所', max_length=255, null=True) date = models.CharField(verbose_name='誕生日', max_length=255, null=True) def __str__(self): return self.name class Content(models.Model): hito = models.ForeignKey(Company, on_delete=models.CASCADE) good = models.CharField(verbose_name='いいね', max_length=255) def __str__(self): return self.title
ローカルホストで表示さすとテーブルを使ってfor文で回しているからなのか
ーーー
氏名:[氏名の要素1]
住所:[住所の要素1]
誕生日:[誕生日1]
ーーー
氏名:[氏名の要素2]
住所:[住所の要素2]
誕生日:[誕生日2]
ーーー
氏名:[氏名の要素3]
住所:[住所の要素3]
誕生日:[誕生日3]
ーーー
このイメージでデータが表示してくれます。([氏名, 住所, 誕生日]とブロック事に分けて表示しているという意味です。)
ぜひ、よろしくお願いします。
補足情報(FW/ツールのバージョンなど)
Django3.1
python3.8
mac10.15.6
あなたの回答
tips
プレビュー