1 Star 9 Fork 3

Leeson0202/Python 新闻爬虫

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
NewClass.py 522 Bytes
一键复制 编辑 原始数据 按行查看 历史
Leeson0202 提交于 2021-12-10 19:45 . first commit
# title:标题 channelName:标签 content:文章内容 href:文章连接
class New:
def __init__(self, title=None, channelName=None, content=None, href=None):
self.title = ''
self.content = ''
self.length=0
self.channelName=''
self.href=''
if title is not None and content is not None:
self.title = title
self.channelName=channelName
self.content = content
self.length=len(content)
self.href = href
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/leeson0202/news.git
git@gitee.com:leeson0202/news.git
leeson0202
news
Python 新闻爬虫
main

搜索帮助