使用数据模板和JSON输出(符合AMP要求的)HTML的好方法是什么?我有一个不错的python小脚本:
import requests
import json
from bs4 import BeautifulSoup
url = requests.get('https://www.perfectimprints.com/custom-promos/20492/Beach-Balls.html')
source = BeautifulSoup(url.text, 'html.parser')
products = source.find_all('div', class_="product_wrapper")
infos = source.find_all('div', class_="categories_wrapper")
def get_category_information(category):
category_name = category.find('h1', class_="category_head_name").text
return {
"category_name": category_name.strip()
}
category_information = [get_category_information(info) for info in infos]
with open("category_info.json", "w") as write_file:
json.dump(category_information, write_file)
def get_product_details(product):
product_name = product.find('div', class_="product_name").a.text
sku = product.find('div', class_="product_sku").text
product_link = product.find('div', class_="product_image_wrapper").find("a")["href"]
src = product.find('div', class_="product_image_wrapper").find('a').find("img")["src"]
return {
"title": product_name,
"link": product_link.strip(),
"sku": sku.strip(),
"src": src.strip()
}
all_products = [get_product_details(product) for product in products]
with open("products.json", "w") as write_file:
json.dump({'items': all_products}, write_file)
print("Success")
哪个生成我需要的JSON文件。但是,我现在需要使用这些JSON文件,并将其输入到模板{{ JSON DATA HERE }}
中的任何地方(gist)。
我什至不知道从哪里开始。我对JavaScript最满意,因此,如果可能的话,我想使用它。我发现涉及Node.js的东西。
答案 0 :(得分:2)
以下是您自己可以使用模板引擎呈现HTML并使用它返回纯HTML的方法:
from jinja2 import Template
me = Template('<h1>Hello {{x}}<h1>')
html = me.render({'x': 'world'})
return html
html
是您呈现的HTML字符串。或者,您可以从文件渲染:
from jinja2 import Template
with open('your_template.html') as file_:
template = Template(file_.read())
html = template.render(your_dict)
return html
由于您将以一种或另一种方式生成HTML,因此使用模板引擎将节省大量时间。您也可以对列表%中的项目执行{%},这样可以大大简化您的任务。