A Faker provider that generates fake blog content in Brazilian Portuguese as blog titles, blog posts, images, tags, and more.
Project description
Python Faker Blog Provider
Python Faker Blog Content Provider
Description
This Python package provides a Faker provider that generates fake blog content in Brazilian Portuguese. It consists of various methods that can be used to create blog-related fake data such as blog titles, blog posts, images, tags, and more.
Installation
Use pip for install from source in PyPI:
pip install faker-blog-provider
Tests
Use pytest to test the project:
pytest -vvsx
Usage
Import the Faker class from the faker package and initialize an instance of it. Then, import the BlogProvider class from the faker_blog module. Finally, add the BlogProvider to the instance of Faker.
from faker import Faker
from faker_blog import BlogProvider
fake = Faker()
fake.add_provider(BlogProvider)
# Generate fake blog content
title = fake.article_title()
image = fake.article_image()
tag = fake.article_tag()
tags = fake.article_tags(nb=5)
category = fake.article_category()
image = fake.article_image()
content_html = fake.article_content_html()
# You can generate a dictionary containing the text and a slugified version using the following methods.
title = fake.article_title_and_slug()
tag = fake.article_tag_and_slug()
tags = fake.article_tags_and_slug(nb=5)
category = fake.article_category_and_slug()
Features
- Generate fake blog titles
- Generate fake blog posts content
- Generate fake blog tag and tags
- Generate fake blog category
- Generate fake URLs for blog image using the Lorem Picsum
Examples
Generate a fake blog title:
title = fake.article_title()
print(title)
Output:
Os Segredos De Dirigir Um Poderoso Grupo
Generate fake blog tags:
tags = fake.article_tags(nb=5)
print(tags)
Output:
['Transformação Pessoal', 'Gestão do Tempo', 'Estratégias de Crescimento', 'Automação', 'Desenvolvimento Sustentável']
Generate fake blog tags with slug:
tags_and_slug = fake.article_tags_and_slug(nb=3)
print(tags_and_slug)
Output:
[{'tag': 'Ferramentas para Empreendedores', 'slug': 'ferramentas-para-empreendedores'}, {'tag': 'Transformação Digital', 'slug': 'transformacao-digital'}, {'tag': 'Cultura Empresarial', 'slug': 'cultura-empresarial'}]
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file faker_blog_provider-0.0.3.tar.gz.
File metadata
- Download URL: faker_blog_provider-0.0.3.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c388a1e1ef6aeaf155402dbe435d957138c6bdb6b1970ab12a9b7e14e55ee904
|
|
| MD5 |
29dac7bae4f21b1f72a7f928349c1b5e
|
|
| BLAKE2b-256 |
1a0851895b9bfec11a1ae5224f933a58b3a22d43bd676a896fc73529e92b1aee
|
File details
Details for the file faker_blog_provider-0.0.3-py3-none-any.whl.
File metadata
- Download URL: faker_blog_provider-0.0.3-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
347fa02b6df644e846b27af1d9a859fde0a4521f95cf858793a7466b5ea8b438
|
|
| MD5 |
faae2e9194b9ebb08bc0b7faa7ba1759
|
|
| BLAKE2b-256 |
bc8e55a51ca2a86987239c56a4a14c8202fd5f48df2252ddd9da127d782c8b16
|