Metadata-Version: 2.4
Name: noythp
Version: 0.2.3
Summary: 🔄 NOYTHP — Python 倒着写
Author: NOYTHP 设计委员会
Author-email: noreply@noythp.dev
License: MIT
Project-URL: Homepage, https://github.com/noythp/noythp
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Interpreters
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Dynamic: author-email
Dynamic: requires-python

# 🔄 NOYTHP

Python 关键字倒着写。`print` → `tnirp`，`def` → `fed`。

```python
tnirp("!nohtyp esrever si NOYTHP")
```

## 安装

```bash
pip install noythp
```

## 用法

```python
import noythp

# 直接调用反转函数
noythp.tnirp("hello")
noythp.nel("world")

# 或者写一段反转代码
code = noythp.transpile('''
fed 双倍(x):
    nruter x * 2
tnirp(双倍(21))
''')
exec(code)
```

## 命令行

```bash
python -m noythp
🔄> tnirp("hi")
```

## 一句话原理

反转关键字 → 替换回 Python → 执行。纯 Python，零依赖。

```
https://pypi.org/project/noythp/
```
