Improve README and add CLAUDE.md#17
Conversation
- Rewrite README with installation, sync/async/skip_dns usage examples, and a normalization rules table - Add CLAUDE.md with project overview, commands, architecture, and code style guidance Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📝 WalkthroughWalkthroughDocumentation expansion adding a new Claude.md guidance file and restructuring README.md with installation instructions, usage examples for both synchronous and asynchronous workflows, skip_dns mode description, and normalization rules overview. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~3 minutes Poem
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
📝 Coding Plan
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@README.md`:
- Around line 35-40: The README's example calls await at top-level which will
fail in a normal Python script; wrap the async call in an async entrypoint and
run it with asyncio.run. Change the snippet to define an async def main() that
creates email_normalize.Normalizer(), awaits normalizer.normalize(...), and
prints the result, then invoke asyncio.run(main()) so Normalizer and its
normalize coroutine are executed correctly.
- Wrap bare await in async def main() with asyncio.run() so the example is valid in a standard Python script Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Summary
Co-Authored-By: Claude Opus 4.6 (1M context) noreply@anthropic.com
Summary by CodeRabbit