This commit is contained in:
moritz 2019-05-29 12:47:40 +02:00
parent ff36d821a9
commit 8ef0bd785c
2 changed files with 3 additions and 37 deletions

View File

@ -47,8 +47,10 @@ git clone https://willipink.eu/git/moritz/have_I_b€€n_pwned.git
cd have_I_b€€n_pwned cd have_I_b€€n_pwned
python -m pip install pipenv # optional if you do not yet have it installed python -m pip install pipenv # optional if you do not yet have it installed
python -m pipenv install python -m pipenv install
python -m pipenv shell
./src/have_I_B33n_pwned.py [password1 password2 ...]
``` ```
# Build # Build
Run `./compile.sh`, this will create out of the box executables for linux, mac and windows in `dist`. Run `./build.sh`, this will create out of the box executables for linux, mac and windows in `dist`.

View File

@ -1,36 +0,0 @@
# -*- mode: python -*-
block_cipher = None
a = Analysis(['..\\src\\have_I_b33n_pwned.py'],
pathex=['C:\\Users\\AmP\\have_i_b33n_pwned'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
[],
exclude_binaries=True,
name='have_I_b33n_pwned',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True )
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name='have_I_b33n_pwned')