There was an error while loading. Please reload this page.
Install the dependencies (possibly using a virtualenv)
Instantiate the client
from sccsclient.cli import Client c = Client(host='xxx.xxx.xxx.xxx', port=NUM, dbname='mydbname', user='myusername', password='mypassword')
[OPTIONAL] Add the repository
c.add_repo(url='https://github.com/user/repo')
Launch the scan of the wiki pages of a repository
new_discoveries = c.scan_wiki(repo_url=REPO_URL, category=CATEGORY, scanner=SCANNER, models=MODELS, exclude=NO_RULES, visualize=VERBOSE)
Wiki pages are scanned in the same way that repositories are (refer to Scan a repository).
--local