Metadata-Version: 2.1
Name: codeg
Version: 0.2.0
Summary: Python library to generate and execute code dynamically
Home-page: https://github.com/nazime/codeg
Author: Nazime LAKEHAL
Author-email: nazime.lkh@gmail.com
Maintainer: Nazime LAKEHAL
Maintainer-email: nazime.lkh@gmail.com
License: MIT
Project-URL: Documentation, https://codeg.readthedocs.org/
Project-URL: Bug Tracker, https://github.com/nazime/codeg/issues
Project-URL: Source Code, https://github.com/nazime/codeg
Description: [![Pypi version](https://img.shields.io/pypi/v/codeg.svg)](https://pypi.org/project/codeg/) [![Python versions](https://img.shields.io/pypi/pyversions/codeg.svg)](https://pypi.org/project/codeg/) [![Black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        
        -----------------
        
        # codeg
        
        Codeg (code generator) is a python library that allows you to generate python code dynamically.
        
        **This library is still a work in progress**
        
        ## Quickstart
        
        Let's say you want to generate the following class dynamically
        
        ```python
        class Animal:
            def __init__(name: str):
                self.name = name
        ```
        
        
        
        You can use the following code
        
        ```python
        import codeg
        
        code_cls = codeg.cls("Animal")
        code__init = code_cls.method(
            "__init__", attributes=[codeg.Attribute("name", annotation=str)]
        )
        code__init.line("self.name = name")
        
        code_cls.print()  # print the generated code
        
        Animal = code_cls.build()  # eval the code and get it on a variable
        animal = Animal("rex")
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: tests
Provides-Extra: travis
