Skip to content

Instantly share code, notes, and snippets.

@thirteenpixels
Created May 9, 2011 13:15
Show Gist options
  • Save thirteenpixels/962494 to your computer and use it in GitHub Desktop.
Save thirteenpixels/962494 to your computer and use it in GitHub Desktop.
Howto make an htpasswd file with python
import crypt
print ("%s:%s" % ('username', crypt.crypt('password', 'salt')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment