mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
6 lines
130 B
Python
6 lines
130 B
Python
|
#!/usr/bin/env python
|
||
|
import sys
|
||
|
from werkzeug.security import generate_password_hash
|
||
|
|
||
|
print(generate_password_hash(sys.argv[1]))
|