deliverables
create_deliverables
¶
This module compiles the deliverable for Standards New Zealand from the reports and resources folders
archive_zip_folder(source_path: Path, zip_path: Path)
¶
zip the deliverables folder
Parameters:
Name | Type | Description | Default |
---|---|---|---|
source_path
|
Path
|
path to source folder |
required |
zip_path
|
Path
|
path to zipped folder |
required |
Source code in nzssdt_2023/snz_deliverables/create_deliverables.py
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
|
copy_csv_reports_to_deliverable(gns_csv_files: List[Path], snz_csv_files: List[Path])
¶
modify and re-encode the csv files for default Excel import then add them to the deliverables folder
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gns_csv_files
|
List[Path]
|
list of csv paths in reports folder |
required |
snz_csv_files
|
List[Path]
|
list of csv paths in deliverables folder |
required |
Source code in nzssdt_2023/snz_deliverables/create_deliverables.py
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
|
copy_files_to_deliverable(gns_files: List[Path], snz_files: List[Path])
¶
copy files directly to the deliverables folder
Parameters:
Name | Type | Description | Default |
---|---|---|---|
gns_files
|
List[Path]
|
list of paths in gns folder |
required |
snz_files
|
List[Path]
|
list of paths in deliverables folder |
required |
Source code in nzssdt_2023/snz_deliverables/create_deliverables.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
|
create_deliverables_zipfile(snz_name_prefix: str, publication_year: int, deliverables_folder: Path, reports_folder: Path, resources_folder: Path, override: bool = False) -> Path
¶
identify the relevant reports and resources and includes them in a zipfile
Parameters:
Name | Type | Description | Default |
---|---|---|---|
snz_name_prefix
|
str
|
prefix for filenames |
required |
publication_year
|
int
|
date suffix for filenames |
required |
deliverables_folder
|
Path
|
path to the deliverables folder for the version |
required |
reports_folder
|
Path
|
path to the reports folder for the version |
required |
resources_folder
|
Path
|
path to the resources folder for the version |
required |
override
|
bool
|
if True, rewrite all files |
False
|
Returns:
Name | Type | Description |
---|---|---|
zip_path |
Path
|
path to the zip file deliverable |
Source code in nzssdt_2023/snz_deliverables/create_deliverables.py
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 |
|