Metadata-Version: 2.1
Name: modulr
Version: 0.0.2
Summary: Save currently defined classes and functions to modules
Home-page: https://github.com/marskar/modulr
Author: Martin Skarzynski
Author-email: marskar@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# The `modulr` Python package

## Installation

```bash
pip install modulr
```

## Description

The `modulr` package has one function, `make_module`,
which saves class and/or function definitions of classes to a module (`.py` file).
The input objects (classes and/or functions) must defined in the current Python session.


### Usage

```python
from modulr import make_module

def func1(x):
    ...

def func2(x):
    ...

make_module([func1, func2], module_name='my_funcs.py')
```

