代码拉取完成,页面将自动刷新
#!/usr/bin/python3
# coding: utf-8
"""
__title__ = ""
__author__ = "Hans"
__mtime__ = "2017/3/31 0031"
# code is far away from bugs with the god animal protecting
I love animals. They taste delicious.
┏┓ ┏┓
┏┛┻━━━┛┻┓
┃ ☃ ┃
┃ ┳┛ ┗┳ ┃
┃ ┻ ┃
┗━┓ ┏━┛
┃ ┗━━━┓
┃ 神兽保佑 ┣┓
┃ 永无BUG! ┏┛
┗┓┓┏━┳┓┏┛
┃┫┫ ┃┫┫
┗┻┛ ┗┻┛
"""
from sqlalchemy import Column, String, create_engine, Integer
from sqlalchemy.orm import sessionmaker
from sqlalchemy.ext.declarative import declarative_base
# 创建对象基类
Base = declarative_base()
# 定义Pic对象
class Pic(Base):
# 表的名字
__tablename__ = 'pic'
# 表结构
id = Column(Integer(), primary_key=True)
site = Column(String(100))
pic = Column(String(1000))
# 初始化数据库连接
engine = create_engine('mysql+mysqlconnector://root:root@localhost:3306/crawler')
# 创建DBSession 类型:
DBSession = sessionmaker(bind=engine)
# 创建session对象
session = DBSession()
result = session.query(Pic).filter(Pic.id==5).first()
print(result)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。