Skip to content

Instantly share code, notes, and snippets.

# Editable install with no version control (apache-airflow==2.0.0)
APScheduler==3.6.3
Authlib==0.15.2
Babel==2.9.0
Flask-AppBuilder==3.1.1
Flask-Babel==1.0.0
Flask-Bcrypt==0.7.1
Flask-Caching==1.9.0
Flask-JWT-Extended==3.25.0
Flask-Login==0.4.1
# Editable install with no version control (apache-airflow==2.0.0)
APScheduler==3.6.3
Authlib==0.15.2
Babel==2.9.0
Flask-AppBuilder==3.1.1
Flask-Babel==1.0.0
Flask-Bcrypt==0.7.1
Flask-Caching==1.9.0
Flask-JWT-Extended==3.25.0
Flask-Login==0.4.1
@arifmarias
arifmarias / Airflow Version
Last active June 20, 2021 16:47 — forked from marclamberti/Airflow Version
the_complete_hands_on_introduction_to_apache_airflow
2.0.0
{
"name": "dialogflowFirebaseFulfillment",
"description": "Dialogflow fulfillment for the bike shop sample",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "Google Inc.",
"engines": {
"node": "6"
},
/**
* Copyright 2017 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
import pandas as pd
import re
def find_libraries(city):
data = pd.read_csv("https://assets.publishing.service.gov.uk/government/uploads/system/uploads/attachment_data/file/609034/Public_libraries_in_England_basic_dataset__as_on_1_July_2016_.csv",header=1,encoding='unicode_escape')
mask = list(bool(re.search(city,record)) for record in data['Library service'].str.lower().str.strip())
return data.loc[mask,['Library name','Postcode']]
@arifmarias
arifmarias / pulsifi_code_along.ipynb
Created April 13, 2020 16:56
pulsifi_code_along.ipynb
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.