-
Notifications
You must be signed in to change notification settings - Fork 14
How does it work?
The checks system used in this django module is not something you usually see in Python projects.
The main reason to the unusual organization of this module is to provide a simple & clean interface to create your own checks.
Each file is a check (or a group of checks on the same parameter), except launch_checks.py
& __init__.py
.
Since a03d6599, its purpose is to execute functions named run
& important
on submodules located in django-check-seo.checks_list.*
and in project folder (it looks for the /path/to/your/project/checks_list/
folder (if it exists), and add its modules).
It lists the files inside the /path/to/site-package/django-check-seo/checks_file/
folder, then it adds the modules to the __all__
var (it's the var that makes modules available in the from . import *
in launch_checks.py
)
This is the function that tells launch_checks
if the current check must be performed before the others, or if it doesn't matter.
Its only purpose is to return an int (the recommended use is between 1
and 5
).
The higher the number, the faster the function will be executed.
Since check_keywords
populates the site.keywords
var, it need to be executed before all the functions that will use site.keywords
var.
This is the main function of your file, the one that will do the check and that will populate the site.warnings
and/or site.problems
and/or site.success
lists.
They are the results of the checks.
Each check will output its result in one of the three categories. Each category will be displayed with a different color:
See How to add a check?.
If you want to know the reasons why we chose these checks in particular.
Checks that are not included inside the project