API
API#
SqlUi
#
Show A CRUD interface in a Streamlit Page
See in init method detailed descriptions of arguments and properties
It also offers the following properties:
Source code in streamlit_sql/sql_iu.py
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 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 66 67 68 69 70 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 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 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
|
__init__(conn, read_instance, edit_create_model, available_filter=None, edit_create_default_values=None, rolling_total_column=None, df_style_formatter=None, read_use_container_width=False, hide_id=True, base_key='', style_fn=None, update_show_many=False, disable_log=False)
#
The CRUD interface will be displayes just by initializing the class
Parameters:
Name | Type | Description | Default |
---|---|---|---|
conn
|
SQLConnection
|
A sqlalchemy connection created with st.connection("sql", url=" |
required |
read_instance
|
Select | CTE | Model
|
The sqlalchemy select statement to display or a CTE. Choose columns to display , join, query or order.If selecting columns, you need to add the id column. If a Model, it will select all columns. |
required |
edit_create_default_values
|
dict
|
A dict with column name as keys and values to be default. When the user clicks to create a row, those columns will not show on the form and its value will be added to the Model object |
None
|
available_filter
|
list[str]
|
Define wich columns the user will be able to filter in the top exapander. Defaults to all |
None
|
rolling_total_column
|
str
|
A numeric column name of the read_instance. A new column will be displayed with the rolling sum of these column |
None
|
df_style_formatter
|
dict[str, str]
|
a dictionary where each key is a column name and the associated value is the formatter arg of df.style.format method. See pandas docs for details. |
None
|
read_use_container_width
|
bool
|
add use_container_width to st.dataframe args. Default to False |
False
|
hide_id
|
bool
|
The id column will not be displayed if set to True. Defaults to True |
True
|
base_key
|
str
|
A prefix to add to widget's key argument. This is needed when creating more than one instance of this class in the same page. Defaults to empty str |
''
|
style_fn
|
Callable[[Series], list[str]]
|
A function that goes into the func argument of df.style.apply. The apply method also receives axis=1, so it works on rows. It can be used to apply conditional css formatting on each column of the row. See Styler.apply info on pandas docs. Defaults to None |
None
|
update_show_many
|
bool
|
Show a st.expander of one-to-many relations in edit or create dialog |
False
|
disable_log
|
bool
|
Every change in the database (READ, UPDATE, DELETE) is logged to stderr by default. If this is true, nothing is logged. To customize the logging format and where it logs to, use loguru as add a new sink to logger. See loguru docs for more information. Dafaults to False |
False
|
Attributes:
Name | Type | Description |
---|---|---|
df |
Dataframe
|
The Dataframe displayed in the screen |
selected_rows |
list[int]
|
The position of selected rows. This is not the row id. |
qtty_rows |
int
|
The quantity of all rows after filtering |
Examples:
def style_fn(row):
if row.amount > 0:
bg = "background-color: rgba(0, 255, 0, 0.1)"
else:
bg = "background-color: rgba(255, 0, 0, 0.2)"
result = [bg] * len(row)
return result
db_url = "sqlite:///data.db"
conn = st.connection("sql", db_url)
stmt = (
select(
db.Invoice.id,
db.Invoice.Date,
db.Invoice.amount,
db.Client.name,
)
.join(db.Client)
.where(db.Invoice.amount > 1000)
.order_by(db.Invoice.date)
)
sql_ui = SqlUi(
conn=conn,
read_instance=stmt,
edit_create_model=db.Invoice,
available_filter=["name"],
rolling_total_column="amount",
df_style_formatter={"amount": "{:,.2f}"},
read_use_container_width=True,
hide_id=True,
base_key="my_base_sql_ui",
style_fn=style_fn,
update_show_many=True,
disable_log=False,
)
Source code in streamlit_sql/sql_iu.py
27 28 29 30 31 32 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 66 67 68 69 70 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 |
|
show_sql_ui(conn, read_instance, edit_create_model, available_filter=None, edit_create_default_values=None, rolling_total_column=None, df_style_formatter=None, read_use_container_width=False, hide_id=True, base_key='', style_fn=None, update_show_many=False)
#
Show A CRUD interface in a Streamlit Page
This function is deprecated and will be removed in future versions. See SqlUi class docs for details on each argument.
Returns: tuple[pd.DataFrame, list[int]]: A Tuple with the DataFrame displayed as first item and a list of rows numbers selected as second item.
Example
See SqlUi class for an example.
Source code in streamlit_sql/sql_iu.py
392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 |
|