Hi, I have developed a Python library which encrypt/decrypt Juniper $9$ secrets.
I would like it is part of the common Python libraries and be able to install it through APT, YUM, RPM... depending on the system. The library has 2 public methods: one to encrypt and another one to decrypt. An example of use is: >>> import juniper >>> juniper.encrypt ('test') '$9$ZdGkPF39pOR/C' >>> juniper.decrypt ('$9$ZdGkPF39pOR/C') 'test' Could you tell me the process I have to follow to publish the library? Thanks and best regards! Julio Gómez Ortega. -- http://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations/