This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| required_providers { | |
| azurerm = { | |
| source = "hashicorp/azurerm" | |
| version = ">=3.81.0" | |
| } | |
| azuredevops = { | |
| source = "microsoft/azuredevops" | |
| version = ">= 0.10.0" | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import yaml | |
| import great_expectations as ge | |
| import os | |
| from great_expectations.cli.datasource import sanitize_yaml_and_save_datasource | |
| from great_expectations.core.batch import BatchRequest | |
| from great_expectations.core.expectation_configuration import ExpectationConfiguration | |
| from contextlib import suppress | |
| project_dir = f"{os.getcwd()}/own_de_project/great_expectations" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Manual PyPi Release | |
| on: | |
| workflow_dispatch: | |
| inputs: | |
| package_repository: | |
| description: '"testpypi" or "pypi"' | |
| required: true | |
| tag: | |
| required: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import plotly.graph_objects as go | |
| fig = go.Figure() | |
| fig.update_layout( | |
| template="simple_white", | |
| xaxis=dict(title_text="Week"), | |
| yaxis=dict(title_text="Count"), | |
| barmode="stack", | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import pandas as pd | |
| df = pd.DataFrame( | |
| dict( | |
| week=[1, 1, 2, 2, 3, 3] * 2, | |
| layout=["classic", "classic", "modern", "modern"] * 3, | |
| response=["conversion", "exit"] * 6, | |
| cnt=[26, 23, 45, 34, 55, 44, 53, 27, 28, 25, 30, 34], | |
| ) | |
| ) |
NewerOlder