Metadata-Version: 2.4
Name: betatelsdk
Version: 0.0.5
Summary: An SDK for Betatel services
Author: Betatel LTD
Author-email: <muhamed.b@beta.tel>
Keywords: python,tts,tele,voice,sms,sip,call,betatel
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: requires-dist
Dynamic: summary

# Betatel SDK

Official Python SDK for Betatel telecommunications services.

## Installation

```bash
pip install betatelsdk
```

## Features

- **SMS**: Send and manage SMS messages
- **Voice**: Text-to-speech and voice services  
- **Call**: Voice call management and control
- **Carrier**: Carrier information and routing
- **Network**: Network status and connectivity
- **Billing**: Usage tracking and billing management

## Quick Start

```python
from betatelsdk import BetatelSDK

sdk = BetatelSDK(
    api_key='your_api_key_here',
    user_id='your_user_id_here'
)

# Send SMS
sdk.sms.send(
    from_='ExampleSender',
    to='ExampleRecipient',
    message='Hello from Betatel!'
)

# Make voice call
sdk.voice.text_to_speech(
    text='Hello world',
    voice='en-US'
)
```

## Documentation

For detailed API documentation and examples, visit [api.betatel.com/docs/category/api-documentation](https://api.betatel.com/docs/category/api-documentation)

## Support

For support and questions, contact us at support@betatel.com
