elevator-pitch-faker

An elevator pitch generator for the Faker Python package.


Keywords
faker, elevator, pitch, novel, movie, test, data
License
Apache-2.0
Install
pip install elevator-pitch-faker==0.2.0

Documentation

Elevator Pitch Faker

Latest version released on PyPi Apache license version 2.0 Python Versions

elevator_pitch_faker is a provider for the Faker Python package which creates a humorous elevator pitch for your next novel/movie. Inspiration drawn from this article.

Install

Install with pip:

$ pip install elevator-pitch-faker

Or install with setup.py:

$ git clone https://github.com/jnyjny/elevator-pitch-faker.git
$ cd elevator-pitch-faker && python3 setup.py install

Uninstall with pip:

$ pip uninstall elevator-pitch-faker

Usage

Add the StoryPitchProvider to your Faker instance:

from faker import Faker
from elevator_pitch_faker import StoryPitchProvider

fake = Faker()
fake.add_provider(StoryPitchProvider)

print(fake.story_pitch())

View the methods defined by ElevatorPitchProvider:

$ pydoc3 elevator_pitch.StoryPitchProvider