quru / qis

Dynamic image server for web and print
https://quruimageserver.com
GNU Affero General Public License v3.0
89 stars 7 forks source link

README - producing a byte string #22

Closed qururoland closed 5 years ago

qururoland commented 5 years ago

The README.md file provides instructions on how to generate a SECRET_KEY as: python -c 'import os; print(os.urandom(16))' With python2 installed this becomes unicode characters. To ensure that it works simply run: python3 -c 'import os; print(os.urandom(16))'