diff --git a/README.md b/README.md index d5594ca..0e5a82c 100644 --- a/README.md +++ b/README.md @@ -47,8 +47,10 @@ git clone https://willipink.eu/git/moritz/have_I_b€€n_pwned.git cd have_I_b€€n_pwned python -m pip install pipenv # optional if you do not yet have it installed python -m pipenv install +python -m pipenv shell +./src/have_I_B33n_pwned.py [password1 password2 ...] ``` # 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`. diff --git a/have_I_b33n_pwned.spec b/have_I_b33n_pwned.spec deleted file mode 100644 index f2ab5d7..0000000 --- a/have_I_b33n_pwned.spec +++ /dev/null @@ -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')