11:orphan:
2- (quick- validate-projects )=
2+ (validate-project-from-path )=
33
44# Validate a project from a filepath
55
@@ -14,7 +14,7 @@ to any problematic folders.
1414:sync: gui
1515
1616To quickly validate a project, start the terminal user interface with
17- `` datashuttle launch `` and click `` Validate Project at Path `` .
17+ `` datashuttle launch `` and click `` Validate Project From Path `` .
1818
1919The screen below will show. To validate an existing project,
2020enter the full filepath to the project folder in the top input box
@@ -54,12 +54,12 @@ raise a validation issue.
5454:sync: python
5555
5656To validate a project using the Python API, pass the path
57- to the project to validate to `` quick_validate_project `` :
57+ to the project to validate to `` validate_project_from_path `` :
5858
5959``` python
60- from datashuttle import quick_validate_project
60+ from datashuttle import validate_project_from_path
6161
62- quick_validate_project (
62+ validate_project_from_path (
6363 project_path = " /mydrive/path/to/project/project_name" ,
6464 display_mode = " error" ,
6565)
@@ -69,7 +69,7 @@ quick_validate_project(
6969In this case, ` display_mode=error ` will result in an error on the first encountered validation issue.
7070Otherwise, ` "warn" ` will show a python warning for all detected issues, while ` "print" ` will print directly to the console.
7171
72- See the [ ] ( datashuttle.quick_validate_project ) API documentation
72+ See the [ ] ( validate_project_from_path() ) API documentation
7373for full details of parameters, including the important argument `` strict_mode ``
7474that controls how validation is performed.
7575
0 commit comments