Metadata-Version: 2.4
Name: makethis
Version: 0.1.0a1
Summary: Make any function with natural language. Powered by LLMs
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: anthropic>=0.34.0
Requires-Dist: openai>=1.40.0

# makethis

Write Python functions in English.

```bash
pip install makethis
makethis init    # paste your API key once
```

```python
from makethis import Function

# simple functions
reverse = Function("reverse a string")
reverse("hello")  # -> 'olleh'

# complex functions too
is_email = Function("return True if input looks like an email address")
is_email("a@b.com")  # -> True
```

Generated code is cached in `.makethis/functions/`. You can inspect or commit it.
