Re: Keyring with Django

2019-10-15 Thread Tumbelo
https://pypi.org/project/keyring/ lauantai 12. lokakuuta 2019 10.05.07 UTC+3 Tumbelo kirjoitti: > > Hi, > > I need to store some third party server passwords in Django, in views.py > to be more specific. Those are used for Paramiko SFTP (machine-to-machine > communication) and

Re: Keyring with Django

2019-10-15 Thread Tumbelo
Hi, Thanks for answer! It may be overkill, but it seems so easy/useful from plain Python (test I did). I will probably head to env variants as it seems to be popular way to achieve what I'm trying. lauantai 12. lokakuuta 2019 10.05.07 UTC+3 Tumbelo kirjoitti: > > Hi, > > I need t

Keyring with Django

2019-10-12 Thread Tumbelo
Hi, I need to store some third party server passwords in Django, in views.py to be more specific. Those are used for Paramiko SFTP (machine-to-machine communication) and it's not possible to use keys instead of passwords. For sure I don't like to write those passwords directly to source code.