Skip to content

Instantly share code, notes, and snippets.

@gangulymadhura
Created July 10, 2021 03:10
Show Gist options
  • Save gangulymadhura/c6ce6048fcec8e8195b49e7048e5069e to your computer and use it in GitHub Desktop.
Save gangulymadhura/c6ce6048fcec8e8195b49e7048e5069e to your computer and use it in GitHub Desktop.

Mydemopkg

This package has been built to demonstrate the steps for transforming your python scripts in a python package.

Features

  • Print input text in lower case

Installation

Install mydemopkg with pip

  pip install mydemopkg

Authors

License

MIT

Usage/Examples

from mydemopkg import DummyClass as dc

# create an instance of class DummyClass
new_dc = dc("Print This TEXT")

# print text in lower case
new_dc.print_text()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment