Metadata-Version: 2.1
Name: audiobook
Version: 1.0.1
Summary: listen your favourite audiobook
Home-page: https://github.com/codePerfectPlus/audiobook
Author: CodePerfectPlus
Author-email: deepak008@live.com
License: UNKNOWN
Description: # Audio Book
        
        > Read any PDF book with just few line of Python code
        
        ## Installation
        
        Create new Virtual ENV:
        
        ```sh
        pip install audiobook
        ```
        
        ```python
        from audiobook import Audiobook
        ab = Audiobook("file_path")
        ab.text_to_speech()
        ```
        
        ### Linux installation requirements
        
        - If you are on a linux system and if the voice output is not working , then :
            Install espeak , ffmpeg and libespeak1 as shown below:
        
        ```sh
        sudo apt update && sudo apt install espeak ffmpeg libespeak1
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Description-Content-Type: text/markdown
