One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
""" | |
Code that goes along with the Airflow tutorial located at: | |
https://github.com/airbnb/airflow/blob/master/airflow/example_dags/tutorial.py | |
""" | |
from airflow import DAG | |
from airflow.operators.python_operator import PythonOperator | |
from airflow.operators.generic_transfer import GenericTransfer | |
from airflow.contrib.hooks import FTPHook | |
from airflow.hooks.mysql_hook import MySqlHook |
class Person < ActiveRecord::Base | |
# This manual SQL query... | |
scope :allowed_to_eat_cheese, joins( | |
<<-SQL | |
INNER JOIN cities ON people.city_id = cities.id | |
INNER JOIN states ON cities.state_id = states.id | |
SQL | |
).where('states.allows_cheese_consumption' = 'Yeppers') |
###Sketch trial non stop
Open hosts files:
$ open /private/etc/hosts
Edit the file adding:
127.0.0.1 backend.bohemiancoding.com
127.0.0.1 bohemiancoding.sketch.analytics.s3-website-us-east-1.amazonaws.com
import csv | |
import os | |
import types | |
from flask import Flask, jsonify, make_response, request, url_for, send_file | |
from app import celery, firebase, firestore_db | |
from app.post_tasks import * | |
from app.master_admin_tasks import check_group_outdated_accounts_token | |
from firebase_admin import db as firebase_db, firestore | |
from . import post | |
from ..models import * |