Conventions used
There are a number of text conventions used throughout this book.
Code in text
: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: “An event table called MY_EVENTS
is created with the default column structure.”
A block of code is set as follows:
current_runs = dag_op.get_current_dag_runs(dag) for r in current_runs: print(f"RunId={r.run_id} State={r.state}")
Any command-line input or output is written as follows:
conda create --name def_gui_3.8_env --override-channels --channel https://repo.anaconda.com/pkgs/snowflake python=3.8
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “A model registry is a centralized repository that enables model developers to organize, share, and publish ML models efficiently.”
Tips or important notes
Appear like this.