def generate(count):
for _ in range(count):
title = fake.sentence(nb_words=3)
slug = slugify(title)
github = 'https://github.com/opentrons/protocols/{}'.format(
slug
)
head = {
'title': title,
'slug': slug,
'source-url': github + '/protocol.py',
'github-url': github
}
tail = {
field: generate_field(field)
for field in schema.keys() - head.keys()
}
yield {**head, **tail}
评论列表
文章目录