Metadata-Version: 2.1
Name: spokenTowritten
Version: 1.1
Summary: Library For Spoken to written
Home-page: https://github.com/Raman-Raje/spokenTowritten
Author: Raman Shinde
Author-email: raman.shinde15@gmail.com
License: MIT
Download-URL: https://github.com/Raman-Raje/spokenTowritten/archive/v_1.1.tar.gz
Description: # spokenTowritten
        A module for converting spoken English to written English. The layout/Class diagram of package is as follows.
        
        ![Package Layout](/images/layout.PNG)
        
        ## Features Implemented:
        * Converted numerical words to digits.
            - double five == 55
            - triple nine eight four == 99984
            - one nought one == 101
            - double 'B' == BB
            - one million == 1M
        * Decontraction of words.
        * Currency representation.
        * Units Abbrevations.
            - kilometer == km
            - meter == m
        
        
        ## Examples:
        Let's have a look at some examples to gain more understanding.Below is the piece of spoken text taken for understading.
        ```
            My mobile number is double nine nine five one six seven triple one.
            The cost of mobile is 48 thousand rupees.
            It is not easy to crack UPSC examination, people do give double attempts to clear it.
            Double standards jokes aren't tolerated here.
            My weight is 54 kilogram.I live 16 kilometers away from my office.
        ```
        ### Decontraction:
        **Code**
        ```
            spoken_text = Decontraction.decontraction(spoken_text)
            print("Text after decontraction:")
            print(spoken_text)
        ```
        **Output**
        ```
            My mobile number is double nine nine five one six seven triple one.
            The cost of mobile is 48 thousand rupees.
            It is not easy to crack UPSC examination, people do give double attempts to clear it.
            Double standards jokes are not tolerated here.
            My weight is 54 kilogram.I live 16 kilometers away from my office.
        ```
        ### numbers to digit coversion
        **Code**
        ```
            spoken_text = Text2Digits().convert(spoken_text)
            print(spoken_text)
        ```
        **Output**
        ```
            My mobile number is 9995167111.
            The cost of mobile is 48000 rupees.
            It is not easy to crack UPSC examination, people do give double attempts to clear it.
            Double standards jokes are not tolerated here.
            My weight is 54 kilogram. I live 16 kilometers away from my office.
        ```
        ### Currency Symbol
        **Code**
        ```
            spoken_text = Currency().currency(spoken_text)
            print(spoken_text)
        ```
        **Output**
        ```
            My mobile number is 9995167111.
            The cost of mobile is â‚¹48000.
            It is not easy to crack UPSC examination, people do give double attempts to clear it.
            Double standards jokes are not tolerated here.
            My weight is 54 kilogram. I live 16 kilometers away from my office.
        ```
        ### Units abbrevation
        **Code**
        ```
            # dictionary of unit needs to pass explicitly {unit:abbrevation}
            spoken_text = Units.unit(spoken_text,WEIGHTS)
            print(spoken_text)
        ```
        **Output**
        ```
            My mobile number is 9995167111.
            The cost of mobile is â‚¹48000.
            It is not easy to crack UPSC examination, people do give double attempts to clear it.
            Double standards jokes are not tolerated here.
            My weight is 54kg. I live 16 kilometers away from my office.
        ```
        Observe, kilometers didn't got abbravated to kg , as only weights dictionary was passed.
        
        ## Future Expansion:
        The below features can be added by adding respective class without prior testing.
        * Text Abbreventions
            - Representing text using short form. i.e Thank you so much == tysm
            - Central Bureau of Investigation == CBI
            - et cetera == etc.
        * Mathematical symbol representation.
            - plus,minus,division,modulo,integration,differentiation,etc.
        * Emoji Implementation.
        * Add features for short notes preparation.
        
        ## Referances:
        * https://stackoverflow.com/questions/1471994/what-is-setup-py#targetText=setup.py%20is%20a%20python,%24%20pip%20install%20.
        * https://stackoverflow.com/questions/38156956/replace-all-occurrences-that-match-regular-expression
        * https://www.easymarkets.com/int/learn-centre/discover-trading/currency-acronyms-and-abbreviations/
        
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
