Metadata-Version: 2.1
Name: pyMorseTranslator
Version: 1.2.0
Summary: A library for decoding and encoding strings in Morse code.
Home-page: https://github.com/Eagle-Eye2324/pyMorseTranslator
Author: Robbie Munro
Author-email: rmunro2324@gmail.com
License: GPL-3.0-only
Description: # pyMorseTranslator
        
        pyMorseTranslator provides tools for encoding and decoding strings in
        morse code.  A typical usage scenario looks like this:
        
            #!/usr/bin/env python
            from pyMorse import translator
            
        	
            # Initialize the encoder and decoder
            encoder = translator.Encoder()
        	decoder = translator.Decoder()
        	
        	# Encode the message
        	print(encoder.encode('This is morse code.').morse)
            
            # Do stuff with the message
        	
        	# Decode the message
        	print(decoder.decode(encoder.previousEncode.morse).plaintext)
        
        The output of this code would be:
        
            - .... .. ... / .. ... / -- --- .-. ... . / -.-. --- -.. . .-.-.-
            THIS IS MORSE CODE.
        
        
        ## Features
        
        ### Current Features
        
        * Morse encoding
        
        * Morse decoding
        
        * Custom symbols for dots, dashes and separators
        
        * Custom characters for encoders and decoders
        
        ### Planned Features
        
        None right now.
        
        ## Resources
        
        Currently the only resource available is the files themselves, available at https://github.com/Eagle-Eye2324/pyMorseTranslator
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
