Skip to content

Instantly share code, notes, and snippets.

@kjaymiller
Created November 15, 2020 03:04
Show Gist options
  • Save kjaymiller/e05fc489ace44e0f4426638f05841cc6 to your computer and use it in GitHub Desktop.
Save kjaymiller/e05fc489ace44e0f4426638f05841cc6 to your computer and use it in GitHub Desktop.
Convert input to to UPPERCASE with CLAPPING EMOJIS
"""Directions.
1. pip install typer
"""
import typer
app = typer.Typer()
@app.command()
def main(sentence:str):
typer.echo(sentence.replace(' ', '👏').upper())
if __name__ == '__main__':
app()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment