Metadata-Version: 2.1
Name: chromepas-noexit
Version: 1.0.3
Summary: Fetching saved passwords from chrome database file
Home-page: https://github.com/bierschi/chromepass
Author: HUILO
Author-email: christian.bierschneider@web.de
License: MIT
Keywords: chrome,passwords,database,browser,windows,linux
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3
Description-Content-Type: text/markdown
License-File: LICENSE

# chromepass
- Fetching saved passwords from chrome database file
- Supports Windows and Linux Platform

<br>

![Alt Text](chromepass.gif)


## Installation

first ensure that you have `git` and `python` installed

### Linux
install [chromepass](https://pypi.org/project/chromepass/) with pip
<pre><code>
pip3 install chromepass
</code></pre>

or from source
<pre><code>
git clone https://github.com/bierschi/chromepass
cd chromepass
sudo python3 setup.py install
</code></pre>

### Windows

install [chromepass](https://pypi.org/project/chromepass/) with pip
<pre><code>
pip install chromepass
py -3.8 -m pip install chromepass
</code></pre>

or from source
<pre><code>
git clone https://github.com/bierschi/chromepass
cd chromepass
pip install -r requirements.txt
python setup.py install
</code></pre>

use specific python version
<pre><code>
git clone https://github.com/bierschi/chromepass
cd chromepass
py -3.8 -m pip install -r requirements.txt
py -3.8 setup.py install
</code></pre>

if an error appears that microsoft viusal c++ 14.0 or greater is required, update `pip` and `setuptools` to the latest version
<pre><code>
py -3.8 -m pip install --upgrade pip
py -3.8 -m pip install --upgrade setuptools
</code></pre>

## Usage and Examples
Print the available arguments
<pre><code>
chromepass --help
</code></pre>
use it without any arguments
<pre><code>
chromepass
</code></pre>
or save the results to a file
<pre><code>
chromepass --file /home/christian/chromepass.txt
</code></pre>

## Executables

Install pyinstaller with

<pre><code>
pip3 install pyinstaller
</code></pre>

create exe file
<pre><code>
pyinstaller --onefile --name chromepass chromepass/main.py
</code></pre>

## Changelog
All changes and versioning information can be found in the [CHANGELOG](https://github.com/bierschi/chromepass/blob/master/CHANGELOG.rst)

## License
Copyright (c) 2020 Bierschneider Christian. See [LICENSE](https://github.com/bierschi/chromepass/blob/master/LICENSE)
for details


