Metadata-Version: 2.1
Name: classgen
Version: 0.0.8
Summary: Generate classes in Python using command line arguments
Home-page: UNKNOWN
Author: Avanish Gupta
License: UNKNOWN
Keywords: Class,generate,automation,command line arguments,cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# Class Generator tool

## Generate class files in Python using command line arguments

Example:

> `python3 -m classgen ClassName member1,member2,member3`

## Following is in the development phase

### Generate class files in Python using a script

```from classgen import ClassGenerator
cg = ClassGenerator('ClassName', ['member1', 'member2'], ['member1', 'member2'])
cg.Generate()
```


