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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title>Page Title</title> | |
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous"> | |
</head> |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<!-- Required meta tags --> | |
<meta charset="utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | |
<title>Page Title</title> | |
<!-- Bootstrap CSS --> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous"> |
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
===== BEGIN SOLIDSTAMP VERIFICATION ===== | |
kozppmpiaexn0zdgurywkhu4o3hhhppj | |
===== END SOLIDSTAMP VERIFICATION ===== |
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
===== BEGIN SOLIDSTAMP VERIFICATION ===== | |
qfbamntxfvt0mzqjgvlxgg3ne0rnjsz3 | |
===== END SOLIDSTAMP VERIFICATION ===== |
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
version: "3" | |
services: | |
visualizer: | |
image: dockersamples/visualizer:stable | |
ports: | |
- 8080:8080 | |
volumes: | |
- "/var/run/docker.sock:/var/run/docker.sock" | |
deploy: |
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 inspect | |
import pkgutil | |
from importlib import import_module | |
from airflow.hooks.base_hook import BaseHook | |
from airflow.models import BaseOperator | |
def find_clazzes(directory, base_class): | |
found_classes = set() |
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
from airflow.operators import dummy_operator | |
import shlex | |
from airflow import models | |
from airflow.utils.trigger_rule import TriggerRule | |
from airflow.utils import dates | |
from airflow.operators import bash_operator | |
import datetime | |
PARAMS = { | |
"user.name": "pig", |
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
from airflow.operators import python_operator | |
import datetime | |
from airflow.utils import dates | |
from airflow.operators import bash_operator | |
from airflow.utils.trigger_rule import TriggerRule | |
from airflow import models | |
from o2a_libs.el_basic_functions import first_not_null | |
from airflow.operators import dummy_operator | |
PARAMS = { |
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
from airflow import models | |
from airflow.contrib.operators import dataproc_operator | |
from airflow.operators import bash_operator | |
from airflow.operators import dummy_operator | |
from airflow.utils import dates |
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 unittest | |
from el.parser import Parser | |
from el.rules import TOKEN_OP, TOKEN_BRACKET | |
from el.tokenizer import Tokenizer | |
class ParserTestCase(unittest.TestCase): | |
def test_is_bracket(self): | |
tokenizer = Tokenizer("${+}") |