spreadsheets ¶
excel_to_sqlite ¶
excel_to_sqlite(spreadsheet: str | upath.UPath, save_path: str | upath.UPath) -> upath.UPath
This code uses the openpyxl package for playing around with excel using Python code to convert complete excel workbook (all sheets) to an SQLite database The code assumes that the first row of every sheet is the column name Every sheet is stored in a separate table The sheet name is assigned as the table name for every sheet.
From https://stackoverflow.com/questions/17439885/export-data-from-excel-to-sqlite-database
Source code in npc_lims/metadata/spreadsheets.py
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 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 |
|
get_training_db cached
¶
get_training_db(nsb: bool = False) -> sqlite3.Connection
Download db to tempdir, open connection, return connection.
Examples:
>>> assert get_training_db()
Source code in npc_lims/metadata/spreadsheets.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
|
get_training_spreadsheet_paths ¶
get_training_spreadsheet_paths() -> tuple[upath.UPath, ...]
Examples:
>>> assert len(get_training_spreadsheet_paths()) > 0
Source code in npc_lims/metadata/spreadsheets.py
49 50 51 52 53 54 |
|
get_training_sqlite_paths ¶
get_training_sqlite_paths() -> tuple[upath.UPath, ...]
Examples:
>>> assert len(get_training_sqlite_paths()) == len(get_training_spreadsheet_paths())
Source code in npc_lims/metadata/spreadsheets.py
14 15 16 17 18 19 20 21 |
|
update_training_dbs ¶
update_training_dbs() -> None
Read spreadsheets from the data repo and write them to corresponding databases, currently sqlite files in the same directory.
Examples:
>>> update_training_dbs()
Source code in npc_lims/metadata/spreadsheets.py
57 58 59 60 61 62 63 64 65 66 67 68 |
|