Getting Started
emkaymoin is a Python package version of Khaja Moinuddin Mohammed's data-science portfolio. Install it, import it, and every function in this reference is callable from your own REPL.
$ pip install emkaymoin
Collecting emkaymoin
Downloading emkaymoin-0.5.0-py3-none-any.whl (24 kB)
Installing collected packages: emkaymoin
Successfully installed emkaymoin-0.5.0
Then in any Python session:
>>> import emkaymoin as emkay
>>> emkay.help()
Zero required dependencies
The package works out of the box with no required dependencies. If pandas is installed, emkay.projects() returns a DataFrame; if not, it prints a clean text list. Either way it works.
$ pip install emkaymoin # zero dependencies
$ pip install emkaymoin[full] # with pandas
Conventions in this reference
- Signature shows the call form with default values.
- Parameters only appear for functions that take arguments.
- Returns describes the return value and any side effects (most commands print to stdout and return
None). - Example is the actual output from running the command — captured from a real Python session.