Metadata-Version: 2.1
Name: enig
Version: 0.1.0
Summary: Testing installation of Package
Home-page: https://github.com/Topkinsme/enigma_machine
Author: Topkinsme
License: GNU GPL v3
Download-URL: https://github.com/Topkinsme/enigma_machine/archive/refs/tags/0.1.0.tar.gz
Description: # enigma_machine
        A python package that allows a user to encrypt a message, simulating an enigma machine.
        
        Examples
        ```py
        import enig
        from enig import em
        mac=em.Enigma_Machine()
        print(mac.rotor1,mac.rotor2,mac.rotor3)
        >>> 1 1 1
        mac.random_rotors()
        print(mac.rotor1,mac.rotor2,mac.rotor3)
        >>> 14 12 20
        res=mac.result("Hello, World!")
        >>> shbkh, tgoye!
        ```
        
Keywords: enigma,enigma_machine,topkinsme,enig
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Documentation
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
