最近家里有台旧笔记本,我闲的没事干将电脑制作成了一个服务器。虽然没有公网IP但是我们有强大的内网穿透!加上FastAPI这个pythob的web框架制作一个中小型没有问题!
这不今天是520嘛,还能干吗?自己过咯。闲得没事干就有不一样的灵感!
FastAPI制作后端
我们用FastAPI进行后端的处理,不得不说,FastAPI真的快!不仅仅是快,而且代码量很少哦!对我这种懒到极致的男人,肯定是选它!
main.py文件
from fastapi import FastAPI
from starlette.requests import Request
from starlette.templating import Jinja2Templates
import GetRankImage
app = FastAPI()
templates = Jinja2Templates(directory="templates")
@app.get("/")
async def main(request:Request):
return templates.TemplateResponse(
'index.html',
{
'request':request,
'RandomImage':f"{GetRankImage.main()}"
}
)
if __name__ == '__main__':
import uvicorn
uvicorn.run(app, host="0.0.0.0", port=8000)
看吧!这难道很多吗? 才21行!如此简单,还不快学起来!有了框架我们需要将静态文件.html文件写出来,在当前目录新建一个 templates 名字的文件夹
再到里面新建index.html文件,代码如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>setu</title>
</head>
<body>
<p style="text-align: center;">
<img src="{{ RandomImage }}" width="800">
</p>
</body>
</html>
后端爬虫代码编写
我们所有框架都有了,但是没有后端爬虫怎么弄得到我们需要的涩图呢。于是在main.py文件目录新建文件GetRankImage.py,代码如下:
import requests
import random
from bs4 import BeautifulSoup as bs
import time
def main():
init_time = time.strftime("%Y-%m-%d", time.localtime()).split('-')[0:]
init_month = random.randint(1, int(init_time[1]) - 1)
init_day = random.randint(1, int(init_time[-1]) - 1)
if init_month < 10:
month = f"0{init_month}"
else:
month = init_month
if init_day < 10:
day = f"0{init_day}"
else:
day = init_day
date = f"{init_time[0]}-{month}-{day}"
req = requests.post(
"https://rt.huashi6.com/front/works/rank_page",
data={"index": random.randint(1, 4),"size": 10,"date": date}
)
try:
RandomImage = req.json()['data']['works']['datas'][random.randint(0, 9)]['coverImage']['path']
print(f"爬取到图片:https://img2.huashi6.com/{RandomImage} 时间为:{date}")
return "https://img2.huashi6.com/" + RandomImage
except:
print(f"ERROR:--爬取时间:{date}")
return "https://www.kuko.icu/API/qlht/"
我们爬取的是网站:P站热门排行-P站图片排行榜-触站 (huashi6.com) 中的图片资源,里面包含了很多高手画的画,大家也可以将自己的爬虫更换就可以了。
将此处换成你爬虫return出的图片链接即可。
HTML代码
在当前目录新建templates文件夹用于存放html文件
index.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>setu</title>
</head>
<body>
<p style="text-align: center;">
<img src="{{ RandomImage }}" width="800">
</p>
</body>
</html>
部署服务器-内网穿透
所有代码弄好后我们就可以进行部署服务器了,大家如果有云服务器和公网ip的话就不需要进行内网穿透,如果没有公网Ip就需要内网穿透来让外网访问到网页。
我使用我家中的老电脑来搭建了一个服务器,使用NATAPP-内网穿透 基于ngrok的国内高速内网映射工具来进行内网穿透,非常简单而且还免费。
记住要填写服务器的内网ip
根据服务器的系统下载
将客户端上传到服务器上用命令启动./natapp -authtoken=你的token
记得复制token上去
上传我们的项目文件,然后用命令运行 python3 main.py 即可
有bug或问题-QQ群: 706128290