Skip to content

Instantly share code, notes, and snippets.

View goanpeca's full-sized avatar
🏠
Working from home

Gonzalo Peña-Castellanos goanpeca

🏠
Working from home
View GitHub Profile
# -*- coding: utf-8 -*-
"""
Created on Tue Feb 23 18:37:06 2016
@author: goanpeca
"""
# Standard library imports
import os
@goanpeca
goanpeca / adn.py
Created August 8, 2018 19:57
Tarea de taller de introducción a Python
# -*- coding: utf-8 -*-
"""
Esto es un Dosctring de módulo, sirve para documentar infromación de los
módulos de python.
Las triples comillas se usan para textos que ocupan más de una línea, como
este ejemplo.
Documentación de Python
@goanpeca
goanpeca / tweet_listener.py
Created December 21, 2018 21:29 — forked from hugobowne/tweet_listener.py
Here I define a Tweet listener that creates a file called 'tweets.txt', collects streaming tweets as .jsons and writes them to the file 'tweets.txt'; once 100 tweets have been streamed, the listener closes the file and stops listening.
class MyStreamListener(tweepy.StreamListener):
def __init__(self, api=None):
super(MyStreamListener, self).__init__()
self.num_tweets = 0
self.file = open("tweets.txt", "w")
def on_status(self, status):
tweet = status._json
self.file.write( json.dumps(tweet) + '\n' )
self.num_tweets += 1
# -*- coding: utf-8 -*-
import numpy as np
import matplotlib.pyplot as plt
C1 = np.array([-3.46, 14.991, 1.969])
C9 = np.array([-3.797, 13.86, 2.93])
C8 = np.array([-2.541, 13.306, 3.48])