Monday, 23 January 2023

Python - Site Connectivity Checker

import urllib.request as urllib

This is a site connectivity checker program Input the url of the site you want to check: https://www.w3schools.com/ Checking connectivity Connected to https://www.w3schools.com/ succesfully The response code was: 200

DBT - Models

Models are where your developers spend most of their time within a dbt environment. Models are primarily written as a select statement and ...