Metadata-Version: 1.1
Name: PDUUSSDConverter
Version: 0.0.2
Summary: A utility to convert between pdu, gsm codes,     ussd and string formats
Home-page: https://github.com/saviour123/PDU-USSDConverter.git
Author: Saviour Gidi
Author-email: profsaviour@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Description: # PDU-USSDConverter
        A Simple Utility to Convert Between PDU encoded text, USSD/GSM and String and
        Vice-Versa.
        This is works well with python3
        
        
        ## Installation
        `pip install PDU-USSDConverter`
        
        
        ## Example
        
        ```
        from PDUUSSDConverter import converter
        
        
        ussd_code = converter.text_to_pdu(''*124#'')  # 'AA988C3602' (length=10)
        
        pdu_to_text = converter.pdu_to_text('54747A0E6A97E7F3F0B90CBA87E7A0F1DB6D2FCBE9657208'))  # 'This message was converted!' (length=27)
        
        
        ```
        
        Other Operations Available:
        
        ```
        gsm_code_to_text(param: gsm_code) // Convert a gsm code into a unicode sequence
        text_to_gsm_code(param: String)   // Converts text into gsm code sequence
        ```
        
        
        ## Credits
        
        [Junior Polegato](https://github.com/JuniorPolegato/pdu_gsm_ussd)
        
        
        
Keywords: PDU USSD GSM HEX
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
