Metadata-Version: 2.1
Name: privacyscanner
Version: 0.2.1
Summary: Privacyscanner scans websites for security and privacy properties. It is the future scanning engine of PrivacyScore.
Home-page: https://github.com/PrivacyScore/privacyscanner
Author: PrivacyScore developers
Author-email: privacyscore.psi@uni-bamberg.de
License: MIT
Keywords: privacy,security,scanner,scan,privacyscore,privacyscanner
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >= 3.5
Description-Content-Type: text/markdown
Requires-Dist: adblockeval
Requires-Dist: cryptography
Requires-Dist: dnspython
Requires-Dist: geoip2
Requires-Dist: pillow
Requires-Dist: psutil
Requires-Dist: psycopg2-binary
Requires-Dist: pychrome
Requires-Dist: requests
Requires-Dist: tldextract
Requires-Dist: toposort

privacyscanner
==============

Usage
-----

Before first use, you have to download the dependencies of privacyscanner.
These include the MaxMind GeoIP2 database and the Easylist adblock lists.
For convenience, most dependencies can be downloaded with:

    privacyscanner update_dependencies

Those dependencies will be stored in `~/.local/share/privacyscanner`. In
addition, google-chrome or chromium have to be installed and available in
your PATH.

Scanning a single website, e.g. http://example.com/, can be done by running:

    privacyscanner scan http://example.com/

It will output the scan result in Python object syntax and it will create a
directory for the website in your current working directory. This directory
contains the scan result as JSON file as well as associated files (e.g. the
screenshot of the site) and the corresponding log files of the scan.

For more details, see `privacyscanner --help` and dive into the source :-)

Development
-----------

Check out repository, change directory into repository root. Then install
with:

    pip install --editable .

Unfortunately, there is no development documentation currently. You have
to consult the source code.


