Metadata-Version: 2.1
Name: recursion2loop
Version: 0.2.0
Summary: conversion of recursive functions to iterative implementations. Optimize your Python code by transforming stack-heavy recursion into efficient loops.
Home-page: https://github.com/AdilKoken/recursion2loop
Author: Adil Köken
Author-email: mail@adilkoken.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# recursion2iteration

[![PyPI version](https://badge.fury.io/py/recursion2iteration.svg)](https://badge.fury.io/py/recursion2iteration)
[![Python Versions](https://img.shields.io/pypi/pyversions/recursion2iteration.svg)](https://pypi.org/project/recursion2loop/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

This package provides common recursive patterns to iterative implementations. The goal is to provide stack-safe and memory-efficient iterative implementations in python language.

## Features

- 🔄 Convert recursive functions to iterative implementations
- 🔧 Type-safe implementations with full typing support

## Installation

```bash
pip install recursion2loop
```

## Available Transformations

- Tree Traversals (check for more details: [tree traversal documentation](documentation/doc_tree_traversal.md))
- Tree Operations (check for more details: [tree operations documentation](documentation/doc_tree_operations.md))

# License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

# Code of Conduct

This project and everyone participating in it is governed by the [Code of Conduct](CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.

# Contributing

Your contributions are always welcome! Please take a look at the [contribution guidelines](CONTRIBUTING.md) first.
