Metadata-Version: 2.4
Name: ingng
Version: 0.2.0
Summary: Claim and manage an ing.ng internet identity — website, wallet, AI agent and profile under one name.
License: MIT
Project-URL: Homepage, https://ing.ng
Project-URL: Agent API, https://ing.ng/agents
Keywords: ing.ng,ens,identity,subdomain,free-subdomain,dns,wallet,web3,ai-agent
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# ingng (Python)

Claim and manage a free **`*.ing.ng`** name — a website, a wallet, an AI-agent
identity and an ENS profile, all under one name. Zero third-party dependencies
(stdlib only). Names resolve in the browser **and** in ENS-aware wallets
(MetaMask, Rainbow, Rabby).

```bash
pip install ingng
```

```python
from ingng import Ingng

ing = Ingng("ing_your_api_key")          # create a key at ing.ng → Panel → API Keys

ing.check("alice")                        # is alice.ing.ng free? (no key needed)
ing.claim("alice")                        # alice.ing.ng is yours
ing.add_dns("alice", "CNAME", "alice.vercel.app")   # point it at your deploy
ing.set_wallet("alice", eth="0x…", btc="bc1…")      # get paid at your name
ing.set_profile("alice", display="Alice", twitter="alice")
ing.lookup("alice.ing.ng")                # what the world (and wallets) resolve
```

## Methods
| Call | Auth | What it does |
|---|---|---|
| `check(name)` | – | Is `name.ing.ng` available? |
| `claim(name)` | ✓ | Register the name to your account |
| `add_dns(name, type, value, record="@", ttl=None)` | ✓ | Add an A/AAAA/CNAME/MX/TXT/NS/SRV record |
| `remove_dns(name, type, record="@")` | ✓ | Remove a DNS record |
| `set_wallet(name, eth=…, btc=…)` | ✓ | Attach wallet addresses |
| `set_profile(name, display=…, twitter=…)` | ✓ | Set ENS text records |
| `lookup(name)` | – | Public ENS resolution view |
| `premium(query)` | – | Browse premium names for sale |
| `domains()` / `get(name)` | ✓ | Your domains |
| `create_api_key(label)` | ✓ | Mint another key |

Prefer the terminal? There's also a CLI: `npx ingng claim you --cname you.vercel.app`.
See <https://ing.ng/developers>.
