This file contains 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
def transform_string(string: str, separator: str, upper: bool) -> str: | |
def _words() -> list: | |
return string.split() | |
def _first_character(word: str) -> str: | |
return word[0].upper() if upper else word[0].lower() | |
return separator.join(_first_character(word[0]) + word[1:] for word in _words()) | |
This file contains 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
x-airflow-environment: &airflow-environment | |
environment: | |
- HOST_HOME=${HOME} | |
- HOST_PROJECT_PATH=${PWD} | |
env_file: airflow.env | |
image: feluelle/airflow:latest | |
x-airflow-volumes: &airflow-volumes | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
- ~/.aws:/home/airflow/.aws |
This file contains 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
# | |
# -------------------- authorize script -------------------- | |
# | |
# -*- coding: utf-8 -*- | |
""" | |
Just adjust the global variables accordingly and then run this script from the command line. | |
Make sure the correct client_secret_file is selected, | |
and that it has the necessary right configured. |
This file contains 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
from enum import Enum | |
class Color(Enum): | |
RED = '\033[31m' | |
GREEN = '\033[32m' | |
YELLOW = '\033[33m' | |
BLUE = '\033[34m' | |
def __repr__(self): | |
return f'{self.value}{self.name}\033[0m' |