Skip to content

Instantly share code, notes, and snippets.

View anamariakantar's full-sized avatar

anamariakantar

View GitHub Profile
@anamariakantar
anamariakantar / kml_to_csv.py
Last active October 31, 2021 13:34
Convert kml file to csv by picking up multiple xml labels
# -*- coding: utf-8 -*-
"""
Created on Tue Feb 21 12:38:13 2017
@author: Ana-Maria.Mocanu
"""
from bs4 import BeautifulSoup
import csv
import os
@anamariakantar
anamariakantar / config.py
Created February 16, 2017 01:09 — forked from bonzanini/config.py
Twitter Stream Downloader
consumer_key = 'your-consumer-key'
consumer_secret = 'your-consumer-secret'
access_token = 'your-access-token'
access_secret = 'your-access-secret'