https://github.com/paladini/faker_job_brazil
Brazilian Job Provider for the Faker Python package.
https://github.com/paladini/faker_job_brazil
Last synced: 8 months ago
JSON representation
Brazilian Job Provider for the Faker Python package.
- Host: GitHub
- URL: https://github.com/paladini/faker_job_brazil
- Owner: paladini
- License: apache-2.0
- Created: 2018-04-06T06:00:12.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-06T09:40:35.000Z (over 7 years ago)
- Last Synced: 2025-02-02T04:25:24.172Z (10 months ago)
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- License: LICENSE
Awesome Lists containing this project
README
faker_job_brazil
=========
|pypi| |unix_build| |coverage| |license|
faker_job_brazil is a job provider for the `Faker`_ Python package focused on existing brazilian jobs.
Usage
-----
Install with pip:
.. code:: bash
pip install faker_job_brazil
Or install with setup.py
.. code:: bash
git clone https://github.com/paladini/faker_job_brazil.git
cd faker_job_brazil && python setup.py install
Add the ``BrazilJobProvider`` to your ``Faker`` instance:
.. code:: python
from faker import Faker
from faker_job_brazil import BrazilJobProvider
fake = Faker()
fake.add_provider(BrazilJobProvider)
fake.profissao()
# 'Engenheiro de som'
fake.profissao()
# 'Terapeuta floral'
.. |pypi| image:: https://img.shields.io/pypi/v/faker_web.svg?style=flat-square&label=version
:target: https://pypi.python.org/pypi/faker_job_brazil
:alt: Latest version released on PyPi
.. |license| image:: https://img.shields.io/badge/license-apache-blue.svg?style=flat-square
:target: https://github.com/paladini/faker_job_brazil/blob/master/LICENSE
:alt: Apache license version 2.0
.. _Faker: https://github.com/joke2k/faker