Metadata-Version: 2.4
Name: freecustom-email
Version: 1.0.0
Summary: Official Python SDK for FreeCustom.Email — disposable inboxes, OTP extraction, real-time WebSocket delivery
Project-URL: Homepage, https://freecustom.email
Project-URL: Documentation, https://freecustom.email/docs/api
Project-URL: Repository, https://github.com/freecustomemail/sdk-python
Project-URL: Bug Tracker, https://github.com/freecustomemail/sdk-python/issues
Author-email: "FreeCustom.Email" <support@freecustom.email>
License: MIT License
        
        Copyright (c) 2024 FreeCustom.Email
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: disposable-email,email-api,fake-email,freecustom,inbox,otp,temp-mail,temporary-email
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Requires-Dist: websockets>=12.0
Provides-Extra: dev
Requires-Dist: mypy>=1.10.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest-httpx>=0.30.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Requires-Dist: ruff>=0.4.0; extra == 'dev'
Description-Content-Type: text/markdown

# FreeCustom.Email Python SDK

Official Python SDK for [FreeCustom.Email](https://freecustom.email) — disposable inboxes, OTP extraction, and real-time WebSocket delivery.

## Installation

```bash
pip install freecustom-email
```

## Quick Start

```python
import asyncio
from freecustom import FreecustomEmailClient

async def main():
    client = FreecustomEmailClient(api_key="fce_...")
    
    # Register an inbox
    await client.inboxes.register("test@example.com")
    
    # Wait for OTP
    otp = await client.otp.wait_for("test@example.com")
    print(f"Your OTP is: {otp}")

if __name__ == "__main__":
    asyncio.run(main())
```
