Skip to content

Commit c026691

Browse files
fix(meta): correct repo URLs and remove duplicate README sections
- setup.py: url and project_urls pointed to nonexistent github.com/validkit/python-sdk - setup.cfg: url pointed to PyPI instead of GitHub - README.md: clone URL and issues URL pointed to wrong repo - README.md: removed duplicate "Error Handling" and "License" sections Closes #2318
1 parent 792b4a6 commit c026691

3 files changed

Lines changed: 7 additions & 27 deletions

File tree

README.md

Lines changed: 3 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -207,22 +207,6 @@ Check the `examples/` directory for more detailed examples:
207207

208208
MIT License - see LICENSE file for details.
209209

210-
## Error Handling
211-
212-
The SDK provides detailed error information:
213-
214-
```python
215-
from validkit import AsyncValidKit, ValidationError, RateLimitError
216-
217-
async with AsyncValidKit(api_key="your_api_key") as client:
218-
try:
219-
result = await client.verify_email("invalid@email")
220-
except ValidationError as e:
221-
print(f"Validation error: {e}")
222-
except RateLimitError as e:
223-
print(f"Rate limit exceeded. Retry after: {e.retry_after}s")
224-
```
225-
226210
## Performance Tips
227211

228212
1. **Use batch verification** for multiple emails (up to 10,000 per request)
@@ -238,8 +222,8 @@ We welcome contributions! Please see our [Contributing Guide](CONTRIBUTING.md) f
238222

239223
```bash
240224
# Clone the repository
241-
git clone https://github.com/validkit/python-sdk.git
242-
cd python-sdk
225+
git clone https://github.com/ValidKit/validkit-python-sdk.git
226+
cd validkit-python-sdk
243227

244228
# Create virtual environment
245229
python -m venv venv
@@ -256,14 +240,10 @@ pytest
256240

257241
- 📖 **Documentation**: https://docs.validkit.com
258242
- 🔧 **API Reference**: https://api.validkit.com/docs/openapi.json
259-
- 🐛 **Issues**: https://github.com/validkit/python-sdk/issues
243+
- 🐛 **Issues**: https://github.com/ValidKit/validkit-python-sdk/issues
260244
- 📧 **Email**: support@validkit.com
261245
- 💬 **Discord**: [Join our community](https://discord.gg/validkit)
262246

263-
## License
264-
265-
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
266-
267247
---
268248

269249
Built with ❤️ for AI agents by [ValidKit](https://validkit.com)

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ author_email = support@validkit.com
66
description = Async Python SDK for ValidKit Email Verification API - Built for AI Agents
77
long_description = file: README.md
88
long_description_content_type = text/markdown
9-
url = https://pypi.org/project/validkit/
9+
url = https://github.com/ValidKit/validkit-python-sdk
1010
project_urls =
1111
Documentation = https://docs.validkit.com/sdks/python
1212
PyPI = https://pypi.org/project/validkit/

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
description="Async Python SDK for ValidKit Email Verification API - Built for AI Agents",
1616
long_description=long_description,
1717
long_description_content_type="text/markdown",
18-
url="https://pypi.org/project/validkit/",
18+
url="https://github.com/ValidKit/validkit-python-sdk",
1919
packages=find_packages(),
2020
classifiers=[
2121
"Development Status :: 5 - Production/Stable",
@@ -49,7 +49,7 @@
4949
"Documentation": "https://docs.validkit.com/sdks/python",
5050
"PyPI": "https://pypi.org/project/validkit/",
5151
"Homepage": "https://validkit.com",
52-
"Source": "https://github.com/validkit/python-sdk",
53-
"Bug Tracker": "https://github.com/validkit/python-sdk/issues",
52+
"Source": "https://github.com/ValidKit/validkit-python-sdk",
53+
"Bug Tracker": "https://github.com/ValidKit/validkit-python-sdk/issues",
5454
},
5555
)

0 commit comments

Comments
 (0)