anonpi


Nameanonpi JSON
Version 2.0.0 PyPI version JSON
download
home_page
SummaryThe "anonpi" module is a Python package designed to streamline interactions with calling systems. It simplifies the development of applications that require features like machine detection, IVR, DTMF handling, call recording, playback, and more. This module provides a clean and intuitive API for seamless integration into Python applications.
upload_time2023-10-11 16:02:58
maintainer
docs_urlNone
authorEvenueStar
requires_python>=3.9
licenseMIT
keywords anonpi python calling systems api wrapper module
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # anonpi: Python Module for Calling Systems

The **anonpi** module is a powerful Python package that provides a convenient interface for interacting with calling systems. It simplifies the development of applications that require functionalities such as machine detection, IVR (Interactive Voice Response), DTMF (Dual-Tone Multi-Frequency) handling, recording, playback, and more.

## Key Features

- **Machine Detection:** Easily detect whether a call is being answered by a human or an automated system, enabling intelligent call handling and routing.
- **IVR Support:** Build interactive voice response systems by creating menus, prompts, and collecting user input through voice or DTMF tones.
- **DTMF Handling:** Efficiently capture and process DTMF tones (telephone keypad input) during calls for user interaction, menu navigation, and decision-making.
- **Call Recording:** Seamlessly record incoming or outgoing calls, enabling compliance with legal requirements, quality monitoring, and archiving for later analysis.
- **Playback Functionality:** Retrieve and play back pre-recorded audio files during calls, enhancing the user experience and providing personalized content.
- **Call Control:** Take control of call initiation, termination, and manipulation, allowing for call transfers, forwarding, muting, and more.

## Usage

The **anonpi** module provides a clean and intuitive API, making it easy to integrate calling functionalities into your Python applications. Here's an example of how you can use the module to perform machine detection during a call:

```python
import anonpi

anonpi.api_key = "<API KEY>

call = anonpi.Call.create(
    from_number="18888888888",
    to_number="1234567890",
    callback_url="https://callback.url",
    amd=False
)

# operations using call
call.gather_using_audio(
    audio_url="https://audio.url",
    dtmf_digits="6"
    )

# last hangup the call
call.hangup()
```

## Getting Started
To install the anonpi module, use the following command:

```bash
pip install anonpi
```

> Add any additional installation instructions or requirements here.

> Disclaimer: Ensure compliance with all legal and regulatory requirements when using the "anonpi" module for call recording or related functionalities.

### Additional Resources
- [Documentation Link](https://docs.anonpi.co)
- [GitHub Repository](https://github.com)



            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "anonpi",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "anonpi,python,calling,systems,api,wrapper,module",
    "author": "EvenueStar",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/ac/7e/3be17278e2274a60288a1c2885765e7ee434051b0ea30f3847122139c9d4/anonpi-2.0.0.tar.gz",
    "platform": null,
    "description": "# anonpi: Python Module for Calling Systems\r\n\r\nThe **anonpi** module is a powerful Python package that provides a convenient interface for interacting with calling systems. It simplifies the development of applications that require functionalities such as machine detection, IVR (Interactive Voice Response), DTMF (Dual-Tone Multi-Frequency) handling, recording, playback, and more.\r\n\r\n## Key Features\r\n\r\n- **Machine Detection:** Easily detect whether a call is being answered by a human or an automated system, enabling intelligent call handling and routing.\r\n- **IVR Support:** Build interactive voice response systems by creating menus, prompts, and collecting user input through voice or DTMF tones.\r\n- **DTMF Handling:** Efficiently capture and process DTMF tones (telephone keypad input) during calls for user interaction, menu navigation, and decision-making.\r\n- **Call Recording:** Seamlessly record incoming or outgoing calls, enabling compliance with legal requirements, quality monitoring, and archiving for later analysis.\r\n- **Playback Functionality:** Retrieve and play back pre-recorded audio files during calls, enhancing the user experience and providing personalized content.\r\n- **Call Control:** Take control of call initiation, termination, and manipulation, allowing for call transfers, forwarding, muting, and more.\r\n\r\n## Usage\r\n\r\nThe **anonpi** module provides a clean and intuitive API, making it easy to integrate calling functionalities into your Python applications. Here's an example of how you can use the module to perform machine detection during a call:\r\n\r\n```python\r\nimport anonpi\r\n\r\nanonpi.api_key = \"<API KEY>\r\n\r\ncall = anonpi.Call.create(\r\n    from_number=\"18888888888\",\r\n    to_number=\"1234567890\",\r\n    callback_url=\"https://callback.url\",\r\n    amd=False\r\n)\r\n\r\n# operations using call\r\ncall.gather_using_audio(\r\n    audio_url=\"https://audio.url\",\r\n    dtmf_digits=\"6\"\r\n    )\r\n\r\n# last hangup the call\r\ncall.hangup()\r\n```\r\n\r\n## Getting Started\r\nTo install the anonpi module, use the following command:\r\n\r\n```bash\r\npip install anonpi\r\n```\r\n\r\n> Add any additional installation instructions or requirements here.\r\n\r\n> Disclaimer: Ensure compliance with all legal and regulatory requirements when using the \"anonpi\" module for call recording or related functionalities.\r\n\r\n### Additional Resources\r\n- [Documentation Link](https://docs.anonpi.co)\r\n- [GitHub Repository](https://github.com)\r\n\r\n\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "The \"anonpi\" module is a Python package designed to streamline interactions with calling systems. It simplifies the development of applications that require features like machine detection, IVR, DTMF handling, call recording, playback, and more. This module provides a clean and intuitive API for seamless integration into Python applications.",
    "version": "2.0.0",
    "project_urls": null,
    "split_keywords": [
        "anonpi",
        "python",
        "calling",
        "systems",
        "api",
        "wrapper",
        "module"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23b0892f0e2bde7013772da8bdea32188b45ed8e19df64371af802b386afe341",
                "md5": "88edd78c1432fd964add049a2f0467ad",
                "sha256": "e030fd353567dcaa9c44c15915af43de5d62835cc15ba97ea5458243ec8fa849"
            },
            "downloads": -1,
            "filename": "anonpi-2.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "88edd78c1432fd964add049a2f0467ad",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 21684,
            "upload_time": "2023-10-11T16:02:56",
            "upload_time_iso_8601": "2023-10-11T16:02:56.690216Z",
            "url": "https://files.pythonhosted.org/packages/23/b0/892f0e2bde7013772da8bdea32188b45ed8e19df64371af802b386afe341/anonpi-2.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ac7e3be17278e2274a60288a1c2885765e7ee434051b0ea30f3847122139c9d4",
                "md5": "81971ebc4a0e0c9543c98bc43424bd1d",
                "sha256": "c54804455f4af4603ea89e0f7a9bc27a11938268119046196bdb4ac082a7e2ac"
            },
            "downloads": -1,
            "filename": "anonpi-2.0.0.tar.gz",
            "has_sig": false,
            "md5_digest": "81971ebc4a0e0c9543c98bc43424bd1d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 16246,
            "upload_time": "2023-10-11T16:02:58",
            "upload_time_iso_8601": "2023-10-11T16:02:58.812451Z",
            "url": "https://files.pythonhosted.org/packages/ac/7e/3be17278e2274a60288a1c2885765e7ee434051b0ea30f3847122139c9d4/anonpi-2.0.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-10-11 16:02:58",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "anonpi"
}
        
Elapsed time: 0.12121s