import requests import new import pymysql from bs4 import BeautifulSoup #pw='당신의 비밀번호를 입력해주세요' pw = 'gusgh4528' new.dbcheck() #테이블이 있는지 확인하는 모듈의 함수 conn = pymysql.connect(host='localhost', user='******', password=pw, db='testdb', charset='utf8') curs = conn.cursor() sql = "truncate table bugs" #데이터베이스 초기화 시킨다. curs.execute(sql) header = { 'User-Agent': 'Mozilla/5.0 (Windows NT 6.3; Trident/7.0; rv:11.0) like Gecko' } bugs = requests.get('https://music.bugs.co.kr/chart/track/realtime/total', headers=header) # 벅스 실시간 차트 웹사이트 bugs_html = bugs.text bugs_parse = BeautifulSoup(bugs_html, 'html.parser') title_arr = [] artist_arr = [] img_arr = []
import requests import new import pymysql import bugs1 import melon1 import genie1 import pandas as pd import matplotlib.pyplot as plt import platform import matplotlib from matplotlib import font_manager, rc, style from sqlalchemy import create_engine from bs4 import BeautifulSoup new.dbcheck() melon1.melon1() bugs1.bugs1() genie1.genie1() pw = 'gusgh4528' #테이블이 있는지 확인하는 모듈의 함수 conn = pymysql.connect(host='localhost', user='******', password=pw, db='testdb', charset='utf8') curs = conn.cursor() sql = "truncate table total" #데이터베이스 초기화 시킨다. curs.execute(sql) check = """show tables like 'total'""" curs.execute(check)