Scientific Programming: Data Structures - NumPy, Pandas & beyond

Federica Lionetto (federica.lionetto@gmail.com), Christian Elsasser (che@physik.uzh.ch)

The content of the lecture might be reused, also in parts, under the CC-licence by-sa 4.0

NumPy

NumPy vs. Python, need for speed

In [1]:
# Creating a standard python list
L = list(range(1000))
In [2]:
# How long does it take to calculate the element-wise square?
%timeit [i**2 for i in L]
192 µs ± 8.4 µs per loop (mean ± std. dev. of 7 runs, 1000 loops each)
In [3]:
# Now do the same with a NumPy array
import numpy as np
a = np.arange(1000)
In [4]:
%timeit a**2
994 ns ± 111 ns per loop (mean ± std. dev. of 7 runs, 1000000 loops each)

Creating NumPy arrays

In [5]:
a = np.array([1,2,4])
b = np.arange(1,15,2)
c = np.linspace(0,1,6)
d = np.empty((1,3))
e = np.zeros((2,5,3))
f = np.ones((3,3))
g = np.eye(4)
h = np.identity(4)
i = np.diag(np.array([1,2,3,4]))
l = np.diag(np.array([1,2,3,4]),k=-1)
m = np.diag(np.array([1,2,3,4]),k=2)

arrays = [a,b,c,d,e,f,g,h,i,l,m]
for array in arrays :
    print(array)
    print('')
[1 2 4]

[ 1  3  5  7  9 11 13]

[0.  0.2 0.4 0.6 0.8 1. ]

[[1.49166815e-154 1.49166815e-154 2.16965781e-314]]

[[[0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]]

 [[0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]
  [0. 0. 0.]]]

[[1. 1. 1.]
 [1. 1. 1.]
 [1. 1. 1.]]

[[1. 0. 0. 0.]
 [0. 1. 0. 0.]
 [0. 0. 1. 0.]
 [0. 0. 0. 1.]]

[[1. 0. 0. 0.]
 [0. 1. 0. 0.]
 [0. 0. 1. 0.]
 [0. 0. 0. 1.]]

[[1 0 0 0]
 [0 2 0 0]
 [0 0 3 0]
 [0 0 0 4]]

[[0 0 0 0 0]
 [1 0 0 0 0]
 [0 2 0 0 0]
 [0 0 3 0 0]
 [0 0 0 4 0]]

[[0 0 1 0 0 0]
 [0 0 0 2 0 0]
 [0 0 0 0 3 0]
 [0 0 0 0 0 4]
 [0 0 0 0 0 0]
 [0 0 0 0 0 0]]

NumPy arrays of random numbers

In [6]:
a = np.random.rand(4)
b = np.random.rand(4,3)
c = np.random.randint(1,3,(2,3)) 
d = np.random.randn(4,5) 
e = np.random.poisson(3,5) 

arrays = [a,b,c,d,e]
for array in arrays :
    print(array)
    print('')
[0.02870201 0.55546574 0.07376093 0.8212641 ]

[[0.99054079 0.30573514 0.28125785]
 [0.21488787 0.83915455 0.53694855]
 [0.88008025 0.90201844 0.43322455]
 [0.85450796 0.75158395 0.92983022]]

[[1 1 1]
 [2 2 1]]

[[ 0.51002478 -2.26008494  0.03961445 -0.05487981 -1.99874058]
 [ 1.08241784 -0.2940435  -1.3219307  -0.43478829  1.04611343]
 [ 0.4525556  -0.38495777  1.5958115   0.23340745  0.26735892]
 [-0.25595456  0.71135265  0.75635774  0.54044427 -0.90826319]]

[1 2 4 2 1]

In [7]:
# Random seed
np.random.seed(10)
arr1 = np.random.rand(5)
print(arr1)

np.random.seed(10)
arr2 = np.random.rand(10)
print(arr2)
[0.77132064 0.02075195 0.63364823 0.74880388 0.49850701]
[0.77132064 0.02075195 0.63364823 0.74880388 0.49850701 0.22479665
 0.19806286 0.76053071 0.16911084 0.08833981]

Details about NumPy

In [8]:
np.__version__
Out[8]:
'1.16.4'
In [9]:
np.show_config()
blas_mkl_info:
  NOT AVAILABLE
blis_info:
  NOT AVAILABLE
openblas_info:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/usr/local/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]
blas_opt_info:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/usr/local/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]
lapack_mkl_info:
  NOT AVAILABLE
openblas_lapack_info:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/usr/local/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]
lapack_opt_info:
    libraries = ['openblas', 'openblas']
    library_dirs = ['/usr/local/lib']
    language = c
    define_macros = [('HAVE_CBLAS', None)]

Basic operations

In [10]:
a = np.random.rand(3,4)
b = np.random.rand(3,4)
print(a)
print(b)
[[0.68535982 0.95339335 0.00394827 0.51219226]
 [0.81262096 0.61252607 0.72175532 0.29187607]
 [0.91777412 0.71457578 0.54254437 0.14217005]]
[[0.37334076 0.67413362 0.44183317 0.43401399]
 [0.61776698 0.51313824 0.65039718 0.60103895]
 [0.8052232  0.52164715 0.90864888 0.31923609]]
In [11]:
a+b
Out[11]:
array([[1.05870058, 1.62752696, 0.44578144, 0.94620626],
       [1.43038794, 1.12566431, 1.3721525 , 0.89291502],
       [1.72299732, 1.23622294, 1.45119325, 0.46140614]])
In [12]:
a-b
Out[12]:
array([[ 0.31201906,  0.27925973, -0.43788491,  0.07817827],
       [ 0.19485398,  0.09938782,  0.07135814, -0.30916289],
       [ 0.11255093,  0.19292863, -0.36610451, -0.17706604]])
In [13]:
a*b
Out[13]:
array([[0.25587276, 0.6427145 , 0.00174448, 0.22229861],
       [0.5020104 , 0.31431055, 0.46942762, 0.17542889],
       [0.73901301, 0.37275642, 0.49298233, 0.04538581]])
In [14]:
a/b
Out[14]:
array([[1.83574871, 1.41424982, 0.0089361 , 1.18012845],
       [1.31541664, 1.19368625, 1.10971471, 0.48561922],
       [1.13977606, 1.36984508, 0.59708913, 0.44534453]])
In [15]:
# Add 3.0 to every element
a+3.0
Out[15]:
array([[3.68535982, 3.95339335, 3.00394827, 3.51219226],
       [3.81262096, 3.61252607, 3.72175532, 3.29187607],
       [3.91777412, 3.71457578, 3.54254437, 3.14217005]])
In [16]:
# Conditions
a>b
Out[16]:
array([[ True,  True, False,  True],
       [ True,  True,  True, False],
       [ True,  True, False, False]])
In [17]:
a.min()
Out[17]:
0.003948266327914451
In [18]:
a.min(axis=0)
Out[18]:
array([0.68535982, 0.61252607, 0.00394827, 0.14217005])
In [19]:
a.min(axis=1)
Out[19]:
array([0.00394827, 0.29187607, 0.14217005])
In [20]:
# Functions in the math library are not able to handle multi-element data
import math
# math.exp(b)
In [21]:
# Numpy has its own set of functions
np.exp(b)
Out[21]:
array([[1.45257924, 1.9623321 , 1.55555621, 1.54344047],
       [1.85478165, 1.67052549, 1.9163018 , 1.82401288],
       [2.23719578, 1.68480049, 2.48096818, 1.37607616]])
In [22]:
# Numpy has its own set of functions
np.cos(b)
Out[22]:
array([[0.93111407, 0.78124806, 0.90396932, 0.90728511],
       [0.81517389, 0.87120819, 0.79584337, 0.82474853],
       [0.69295033, 0.86699957, 0.6148119 , 0.94947544]])

Data representation

In [23]:
a = np.array([1,0,-2],dtype=np.int64)
print(a)
[ 1  0 -2]
In [24]:
b = np.array(a,dtype=np.int8)
print(b)
[ 1  0 -2]
In [25]:
c = np.array(a,dtype=np.int)
print(c)
[ 1  0 -2]
In [26]:
d = np.array([1,0,-2],dtype=np.float64)
print(d)
[ 1.  0. -2.]
In [27]:
e = np.array([1,0,-2],dtype=np.bool)
print(e)
[ True False  True]
In [28]:
e.dtype
Out[28]:
dtype('bool')
In [29]:
print(a.nbytes)
print(b.nbytes)
print(c.nbytes)
print(d.nbytes)
print(e.nbytes)
24
3
24
24
3
In [30]:
a = np.ones((3,4),dtype=np.int8)
b = np.ones((3,4),dtype=np.int64)
In [31]:
print(a.tobytes())
print(b.tobytes())
b'\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01'
b'\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00'

Data structure

In [32]:
print(a.ndim)
print(a.shape)
print(a.size)
print(a.itemsize)
2
(3, 4)
12
1
In [33]:
print(b.ndim)
print(b.shape)
print(b.size)
print(b.itemsize)
2
(3, 4)
12
8
In [34]:
print(a.nbytes)
print(b.nbytes)
12
96
In [35]:
print(a.data)
<memory at 0x7fb060c5bb40>
In [36]:
print(a.strides)
print(b.strides)
print(a.T.strides)
(4, 1)
(32, 8)
(1, 4)
In [37]:
print(a.flags)
print('')
print(a.T.flags)
  C_CONTIGUOUS : True
  F_CONTIGUOUS : False
  OWNDATA : True
  WRITEABLE : True
  ALIGNED : True
  WRITEBACKIFCOPY : False
  UPDATEIFCOPY : False

  C_CONTIGUOUS : False
  F_CONTIGUOUS : True
  OWNDATA : False
  WRITEABLE : True
  ALIGNED : True
  WRITEBACKIFCOPY : False
  UPDATEIFCOPY : False

Shape manipulation

In [38]:
# Let's define an array of values distributed according to a Normal distribution
a = np.random.randn(3,4)
In [39]:
print(a.reshape(1,12))
print('')
print(a)
[[-0.26731719 -0.54930901  0.1327083  -0.47614201  1.30847308  0.19501328
   0.40020999 -0.33763234  1.25647226 -0.7319695   0.66023155 -0.35087189]]

[[-0.26731719 -0.54930901  0.1327083  -0.47614201]
 [ 1.30847308  0.19501328  0.40020999 -0.33763234]
 [ 1.25647226 -0.7319695   0.66023155 -0.35087189]]
In [40]:
print(a.resize(1,12))
print('')
print(a)
None

[[-0.26731719 -0.54930901  0.1327083  -0.47614201  1.30847308  0.19501328
   0.40020999 -0.33763234  1.25647226 -0.7319695   0.66023155 -0.35087189]]
In [41]:
# Need to define a as in the beginning again
a = np.random.randn(3,4)
In [42]:
print(a.ravel())
print('')
print(a)
[-0.93943336 -0.48933722 -0.80459114 -0.21269764 -0.33914025  0.31216994
  0.56515267 -0.14742026 -0.02590534  0.2890942  -0.53987907  0.70816002]

[[-0.93943336 -0.48933722 -0.80459114 -0.21269764]
 [-0.33914025  0.31216994  0.56515267 -0.14742026]
 [-0.02590534  0.2890942  -0.53987907  0.70816002]]
In [43]:
# Need to define a as in the beginning again
a = np.random.randn(3,4)
In [44]:
print(a.T)
[[ 0.84222474 -0.11227247  1.12878515]
 [ 0.2035808  -0.36218045 -0.69781003]
 [ 2.39470366 -0.23218226 -0.08112218]
 [ 0.91745894 -0.5017289  -0.52929608]]
In [45]:
# Bad practices
b = np.random.randn(4)
print(b.shape)
print(b.T.shape)
(4,)
(4,)
In [46]:
# Good practices
c = np.random.randn(4,1)
print(c.shape)
print(c.T.shape)
(4, 1)
(1, 4)

Accessing array elements

In [47]:
a = np.ones((3,4),dtype=np.int64)
print(a)
[[1 1 1 1]
 [1 1 1 1]
 [1 1 1 1]]
In [48]:
b = a
In [49]:
a[0,0]=0
In [50]:
print(b)
[[0 1 1 1]
 [1 1 1 1]
 [1 1 1 1]]
In [51]:
c = a.copy()
In [52]:
a[1,1]=0
In [53]:
print(a)
[[0 1 1 1]
 [1 0 1 1]
 [1 1 1 1]]
In [54]:
print(c)
[[0 1 1 1]
 [1 1 1 1]
 [1 1 1 1]]
In [55]:
print(b)
[[0 1 1 1]
 [1 0 1 1]
 [1 1 1 1]]
In [56]:
d = 1*a
In [57]:
a[2,2] = 0
In [58]:
print(a)
[[0 1 1 1]
 [1 0 1 1]
 [1 1 0 1]]
In [59]:
print(d)
[[0 1 1 1]
 [1 0 1 1]
 [1 1 1 1]]

Get the data

In [60]:
# Let's have a look at the loadEx.txt file
!head loadEx.txt
94.820 76.280 33.020 29.660 25.460
91.610 71.480 31.710 29.610 25.460
94.820 68.130 32.630 31.460 25.910
93.190 71.050 35.250 31.780 27.020
92.780 71.320 35.950 32.700 27.490
96.460 72.880 35.780 32.240 26.750
97.280 73.260 35.160 31.640 26.500
97.690 72.880 35.250 31.780 26.410
96.660 72.990 35.250 31.270 26.650
97.790 73.960 34.750 32.470 26.480
In [61]:
data = np.loadtxt('loadEx.txt',delimiter=' ',comments="#")
In [62]:
print(data)
[[ 94.82  76.28  33.02  29.66  25.46]
 [ 91.61  71.48  31.71  29.61  25.46]
 [ 94.82  68.13  32.63  31.46  25.91]
 ...
 [160.51 196.19 166.71 132.29 113.32]
 [160.05 195.71 165.84 131.83 113.11]
 [160.44 193.83 164.32 129.98 112.18]]
In [63]:
data[0]
Out[63]:
array([94.82, 76.28, 33.02, 29.66, 25.46])
In [64]:
dt = np.dtype([('name','S7'),('mass',np.float),
 ('position',[('x',np.float),('y',np.float),('z',np.float)]),
 ('velocity',[('x',np.float),('y',np.float),('z',np.float)])])
In [65]:
solarData = np.loadtxt('Solar.txt',dtype=dt)
In [66]:
print(solarData)
[(b'Sun', 3.32946000e+05, ( 2.13e-03, -1.60e-03, -1.20e-04), ( 5.01e-06,  4.08e-06, -1.24e-07))
 (b'Mercury', 5.52735260e-02, ( 1.62e-01,  2.64e-01,  6.94e-03), (-2.97e-02,  1.56e-02,  4.00e-03))
 (b'Venus', 8.14997513e-01, ( 3.02e-01,  6.54e-01, -8.44e-03), (-1.85e-02,  8.32e-03,  1.18e-03))
 (b'Earth', 1.00000000e+00, ( 5.66e-01, -8.46e-01, -9.12e-05), ( 1.40e-02,  9.49e-03, -5.81e-07))
 (b'Mars', 1.07446849e-01, (-4.34e-01, -1.43e+00, -1.93e-02), ( 1.39e-02, -2.88e-03, -4.02e-04))
 (b'Jupiter', 3.17828133e+02, (-2.78e+00,  4.47e+00,  4.35e-02), (-6.50e-03, -3.62e-03,  1.61e-04))
 (b'Saturn', 9.51609041e+01, (-6.08e+00, -7.84e+00,  3.78e-01), ( 4.10e-03, -3.43e-03, -1.04e-04))
 (b'Uranus', 1.45357566e+01, ( 1.95e+01,  4.68e+00, -2.35e-01), (-9.48e-04,  3.64e-03,  2.58e-05))
 (b'Neptune', 1.71470000e+01, ( 2.73e+01, -1.23e+01, -3.77e-01), ( 1.27e-03,  2.88e-03, -8.85e-05))
 (b'Pluto', 2.19100000e-03, ( 6.91e+00, -3.19e+01,  1.42e+00), ( 3.14e-03,  3.08e-05, -9.18e-04))
 (b'Halley', 3.68000000e-11, (-2.05e+01,  2.51e+01, -9.76e+00), (-7.71e-05,  9.54e-04, -1.79e-04))
 (b'Moon', 1.23031000e-02, ( 5.64e-01, -8.44e-01, -3.23e-04), ( 1.36e-02,  9.18e-03,  8.97e-06))]
In [67]:
solarData['name']
Out[67]:
array([b'Sun', b'Mercury', b'Venus', b'Earth', b'Mars', b'Jupiter',
       b'Saturn', b'Uranus', b'Neptune', b'Pluto', b'Halley', b'Moon'],
      dtype='|S7')
In [68]:
solarData['position']['x']
Out[68]:
array([ 2.13e-03,  1.62e-01,  3.02e-01,  5.66e-01, -4.34e-01, -2.78e+00,
       -6.08e+00,  1.95e+01,  2.73e+01,  6.91e+00, -2.05e+01,  5.64e-01])
In [69]:
solarData['position']['x'][np.where(solarData['name']==b'Sun')]
Out[69]:
array([0.00213])

Broadcasting

In [70]:
a = np.random.rand(3,5)
b = np.random.rand(8)
In [71]:
c = a[...,np.newaxis]*b
print(c.shape)
(3, 5, 8)
In [72]:
d = np.random.rand(1,10)
e = np.random.rand(10,1)
print(d.shape)
print(d)
print('')
print(e.shape)
print(e)
(1, 10)
[[0.46453081 0.78194912 0.71860281 0.58602198 0.03709441 0.35065639
  0.56319068 0.29972987 0.51233415 0.67346693]]

(10, 1)
[[0.15919373]
 [0.05047767]
 [0.33781589]
 [0.10806377]
 [0.17890281]
 [0.8858271 ]
 [0.36536497]
 [0.21876935]
 [0.75249617]
 [0.10687958]]
In [73]:
# Explicit broadcasting.
dd,ee = np.broadcast_arrays(d,e)
print(dd.shape)
print(ee.shape)
(10, 10)
(10, 10)
In [74]:
d[0,0]=-1.0
In [75]:
dd
Out[75]:
array([[-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693],
       [-1.        ,  0.78194912,  0.71860281,  0.58602198,  0.03709441,
         0.35065639,  0.56319068,  0.29972987,  0.51233415,  0.67346693]])
In [76]:
print(dd.strides)
print(ee.strides)
(0, 8)
(8, 0)

Simple indexing

In [77]:
# Notice that this does not use additional memory!!!
a = np.arange(100).reshape(10,10)
In [78]:
a[4:9]
Out[78]:
array([[40, 41, 42, 43, 44, 45, 46, 47, 48, 49],
       [50, 51, 52, 53, 54, 55, 56, 57, 58, 59],
       [60, 61, 62, 63, 64, 65, 66, 67, 68, 69],
       [70, 71, 72, 73, 74, 75, 76, 77, 78, 79],
       [80, 81, 82, 83, 84, 85, 86, 87, 88, 89]])
In [79]:
a[:,3:8]
Out[79]:
array([[ 3,  4,  5,  6,  7],
       [13, 14, 15, 16, 17],
       [23, 24, 25, 26, 27],
       [33, 34, 35, 36, 37],
       [43, 44, 45, 46, 47],
       [53, 54, 55, 56, 57],
       [63, 64, 65, 66, 67],
       [73, 74, 75, 76, 77],
       [83, 84, 85, 86, 87],
       [93, 94, 95, 96, 97]])
In [80]:
a[:,-1]
Out[80]:
array([ 9, 19, 29, 39, 49, 59, 69, 79, 89, 99])
In [81]:
a[-2::-3,1:6:2]
Out[81]:
array([[81, 83, 85],
       [51, 53, 55],
       [21, 23, 25]])

Fancy indexing

In [82]:
a[:,[1,3,1]]
Out[82]:
array([[ 1,  3,  1],
       [11, 13, 11],
       [21, 23, 21],
       [31, 33, 31],
       [41, 43, 41],
       [51, 53, 51],
       [61, 63, 61],
       [71, 73, 71],
       [81, 83, 81],
       [91, 93, 91]])
In [83]:
a[[1,3,1]][:,[1,3,1]]
Out[83]:
array([[11, 13, 11],
       [31, 33, 31],
       [11, 13, 11]])
In [84]:
a[[1,3,1],[1,3,1]]
Out[84]:
array([11, 33, 11])
In [85]:
# Multidimensional arrays indexed by multidimensional arrays.
y = np.arange(35).reshape(5,7)
print(y)
[[ 0  1  2  3  4  5  6]
 [ 7  8  9 10 11 12 13]
 [14 15 16 17 18 19 20]
 [21 22 23 24 25 26 27]
 [28 29 30 31 32 33 34]]
In [86]:
# If the index arrays have a matching shape, and there is an index array for each dimension of the array being indexed, the resultant array has the same shape as the index arrays, and the values correspond to the index set for each position in the index arrays.
# [0,0], [2,1], and [4,2] elements of the indexed array.
y[np.array([0,2,4]), np.array([0,1,2])]
Out[86]:
array([ 0, 15, 30])
In [87]:
# If the index arrays do not have the same shape, a broadcasting is tried.
# [0,1], [2,1], and [4,1] elements of the indexed array.
y[np.array([0,2,4]), 1]
Out[87]:
array([ 1, 15, 29])
In [88]:
# If we provide just one index array, the rows are selected but the columns are kept as they were in the indexed array.
y[np.array([0,2,4])]
Out[88]:
array([[ 0,  1,  2,  3,  4,  5,  6],
       [14, 15, 16, 17, 18, 19, 20],
       [28, 29, 30, 31, 32, 33, 34]])
In [89]:
# Fancy indexing.
i0 = np.random.randint(0,10,(8,1,8)) # Matrix of random integers between 0 and 10 with shape (8,1,8).
i1 = np.random.randint(0,10,(2,8)) # Matrix of random integers between 0 and 10 with shape (2,8).
In [90]:
a[i0,i1] # creates a 8×2×8 array
Out[90]:
array([[[86, 48, 90, 24, 16, 13, 65, 39],
        [83, 48, 93, 20, 19, 16, 62, 33]],

       [[46, 58, 40,  4, 26, 83,  5, 79],
        [43, 58, 43,  0, 29, 86,  2, 73]],

       [[66, 58, 80, 24, 26,  3, 15, 29],
        [63, 58, 83, 20, 29,  6, 12, 23]],

       [[36, 58, 70, 84, 76, 73, 65, 99],
        [33, 58, 73, 80, 79, 76, 62, 93]],

       [[26,  8, 40, 54, 46, 63, 95,  9],
        [23,  8, 43, 50, 49, 66, 92,  3]],

       [[46, 68, 40, 94, 86,  3, 75, 19],
        [43, 68, 43, 90, 89,  6, 72, 13]],

       [[76, 18, 10, 54, 56,  3, 85, 39],
        [73, 18, 13, 50, 59,  6, 82, 33]],

       [[76, 18, 50, 24, 36, 43, 55, 79],
        [73, 18, 53, 20, 39, 46, 52, 73]]])
In [91]:
a[i0,i1].shape
Out[91]:
(8, 2, 8)

Pandas

In [92]:
import pandas as pd
In [93]:
! head SMI.csv
Date,Open,High,Low,Close,Adj Close,Volume
1990-11-09,1378.900024,1389.0,1375.300049,1387.099976,1387.099976,0.0
1990-11-12,1388.099976,1408.099976,1388.099976,1407.5,1407.5,0.0
1990-11-13,1412.199951,1429.400024,1411.400024,1415.199951,1415.199951,0.0
1990-11-14,1413.599976,1413.599976,1402.099976,1410.300049,1410.300049,0.0
1990-11-15,1410.599976,1416.699951,1405.099976,1405.699951,1405.699951,0.0
1990-11-16,1405.699951,1407.400024,1389.400024,1395.199951,1395.199951,0.0
1990-11-19,1395.599976,1417.900024,1395.599976,1416.0,1416.0,0.0
1990-11-20,1414.800049,1415.0,1404.699951,1405.800049,1405.800049,0.0
1990-11-21,1405.599976,1405.599976,1396.699951,1398.400024,1398.400024,0.0

Loading of data and basic manipulation

In [94]:
# Series object
s = pd.Series([1,3,5,np.nan,6,8])
print(s)
print(type(s))
0    1.0
1    3.0
2    5.0
3    NaN
4    6.0
5    8.0
dtype: float64
<class 'pandas.core.series.Series'>
In [95]:
# Dataframe object
ts = pd.read_csv('SMI.csv')
In [96]:
type(ts)
Out[96]:
pandas.core.frame.DataFrame
In [97]:
ts.head()
Out[97]:
Date Open High Low Close Adj Close Volume
0 1990-11-09 1378.900024 1389.000000 1375.300049 1387.099976 1387.099976 0.0
1 1990-11-12 1388.099976 1408.099976 1388.099976 1407.500000 1407.500000 0.0
2 1990-11-13 1412.199951 1429.400024 1411.400024 1415.199951 1415.199951 0.0
3 1990-11-14 1413.599976 1413.599976 1402.099976 1410.300049 1410.300049 0.0
4 1990-11-15 1410.599976 1416.699951 1405.099976 1405.699951 1405.699951 0.0
In [98]:
ts.tail()
Out[98]:
Date Open High Low Close Adj Close Volume
6738 2017-08-28 8864.230469 8864.230469 8864.230469 8864.230469 8864.230469 0.0
6739 2017-08-29 8814.540039 8814.540039 8814.540039 8814.540039 8814.540039 0.0
6740 2017-08-30 8851.259766 8851.259766 8851.259766 8851.259766 8851.259766 0.0
6741 2017-08-31 8925.450195 8925.450195 8925.450195 8925.450195 8925.450195 0.0
6742 2017-09-01 8941.620117 8941.620117 8941.620117 8941.620117 8941.620117 0.0
In [99]:
ts.index
Out[99]:
RangeIndex(start=0, stop=6743, step=1)
In [100]:
ts.columns
Out[100]:
Index(['Date', 'Open', 'High', 'Low', 'Close', 'Adj Close', 'Volume'], dtype='object')
In [101]:
ts['Open'][:10].values
Out[101]:
array([1378.900024, 1388.099976, 1412.199951, 1413.599976, 1410.599976,
       1405.699951, 1395.599976, 1414.800049, 1405.599976, 1400.      ])
In [102]:
ts = ts.sort_values('Date')
ts.head()
Out[102]:
Date Open High Low Close Adj Close Volume
0 1990-11-09 1378.900024 1389.000000 1375.300049 1387.099976 1387.099976 0.0
1 1990-11-12 1388.099976 1408.099976 1388.099976 1407.500000 1407.500000 0.0
2 1990-11-13 1412.199951 1429.400024 1411.400024 1415.199951 1415.199951 0.0
3 1990-11-14 1413.599976 1413.599976 1402.099976 1410.300049 1410.300049 0.0
4 1990-11-15 1410.599976 1416.699951 1405.099976 1405.699951 1405.699951 0.0
In [103]:
# Find minimum and maximum values in a given column
print(ts['Volume'].min())
print(ts['Volume'].max())
0.0
346767700.0
In [104]:
# Find index corresponding to mininum and maximum values in a given column
# Careful!!! 
print(ts['Volume'].idxmin())
print(ts['Volume'].idxmax())
0
6079
In [105]:
# Access rows
ts[6079:6080]
Out[105]:
Date Open High Low Close Adj Close Volume
6079 2015-01-15 9259.200195 9277.200195 7932.200195 8400.599609 8400.599609 346767700.0
In [106]:
# Modify index
ts.index = pd.to_datetime(ts.pop("Date"))
In [107]:
ts = ts.sort_index()
In [108]:
ts.tail()
Out[108]:
Open High Low Close Adj Close Volume
Date
2017-08-28 8864.230469 8864.230469 8864.230469 8864.230469 8864.230469 0.0
2017-08-29 8814.540039 8814.540039 8814.540039 8814.540039 8814.540039 0.0
2017-08-30 8851.259766 8851.259766 8851.259766 8851.259766 8851.259766 0.0
2017-08-31 8925.450195 8925.450195 8925.450195 8925.450195 8925.450195 0.0
2017-09-01 8941.620117 8941.620117 8941.620117 8941.620117 8941.620117 0.0
In [109]:
import datetime as dt
ts[ts.index>dt.datetime(2010,1,1)].head()
Out[109]:
Open High Low Close Adj Close Volume
Date
2010-01-04 6578.500000 6631.399902 6576.000000 6631.399902 6631.399902 59150000.0
2010-01-05 6620.700195 6622.399902 6547.399902 6579.299805 6579.299805 65848500.0
2010-01-06 6598.200195 6607.799805 6550.100098 6559.399902 6559.399902 52305400.0
2010-01-07 6536.500000 6574.200195 6494.899902 6555.399902 6555.399902 64539000.0
2010-01-08 6574.700195 6635.799805 6574.000000 6617.899902 6617.899902 74761300.0
In [110]:
ts["Adj Close"].head()
Out[110]:
Date
1990-11-09    1387.099976
1990-11-12    1407.500000
1990-11-13    1415.199951
1990-11-14    1410.300049
1990-11-15    1405.699951
Name: Adj Close, dtype: float64
In [111]:
ts["Adj Close"].describe()
Out[111]:
count    6743.000000
mean     5957.266658
std      2236.843089
min      1287.599976
25%      4561.000000
50%      6374.700195
75%      7790.649902
max      9531.500000
Name: Adj Close, dtype: float64
In [112]:
# Access parameters of describe 
ts['Adj Close'].describe()['count']
Out[112]:
6743.0

Timeseries applications

In [113]:
# Resampling of time series
# Creating a series with 9 timestamps, each one corresponding to one minute
index = pd.date_range('1/6/2018', periods=9, freq='T')
series = pd.Series(range(9), index=index)
print(series)
2018-01-06 00:00:00    0
2018-01-06 00:01:00    1
2018-01-06 00:02:00    2
2018-01-06 00:03:00    3
2018-01-06 00:04:00    4
2018-01-06 00:05:00    5
2018-01-06 00:06:00    6
2018-01-06 00:07:00    7
2018-01-06 00:08:00    8
Freq: T, dtype: int64
In [114]:
# Downsample the series in bins of 3 minutes each and sum over the same bin
series.resample('3T').sum()
Out[114]:
2018-01-06 00:00:00     3
2018-01-06 00:03:00    12
2018-01-06 00:06:00    21
Freq: 3T, dtype: int64
In [115]:
# Label the bin using the upper bound
series.resample('3T', label='right').sum()
Out[115]:
2018-01-06 00:03:00     3
2018-01-06 00:06:00    12
2018-01-06 00:09:00    21
Freq: 3T, dtype: int64
In [116]:
# DataFrame.resample(rule, axis=0)
# The object must have a datetime-like index
ts_monthly = ts["Adj Close"].resample("M").apply(["median","mean","std","count","max","min"]).head()
In [117]:
ts_monthly
Out[117]:
median mean std count max min
Date
1990-11-30 1392.000000 1390.387497 20.156853 16 1416.000000 1353.699951
1990-12-31 1405.349976 1404.744446 21.675076 18 1450.300049 1371.199951
1991-01-31 1350.000000 1357.580956 44.510815 21 1438.599976 1287.599976
1991-02-28 1538.799988 1530.924988 50.931718 20 1603.199951 1448.099976
1991-03-31 1614.649964 1611.519995 24.735199 20 1650.599976 1559.000000

Basic visualisation

In [118]:
day_return = ts["Adj Close"].pct_change().dropna()
mean_30day = day_return.rolling(30).mean()

import numpy as np

minmax_30day = day_return.rolling(30).apply(lambda x: (np.max(x)+np.min(x))*0.5)

mean_30day.resample("M").apply(["mean"]).plot()
minmax_30day.resample("M").apply(["mean"]).plot()

import matplotlib.pyplot as plt
plt.show()
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/ipykernel_launcher.py:6: FutureWarning: Currently, 'apply' passes the values as ndarrays to the applied function. In the future, this will change to passing it as Series objects. You need to specify 'raw=True' to keep the current behaviour, and you can pass 'raw=False' to silence this warning
  
<Figure size 640x480 with 1 Axes>
<Figure size 640x480 with 1 Axes>

Creating timeseries and filling missing values

In [119]:
dates = pd.date_range(ts.index.min(),ts.index.max(),freq="D")
print(dates)
DatetimeIndex(['1990-11-09', '1990-11-10', '1990-11-11', '1990-11-12',
               '1990-11-13', '1990-11-14', '1990-11-15', '1990-11-16',
               '1990-11-17', '1990-11-18',
               ...
               '2017-08-23', '2017-08-24', '2017-08-25', '2017-08-26',
               '2017-08-27', '2017-08-28', '2017-08-29', '2017-08-30',
               '2017-08-31', '2017-09-01'],
              dtype='datetime64[ns]', length=9794, freq='D')
In [120]:
ts_alldays = pd.Series(index=dates,data=ts["Adj Close"])
In [121]:
ts_alldays.head()
Out[121]:
1990-11-09    1387.099976
1990-11-10            NaN
1990-11-11            NaN
1990-11-12    1407.500000
1990-11-13    1415.199951
Freq: D, Name: Adj Close, dtype: float64
In [122]:
ts_alldays.fillna(method="ffill",inplace=True)
ts_alldays.head()
Out[122]:
1990-11-09    1387.099976
1990-11-10    1387.099976
1990-11-11    1387.099976
1990-11-12    1407.500000
1990-11-13    1415.199951
Freq: D, Name: Adj Close, dtype: float64

Hook up to data sources

In [123]:
version = [int(v) for v in pd.__version__.split('.')]
if version[1] >= 17: # Test if version is >= 0.17
    from pandas_datareader import data, wb
else:
    from pandas.io import data, wb
In [124]:
# Retrieve information from FRED
import datetime
start = datetime.datetime(2010, 1, 1)
end = datetime.datetime(2018, 1, 1)
# df = data.DataReader('F', 'google', start, end)
df = data.DataReader('GDP', 'fred', start, end)
print(df.shape)
print(df.head())
print(df.tail())
(33, 1)
                  GDP
DATE                 
2010-01-01  14721.350
2010-04-01  14926.098
2010-07-01  15079.917
2010-10-01  15240.843
2011-01-01  15285.828
                  GDP
DATE                 
2017-01-01  19162.550
2017-04-01  19359.123
2017-07-01  19588.074
2017-10-01  19831.829
2018-01-01  20041.047
In [125]:
# Let's say we want to compare the Gross Domestic Products per capita in constant dollars in North America
wb.search('gdp.*capita.*const')
Out[125]:
id name source sourceNote sourceOrganization topics unit
646 6.0.GDPpc_constant GDP per capita, PPP (constant 2011 internation... LAC Equity Lab GDP per capita based on purchasing power parit... b'World Development Indicators (World Bank)' Economy & Growth
9120 NY.GDP.PCAP.KD GDP per capita (constant 2010 US$) World Development Indicators GDP per capita is gross domestic product divid... b'World Bank national accounts data, and OECD ... Economy & Growth
9122 NY.GDP.PCAP.KN GDP per capita (constant LCU) World Development Indicators GDP per capita is gross domestic product divid... b'World Bank national accounts data, and OECD ... Economy & Growth
9124 NY.GDP.PCAP.PP.KD GDP per capita, PPP (constant 2011 internation... World Development Indicators GDP per capita based on purchasing power parit... b'World Bank, International Comparison Program... Economy & Growth
9125 NY.GDP.PCAP.PP.KD.87 GDP per capita, PPP (constant 1987 internation... WDI Database Archives b''

Spreadsheet operations

In [126]:
# Let's use the download function to acquire the data from the World Bank’s servers
gdp_data = wb.download(indicator='NY.GDP.PCAP.KD',country=['CH','US','GB','DE'],start=2006,end=2016)
gdp_data.head(20)
Out[126]:
NY.GDP.PCAP.KD
country year
Switzerland 2016 76934.320490
2015 76553.282143
2014 76410.856659
2013 75499.706744
2012 74984.137119
2011 75029.757819
2010 74605.721021
2009 73189.192550
2008 75793.633041
2007 75143.702215
2006 72823.837258
Germany 2016 46167.830784
2015 45521.319282
2014 45132.273633
2013 44354.736887
2012 44259.259905
2011 44125.331412
2010 41785.556913
2009 40086.104759
2008 42365.097496
In [127]:
gdp_data.shape
Out[127]:
(44, 1)
In [128]:
gdp_data.columns
Out[128]:
Index(['NY.GDP.PCAP.KD'], dtype='object')
In [129]:
gdp_data.unstack(level=0)
Out[129]:
NY.GDP.PCAP.KD
country Germany Switzerland United Kingdom United States
year
2006 40456.857380 72823.837258 40418.747305 49575.401014
2007 41831.867088 75143.702215 41050.405926 49979.533843
2008 42365.097496 75793.633041 40536.134857 49364.644550
2009 40086.104759 73189.192550 38545.915816 47575.608563
2010 41785.556913 74605.721021 39079.842606 48466.821025
2011 44125.331412 75029.757819 39413.323879 48862.422574
2012 44259.259905 74984.137119 39706.610083 49596.419512
2013 44354.736887 75499.706744 40248.765111 50161.073389
2014 45132.273633 76410.856659 41124.143404 51015.133003
2015 45521.319282 76553.282143 41756.922375 52099.267234
2016 46167.830784 76934.320490 42201.641425 52534.362737
In [130]:
gdp_data.unstack(level=1)
Out[130]:
NY.GDP.PCAP.KD
year 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016
country
Germany 40456.857380 41831.867088 42365.097496 40086.104759 41785.556913 44125.331412 44259.259905 44354.736887 45132.273633 45521.319282 46167.830784
Switzerland 72823.837258 75143.702215 75793.633041 73189.192550 74605.721021 75029.757819 74984.137119 75499.706744 76410.856659 76553.282143 76934.320490
United Kingdom 40418.747305 41050.405926 40536.134857 38545.915816 39079.842606 39413.323879 39706.610083 40248.765111 41124.143404 41756.922375 42201.641425
United States 49575.401014 49979.533843 49364.644550 47575.608563 48466.821025 48862.422574 49596.419512 50161.073389 51015.133003 52099.267234 52534.362737
In [131]:
gdp_data.groupby(level=0).mean()
Out[131]:
NY.GDP.PCAP.KD
country
Germany 43280.566867
Switzerland 75178.922460
United Kingdom 40371.132072
United States 49930.062495
In [132]:
gdp_data.groupby(level=0).std()
Out[132]:
NY.GDP.PCAP.KD
country
Germany 2072.707990
Switzerland 1298.620942
United Kingdom 1127.027682
United States 1486.681007

And some further work with Dataframes

In [133]:
df_us_zip = pd.read_csv("us_postal_codes.csv")
In [134]:
df_us_zip.shape
Out[134]:
(40933, 7)
In [135]:
df_us_zip.columns
Out[135]:
Index(['Zip Code', 'Place Name', 'State', 'State Abbreviation', 'County',
       'Latitude', 'Longitude'],
      dtype='object')
In [136]:
df_us_zip.describe()
Out[136]:
Zip Code Latitude Longitude
count 40933.000000 40933.000000 40933.000000
mean 49819.569858 38.596225 -91.082332
std 27808.948650 5.255750 15.763730
min 501.000000 7.112800 -176.658100
25% 26451.000000 35.052600 -97.308100
50% 49036.000000 39.152200 -87.976700
75% 73042.000000 41.894300 -80.142300
max 99950.000000 71.234600 171.237000
In [137]:
df_us_zip.dtypes
Out[137]:
Zip Code                int64
Place Name             object
State                  object
State Abbreviation     object
County                 object
Latitude              float64
Longitude             float64
dtype: object
In [138]:
df_us_zip.head()
Out[138]:
Zip Code Place Name State State Abbreviation County Latitude Longitude
0 501 Holtsville New York NY Suffolk 40.8154 -73.0451
1 544 Holtsville New York NY Suffolk 40.8154 -73.0451
2 1001 Agawam Massachusetts MA Hampden 42.0702 -72.6227
3 1002 Amherst Massachusetts MA Hampshire 42.3671 -72.4646
4 1003 Amherst Massachusetts MA Hampshire 42.3919 -72.5248
In [139]:
df_us_state_coord = df_us_zip.get(["State Abbreviation","Latitude","Longitude"]).groupby(["State Abbreviation"]).mean()
In [140]:
df_us_state_coord.shape
Out[140]:
(57, 2)
In [141]:
df_us_state_coord.head()
Out[141]:
Latitude Longitude
State Abbreviation
AA 33.036400 -82.249300
AK 61.456423 -152.486981
AL 32.886361 -86.813639
AP 32.349325 -112.935950
AR 35.124723 -92.402676
In [142]:
# How many entries have "Washington" as "Place Name"?
# Let's count the unique values in the "Place Name" field
# Series.value_counts(normalize=False, sort=True, ascending=False, bins=None, dropna=True)
df_us_zip["Place Name"].value_counts().head()
Out[142]:
Washington    295
Houston       187
New York      146
El Paso       139
Dallas        114
Name: Place Name, dtype: int64
In [143]:
# Cross-check
df_us_zip[df_us_zip['Place Name']=='Washington'].shape
Out[143]:
(295, 7)
In [144]:
df_us_places = df_us_zip.get(["Place Name","State Abbreviation","Latitude","Longitude"])
df_us_places = df_us_places.groupby(["Place Name","State Abbreviation"]).mean()
print(df_us_places.shape)
df_us_places
(29545, 2)
Out[144]:
Latitude Longitude
Place Name State Abbreviation
APO AA 33.036400 -82.249300
AP 34.282850 -105.062800
Aaronsburg PA 40.898700 -77.456200
Abbeville AL 31.575500 -85.279000
GA 31.964800 -83.306800
LA 29.960650 -92.187950
MS 34.471900 -89.447500
SC 34.181900 -82.378500
Abbot ME 45.234500 -69.569900
Abbotsford WI 44.964100 -90.299400
Abbott TX 31.891600 -97.067100
Abbottstown PA 39.888100 -76.993100
Abbyville KS 37.962600 -98.207100
Abell MD 38.247100 -76.748100
Abercrombie ND 46.447900 -96.727800
Aberdeen ID 43.004900 -112.840000
KY 37.253900 -86.681700
MD 39.510900 -76.180500
MS 33.828400 -88.538000
NC 35.121600 -79.445000
OH 38.670900 -83.763700
SD 45.527850 -98.418800
WA 46.984300 -123.796300
Aberdeen Proving Ground MD 39.477100 -76.120800
Abernant AL 33.311000 -87.189800
Abernathy TX 33.850000 -101.861100
Abie NE 41.347900 -96.956300
Abilene KS 38.937100 -97.206300
TX 32.446560 -99.739430
Abingdon IL 40.802300 -90.400900
... ... ... ...
Zelienople PA 40.760900 -80.109400
Zellwood FL 28.719400 -81.576200
Zenda KS 37.437300 -98.287400
WI 42.513600 -88.484300
Zenia CA 40.214700 -123.391100
Zephyr TX 31.669400 -98.818200
Zephyr Cove NV 39.020400 -119.911400
Zephyrhills FL 28.222375 -82.174975
Zieglerville PA 40.290100 -75.503000
Zillah WA 46.415800 -120.266200
Zimmerman MN 45.455300 -93.587900
Zion IL 42.444200 -87.838900
Zion Grove PA 40.914100 -76.193100
Zionhill PA 40.484300 -75.393800
Zionsville IN 39.956100 -86.276700
PA 40.473400 -75.526100
Zionville NC 36.319400 -81.747600
Zirconia NC 35.215300 -82.457400
Zoar OH 40.614200 -81.422300
Zoe KY 37.686700 -83.670200
Zolfo Springs FL 27.480000 -81.742300
Zortman MT 47.769800 -108.592000
Zullinger PA 39.771400 -77.627000
Zumbro Falls MN 44.242700 -92.425600
Zumbrota MN 44.303200 -92.671900
Zuni NM 35.068400 -108.833600
VA 36.843700 -76.811000
Zurich MT 48.584400 -109.030400
Zwingle IA 42.277500 -90.750700
Zwolle LA 31.613800 -93.663600

29545 rows × 2 columns

In [145]:
df_us_places.reset_index(inplace=True)
print(df_us_places.shape)
print(df_us_places.columns)
(29545, 4)
Index(['Place Name', 'State Abbreviation', 'Latitude', 'Longitude'], dtype='object')
In [146]:
df_us_places["Place Name"].value_counts().head()
Out[146]:
Franklin       27
Clinton        26
Madison        26
Washington     26
Springfield    24
Name: Place Name, dtype: int64
In [147]:
# Cross-check
df_us_places[df_us_places['Place Name']=='Franklin'].shape
Out[147]:
(27, 4)
In [148]:
# Mapping
# Map values of Series using input correspondence (a dict, Series, or function).
# Series.map(arg, na_action=None)
df_us_places["isSwiss"] = df_us_places["Place Name"].map(lambda x: any([s in x for s in ["Zurich", "Berne", "Basel", "Lucerne", "Glarus", "Geneva"]]))
df_us_places[df_us_places["isSwiss"]]
Out[148]:
Place Name State Abbreviation Latitude Longitude isSwiss
2096 Berne IN 40.6716 -84.9343 True
2097 Berne NY 42.6108 -74.1466 True
7523 East Berne NY 42.6191 -74.0555 True
9916 Geneva AL 31.0414 -85.8847 True
9917 Geneva FL 28.7503 -81.1114 True
9918 Geneva GA 32.5799 -84.5508 True
9919 Geneva IA 42.6755 -93.1294 True
9920 Geneva ID 42.3136 -111.0722 True
9921 Geneva IL 41.8860 -88.3110 True
9922 Geneva IN 40.6071 -84.9621 True
9923 Geneva MN 43.8235 -93.2671 True
9924 Geneva NE 40.5277 -97.6096 True
9925 Geneva NY 42.8637 -76.9913 True
9926 Geneva OH 41.8029 -80.9474 True
14181 Lake Geneva FL 29.7683 -81.9907 True
14182 Lake Geneva WI 42.5881 -88.4554 True
14253 Lake Zurich IL 42.2165 -88.0769 True
15522 Lucerne CA 39.0783 -122.7846 True
15523 Lucerne CO 40.4824 -104.7054 True
15524 Lucerne IN 40.8614 -86.4077 True
15525 Lucerne MO 40.4382 -93.2867 True
15526 Lucerne Valley CA 34.4470 -116.9189 True
15527 Lucernemines PA 40.5567 -79.1515 True
18544 New Geneva PA 39.7884 -79.9092 True
18547 New Glarus WI 42.8143 -89.6437 True
29542 Zurich MT 48.5844 -109.0304 True

Merging data

In [149]:
df1 = df_us_zip[:5].copy()
df2 = df_us_zip[5:10].copy()
print(df1.head())
print(df2.head())
   Zip Code  Place Name          State State Abbreviation     County  \
0       501  Holtsville       New York                 NY    Suffolk   
1       544  Holtsville       New York                 NY    Suffolk   
2      1001      Agawam  Massachusetts                 MA    Hampden   
3      1002     Amherst  Massachusetts                 MA  Hampshire   
4      1003     Amherst  Massachusetts                 MA  Hampshire   

   Latitude  Longitude  
0   40.8154   -73.0451  
1   40.8154   -73.0451  
2   42.0702   -72.6227  
3   42.3671   -72.4646  
4   42.3919   -72.5248  
   Zip Code   Place Name          State State Abbreviation     County  \
5      1004      Amherst  Massachusetts                 MA  Hampshire   
6      1005        Barre  Massachusetts                 MA  Worcester   
7      1007  Belchertown  Massachusetts                 MA  Hampshire   
8      1008    Blandford  Massachusetts                 MA    Hampden   
9      1009   Bondsville  Massachusetts                 MA    Hampden   

   Latitude  Longitude  
5   42.3845   -72.5132  
6   42.4097   -72.1084  
7   42.2751   -72.4110  
8   42.1829   -72.9361  
9   42.2061   -72.3405  
In [150]:
dfs = [df1,df2]
In [151]:
result = df1.append(df2)
print(result)
   Zip Code   Place Name          State State Abbreviation     County  \
0       501   Holtsville       New York                 NY    Suffolk   
1       544   Holtsville       New York                 NY    Suffolk   
2      1001       Agawam  Massachusetts                 MA    Hampden   
3      1002      Amherst  Massachusetts                 MA  Hampshire   
4      1003      Amherst  Massachusetts                 MA  Hampshire   
5      1004      Amherst  Massachusetts                 MA  Hampshire   
6      1005        Barre  Massachusetts                 MA  Worcester   
7      1007  Belchertown  Massachusetts                 MA  Hampshire   
8      1008    Blandford  Massachusetts                 MA    Hampden   
9      1009   Bondsville  Massachusetts                 MA    Hampden   

   Latitude  Longitude  
0   40.8154   -73.0451  
1   40.8154   -73.0451  
2   42.0702   -72.6227  
3   42.3671   -72.4646  
4   42.3919   -72.5248  
5   42.3845   -72.5132  
6   42.4097   -72.1084  
7   42.2751   -72.4110  
8   42.1829   -72.9361  
9   42.2061   -72.3405  
In [152]:
result = pd.concat(dfs)
print(result)
   Zip Code   Place Name          State State Abbreviation     County  \
0       501   Holtsville       New York                 NY    Suffolk   
1       544   Holtsville       New York                 NY    Suffolk   
2      1001       Agawam  Massachusetts                 MA    Hampden   
3      1002      Amherst  Massachusetts                 MA  Hampshire   
4      1003      Amherst  Massachusetts                 MA  Hampshire   
5      1004      Amherst  Massachusetts                 MA  Hampshire   
6      1005        Barre  Massachusetts                 MA  Worcester   
7      1007  Belchertown  Massachusetts                 MA  Hampshire   
8      1008    Blandford  Massachusetts                 MA    Hampden   
9      1009   Bondsville  Massachusetts                 MA    Hampden   

   Latitude  Longitude  
0   40.8154   -73.0451  
1   40.8154   -73.0451  
2   42.0702   -72.6227  
3   42.3671   -72.4646  
4   42.3919   -72.5248  
5   42.3845   -72.5132  
6   42.4097   -72.1084  
7   42.2751   -72.4110  
8   42.1829   -72.9361  
9   42.2061   -72.3405  
In [153]:
df1 = df_us_zip[['Zip Code','Place Name','State']][:5].copy()
df2 = df_us_zip[['Zip Code','Latitude','Longitude']][3:8].copy()
dfs = [df1,df2]
print(df1)
print(df2)
   Zip Code  Place Name          State
0       501  Holtsville       New York
1       544  Holtsville       New York
2      1001      Agawam  Massachusetts
3      1002     Amherst  Massachusetts
4      1003     Amherst  Massachusetts
   Zip Code  Latitude  Longitude
3      1002   42.3671   -72.4646
4      1003   42.3919   -72.5248
5      1004   42.3845   -72.5132
6      1005   42.4097   -72.1084
7      1007   42.2751   -72.4110
In [154]:
result = pd.concat(dfs,axis=1)
print(result)
   Zip Code  Place Name          State  Zip Code  Latitude  Longitude
0     501.0  Holtsville       New York       NaN       NaN        NaN
1     544.0  Holtsville       New York       NaN       NaN        NaN
2    1001.0      Agawam  Massachusetts       NaN       NaN        NaN
3    1002.0     Amherst  Massachusetts    1002.0   42.3671   -72.4646
4    1003.0     Amherst  Massachusetts    1003.0   42.3919   -72.5248
5       NaN         NaN            NaN    1004.0   42.3845   -72.5132
6       NaN         NaN            NaN    1005.0   42.4097   -72.1084
7       NaN         NaN            NaN    1007.0   42.2751   -72.4110
In [155]:
result = pd.merge(df1,df2,how='inner',on='Zip Code')
print(result)
   Zip Code Place Name          State  Latitude  Longitude
0      1002    Amherst  Massachusetts   42.3671   -72.4646
1      1003    Amherst  Massachusetts   42.3919   -72.5248
In [156]:
result = pd.merge(df1,df2,how='left',on='Zip Code')
print(result)
   Zip Code  Place Name          State  Latitude  Longitude
0       501  Holtsville       New York       NaN        NaN
1       544  Holtsville       New York       NaN        NaN
2      1001      Agawam  Massachusetts       NaN        NaN
3      1002     Amherst  Massachusetts   42.3671   -72.4646
4      1003     Amherst  Massachusetts   42.3919   -72.5248
In [157]:
result = pd.merge(df1,df2,how='right',on='Zip Code')
print(result)
   Zip Code Place Name          State  Latitude  Longitude
0      1002    Amherst  Massachusetts   42.3671   -72.4646
1      1003    Amherst  Massachusetts   42.3919   -72.5248
2      1004        NaN            NaN   42.3845   -72.5132
3      1005        NaN            NaN   42.4097   -72.1084
4      1007        NaN            NaN   42.2751   -72.4110
In [158]:
result = pd.merge(df1,df2,how='outer',on='Zip Code')
print(result)
   Zip Code  Place Name          State  Latitude  Longitude
0       501  Holtsville       New York       NaN        NaN
1       544  Holtsville       New York       NaN        NaN
2      1001      Agawam  Massachusetts       NaN        NaN
3      1002     Amherst  Massachusetts   42.3671   -72.4646
4      1003     Amherst  Massachusetts   42.3919   -72.5248
5      1004         NaN            NaN   42.3845   -72.5132
6      1005         NaN            NaN   42.4097   -72.1084
7      1007         NaN            NaN   42.2751   -72.4110
In [159]:
import pickle
import json
import yaml

Let's define a class Foo().

In [160]:
class Foo():
    def __init__(self):
        self.x = "bar"
In [161]:
# Create object of class Foo() and write to Pickle file
obj = Foo()
with open("example.pkl","wb") as f_o:
    pickle.dump(obj,f_o)
In [162]:
# Show as string
pickle.dumps(obj)
Out[162]:
b'\x80\x03c__main__\nFoo\nq\x00)\x81q\x01}q\x02X\x01\x00\x00\x00xq\x03X\x03\x00\x00\x00barq\x04sb.'
In [163]:
# Read from Pickle file
with open("example.pkl","rb") as f_i:
    new_obj = pickle.load(f_i)
print(new_obj.x)
bar
In [164]:
# Create a dictionary and write to JSON file
entry = {"1" : "Hello", "2" : "Bye", "3" : 4.35}
with open("example.json","w") as f_o:
    json.dump(entry,f_o)
In [165]:
# Show as string
json.dumps(entry)
Out[165]:
'{"1": "Hello", "2": "Bye", "3": 4.35}'
In [166]:
# Read from JSON file
with open("example.json","r") as f_i:
    new_entry = json.load(f_i)
print(new_entry)
{'1': 'Hello', '2': 'Bye', '3': 4.35}
In [167]:
# Create a dictionary and write to YAML file
data = {
    'first_data':[1,2,3,4,5],
    'second_data':'Just a string.',
    'third_data': dict(a=1.1,b=1.2,c=1.3),
}
with open('example.yaml','w') as f_o :
    yaml.dump(data,f_o,default_flow_style=False)
In [168]:
# Read from YAML file
with open('example.yaml','r') as f_i:
    new_data = yaml.load(f_i)
print(new_data)
print(new_data['third_data']['a'])
{'first_data': [1, 2, 3, 4, 5], 'second_data': 'Just a string.', 'third_data': {'a': 1.1, 'b': 1.2, 'c': 1.3}}
1.1
/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/ipykernel_launcher.py:3: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for full details.
  This is separate from the ipykernel package so we can avoid doing imports until

sqlite3

In [169]:
import sqlite3 as sql
!cp Solar_bkup.db Solar.db
In [170]:
conn = sql.connect("Solar.db")
In [171]:
results = conn.execute("SELECT * FROM solarsystem")
In [172]:
for row in results:
    print(row)
(0, 'Sun', 332946.0, 0.00213, -0.0016, -0.00011999999999999999, 5.01e-06, 4.08e-06, -1.24e-07)
(1, 'Mercury', 0.055273525999999996, 0.162, 0.264, 0.006940000000000001, -0.0297, 0.0156, 0.004)
(2, 'Venus', 0.814997513, 0.302, 0.654, -0.008440000000000001, -0.0185, 0.008320000000000001, 0.00118)
(3, 'Earth', 1.0, 0.5660000000000001, -0.846, -9.120000000000001e-05, 0.014, 0.00949, -5.81e-07)
(4, 'Mars', 0.107446849, -0.434, -1.43, -0.0193, 0.0139, -0.00288, -0.00040199999999999996)
(5, 'Jupiter', 317.828133, -2.78, 4.47, 0.0435, -0.0065, -0.0036200000000000004, 0.000161)
(6, 'Saturn', 95.1609041, -6.08, -7.84, 0.37799999999999995, 0.0041, -0.00343, -0.00010400000000000001)
(7, 'Uranus', 14.5357566, 19.5, 4.68, -0.235, -0.0009480000000000001, 0.00364, 2.58e-05)
(8, 'Neptune', 17.147000000000002, 27.3, -12.3, -0.377, 0.0012699999999999999, 0.00288, -8.85e-05)
(9, 'Pluto', 0.002191, 6.91, -31.9, 1.42, 0.00314, 3.0799999999999996e-05, -0.000918)
(10, 'Halley', 3.68e-11, -20.5, 25.1, -9.76, -7.709999999999999e-05, 0.0009539999999999999, -0.00017900000000000001)
(11, 'Moon', 0.0123031, 0.564, -0.8440000000000001, -0.000323, 0.0136, 0.009179999999999999, 8.97e-06)
In [173]:
conn.execute("DELETE FROM solarsystem WHERE name='Pluto'")
conn.commit()
In [174]:
results = conn.execute("SELECT * FROM solarsystem")
for row in results:
    print(row)
(0, 'Sun', 332946.0, 0.00213, -0.0016, -0.00011999999999999999, 5.01e-06, 4.08e-06, -1.24e-07)
(1, 'Mercury', 0.055273525999999996, 0.162, 0.264, 0.006940000000000001, -0.0297, 0.0156, 0.004)
(2, 'Venus', 0.814997513, 0.302, 0.654, -0.008440000000000001, -0.0185, 0.008320000000000001, 0.00118)
(3, 'Earth', 1.0, 0.5660000000000001, -0.846, -9.120000000000001e-05, 0.014, 0.00949, -5.81e-07)
(4, 'Mars', 0.107446849, -0.434, -1.43, -0.0193, 0.0139, -0.00288, -0.00040199999999999996)
(5, 'Jupiter', 317.828133, -2.78, 4.47, 0.0435, -0.0065, -0.0036200000000000004, 0.000161)
(6, 'Saturn', 95.1609041, -6.08, -7.84, 0.37799999999999995, 0.0041, -0.00343, -0.00010400000000000001)
(7, 'Uranus', 14.5357566, 19.5, 4.68, -0.235, -0.0009480000000000001, 0.00364, 2.58e-05)
(8, 'Neptune', 17.147000000000002, 27.3, -12.3, -0.377, 0.0012699999999999999, 0.00288, -8.85e-05)
(10, 'Halley', 3.68e-11, -20.5, 25.1, -9.76, -7.709999999999999e-05, 0.0009539999999999999, -0.00017900000000000001)
(11, 'Moon', 0.0123031, 0.564, -0.8440000000000001, -0.000323, 0.0136, 0.009179999999999999, 8.97e-06)
In [175]:
death_star = [12,'Death Star',0.1,0.564,-0.845,-9.12e-05,0.014,0.00949,-5.81e-07]
conn.execute("INSERT INTO solarsystem VALUES (?,?,?,?,?,?,?,?,?)",death_star)
Out[175]:
<sqlite3.Cursor at 0x7fb050bba810>
In [176]:
results = conn.execute("SELECT * FROM solarsystem")
for row in results:
    print(row)
(0, 'Sun', 332946.0, 0.00213, -0.0016, -0.00011999999999999999, 5.01e-06, 4.08e-06, -1.24e-07)
(1, 'Mercury', 0.055273525999999996, 0.162, 0.264, 0.006940000000000001, -0.0297, 0.0156, 0.004)
(2, 'Venus', 0.814997513, 0.302, 0.654, -0.008440000000000001, -0.0185, 0.008320000000000001, 0.00118)
(3, 'Earth', 1.0, 0.5660000000000001, -0.846, -9.120000000000001e-05, 0.014, 0.00949, -5.81e-07)
(4, 'Mars', 0.107446849, -0.434, -1.43, -0.0193, 0.0139, -0.00288, -0.00040199999999999996)
(5, 'Jupiter', 317.828133, -2.78, 4.47, 0.0435, -0.0065, -0.0036200000000000004, 0.000161)
(6, 'Saturn', 95.1609041, -6.08, -7.84, 0.37799999999999995, 0.0041, -0.00343, -0.00010400000000000001)
(7, 'Uranus', 14.5357566, 19.5, 4.68, -0.235, -0.0009480000000000001, 0.00364, 2.58e-05)
(8, 'Neptune', 17.147000000000002, 27.3, -12.3, -0.377, 0.0012699999999999999, 0.00288, -8.85e-05)
(10, 'Halley', 3.68e-11, -20.5, 25.1, -9.76, -7.709999999999999e-05, 0.0009539999999999999, -0.00017900000000000001)
(11, 'Moon', 0.0123031, 0.564, -0.8440000000000001, -0.000323, 0.0136, 0.009179999999999999, 8.97e-06)
(12, 'Death Star', 0.1, 0.564, -0.845, -9.12e-05, 0.014, 0.00949, -5.81e-07)
In [177]:
more_death_stars = list()
for i in range(10):
    death_star[0] +=1
    death_star[1]  = "Death Star "+str(i)
    more_death_stars.append(death_star.copy())
In [178]:
conn.executemany("INSERT INTO solarsystem VALUES (?,?,?,?,?,?,?,?,?)",more_death_stars)
Out[178]:
<sqlite3.Cursor at 0x7fb050bba180>
In [179]:
conn.commit()
In [180]:
def dict_factory(cursor, row):
    d = {}
    for idx,col in enumerate(cursor.description):
        d[col[0]] = row[idx]
    return d
conn.row_factory = dict_factory
In [181]:
max_mass = 1.0
results = conn.execute("SELECT name,mass FROM solarsystem WHERE mass<?",[max_mass])
for row in results:
    print(row)
{'name': 'Mercury', 'mass': 0.055273525999999996}
{'name': 'Venus', 'mass': 0.814997513}
{'name': 'Mars', 'mass': 0.107446849}
{'name': 'Halley', 'mass': 3.68e-11}
{'name': 'Moon', 'mass': 0.0123031}
{'name': 'Death Star', 'mass': 0.1}
{'name': 'Death Star 0', 'mass': 0.1}
{'name': 'Death Star 1', 'mass': 0.1}
{'name': 'Death Star 2', 'mass': 0.1}
{'name': 'Death Star 3', 'mass': 0.1}
{'name': 'Death Star 4', 'mass': 0.1}
{'name': 'Death Star 5', 'mass': 0.1}
{'name': 'Death Star 6', 'mass': 0.1}
{'name': 'Death Star 7', 'mass': 0.1}
{'name': 'Death Star 8', 'mass': 0.1}
{'name': 'Death Star 9', 'mass': 0.1}
In [182]:
results = conn.execute("SELECT AVG(mass) as mean_mass, COUNT(*) as n, mass>1.0 as larger_than_earth "+
                       "FROM solarsystem WHERE mass<>1.0 GROUP BY mass<1.0")
for row in results:
    print(row)
{'mean_mass': 66678.13435873999, 'n': 5, 'larger_than_earth': 1}
{'mean_mass': 0.13062631175230005, 'n': 16, 'larger_than_earth': 0}

MongoDB

You need to install MongoDB and start the server with mongod in your terminal

In [184]:
import pymongo
In [185]:
# Connecting to the server, localhost and 27017 as port would be default arguments
client = pymongo.MongoClient("localhost",27017)
# Get the database (if not existing it will be created)
db = client["tweets"]
# Get the collection (if not existing it will be created)
collection = db["uzh"]
In [186]:
print(collection)
Collection(Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'tweets'), 'uzh')
In [187]:
with open("uzh.json","r") as f_i:
    tweets = json.load(f_i)
In [188]:
print(tweets)
[{'fullname': 'Monica Oliveira', 'timestamp': '2017-08-18 00:06:36', 'text': 'Today miss @UZH my ALMA MATER and unfortunately stucked with the ALMA "STEP" MATER @YOU_KNOW_WHO life is a bitch', 'id': '898335281660612608', 'user': 'RVO_Monica'}, {'fullname': 'Serviceworks', 'timestamp': '2017-08-10 13:54:55', 'text': 'New survey by @LJMU @BIFM_UK & @UZH shows that 83 per cent of FMs believe BIM can add value to FM http://www.fm-world.co.uk/news/eighty-three-per-cent-of-fms-believe-bim-will-support-delivery-of-fm/\xa0… #BIM #FacManpic.twitter.com/G0AJDBUw9e', 'id': '895644634004770817', 'user': 'Service_Works'}, {'fullname': 'Wissenschaftsjahr', 'timestamp': '2017-06-29 09:44:01', 'text': 'Marine #Megafauna um ein Drittel reduziert - bisher unbekanntes #Artensterben im #Pliozän https://www.wissenschaftsjahr.de/2016-17/aktuelles/alle-aktuellen-meldungen/juni-2017/artensterben-im-pliozaen.html\xa0… @uzh', 'id': '880361200810430465', 'user': 'w_jahr'}, {'fullname': 'PlantSoilC@UZH', 'timestamp': '2017-06-22 08:42:12', 'text': 'After sampling in the field, analyzing #soil samples, field-lab class @UZH #laegern @nadiahueberpic.twitter.com/wGwPmreUbV', 'id': '877808929899663360', 'user': 'SoilPlantC_UZH'}, {'fullname': 'Seismo Verlag', 'timestamp': '2017-06-22 08:37:26', 'text': 'Before meet us at the bookstall @uzh and have a look at the special issue «Art, Work and (De-)regulation» of the Swiss Journal of #Sociologyhttps://twitter.com/Foko_Kukuso/status/877803257095172096\xa0…', 'id': '877807729233895425', 'user': 'SeismoVerlag'}, {'fullname': 'Seismo Verlag', 'timestamp': '2017-06-22 07:09:15', 'text': 'Unser Büchertisch am SGS-Kongress 2017. Wir freuen uns über Besuch im Lichthof @uzh @Foko_Kukusopic.twitter.com/73SCA7YAcv', 'id': '877785538706591744', 'user': 'SeismoVerlag'}, {'fullname': 'Roger Stupf', 'timestamp': '2017-05-31 11:02:24', 'text': 'Content an Suchverhalten anpassen: wird gesucht, was man produziert? Ja, was sucht Ihr denn an der @uzh ? #DiMaUZH', 'id': '869871680080019456', 'user': 'rogerstupf'}, {'fullname': 'Roger Stupf', 'timestamp': '2017-05-31 10:44:44', 'text': 'Gratulation @lukasmaeder ! Die halbe Maeder Familiy fand ihren Weg über die KOM-Abteilung der @uzh zum Journalismus :-) @phmaederhttps://twitter.com/persoenlichcom/status/869568991496474625\xa0…', 'id': '869867233069199360', 'user': 'rogerstupf'}, {'fullname': 'Ernst Hafen', 'timestamp': '2017-05-03 20:49:04', 'text': '.@ETH_DBIOL Buchklub: 2.-Sem Studierende diskutieren mit @uzh Autor Andreas Wagner sein Buch Arrival of The Fittest pic.twitter.com/rxqAhw855T', 'id': '859872460300333056', 'user': 'ehafen'}, {'fullname': 'HSGProfessional', 'timestamp': '2017-04-27 08:11:01', 'text': 'Heute startet die 4-teilige öff. #HSG-Vorlesung #Kulturgeschichte #Äthiopien mit Dr. Hodel-Hoenes (@UZH) http://bit.ly/2o30FSh\xa0', 'id': '857507361040347136', 'user': 'HSGProfessional'}, {'fullname': 'HSGProfessional', 'timestamp': '2017-04-25 07:04:00', 'text': 'Heute startet die 5-teilige öff. #HSG-Vorlesung #Kulturgeschichte «Japan-Schweiz» mit Prof. Patrik Ziltener (@UZH) http://bit.ly/2o30FSh\xa0', 'id': '856765722990714881', 'user': 'HSGProfessional'}, {'fullname': 'Noé Tondeur', 'timestamp': '2017-04-19 14:32:53', 'text': '.@START_Global #startblockchaingathering Hashtag zu Event Blockchain Gathering @UZH', 'id': '854704358688272384', 'user': 'tondeurconsult'}, {'fullname': 'campaignfit', 'timestamp': '2017-04-18 08:17:38', 'text': '#fantastic #customer #recommendation @uzh @unizh #uzh #university #zurich #campaignfit #phd workshops #leadership #phd #innovation #projectspic.twitter.com/rPMHhfmPkd', 'id': '854247536202272772', 'user': 'campaignfitGmbH'}, {'fullname': 'Advance Women CH', 'timestamp': '2017-03-24 08:30:18', 'text': 'World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/L4t1rcG51t', 'id': '845191028164349952', 'user': 'AdvanceWomenCH'}, {'fullname': 'Advance Women CH', 'timestamp': '2017-03-24 08:10:07', 'text': 'World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/MPolIV7hTE', 'id': '845185946702135297', 'user': 'AdvanceWomenCH'}, {'fullname': 'Advance Women CH', 'timestamp': '2017-03-24 08:00:42', 'text': 'World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/NmxNHu72AP', 'id': '845183578342252545', 'user': 'AdvanceWomenCH'}, {'fullname': 'CH Gesundheitstage', 'timestamp': '2017-03-10 06:53:40', 'text': 'Die @uzh & @ETH lädt ein zur Woche des #Gehirns vom 13.-18. März in #Zürich. #BrainFair http://bit.ly/2m4sU2m\xa0', 'id': '840093277248339970', 'user': 'CheckschEs'}, {'fullname': 'UZH Alumni', 'timestamp': '2017-03-06 16:00:53', 'text': 'Gender equality still 100 years away? Panel 8.3. @UZH\nhttp://bit.ly/2lTzJmH\xa0\n#genderequalityCH!pic.twitter.com/7fnbrsXDf1', 'id': '838781439017631752', 'user': 'alumniuzh'}, {'fullname': 'Studienberatung ZH', 'timestamp': '2017-02-15 09:38:45', 'text': 'Frauke Berndt, Prof. für Neuere deutsche Literatur @uzh äussert sich zum Wert der Germanistik https://www.nzz.ch/feuilleton/germanistik-hier-wird-an-der-zukunft-gearbeitet-ld.145207\xa0… via @NZZ', 'id': '831799901440901120', 'user': 'StudienwahlZH'}, {'fullname': 'Oliver Flueckiger', 'timestamp': '2016-12-15 22:05:40', 'text': 'xmas @uzh http://ift.tt/2h5P9lq\xa0pic.twitter.com/Su3flwHWAm', 'id': '809519821050286080', 'user': 'oliverflueckige'}, {'fullname': 'Alexander Hasgall', 'timestamp': '2016-12-15 15:55:33', 'text': 'Heute Abend an der Buchpräsentation:  «Research Assessment in the Humanities Towards Criteria and Procedures» @uzh http://www.chess.uzh.ch/de.html\xa0', 'id': '809426680389451776', 'user': 'AHasgall'}, {'fullname': 'Advalue', 'timestamp': '2016-12-09 14:32:16', 'text': 'Spannendes Video über eine tolle Forscherin! Auch sie hat mal von einem #Erasmus Stipendium profitiert!http://bit.ly/2h5c7Mq\xa0 @UZH @sgenner', 'id': '807231392493043713', 'user': 'AdValueCH'}, {'fullname': 'Alessandro Blasimme', 'timestamp': '2016-12-09 07:19:11', 'text': 'Very good summary of our event on #digitalhealth held in #Zurich last week. @uzh #digitalethics http://www.news.uzh.ch/en/articles/2016/digital-health.html\xa0…pic.twitter.com/5FLzcdrTjy', 'id': '807122406074675200', 'user': 'a_blasimme'}, {'fullname': 'Ernst Hafen', 'timestamp': '2016-12-06 12:23:17', 'text': 'Medizin am Wendepunkt @uzh Symposium von @EffyVayena http://www.news.uzh.ch/de/articles/2016/digital-health.html\xa0… @midata_coop #datendemokratie #genossenschaft #rechtaufkopie', 'id': '806111771241185280', 'user': 'ehafen'}, {'fullname': 'Johanna Burger', 'timestamp': '2016-11-29 11:18:56', 'text': 'Today @uzh: panel with Didier Burkhalter - displacement the global challenge of the 21st century? pic.twitter.com/z7Q0l71YdP', 'id': '803558859478548481', 'user': 'jo_bu1'}, {'fullname': 'PlantSoilC@UZH', 'timestamp': '2016-11-25 16:42:59', 'text': 'Last Wednesday, working session about biochar & Soil in Swiss context @UZH. Experts meet policy makers. pic.twitter.com/9Oir3vQLre', 'id': '802190857579495424', 'user': 'SoilPlantC_UZH'}, {'fullname': 'Beat Glogger', 'timestamp': '2016-10-28 13:53:32', 'text': 'Die Universität Zürich @UZH schätzt unsere Arbeit. Danke! https://twitter.com/UZH_Science/status/792000271895392256\xa0…', 'id': '792001354101297156', 'user': 'BeatGlogger'}, {'fullname': 'Martina Wernli', 'timestamp': '2016-10-27 20:20:21', 'text': 'Campus-Zeitung @UZH Journal, 5. Oktober 2016 publiziert doch tatsächlich einen solchen Artikel (S. 16): pic.twitter.com/AjmrvFvfUw', 'id': '791736311224868864', 'user': 'martina_wernli'}, {'fullname': 'Ernst Hafen', 'timestamp': '2016-10-14 14:15:11', 'text': 'Daniel Wyler and Michael Hengartner of @uzh initiated Citizen Science in Zürich Congrats ;-) http://www.citizenscience.ch\xa0', 'id': '786933372442599424', 'user': 'ehafen'}, {'fullname': 'Mary Ruberry', 'timestamp': '2016-10-04 19:16:16', 'text': 'Developing #Brain Regions in #Children Hardest Hit by #SleepDeprivation @UZH #neuroscience #pediatricshttp://neurosciencenews.com/sleep-deprivation-neurodevelopment-5198/\xa0…', 'id': '783385263426994176', 'user': 'MaryRuberry'}, {'fullname': 'IMSD Switzerland', 'timestamp': '2016-09-28 16:45:07', 'text': 'Just now: Talk von Prof. Strobl @uzh: Wichtigkeit einer überlegten Gewichtung, wenn unterschiedliche Merkmale verfügbar sind.', 'id': '781172901752037376', 'user': 'IMSD_Analytics'}, {'fullname': 'SNF', 'timestamp': '2016-09-28 12:15:03', 'text': 'Horizonte | Waldbetrachtung aus der Ferne zeigt Vielfalt im Detail http://www.snf.ch/de/fokusForschung/newsroom/Seiten/news-160928-horizonte-vielfalt-wird-aus-der-ferne-sichtbar.aspx\xa0… @uzh @m_schaepman #lidarpic.twitter.com/ui6acVkIBj', 'id': '781104936037736448', 'user': 'snf_ch'}, {'fullname': 'Monika Dommann', 'timestamp': '2016-09-19 09:06:02', 'text': '#Churchill in der Aula der @UZH, auf der Hut! Gross, Jakob Tanner heute in der  @NZZ !http://www.nzz.ch/meinung/kommentare/churchill-in-zuerich-ein-sehr-erfreulicher-besuch-ld.117215\xa0…', 'id': '777795878878842880', 'user': 'Modo_2015'}, {'fullname': 'Timothy James Hurst', 'timestamp': '2016-09-09 10:32:08', 'text': 'LISA Symposium XI @UZH, Zurich Live Stream https://youtu.be/HjYmiJrIPG8\xa0 via @YouTube', 'id': '774193666613182464', 'user': 'Timothy007A'}, {'fullname': 'Olivia Kühni', 'timestamp': '2016-08-24 07:25:50', 'text': 'Typischer Fall von "Korporatismus": @UZH-Forscher zerlegen den Mythos des Superinnovators Swatch. #goodjournalism\nhttp://www.ccrs.uzh.ch/dam/jcr:5b99146b-e64c-4ae3-b324-d9cc5c17f8e6/2016.06.%20When%20corporatism%20leads%20to%20corporate%20governance%20failure.pdf\xa0…', 'id': '768348577517174789', 'user': 'o_kuehni'}, {'fullname': 'UZH PhF DLF', 'timestamp': '2016-07-29 09:42:14', 'text': '#DLF Blogpost zur #Internet #Ökonomie: #Konflikt zwischen gratis vs. bezahlen & wie man sich dazu verhält http://www.phil.uzh.ch/elearning/blog/blog/2016/07/29/zur-oekonomie-des-internets/\xa0… @UZH', 'id': '758960819929358336', 'user': 'UZHphilDLF'}, {'fullname': 'ICTswitzerland', 'timestamp': '2016-07-02 07:38:07', 'text': 'http://www.inside-it.ch/articles/44355\xa0 CH Unternehmen, Forschung, Innovation, mehr Start-ups  @cebit 2017 @ETH @EPFL @uzh @RuediNoser @HofSwitzerland', 'id': '749145111590793216', 'user': 'ICTswitzerland'}, {'fullname': 'CUSO Competences', 'timestamp': '2016-06-16 12:06:24', 'text': 'Bringing research to the public @uzh graduate campus http://www.manifesta11.uzh.ch/en.html\xa0', 'id': '743414419384832000', 'user': 'cuso_skills'}, {'fullname': 'ITSL', 'timestamp': '2016-06-07 12:52:18', 'text': 'Heute 16:15 Uhr ITSL @UZH: Dynamic Pricing aus ökonomischer und juristischer Perspektive. Mit dabei: Vertreter von @brack und @FlySWISS.', 'id': '740164479653154816', 'user': 'itsl_uzh'}, {'fullname': 'Seismo Verlag', 'timestamp': '2016-06-03 10:36:13', 'text': 'Gerontologisches Vertiefungsseminar zu #Generationenbeziehungen @uzh mit François Höpflinger, Hrsg. #AgeReporthttps://twitter.com/intergenerativ/status/735757394907521025\xa0…', 'id': '738680681425952769', 'user': 'SeismoVerlag'}, {'fullname': 'ZurichmeetsHongKong', 'timestamp': '2016-05-19 08:02:03', 'text': 'Financial Market Regulation: Exploring the Impact of MiFID II , todays lecture @IALS_law starting 6pm @uzh pic.twitter.com/0z1d2lwQ9c', 'id': '733206065823797250', 'user': 'zurichmeets'}, {'fullname': 'Christine A. Jossen', 'timestamp': '2016-05-18 21:14:52', 'text': 'Enjoy it @uzh https://twitter.com/uzh_news/status/732963651674497025\xa0…', 'id': '733043198717788161', 'user': 'CJossen'}, {'fullname': 'FuturICT', 'timestamp': '2016-05-05 20:49:51', 'text': 'Center for Information Technology, Society, and Law (ITSL) established at @UZH\nhttp://www.itsl.uzh.ch/en.html\xa0', 'id': '728325861015998464', 'user': 'FuturICT'}, {'fullname': 'Barbara Flueckiger', 'timestamp': '2016-04-30 08:32:12', 'text': '#diesacademicus @uzh Schneider-Ammann Abstriche in Bildung und Forschung, dennoch mit innovativen Lösungen Spitze bleiben?', 'id': '726328284838027265', 'user': 'flueko'}, {'fullname': 'Barbara Flueckiger', 'timestamp': '2016-04-30 08:23:49', 'text': "#diesacademicus @uzh Schneider-Ammann #Horizon2020 #digitization most important challenges in 2016. Yes, Mr. President, I'm there!", 'id': '726326175107264512', 'user': 'flueko'}, {'fullname': 'andiba', 'timestamp': '2016-04-25 06:44:28', 'text': 'Rechtzeitig zum #Wintercomeback: @UZH #Irchel #Seldwyla !!pic.twitter.com/w0hO4Ov4T8', 'id': '724489233856122881', 'user': 'andiba'}, {'fullname': 'Josef Stocker', 'timestamp': '2016-04-22 09:43:25', 'text': '.@uzh bekennt sich in der Drittmittelfrage zur Transparenz #highered #Bildunghttp://www.tagesanzeiger.ch/zuerich/stadt/Uni-schafft-Transparenz/story/20397751#mostPopularComment\xa0…', 'id': '723447105449287681', 'user': 'josef_stocker'}, {'fullname': 'HerbertMariaKoch', 'timestamp': '2016-04-21 16:41:22', 'text': 'Free of charge consultancy offered to three #Swiss #startups at todays Business Ideas @UZH event - contact us pic.twitter.com/axELRYD5Gk', 'id': '723189896115007488', 'user': 'HerbertMKoch'}, {'fullname': 'HerbertMariaKoch', 'timestamp': '2016-04-20 16:47:01', 'text': 'Dr. Gerhard #Schröder, former #German chancellor speaks tonight at @UZH about "Politic in uncertain times" pic.twitter.com/11IeCAQzVz', 'id': '722828931339063296', 'user': 'HerbertMKoch'}, {'fullname': 'Barbara Flueckiger', 'timestamp': '2016-04-14 15:15:05', 'text': '#AdG2015 https://erc.europa.eu/sites/default/files/document/file/erc_2015_adg_statistics.pdf\xa0… how about @uzh and humanities?', 'id': '720631467953516544', 'user': 'flueko'}, {'fullname': 'HerbertMariaKoch', 'timestamp': '2016-04-13 16:58:30', 'text': 'Thanks to Prof #Moloney #LSE for todays law conference at @uzh Regulating Investment Advice in the UK : the Retail Distribution Review #RDR', 'id': '720295108420067328', 'user': 'HerbertMKoch'}, {'fullname': 'UZH PhF DLF', 'timestamp': '2016-04-12 06:33:27', 'text': 'Post über die neue #Oralität durch #TTS und #STT Technologie von Christian Schorno auf dem #DLF Blog @UZH http://www.phil.uzh.ch/elearning/blog/blog/2016/04/11/hin-und-zurueck-text-to-speach-und-speach-to-text/\xa0…', 'id': '719775420598657024', 'user': 'UZHphilDLF'}, {'fullname': 'SNF', 'timestamp': '2016-04-04 07:00:04', 'text': 'Horizonte | #Sonne, Wurst, Zigaretten: Wie die @WHO über #Krebsrisiken kommuniziert http://www.snf.ch/de/fokusForschung/newsroom/Seiten/news-160404-horizonte-warnungen-verwirren-die-konsumenten.aspx\xa0… @uzh @eth', 'id': '716883013104046080', 'user': 'snf_ch'}, {'fullname': 'FNS', 'timestamp': '2016-04-04 07:00:04', 'text': 'Horizons | Soleil, #saucisses et cigarettes: comment l’#OMS communique les risques de #cancer http://www.snf.ch/fr/pointrecherche/newsroom/Pages/news-160404-horizons-des-mises-en-garde-deconcertantes.aspx\xa0… @eth @uzh', 'id': '716883013078949888', 'user': 'fns_ch'}, {'fullname': 'Seismo Verlag', 'timestamp': '2016-03-31 11:58:54', 'text': 'Wie sieht es aus mit der Betreuung von #DoktorandInnen an Schweizer Universitäten? @uzh @unifr @IRS_SDS @unil @UNIGEhttps://twitter.com/GdnHigherEd/status/715479271037210626\xa0…', 'id': '715508668628860928', 'user': 'SeismoVerlag'}, {'fullname': 'Evelyne Schmid', 'timestamp': '2016-03-21 20:20:35', 'text': 'Great human rights symposium 15-16 April @UZH with @esil_sedi Daniel Moeckli http://www.ivr.uzh.ch/institutsmitglieder/moeckli/ESILSymposium.html\xa0…', 'id': '712011041891201024', 'user': 'SchmidEvelyne'}, {'fullname': 'Rafael Mörgeli', 'timestamp': '2016-03-21 18:32:42', 'text': '"Nur schon weil die EU Kriege unter den Mitgliedstaaten verhindert, lohnt es sich für sie zu kämpfen"Gysi jetzt @UZH pic.twitter.com/2bObRSoala', 'id': '711983892480311297', 'user': 'RafaelMoergeli'}, {'fullname': 'Genc Mazlami', 'timestamp': '2016-03-13 09:07:36', 'text': 'Good luck to you and the whole @csg @uzh team! https://twitter.com/a_d_c_/status/708896716305637377\xa0…', 'id': '708942577177911296', 'user': 'gmazlami'}, {'fullname': 'Peter von Rohr', 'timestamp': '2016-03-07 19:02:04', 'text': 'Thanks @fgcz and @illumina for a great user meeting @UZH Irchel Campus', 'id': '706917853308575745', 'user': 'agi0917'}, {'fullname': 'LS2 Switzerland', 'timestamp': '2016-03-07 10:14:14', 'text': 'Tonight Anita Rauch (Inst. of Medical Genetics) @UZH talks about the impact of genetics on diseases @SRF chat 21.05https://twitter.com/uzh_news/status/706774191555616768\xa0…', 'id': '706785017670799360', 'user': 'LS2Switzerland'}, {'fullname': 'Mischa Gallati', 'timestamp': '2016-03-06 19:57:29', 'text': 'Echos zu unserem Oltner Seminar isek @uzh #populäre_kulturen Zürcher Studenten analysieren die Stadt Oltenhttp://www.oltnertagblatt.ch/solothurn/olten/zuercher-studenten-analysieren-die-stadt-olten-130104284\xa0…', 'id': '706569408324489216', 'user': 'mischa_gallati'}, {'fullname': 'Stadtbibliothekar', 'timestamp': '2016-01-11 13:21:27', 'text': 'http://www.uzh.ch/news/articles/2016/grammatikalische-entkrampfung.html\xa0…. spannendes aus der dt. Sprachwissenschaft @uzh: es lebe die Varianz :-)', 'id': '686538413688930305', 'user': 'bibliothekensh'}, {'fullname': 'Shady Boom', 'timestamp': '2016-01-06 20:24:00', 'text': "oh @UZH..., wieso machschs du mir so eifach, dich nöd ernscht z'näh...?! #Rundschau", 'id': '684832811174486017', 'user': 'ShadyBoom'}, {'fullname': 'Turm der Sinne', 'timestamp': '2015-12-22 07:13:38', 'text': 'Mitgefühl für Fremde kann man lernen http://ow.ly/Wda7E\xa0 @uzh-news @idw_online_de', 'id': '679198093120806912', 'user': 'turmdersinne'}, {'fullname': 'JUNES', 'timestamp': '2015-12-06 10:45:53', 'text': 'Tomorrow @UZH the panel discussion Building Blocks of Peace: Cyprus and Beyond takes place! Our last guest to be... http://fb.me/6ZOJgnipY\xa0', 'id': '673453298926645248', 'user': 'junes_ch'}, {'fullname': 'ETH Zürich', 'timestamp': '2015-12-03 16:16:55', 'text': 'Forscher von @eth und @uzh erklären Weltraummission #LISAPathfinder. #ETHinSpace @srfnewshttp://ow.ly/Vqucz\xa0', 'id': '672449442642051072', 'user': 'ETH'}, {'fullname': 'LS2 Switzerland', 'timestamp': '2015-11-12 14:04:48', 'text': 'Foto exhibition @UZH celebrating the Year of Light 2015  https://twitter.com/uzh_news/status/664797834999422976\xa0…', 'id': '664806050546233344', 'user': 'LS2Switzerland'}, {'fullname': 'GirlsDrive', 'timestamp': '2015-11-12 07:59:57', 'text': 'HE FOR SHE @UZH 20:15 Uhr im KOL-K-3/4 Auf unserer Bühne nehmen erfolgreiche Businessmänner Platz #LNdK #UZHpic.twitter.com/hxvQUxw5No', 'id': '664714231741325314', 'user': 'GirlswithDrive'}, {'fullname': 'Promega AG', 'timestamp': '2015-11-06 08:34:24', 'text': "How to authenticate cell lines: today's joint seminar with Microsynth at Cancer network @UZH http://ow.ly/UjKth\xa0pic.twitter.com/cAGD6UOVoS", 'id': '662548574195097601', 'user': 'PromegaAG'}, {'fullname': 'Mischa Gallati', 'timestamp': '2015-10-28 12:36:05', 'text': 'Wir haben Bücher gemacht! ISEK-Slam mit P.Büttner, M.Gallati, U.Holfelder, J.Müske u.a. @UZH, KO2-F-172, 4.11.15 18.30 #europeanethnology', 'id': '659347906487537664', 'user': 'mischa_gallati'}, {'fullname': 'Muriel Staub', 'timestamp': '2015-10-13 15:38:26', 'text': 'Für alle Kurzentschlossenen: Heute Abend @uzh öffentliche Veranstaltung zum Thema "Recht auf #Privacy & #Vergessen" http://www.menschenrechte.uzh.ch/veranstaltungen.html\xa0…', 'id': '653957978673049600', 'user': 'MurielStaub'}, {'fullname': 'Altermatt Lab', 'timestamp': '2015-09-26 17:28:05', 'text': 'Field excursion as part of the #Limnoecology course @EawagResearch @UZH @ETH to the river #Sense, Western Switzerlandpic.twitter.com/dEdVZUXKmm', 'id': '647824978126184448', 'user': 'altermatt_lab'}, {'fullname': 'KOF', 'timestamp': '2015-09-23 08:35:42', 'text': 'Tomorrow Chad Bown, World Bank: Global Supply Chains & Trade Policy @KOFETH @uzh Internat. Economic Policy Seminar http://www.kof.ethz.ch/de/veranstaltungen/d/313/\xa0…', 'id': '646603834849132544', 'user': 'KOFETH'}, {'fullname': 'FuturICT', 'timestamp': '2015-09-17 16:06:42', 'text': 'The #NudgingSociety. A model for Switzerland? Listen to Richard Thaler at the @UZH in 20 minutes', 'id': '644543006595502080', 'user': 'FuturICT'}, {'fullname': 'Daniel Kalt', 'timestamp': '2015-09-17 11:56:25', 'text': 'RT @ubscenter: Tonight 6.30pm @UZH: You think you’re clever? Get ready to change the way you think about economics pic.twitter.com/rL1bScakw2', 'id': '644480022066163712', 'user': 'daniel_kalt'}, {'fullname': 'UBS Center', 'timestamp': '2015-09-17 11:11:19', 'text': 'Tonight 6.30pm @UZH: You think you’re clever? Get ready to change the way you think about economics @R_Thalerpic.twitter.com/GSatiIVJix', 'id': '644468671700713472', 'user': 'ubscenter'}, {'fullname': 'Science Xplore', 'timestamp': '2015-09-09 15:10:59', 'text': 'Tales of Larks and Owls: Do your genes tell you when to wake up? trending at #artlab #viseu Prof.Steven Brown @uzh pic.twitter.com/oprY4GvESf', 'id': '641629880787030016', 'user': 'science_xplore'}, {'fullname': 'Projekt Neptun', 'timestamp': '2015-09-08 07:24:50', 'text': 'Getting ready for the First-Year-Students event (Erstsemestrigentage) @UZH / Lichthof. Stop by, play with the... http://fb.me/6IU5V51t8\xa0', 'id': '641150183779246080', 'user': 'ProjektNeptun'}, {'fullname': 'FuturICT', 'timestamp': '2015-09-06 12:30:30', 'text': '.@ReneAlgesheimer bei der #Scientifica : Moderne Wissenschaftler sind Datendetektive @eth @uzh pic.twitter.com/FjOr0n15pn', 'id': '640502332434837504', 'user': 'FuturICT'}, {'fullname': 'FuturICT', 'timestamp': '2015-09-06 12:13:18', 'text': '.@ReneAlgesheimer auf digitaler Spurensuche auf der #Scientifica von @eth + @uzh: Gefahren und Chancen von Big Data pic.twitter.com/VtZ7hG5bpo', 'id': '640498001425879040', 'user': 'FuturICT'}, {'fullname': 'FuturICT', 'timestamp': '2015-09-06 09:45:18', 'text': "Cooperative #Pixelbots illustrate the history of the universe #DisneyLab, live demo at\n@ETH's + @UZH's #Scientificahttps://www.youtube.com/watch?v=4-3rkrqvO14\xa0…", 'id': '640460756862009344', 'user': 'FuturICT'}, {'fullname': 'Aileen Zumstein', 'timestamp': '2015-09-01 07:39:08', 'text': "you think you're clever? wait until you hear @R_Thaler on 17/9/2015 live at @UZH @MisbehavingBlog @uzh_news_enpic.twitter.com/S2fj7UZA4Q", 'id': '638617065620918273', 'user': 'aileenzumstein'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2015-08-31 10:31:42', 'text': '@Uzh @Schreibspecht so in etwa.', 'id': '638298106644299776', 'user': 'Pyrolim'}, {'fullname': 'Promega AG', 'timestamp': '2015-08-25 12:10:15', 'text': 'Meet us @UZH in the Botanical Garden and grab a free ice cream and your PCR Master Mix from @PromegaAGpic.twitter.com/QA6WJ37mtl', 'id': '636148580227645440', 'user': 'PromegaAG'}, {'fullname': 'UBS Center', 'timestamp': '2015-08-25 12:01:28', 'text': 'You think you’re clever? Wait until you hear @R_Thaler on 17/09/2015 http://ow.ly/RkO9o\xa0 @UZH @MisbehavingBlogpic.twitter.com/ACF7fs6iym', 'id': '636146372660563968', 'user': 'ubscenter'}, {'fullname': 'Stefan Lüders', 'timestamp': '2015-08-22 11:57:03', 'text': '@Uzh Mit der richtigen Strategie schafft man es in unter 45 Minuten.  @Kachelmann', 'id': '635058097497710592', 'user': 'sladade'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-08-17 17:57:51', 'text': '4 CH Univs in top 100 (@eth @uzh @unige @unibas), same as Germany! ://www.shanghairanking.com/ARWU2015.html', 'id': '633336954835369985', 'user': 'ehafen'}, {'fullname': 'Nessa', 'timestamp': '2015-08-08 21:31:40', 'text': '@Uzh https://youtu.be/XF5XWKMMxNk?t=1m15s\xa0…', 'id': '630129273022644224', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2015-08-08 21:27:11', 'text': '@Uzh Solang Du nicht mit versteckten Imperativen anfängst. ;)', 'id': '630128145694330880', 'user': 'nessi6688'}, {'fullname': 'Wolf Cayne', 'timestamp': '2015-07-24 13:37:03', 'text': '@einvolkskundler Wir legen los, gibt kein Bier ;-) Dafür #volkskunde #live mit #hashtag #dgv15 #kdscamp @uzh', 'id': '624574013998804995', 'user': 'murschetg'}, {'fullname': 'Wolf Cayne', 'timestamp': '2015-07-24 12:33:26', 'text': 'Um 15:30 startet der #kdscamp – die Unkonferenz – der 40sten #dgv15 @uzh\n- Damit auch Student/-innen Stimme kriegen\nFrei für jede/n!', 'id': '624558002515898369', 'user': 'murschetg'}, {'fullname': 'Wolf Cayne', 'timestamp': '2015-07-23 09:16:27', 'text': '@lisseuse @sms2sms spread the word that there is a #kdscamp as small part of the #dgv15 congress @uzh', 'id': '624146043249262593', 'user': 'murschetg'}, {'fullname': 'Mischa Gallati', 'timestamp': '2015-07-22 07:35:32', 'text': 'Ab heute @UZH: sinnliche Kulturen\nhttp://kulturendersinne.org/\xa0 #dgv15 #europeanethnology #Volkskunde', 'id': '623758260764573696', 'user': 'mischa_gallati'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-07-14 10:14:33', 'text': 'My best RTs this week came from: @Schreibspecht @Konzertharfe @DjDC83 @mosmann @Uzh #thankSAll Who were yours? http://sumall.com/thankyou\xa0', 'id': '620899175492923392', 'user': 'HaarFestTiger'}, {'fullname': 'Swiss Higher Ed', 'timestamp': '2015-07-09 07:26:03', 'text': "world's 1st medical professorship for human lactation @uzh @SPRKnoll @idw_online_en @uwanews http://bit.ly/1HgalgG\xa0pic.twitter.com/O3eEZlPg9m", 'id': '619044828773355520', 'user': 'SwissHigherEd'}, {'fullname': 'Mauro Moruzzi', 'timestamp': '2015-07-08 21:15:25', 'text': 'Admiring last June the "Under one roof" in Rio de Janeiro: @uzh @snsf_ch @EPFL @swissnexBrazil @SBFI_CHpic.twitter.com/2GvOCvK6tD', 'id': '618891160665223168', 'user': 'ambmauromoruzzi'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-07-08 10:21:14', 'text': '@Uzh, ORRR™! | @HaarFestTiger', 'id': '618726529841938432', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-07-07 19:08:13', 'text': '@Uzh exactly.', 'id': '618496759841595392', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-07-07 18:29:17', 'text': '@Uzh Ich musste es tun, weil zu lang!', 'id': '618486964334030848', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2015-07-07 15:07:30', 'text': '@Uzh Siebte Klasse :)', 'id': '618436182259683328', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-07-07 14:24:10', 'text': '@Uzh Bitte beachten Sie den darauf folgenden Tweet :)', 'id': '618425279032258560', 'user': 'HaarFestTiger'}, {'fullname': 'Daniel Pache', 'timestamp': '2015-07-07 13:44:43', 'text': '@Uzh @Schreibspecht Wenn mir langweilig ist, rezitiere ich alte Windows XP-Lizenzschlüssel... 8XPDH PCKKG 6MPKT...', 'id': '618415350665879552', 'user': 'deep470'}, {'fullname': 'Wolf Cayne', 'timestamp': '2015-06-16 20:00:28', 'text': 'War jemand schon mal auf cltr.ch? #cltr #ethno #populäre #kulturen @uzh', 'id': '610899763148382208', 'user': 'murschetg'}, {'fullname': 'Universität Zürich', 'timestamp': '2015-06-11 07:48:26', 'text': '#ErwinSchrödinger @UZH: http://www.uzh.ch/about/portrait/nobelprize/schroedinger.html\xa0…', 'id': '608903602330038272', 'user': 'UZH_Science'}, {'fullname': 'Kuoni Switzerland', 'timestamp': '2015-06-09 12:44:03', 'text': 'Schwerelos über der #Schweiz für 8000 CHF - @UZH führt Parabelflüge (Zero G Flight) durch: http://www.wirtschaft.ch/Schwerelos+ueber+der+Schweiz+fuer+8000+Franken/664083/detail.htm\xa0…https://www.youtube.com/watch?v=1ieR8hIXUIg\xa0…', 'id': '608253219572023296', 'user': 'swisskuoninews'}, {'fullname': 'Universität Zürich', 'timestamp': '2015-06-08 15:34:56', 'text': '@Uzh Können Sie uns bitte folgen, damit wir Ihnen eine DM schicken können? Vielen Dank!', 'id': '607933838178832384', 'user': 'uzh_news'}, {'fullname': 'Sacha Zala', 'timestamp': '2015-05-29 16:13:56', 'text': 'Warten auf Jakob @uzh pic.twitter.com/M34AGpvFGM', 'id': '604319775926435840', 'user': 'SachaZala'}, {'fullname': 'Nessa', 'timestamp': '2015-05-23 20:13:29', 'text': '@SPIEGEL_live @Uzh Das war doch eh nicht vorgesehen.', 'id': '602205731132178434', 'user': 'nessi6688'}, {'fullname': 'GIVA@UZH', 'timestamp': '2015-05-14 10:04:01', 'text': 'Stimmt es, dass Navigationsgeräte unseren Orientierungssinn beeinflussen? Antwort @UZH Journal 3/15, S. 16: http://bit.ly/1cWS5i6\xa0.', 'id': '598790861422522368', 'user': 'giva_uzh'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-04-29 13:07:39', 'text': '@Uzh @Dating_Goth Ne, der @Schreibspecht hat das anders gemacht. Der hat eine Spur Kekse zu seiner Wohnung gelegt und der bin ich gefolgt.', 'id': '593401259811561473', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-29 09:37:26', 'text': '@Uzh, geboren wurde ich dort auch nicht. | @Schreibspecht', 'id': '593348356061196289', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-29 09:36:55', 'text': '@Schreibspecht, dreimal falsch! | @Uzh', 'id': '593348225760899072', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-29 09:36:14', 'text': '@Uzh, sie *war* zweimal schwanger und ich  habe die Nachwehen noch nicht abgehungert. | @Schreibspecht', 'id': '593348054335520769', 'user': 'Eumelzocker'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-29 08:56:27', 'text': '@Schreibspecht  ausserdem hab ich mindestens 10 kilo abgenommen in der ss laut Hebamme und @Uzh  hat nix zugenommen', 'id': '593338039771992064', 'user': 'magema04'}, {'fullname': 'Bastian', 'timestamp': '2015-04-29 08:27:25', 'text': '@Uzh Möglich. Da, wo der @ernke herkommt, gibt es weder PrivatTV, noch schnelles Internet. Glaub ich. Also schätze ich...', 'id': '593330736750567424', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-29 08:22:25', 'text': '@Schreibspecht, Du hast wohl meine Wampe noch nicht registriert. | @Uzh', 'id': '593329477322674176', 'user': 'Eumelzocker'}, {'fullname': 'Pia Drießen', 'timestamp': '2015-04-29 08:22:19', 'text': '@Uzh genau ;)', 'id': '593329452408528896', 'user': 'dailypia'}, {'fullname': 'Bastian', 'timestamp': '2015-04-29 08:21:18', 'text': '@Uzh Sag das mal diesem ungehobelten @ernke ;-)', 'id': '593329194584678400', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2015-04-29 08:17:26', 'text': '@magema04 Mit Mini-Gemändy oder @Uzh? ;-)', 'id': '593328224584802304', 'user': 'Schreibspecht'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-29 08:16:02', 'text': '@ernke @Uzh mhhhh also wir sind beim babydoc wenn der @Schreibspecht hier auftaucht mach ich mir Gedanken', 'id': '593327872573579265', 'user': 'magema04'}, {'fullname': 'Bastian', 'timestamp': '2015-04-29 08:15:48', 'text': 'Jetzt gibt es gleich virtuelles Fratzengeballer für den @ernke - präsentiert von @magema04 und @Uzh. \n\nWo ist das Popcorn?', 'id': '593327809923260416', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-29 08:14:14', 'text': '@Schreibspecht, dann grüß mal @magema04 und @Uzh recht herzlich von mir. – Oh …', 'id': '593327416019427328', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-04-27 18:53:35', 'text': '@Uzh hä?!! \n;)', 'id': '592763541318402049', 'user': 'HaarFestTiger'}, {'fullname': 'Georg Gemander', 'timestamp': '2015-04-27 18:52:42', 'text': 'Nudloar, meine Guhdsde. RT @HaarFestTiger @Uzh Du hast dich eben gut angepasst! :)', 'id': '592763317011222528', 'user': 'Uzh_HL'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-04-27 18:36:26', 'text': '@Uzh Du hast dich eben gut angepasst! :)', 'id': '592759223341178880', 'user': 'HaarFestTiger'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-27 11:48:29', 'text': '@Uzh @HaarFestTiger  das find ich ekelhaft', 'id': '592656559710326784', 'user': 'magema04'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-27 11:36:04', 'text': '@HaarFestTiger @uzh würde gar nicht mehr vom klo kommen :)', 'id': '592653436128206848', 'user': 'magema04'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-24 07:57:42', 'text': '@Uzh ich hoffe für @ ernke das es feuerfest ist', 'id': '591511316512157696', 'user': 'magema04'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-24 07:39:01', 'text': '@Uzh, wusstest Du das nicht?! | @magema04', 'id': '591506617604014081', 'user': 'Eumelzocker'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-24 07:08:41', 'text': '@ernke sowas bekommt der @Uzh nicht zuviel Platz', 'id': '591498984100728832', 'user': 'magema04'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-24 06:45:34', 'text': "@Uzh, das ist 'ne 4-qm-Butze direkt neben unserem Schlafzimmer. Leider voll belegt. | @magema04", 'id': '591493165804191745', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-18 08:19:41', 'text': '@magema04, ich guck mir das ganz genau an! | @Uzh', 'id': '589342521551097856', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-18 08:18:13', 'text': '@Uzh, das will ich doch für Dich hoffen | @magema04', 'id': '589342151768670209', 'user': 'Eumelzocker'}, {'fullname': 'Mandy Gemander', 'timestamp': '2015-04-18 08:08:12', 'text': '@ernke @Uzh  ich überleg ma okay', 'id': '589339632480956416', 'user': 'magema04'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-04-18 08:07:34', 'text': "@magema04, so … nun hau mal 'n paar Tweets raus … @Uzh weiß ja auch wie's geht.", 'id': '589339472258543616', 'user': 'Eumelzocker'}, {'fullname': 'Peer H.', 'timestamp': '2015-04-13 18:35:18', 'text': '@Uzh Würde es nicht auffallen, täte ich Dir eine Zweite organisieren...', 'id': '587685509037694976', 'user': 'peerolix'}, {'fullname': 'Daniel Bochsler', 'timestamp': '2015-04-11 09:44:31', 'text': '@Uzh Sie haben einen Namensvetter, http://www.uzh.ch\xa0 @uzh_news', 'id': '586827157692874752', 'user': 'dbchslr'}, {'fullname': 'Daniel Bochsler', 'timestamp': '2015-04-11 08:57:25', 'text': 'Auch an @uzh @IPZuser: immer mehr exzellente Schweizer Studis mit albanisch&serbo/kroatischen Namen\nhttp://www.tagesanzeiger.ch/zuerich/region/Was-du-bist-Albanerin/story/10311999\xa0…\nFaleminderit Tagi', 'id': '586815304900206592', 'user': 'dbchslr'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-03-28 21:10:25', 'text': '.@Uzh @hengartn Sorry for me UZH is University of Zurich One of the leading European Universities and responsible for my career @uzh_news', 'id': '581926338786914305', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-03-28 20:25:07', 'text': 'Zeit für eine europ Bildungsrevolution fokussiert auf personalisierte  Bildung #controlyourdata @uzh @hengartnpic.twitter.com/8wuVpVsIiv', 'id': '581914936714108928', 'user': 'ehafen'}, {'fullname': 'Dr.Ausserhouse', 'timestamp': '2015-03-27 05:48:47', 'text': '@Uzh ich habe 2 Jobs. Einmal GF und Krankenpfleger an der Uni. Beides bleibt. Wechsel nur die Abteilung und reduziere Arbeitszeit auf 25%.', 'id': '581332013556346880', 'user': 'Lugh_Haurie'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-03-18 10:36:59', 'text': '@Uzh @nessi6688 Wir sind die "biggest fans" :D', 'id': '578143052235145216', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-03-18 07:49:47', 'text': "@nessi6688 Wenn das klappt, sehr gern! Dann müssen wir aber noch @uzh ' Julia mitnehmen!", 'id': '578100975925252096', 'user': 'HaarFestTiger'}, {'fullname': 'Le foucaldien', 'timestamp': '2015-03-17 22:50:15', 'text': 'Our #conference "Historicizing Foucault" (Mar 19-21, @UZH) will be streamed on Voice Republic: https://voicerepublic.com/venues/was-heisst-foucault-historisieren\xa0…', 'id': '577965196569890816', 'user': 'lefoucaldien'}, {'fullname': 'Hanna Wick', 'timestamp': '2015-03-13 18:37:24', 'text': 'frauenquote? gentinetta: ja. haller: ja. althaus: eher ja, aber löst problem nicht unbedingt. #vereinbarkeit @uzh', 'id': '576452015020183553', 'user': 'sciborg01'}, {'fullname': 'Hanna Wick', 'timestamp': '2015-03-13 18:19:22', 'text': 'aha, und jetzt kommt sandberg. social freezing. and all that. #vereinbarkeit @uzh', 'id': '576447472991674368', 'user': 'sciborg01'}, {'fullname': 'Hanna Wick', 'timestamp': '2015-03-13 18:05:07', 'text': 'podium zu "vereinbarkeitslüge" mit @nicalthaus @BarbaraBleisch @clarissahaller @BaschiDuerr & katja gentinetta @uzh pic.twitter.com/RbpP4gPScU', 'id': '576443887142731776', 'user': 'sciborg01'}, {'fullname': 'Philipp Rufer', 'timestamp': '2015-03-05 13:34:59', 'text': 'Prekäres #Forschungsergebnis @UZH pic.twitter.com/S4bknALoZE', 'id': '573476803609772032', 'user': 'PhilippRufer'}, {'fullname': 'Ours Riklin', 'timestamp': '2015-03-02 16:31:30', 'text': 'Heute 19:00 Podiumsveranstaltung @UZH zu Nachhaltige Landwirtschaft - realistisch oder Utopie? #FairFoodInitiaitve http://bit.ly/18hdbo9\xa0', 'id': '572434062389989376', 'user': 'URiklin'}, {'fullname': 'Le foucaldien', 'timestamp': '2015-03-02 10:02:43', 'text': 'The abstracts of the presentations for our #conference "Historicizing Foucault" (Mar 19-21, @UZH) are now consecutively published online.', 'id': '572336220547747840', 'user': 'lefoucaldien'}, {'fullname': 'Myertyn Pryeble', 'timestamp': '2015-02-26 04:59:03', 'text': '@Uzh @ghimirerx different than the normal though right?', 'id': '570810251970158592', 'user': 'MartinPribble'}, {'fullname': 'Juan Gonzalez-Valero', 'timestamp': '2015-02-24 13:58:30', 'text': 'Calestous Juma talkes about technology for Africa @UZH http://www.uzh.ch/news/articles/2015/technologische-umbrueche-provozieren-immer-kritik.html\xa0…', 'id': '570221233389891584', 'user': 'TffJuan'}, {'fullname': 'Bastian', 'timestamp': '2015-02-23 16:42:19', 'text': '@Uzh @nessi6688 Röchtig', 'id': '569900069627035648', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2015-02-23 16:39:00', 'text': '@Schreibspecht @Uzh Sorry, aber auch das bringt mich nicht freiwillig in einen Flieger, tut mir leid!', 'id': '569899233173762048', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2015-02-23 16:36:48', 'text': "@nessi6688 @Uzh Aber im Flieger gibt's das kostenlos. Und am Ziel: mich :-)", 'id': '569898682822238208', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2015-02-23 16:35:43', 'text': '@Uzh Tja, deswegen ja die Aussage ganz zu Anfang: Da komme ich nicht hin. ;) @Schreibspecht', 'id': '569898409060126722', 'user': 'nessi6688'}, {'fullname': 'Wissenschaft', 'timestamp': '2015-02-23 16:33:42', 'text': '@Uzh Finden wir auch. (ub)', 'id': '569897901050208256', 'user': 'Dlf_Forschung'}, {'fullname': 'Bastian', 'timestamp': '2015-02-23 16:32:29', 'text': '@Uzh Du Guter!', 'id': '569897595834925056', 'user': 'Schreibspecht'}, {'fullname': 'Sustainable Harvard', 'timestamp': '2015-02-19 16:10:03', 'text': 'RT @ehafen: Today at @Uzh @calestous Juma from Harvard Kennedy School on Sustainability and Innovation http://www.ccrs.uzh.ch/aktuelles/lecture-juma/2015.02._Calestous-Juma.pdf\xa0…', 'id': '568442399002898432', 'user': 'GreenHarvard'}, {'fullname': 'SchnitzelBot', 'timestamp': '2015-02-19 11:36:03', 'text': '@Uzh Ich mag auch Schnitzel <33', 'id': '568373443026145281', 'user': 'Schnitzel_Bot'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-02-19 09:33:20', 'text': 'Danke, LI @Uzh.', 'id': '568342560336424960', 'user': 'Eumelzocker'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-02-19 06:34:36', 'text': 'Today at @UZH @Calestous Juma from Harvard Kennedy School on Sustainability and Innovation http://www.ccrs.uzh.ch/aktuelles/lecture-juma/2015.02._Calestous-Juma.pdf\xa0…', 'id': '568297579961839616', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-02-17 16:10:56', 'text': 'Today we started the course on Science Society and Research Ethics with students from @ETH and @UZH follow us on @dss151 @EffyVayena', 'id': '567717842616070144', 'user': 'ehafen'}, {'fullname': 'René Proyer', 'timestamp': '2015-02-17 07:55:02', 'text': 'Prof. Amy Wrzesniewski @YaleSOM visits our lab today and I am looking forward to her talk @UZH http://bit.ly/1L7jXLQ\xa0', 'id': '567593046712131584', 'user': 'ReneProyer'}, {'fullname': 'Nessa', 'timestamp': '2015-02-14 23:02:02', 'text': '@Uzh Schmerzlich vermisst! @Schreibspecht @HaarFestTiger @ernke @krewor @BeAvonHL @Grey_Gor', 'id': '566734136686436352', 'user': 'nessi6688'}, {'fullname': 'Georg Gemander', 'timestamp': '2015-02-12 17:09:43', 'text': '@Schreibspecht Der @Uzh erinnert sich stark an den Gesichtsausdruck. | @ernke', 'id': '565920698183712768', 'user': 'Uzh_HL'}, {'fullname': 'Bastian', 'timestamp': '2015-02-12 17:08:17', 'text': '@ernke Der Gesichtsausdruck erinnert stark an @Uzh', 'id': '565920338631217152', 'user': 'Schreibspecht'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-02-06 07:50:56', 'text': 'Talks and intros by @ETH Rektor S Springman and @UZH Rektor M Hengartner from #citizenscience WS are online #cszh http://www.multimedia.ethz.ch/conferences/2015/imsb/05_thursday\xa0…', 'id': '563605750908739585', 'user': 'ehafen'}, {'fullname': '©Ҥ®1$   Ҭ0ҎҤ™ \xa0🐕', 'timestamp': '2015-02-05 19:41:49', 'text': '@BeAvonHL seriöslich? @sladade @ernke @Gonzos_Bruder @Schreibspecht @HaarFestTiger @Uzh @DieLutz', 'id': '563422261416574978', 'user': 'dwarfplanet'}, {'fullname': 'Stefan Lüders', 'timestamp': '2015-02-05 19:01:24', 'text': '@BeAvonHL Radeberger Export ist ein Pils,welches Export genannt wird. :-) @ernke @Gonzos_Bruder @Schreibspecht @HaarFestTiger @Uzh @DieLutz', 'id': '563412089772191744', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-02-05 19:00:11', 'text': '@Uzh, das wäre ein Anfang …', 'id': '563411784535932928', 'user': 'Eumelzocker'}, {'fullname': 'Stefan Lüders', 'timestamp': '2015-02-05 18:58:12', 'text': '@ernke Du meinst Radeberger Export? @Gonzos_Bruder @Schreibspecht @HaarFestTiger @Uzh @BeAvonHL @DieLutz', 'id': '563411283278835712', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-02-05 18:46:52', 'text': '@Gonzos_Bruder, macht nix: Die können auch alle fast nie. | @Schreibspecht, @HaarFestTiger, @Uzh, @BeAvonHL, @DieLutz', 'id': '563408430778826753', 'user': 'Eumelzocker'}, {'fullname': 'Ohne Worte a. D.', 'timestamp': '2015-02-05 18:42:00', 'text': '@ernke @Schreibspecht @HaarFestTiger @Uzh @BeAvonHL @DieLutz geht das am We? Kann jetzt nicht ', 'id': '563407207212277760', 'user': 'Gonzos_Bruder'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-02-05 18:41:08', 'text': "@Gonzos_Bruder, beispielsweise @Schreibspecht, @HaarFestTiger, @Uzh, @BeAvonHL oder @DieLutz besuchen. Gibt bestimmt 'n Pils dort …", 'id': '563406990513561600', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-02-03 21:17:41', 'text': '@Uzh Um dem @Schreibspecht nicht zu verschrecken.', 'id': '562721609761701889', 'user': 'HaarFestTiger'}, {'fullname': 'Melanie von Braun', 'timestamp': '2015-02-03 13:33:13', 'text': '@e_moehlecke @uzh_news_en @Uzh OK, thanks :)', 'id': '562604721975070720', 'user': 'MelanievonBraun'}, {'fullname': 'Eva Moehlecke', 'timestamp': '2015-02-03 13:28:09', 'text': "@MelanievonBraun @uzh_news_en @Uzh Second one, it's about Private Twitter Use in general, written at University of Zurich.", 'id': '562603447816822784', 'user': 'e_moehlecke'}, {'fullname': 'Melanie von Braun', 'timestamp': '2015-02-03 13:22:34', 'text': '@uzh_news_en @e_moehlecke Is this a (MT) abt (private Twitter use@UZH) or a (MT abt Private Twitter use) @UZH ?', 'id': '562602043794526208', 'user': 'MelanievonBraun'}, {'fullname': 'Mike S. Schäfer', 'timestamp': '2015-02-02 09:16:00', 'text': 'Nachahmenswert: #Politikwissenschafts-Studierende der @UZH sind aktiv & erfolgreich in #SocialMedia: http://www.tagesanzeiger.ch/leben/bildung/Junge-Politologen-bloggen-sich-nach-oben/story/16871122\xa0… @tagesanzeiger', 'id': '562177607106826240', 'user': 'mss7676'}, {'fullname': 'Peer H.', 'timestamp': '2015-01-31 13:46:39', 'text': '@ernke @Uzh Und überhaupt: Was ist an Harold Faltermeyer und Queens "Under pressure" auszusetzen?', 'id': '561520942414036992', 'user': 'peerolix'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-31 13:41:00', 'text': '@Uzh, aber man wird von Michael Jackson oder Max Headroom bedient. | @peerolix', 'id': '561519519223791616', 'user': 'Eumelzocker'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-01-27 07:35:37', 'text': 'Thomas Gächter @uzh: Das #rechtaufkopie Voraussetzung für die #digitaleselbstbestimmung @Datenundgesundh http://www.datenundgesundheit.ch/2015/01/27/das-recht-auf-kopie/\xa0…', 'id': '559978017792200704', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-01-27 06:38:22', 'text': '.@datenundgesundh zu #digitaleselbstbestimmung Thomas Gächter @uzh stellte #RechtaufKopie zur Nutzung pers Daten vor #controlyourdata', 'id': '559963607849787392', 'user': 'ehafen'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 20:37:06', 'text': '@Uzh isch schmeiß misch wechsch!', 'id': '559812295120158720', 'user': 'HaarFestTiger'}, {'fullname': '(((bandee)))', 'timestamp': '2015-01-26 20:34:42', 'text': '@HaarFestTiger @Uzh @Schreibspecht genau. Orginal.', 'id': '559811690884505600', 'user': 'bandee_de'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 20:25:38', 'text': '@Uzh nein!!! Bist du sparsam geworden?', 'id': '559809408457515008', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 20:18:58', 'text': '@Uzh Woher weißt du das denn? Du kommst doch ganz woanders her!?', 'id': '559807730857574400', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 20:12:44', 'text': '@Uzh @bandee_de @Schreibspecht Wie, Schaben?', 'id': '559806163588763650', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 19:46:51', 'text': '@bandee_de @Schreibspecht @Uzh Wozu braucht man das denn?!! (Ich komme aus Norddeutschland.)', 'id': '559799649914343424', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2015-01-26 19:44:50', 'text': 'Sehr cool! :-) RT @bandee_de: @Schreibspecht @HaarFestTiger @Uzh ich könnt noch ein Spätzlebrett beisteuern.', 'id': '559799143070433281', 'user': 'Schreibspecht'}, {'fullname': '(((bandee)))', 'timestamp': '2015-01-26 19:25:29', 'text': '@Schreibspecht @HaarFestTiger @Uzh ich könnt noch ein Spätzlebrett beisteuern.', 'id': '559794273626120192', 'user': 'bandee_de'}, {'fullname': 'Bastian', 'timestamp': '2015-01-26 18:46:30', 'text': 'Oh ja! RT @Uzh: @Schreibspecht Wir hätten da noch eine Käseharfe übrig. #ehekrise #hochzeitstisch | @HaarFestTiger', 'id': '559784462234685440', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2015-01-26 18:24:31', 'text': '@HaarFestTiger Aber ein Käsehobel braucht man. Frag @Uzh !!!', 'id': '559778929050144768', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2015-01-26 18:21:06', 'text': "@Schreibspecht Hör jetzt mal auf mit deinem verschissenen Käsehobel, wir haben 'ne Vierkantreibe!!! @Uzh", 'id': '559778067225542656', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2015-01-26 18:18:53', 'text': 'Auf Euch ist Verlass. Aber sag das mal @HaarFestTiger RT @Uzh: @Schreibspecht Käsehobel sind aus der Mode?pic.twitter.com/vQO0zuR2cr', 'id': '559777511354421248', 'user': 'Schreibspecht'}, {'fullname': 'Stefan Lüders', 'timestamp': '2015-01-24 07:25:48', 'text': '@Uzh Der hat Schnee gemacht?', 'id': '558888383582588928', 'user': 'sladade'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-01-22 08:29:34', 'text': 'Mike Martin @uzh: citizen science is critical in healthy aging research #cszh', 'id': '558179653018734592', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2015-01-22 08:09:44', 'text': 'Citizen Science Workshop @eth opened by ETH Rector Sarah Springman and @UZH Rector Michael Hengartner use #cszh', 'id': '558174661339791360', 'user': 'ehafen'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-13 17:30:03', 'text': '@Uzh, das weiß ich doch. | @Schreibspecht', 'id': '555054179082047489', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-13 17:27:38', 'text': '@Schreibspecht, wer hat das ausgeplaudert?! | @Uzh', 'id': '555053571004456960', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2015-01-13 17:24:27', 'text': '@ernke Wenn Du möchtest, könntest Du am 14. Februar was vorführen. Vielleicht gemeinsam mit @Uzh ...', 'id': '555052769208696832', 'user': 'Schreibspecht'}, {'fullname': 'Granger \xa0☕️ Danger', 'timestamp': '2015-01-12 22:12:37', 'text': '@Uzh BORN IN THE EIGHTIES! ', 'id': '554762901060595712', 'user': 'hermione_rescue'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-04 22:06:36', 'text': '@Uzh, <loriot>ach was?!</loriot>', 'id': '551862283295813633', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-04 21:59:55', 'text': '@Uzh, und bei uns selbst für vierjährige Töchter zu Fuß erreichbar. (Sie hielt zwei Stunden durch.)', 'id': '551860601367318529', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2015-01-04 21:27:31', 'text': '@Uzh, die Trave ist eben nicht nur lübsch.', 'id': '551852451385847809', 'user': 'Eumelzocker'}, {'fullname': 'Gerhard Fehr', 'timestamp': '2014-12-31 21:57:49', 'text': '@UZH Zurich Nr. 1 of Top 10% Institutions and Economists in the Field of Cognitive & Behavioral Economics https://ideas.repec.org/top/top.cbe.html\xa0…', 'id': '550410522076905472', 'user': 'Gerhard_Fehr'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-29 08:47:18', 'text': '@Uzh, das ist doch der mit dem „maybe we have a little bit lucky“, oder?! | @Schreibspecht, @hermione_rescue', 'id': '549486805436084224', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-12-29 07:49:35', 'text': '@Uzh Nee. Das erst in drei Minuten.', 'id': '549472283677700096', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-12-27 23:09:41', 'text': "@Uzh Hamma. :')", 'id': '548979058810576896', 'user': 'nessi6688'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-26 14:29:13', 'text': '@Uzh Bei uns wird realitätsnah trainiert. @ernke', 'id': '548485689831350272', 'user': 'sladade'}, {'fullname': 'Peer H.', 'timestamp': '2014-12-25 14:58:11', 'text': '@Uzh @nessi6688 @HaarFestTiger Sind deutlich billiger, als wenn Du sie bei KMW bestellen würdest. Wahrscheinlich so ein Mengenrabatt-Ding.', 'id': '548130590470701056', 'user': 'peerolix'}, {'fullname': 'Nessa', 'timestamp': '2014-12-25 14:52:14', 'text': '@Uzh Nein, das ist die Baureihe. ^^ @HaarFestTiger @peerolix', 'id': '548129094299570176', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-25 14:49:56', 'text': '@Uzh Zeige ich dir. @peerolix', 'id': '548128514034393088', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2014-12-25 14:49:20', 'text': '@Uzh Kommt wahrscheinlich auf das Baulos an. @HaarFestTiger @peerolix', 'id': '548128364503269376', 'user': 'nessi6688'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-23 06:26:44', 'text': '@ernke Befürchten? Ich hoffe es für dich. cc @HaarFestTiger @Uzh', 'id': '547277105114128384', 'user': 'sladade'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-23 06:24:40', 'text': '@Uzh Ich bin ostzonaler Gebrauchtwagenhändler. Es wäre nur lästig. :-) cc @ernke @HaarFestTiger', 'id': '547276584072511488', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-22 22:26:00', 'text': '@sladade, das befürchte ich auch. | @HaarFestTiger, @Uzh', 'id': '547156126262132737', 'user': 'Eumelzocker'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-22 20:41:28', 'text': '@ernke Das unterscheidet uns. Cc @HaarFestTiger @Uzh', 'id': '547129818664669184', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-22 20:20:43', 'text': '@HaarFestTiger, das verbitte ich mir. Ich habe schließlich einen Ruf zu verlieren. | @Uzh', 'id': '547124597767028737', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-22 20:19:08', 'text': '@ernke @Uzh Ihr seid süß <3', 'id': '547124199836639232', 'user': 'HaarFestTiger'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-12-22 16:58:01', 'text': '@Uzh Die Spende an die Post. Der Kalender war ein ganz normales Noel-Geschenk.', 'id': '547073583185657856', 'user': 'Pyrolim'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-22 15:54:02', 'text': '@Uzh, Du Glückspilz. | @HaarFestTiger', 'id': '547057481797472258', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-22 14:18:28', 'text': 'Das Vergnügen war ganz meinerseits! RT @Uzh Stille Nacht heute in der Innenstadt. Nur die zauberhafte @HaarFestTiger getroffen. Tag gerettet', 'id': '547033434980229121', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-19 11:53:22', 'text': '@Uzh Ja, schau ihn dir doch mal an. @peerolix', 'id': '545909751893467136', 'user': 'HaarFestTiger'}, {'fullname': 'Peer H.', 'timestamp': '2014-12-19 11:23:58', 'text': '@Uzh @HaarFestTiger Das ist Peer from the Decke.', 'id': '545902353896194049', 'user': 'peerolix'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-18 19:46:41', 'text': 'Bestimmt! RT @HaarFestTiger: @Schreibspecht Motiv des Jahres! @ernke @uzh', 'id': '545666480340467712', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-18 19:46:22', 'text': "@HaarFestTiger, gibt's 'nen Downloadlink per 0,51 € oder Threema? | @Schreibspecht, @Uzh", 'id': '545666402372575232', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-18 19:44:32', 'text': '@Schreibspecht, das war ein reiner Sitztanz mit @Uzh!', 'id': '545665939728240641', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-18 18:26:23', 'text': '@Schreibspecht Motiv des Jahres! @ernke @uzh', 'id': '545646272318021633', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2014-12-18 18:16:57', 'text': 'Finger hoch! Wer möchte @ernke und @Uzh beim Tanzen sehen?', 'id': '545643897867993088', 'user': 'Schreibspecht'}, {'fullname': 'Dinnda Yulia', 'timestamp': '2014-12-18 17:50:37', 'text': 'hai kak,@Uzh�-SzandorLavey,Metode Ini Membuat "Ketagihan" Belajar Bahasa Inggris Gk percaya?? Info http://on.fb.me/1x5mGi3\xa0', 'id': '545637271068626944', 'user': 'DinndaAzkia'}, {'fullname': 'Bastian', 'timestamp': '2014-12-14 20:23:05', 'text': 'Dank an @HaarFestTiger @peerolix @Grey_Gor @FMeyerNTV @ernke @BeAvonHL @BlowballSlider @nessi6688 @Uzh und Co. für einen grandiosen Abend.', 'id': '544226088046837761', 'user': 'Schreibspecht'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-13 21:59:08', 'text': '@ernke Lübecker Marzipan wurde in Dresden beim VEB Elbflorenz hergestellt.  @Uzh', 'id': '543887873846829056', 'user': 'sladade'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-13 21:58:07', 'text': '@Uzh Numeischnegglhabdschniso. @ernke', 'id': '543887615477706752', 'user': 'sladade'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-13 21:57:09', 'text': '@ernke Warum sollte ich lügen? Im Lübecker war Natriumbenzoat drin. In dem für die DDR nicht. Da war das verboten.  @Uzh', 'id': '543887374141624320', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-13 21:55:43', 'text': '@sladade, Du lügst gut. | @Uzh', 'id': '543887013758660609', 'user': 'Eumelzocker'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-13 21:55:16', 'text': '@Uzh Ischgommmid. @ernke', 'id': '543886901804277760', 'user': 'sladade'}, {'fullname': 'Stefan Lüders', 'timestamp': '2014-12-13 21:53:22', 'text': '@ernke Ich habe zwar 1988/1989 Lübecker Marzipan in Dresden hergestellt, aber das weiß @Uzh sicher nicht.', 'id': '543886422932226048', 'user': 'sladade'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-12-13 21:51:42', 'text': 'Ich sollte @Uzh mit @sladade bekannt machen … #Dresden', 'id': '543886003929624576', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-12-13 21:34:52', 'text': "@Uzh @ernke @HaarFestTiger @Schreibspecht Danke für die Klarstellung. :')", 'id': '543881767409963009', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2014-12-05 18:48:45', 'text': '@Uzh @nessi6688 Ebbe n', 'id': '540940859483910144', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-04 16:19:16', 'text': 'Powered by @uzh RT Photo: Rumpelgasse, Erfurt http://tmblr.co/ZnZylu1XAkteq\xa0', 'id': '540540853153193986', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-04 15:34:47', 'text': '@Uzh Warst du nicht dabei, als es aus der Taufe gehoben wurde? War entweder  zur Geburtstagsfeier des @Schreibspecht oder zur Punschparty ;)', 'id': '540529656056016896', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-12-04 15:06:24', 'text': '@Uzh @Schreibspecht Das ist dann ein Supermotiv für Olaf geplanten "Polender",', 'id': '540522515723194368', 'user': 'HaarFestTiger'}, {'fullname': 'Granger \xa0☕️ Danger', 'timestamp': '2014-11-19 06:26:11', 'text': '@Uzh Ach, ich lass mir Freitag vor Dienstende einfach nen DK legen... ^^', 'id': '534955777866608640', 'user': 'hermione_rescue'}, {'fullname': 'seif', 'timestamp': '2014-10-30 12:00:05', 'text': 'Wir freuen uns schon auf den Social Entrepreneurship Day @UZH und sind mit einem Workshop "Texten für den... http://fb.me/1AebY0FvI\xa0', 'id': '527792050599899136', 'user': 'seif_org'}, {'fullname': 'ғelιх c ѕeyғarтн', 'timestamp': '2014-10-25 11:44:06', 'text': 'Studenten legen digitale Prüfungen der Uni #Zürich künftig auch zu Hause ab http://sco.lt/9FrXCz\xa0 via @tagesspiegel @uzh #hfd14', 'id': '525976090830180352', 'user': 'fseyfarth'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-10-20 07:21:55', 'text': 'Verhältnismäßigen Glückwunsch, altes Schlachtross! RT @Schreibspecht: Heute hat übrigens der @Uzh Geburtstag. Prost!', 'id': '524098169198878721', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-10-20 07:05:56', 'text': 'Heute hat übrigens der @Uzh Geburtstag. Prost!', 'id': '524094147507277824', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-17 22:00:33', 'text': 'Das Gestern für Heute. RT @Uzh: @HaarFestTiger @peerolixpic.twitter.com/Hw8aGv8dNH', 'id': '523232122241556480', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-17 21:57:37', 'text': '"Zehn Minuten vor Morgen kauft der sich ein Heute!" (@peerolix über @Uzh und das Produkt eines großen deutschen Printmediums)', 'id': '523231383784022016', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2014-10-17 21:33:17', 'text': 'Wodka-Lemoning mit @Uzh pic.twitter.com/U2NFUkJ8G7', 'id': '523225257453572096', 'user': 'Schreibspecht'}, {'fullname': 'Anna Aridzanjan', 'timestamp': '2014-10-14 10:39:18', 'text': '@pro_vence @Pyrolim @Uzh @PierrePeyronnet Oh, alles gut. Es hat sich schon erledigt. Danke!', 'id': '521973513360801793', 'user': 'textautomat'}, {'fullname': 'elbée', 'timestamp': '2014-10-14 10:30:09', 'text': '@Pyrolim @Uzh @textautomat @PierrePeyronnet hallo, ich hab nicht ganz verstanden, worum es geht - war diese woche offline...', 'id': '521971213959446528', 'user': 'pro_vence'}, {'fullname': 'Bastian', 'timestamp': '2014-10-14 08:23:00', 'text': '@Uzh Ja, warum nicht? Da ist die Zuhörerschaft weniger voreingenommen ;-)', 'id': '521939213231857664', 'user': 'Schreibspecht'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:39:22', 'text': "@HaarFestTiger @Uzh I'm quite sorry. It's evidently way too early for me to expect me to think adequately.", 'id': '521550744278028288', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:36:55', 'text': '@Alexikon1 @Uzh Ich bin ein sie. Aber wie mein Mentor sagte: "Das ist wohl heutzutage egal."', 'id': '521550130982707200', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:34:53', 'text': '@HaarFestTiger @Uzh "Lesestofflos". Das ist eine schöne Vorstellung  Dann mal viel Spaß mit DFW - und berichte er über seine Eindrücke!', 'id': '521549619046936576', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:31:14', 'text': '@Alexikon1 @Uzh Sehr gut. Dann sollte ich mich wohl erst mal dem widmen! Ich bin sowieso gerade lesestofflos.', 'id': '521548701257715712', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:28:58', 'text': '@HaarFestTiger @Uzh sind zum Einstieg meines Erachtens sehr gut  geeignet (2/2)', 'id': '521548127724400640', 'user': 'Alexikon1'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:28:51', 'text': '@HaarFestTiger @Uzh Infinite Jest habe ich auch nur zur Hälfte geschafft. Aber gerade Consider the Lobster & das Supposedly Fun Thing (1/2)', 'id': '521548100461404160', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:24:01', 'text': '@Alexikon1 @Uzh Guck, der steht immer noch bei mir im Regal und wartet darauf, in Gänze gelesen zu werden. (Ich hatte solchen Respekt.)', 'id': '521546884599779328', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:22:26', 'text': '@HaarFestTiger @Uzh Plausible Entgegnung (für meine bescheidenen Begriffe). Aber ich lese ja auch DFW nur wegen der Fußnoten ()', 'id': '521546485788581888', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:21:30', 'text': '@Alexikon1 @Uzh Ja. Aber Diskutieren geht gut :)', 'id': '521546250806915072', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:21:06', 'text': '@Alexikon1 @Uzh Und dann immer diese superbedeutungsschwangeren Dialoge! Das war mir zuviel des Guten.', 'id': '521546149493473282', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:20:15', 'text': '@Alexikon1 @Uzh Ja, das stimmt. Aber es schien zu sehr auf den Bruch aus zu sein. Es lenkte seine Aufmerksamkeit zu sehr auf die Form.', 'id': '521545935072284672', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:20:00', 'text': '@HaarFestTiger @Uzh Well, I beg to differ. Aber jedem das Seine :)', 'id': '521545871650197504', 'user': 'Alexikon1'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:19:09', 'text': '@HaarFestTiger @Uzh Eben. Also ich sehe da schon gewisses (lies:großes) Potenzial...', 'id': '521545658965434368', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:19:02', 'text': '@Alexikon1 @Uzh Und tausend intertextuelle Anspielungen. Und trotzdem kann ich nicht sagen, dass es mir besonders gefallen hätte.', 'id': '521545628649029632', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:17:52', 'text': '@HaarFestTiger @Uzh  3. könnte man das mit visueller Analyse paaren, um die Bruchstruktur dieses Tatorts mit anderen zu exemplifizieren.', 'id': '521545335970480128', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:17:41', 'text': '@Alexikon1 @Uzh Und es gibt schöne Metalepsen.', 'id': '521545289317253120', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:14:50', 'text': '@Alexikon1 @Uzh Das stimmt. Aber sie wollten es ja so ein bisschen klassisch-dramamäßig aufziehen wegen des Dramafans Herrn Bosco.', 'id': '521544573907378176', 'user': 'HaarFestTiger'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:14:38', 'text': '@HaarFestTiger @Uzh 2. ist es interessant in Hinblick auf die Wissensverteilung (bspw verglichen mit d. Narration bei Sherlock oder HoC).', 'id': '521544520824291329', 'user': 'Alexikon1'}, {'fullname': 'Alexander', 'timestamp': '2014-10-13 06:13:16', 'text': '@HaarFestTiger @Uzh In 1. Linie ist das ja ein durchaus ungewöhnliches Phänomen, sowohl für den Tatort als auch für serielles Erzählen.', 'id': '521544175935029248', 'user': 'Alexikon1'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-13 06:04:23', 'text': '@Uzh @Alexikon1 Eine heterodiegetische Erzählerfigur, was soll man dazu noch sagen.', 'id': '521541941801279488', 'user': 'HaarFestTiger'}, {'fullname': "Pendl'o'Mator", 'timestamp': '2014-10-09 05:40:31', 'text': '@Uzh @DLR_next Hmm... Weiß nicht :).', 'id': '520086385534193664', 'user': 'Pendlomator'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-10-09 05:24:20', 'text': 'Molecular Partners geht an die Börse http://webpaper.nzz.ch/2014/10/09/boersen-und-maerkte/LLEG7/molecular-partners-geht-an-die-boerse?guest_pass=97d41fec4a%3ALLEG7%3A16ad5d754d40bc8930b28822bf656b1f2a291ff9\xa0… via @nzz Ein Startup der @UZH nicht der @ETH!', 'id': '520082313611206656', 'user': 'ehafen'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-10-08 20:45:42', 'text': '@Uzh Ich glaube, sie würde es noch besser finden, wenn ein Filly-Pferd darauf wäre.', 'id': '519951795419103232', 'user': 'HaarFestTiger'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-10-08 06:59:26', 'text': '@Uzh @textautomat @pro_vence Oder @PierrePeyronnet fragen, der ist Rédacteur en chef, mais il parle seulement francais.', 'id': '519743857185914881', 'user': 'Pyrolim'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-10-08 06:57:44', 'text': '@Uzh @textautomat Mal @pro_vence fragen, die könnte das wissen oder erfragen.', 'id': '519743430641975296', 'user': 'Pyrolim'}, {'fullname': 'Hilman_Pendor15', 'timestamp': '2014-10-08 02:08:50', 'text': 'apaan nih ? engga bisa dibuka :D RT @threeple_seven9: Tata serem: http://youtu.be/GPecypO4C-A\xa0 tonton yee......... @mukhtar_rijal @nugrohoWN @Uzh', 'id': '519670726643564544', 'user': 'hilmanzagallo'}, {'fullname': 'Anna Aridzanjan', 'timestamp': '2014-10-07 20:36:01', 'text': '@Pyrolim @Uzh Danke.', 'id': '519586968393375744', 'user': 'textautomat'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-10-07 20:31:02', 'text': '@Uzh @textautomat Leider nicht, kenne mich damit nicht aus. Habe viell. Morgen einen Tip.', 'id': '519585716301344769', 'user': 'Pyrolim'}, {'fullname': 'Swiss Higher Ed', 'timestamp': '2014-10-02 06:00:07', 'text': 'Apply until Oct 4 for best #bachelor #master paper challenge! @NZZcampus @MSN_AG @ETH @EPFL @HSGStGallen @UZH http://bit.ly/1u6lL0H\xa0', 'id': '517554603290656769', 'user': 'SwissHigherEd'}, {'fullname': 'theoriekritik.ch', 'timestamp': '2014-10-01 12:16:01', 'text': 'theoriekritik.ch @LinkeTage: heute Abend, 19.00, kurze Vorstellung des Projekts an der Eröffnung der Linken Hochschultage @UZH #lht14', 'id': '517286811606212608', 'user': 'theoriekritik'}, {'fullname': 'Nico Lumma', 'timestamp': '2014-10-01 06:19:30', 'text': '@Uzh ja, die haben krass grosse wagen und kommen auch ohne app.', 'id': '517197092662824961', 'user': 'Nico'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-26 06:15:56', 'text': '@Uzh, das kommt noch hinzu. | @nessi6688', 'id': '515384254864576512', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-09-25 08:10:50', 'text': '@HaarFestTiger In der Tat. :D @ernke @UA2punkt0 @Uzh @peerolix', 'id': '515050782199398400', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 07:47:07', 'text': '@nessi6688 @ernke @UA2punkt0 @Uzh @peerolix Das war ein synchroner Frage-Antwort-Tweet.', 'id': '515044815445434368', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2014-09-25 07:45:31', 'text': '@HaarFestTiger Stummheit und steifes Bein. @ernke @UA2punkt0 @Uzh @peerolix', 'id': '515044412255379456', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 07:44:01', 'text': '@nessi6688 @ernke @UA2punkt0 @Uzh @peerolix nein! Und dann?', 'id': '515044033358725120', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2014-09-25 07:43:47', 'text': '@ernke @HaarFestTiger @UA2punkt0 @Uzh @peerolix Er sang hinterher nicht mehr und hatte ein steifes Bein.', 'id': '515043975427014656', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 07:41:54', 'text': '@nessi6688, hört sich spannend an. | @HaarFestTiger, @UA2punkt0, @Uzh, @peerolix', 'id': '515043499776147456', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-09-25 07:40:14', 'text': '@ernke @HaarFestTiger @UA2punkt0 @Uzh @peerolix Unser mal in einen Staubsauger.', 'id': '515043080979091456', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 07:28:19', 'text': '@HaarFestTiger, unser Wellensittich flog mal in einen Fliegenfänger. | @UA2punkt0, @Uzh, @peerolix', 'id': '515040083985326080', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 07:24:27', 'text': '@ernke @UA2punkt0 @Uzh das hat der @peerolix auch erzählt: Gardine hochgeklettert; runtergefallen...', 'id': '515039108809650176', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 07:23:34', 'text': '@HaarFestTiger, einer ist mal vom Wohnzimmerschrank gefallen. Dem ist aber dabei nix passiert. | @UA2punkt0, @Uzh, @peerolix', 'id': '515038888000495616', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 07:17:51', 'text': '@ernke das ist DEINEN Hamstern passiert?!! @UA2punkt0 @Uzh @peerolix', 'id': '515037447970127872', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 07:17:07', 'text': '@HaarFestTiger, der Schokolinsen-Tod ist auch wahr. | @UA2punkt0, @Uzh, @peerolix', 'id': '515037266075734016', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 07:15:22', 'text': '@ernke ich Wein gleich! @UA2punkt0 @Uzh @peerolix', 'id': '515036824688156672', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 07:12:41', 'text': '@UA2punkt0, der hat mich damals besonders mitgenommen. | @Uzh, @HaarFestTiger, @peerolix', 'id': '515036148146896896', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-25 06:38:17', 'text': '@ernke @kbojens @Uzh @peerolix Ja, das stimmt.', 'id': '515027491136999424', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-25 05:52:14', 'text': '@kbojens, sehr traurig. | @HaarFestTiger, @Uzh, @peerolix', 'id': '515015904821014528', 'user': 'Eumelzocker'}, {'fullname': 'kb \xa0🇪🇺', 'timestamp': '2014-09-24 22:47:30', 'text': '@HaarFestTiger @ernke @Uzh @peerolix http://youtu.be/1_R58zo1_Qw\xa0', 'id': '514909013872758784', 'user': 'kbojens'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-24 21:43:43', 'text': '@ernke @Uzh @peerolix Mann, Mann, Hamster scheinen ja ein bewegtes Thema zu sein!', 'id': '514892964016168960', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-24 21:07:00', 'text': '@Uzh, fiese Tode gehören bei Hamstern dazu. | @HaarFestTiger, @peerolix', 'id': '514883723377278976', 'user': 'Eumelzocker'}, {'fullname': 'fabian h. jenny', 'timestamp': '2014-09-21 17:01:12', 'text': 'support the #freedom of #research in Zurich. @uzh @ETHpic.twitter.com/kVJ3S87PWR', 'id': '513734703288172544', 'user': 'fhjenny'}, {'fullname': 'Renato Cortese', 'timestamp': '2014-09-21 11:49:30', 'text': '@uzh http://www.anti-aristokratie.blogspot.ch/\xa0', 'id': '513656259690504193', 'user': 'Renato_Cortese'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-19 21:23:46', 'text': '@Uzh Aufopferungsvoll ;)', 'id': '513076003783344128', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-19 18:41:54', 'text': 'Das Anstands-Choco-Crossie von @Uzh http://twitpic.com/ebuqo9\xa0', 'id': '513035270313508865', 'user': 'HaarFestTiger'}, {'fullname': 'Stadtbibliothekar', 'timestamp': '2014-09-16 09:35:12', 'text': 'http://www.uzh.ch/news/articles/2014/von-ostern-bis-michaelis.html\xa0…: Witziger Rückblick auf den Studienbeginn und -alltag vor 180 Jahren @uzh. Allen Studis einen guten #Studienbeginn!', 'id': '511810524179226624', 'user': 'bibliothekensh'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-10 16:45:34', 'text': '@Uzh, »Cameringo« ist Dein Freund.', 'id': '509744503071440897', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-09-10 16:39:40', 'text': '@Uzh, erst seit heute.', 'id': '509743016048095232', 'user': 'Eumelzocker'}, {'fullname': 'Le foucaldien', 'timestamp': '2014-09-05 12:01:03', 'text': 'Note the new date for our #workshop "Historicizing Foucault: What does this mean?" @UZH: March 19-21, 2015! http://www.fsw.uzh.ch/foucaultblog/issues/57/new-date-for-the-workshop-historicizing-foucault-what-does-this-mean-march-19-21-2015\xa0…', 'id': '507860962452316161', 'user': 'lefoucaldien'}, {'fullname': 'Swiss Higher Ed', 'timestamp': '2014-09-05 07:30:11', 'text': 'Bitcoins as future money? #students @UZH have introduced #bitcoins to the #Mensa http://bit.ly/1t5iqvK\xa0', 'id': '507792794132295680', 'user': 'SwissHigherEd'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-09-01 08:51:53', 'text': 'Der @Uzh animiert mich zum Prokrastinieren. Ich fass es nicht.', 'id': '506363806243880960', 'user': 'HaarFestTiger'}, {'fullname': 'vivid', 'timestamp': '2014-08-26 08:05:44', 'text': 'Alle (halb)Jahre wieder. #Modulbuchung @uzh pic.twitter.com/CaO5Jup2qD', 'id': '504177863453868032', 'user': 'Anetzerli'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-08-26 07:22:50', 'text': '@Uzh Weil sie vergessen haben, wo sie schon Nüsse versteckt haben!', 'id': '504167067592196096', 'user': 'HaarFestTiger'}, {'fullname': 'Kreftige Worte', 'timestamp': '2014-08-23 14:05:23', 'text': '@peerolix @Uzh dann hoffe ich erst recht, dass du rasch entlassen wirst...', 'id': '503181210626293760', 'user': 'krewor'}, {'fullname': 'Peer H.', 'timestamp': '2014-08-23 09:58:46', 'text': '@Uzh @krewor Nee, mich fordert das. So viele spannende Sachen und Verletzungen zu entdecken.', 'id': '503119143856787456', 'user': 'peerolix'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-08-22 09:41:39', 'text': 'Wir sind das Produkt! Ausgez @UZH video zum Medienwandel via @mathis_b https://www.youtube.com/watch?v=M7EVXbueSyY\xa0… #controlyourdata', 'id': '502752449925763072', 'user': 'ehafen'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-08-17 15:24:46', 'text': "@Uzh, was für 'n Ding?!", 'id': '501026858042138624', 'user': 'Eumelzocker'}, {'fullname': 'Roede_Orm', 'timestamp': '2014-08-11 06:47:43', 'text': '@Uzh Kleine "Schocks" halten wach. Unser großes Schulkind war auch in der gleichen Gruppe bei gleicher Erzieherin. Also bekanntes Terrain!', 'id': '498722411463073793', 'user': 'Roede_Orm'}, {'fullname': 'Roede_Orm', 'timestamp': '2014-08-11 06:40:04', 'text': '@Uzh So schlimm?', 'id': '498720486659215360', 'user': 'Roede_Orm'}, {'fullname': 'Roede_Orm', 'timestamp': '2014-08-11 06:36:52', 'text': "@Uzh Bei uns wird's leichter. Die gleiche Einrichtung mit regelmäßigen Besuchen in der neuen Gruppe. Die Erzieherinnen sind bekannt.", 'id': '498719681587724288', 'user': 'Roede_Orm'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-08-08 16:43:25', 'text': '@Uzh, und? Erfolgreich?', 'id': '497785161237667840', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-08-07 10:53:15', 'text': '@Uzh, mal wieder einen draufsetzen, wa’?! | @dwarfplanet', 'id': '497334649388298240', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-07-25 15:14:21', 'text': '@Uzh Ja, da isses doch deutlicher als im fertigen Produkt. :D', 'id': '492689317127782400', 'user': 'nessi6688'}, {'fullname': '©Ҥ®1$   Ҭ0ҎҤ™ \xa0🐕', 'timestamp': '2014-07-22 15:05:48', 'text': 'Muhahaha, der #Ingorant hat mich geblockt, @Uzh', 'id': '491599999713943552', 'user': 'dwarfplanet'}, {'fullname': 'Nessa', 'timestamp': '2014-07-17 20:23:04', 'text': '@Uzh Danke!', 'id': '489867906101293057', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2014-07-13 16:58:13', 'text': '@Uzh @Gregor_Voht hat da so ein genetisches Ding', 'id': '488366801068494848', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-07-13 16:46:50', 'text': '@Uzh @Gregor_Voht Schon wieder? Stetig. STETIG!', 'id': '488363937013190656', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-07-13 16:44:42', 'text': '@Uzh @Gregor_Voht Eher Umfaller ;-)', 'id': '488363401471860736', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-07-13 15:35:55', 'text': '@Uzh Ist ein amerikanischer.', 'id': '488346089335308288', 'user': 'nessi6688'}, {'fullname': "BetweenUsN'Shit", 'timestamp': '2014-07-08 19:39:25', 'text': '@Uzh @FailuresOnTV yeah', 'id': '486595430818381825', 'user': 'ItsMehAnGiie'}, {'fullname': 'Peer H.', 'timestamp': '2014-07-01 21:06:10', 'text': '@Uzh Ja, vom unsäglichen Akzent mal ganz abgesehen.', 'id': '484080544012312576', 'user': 'peerolix'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-06-30 19:03:06', 'text': '@Uzh Yoda-style.', 'id': '483687188639789057', 'user': 'HaarFestTiger'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-06-29 18:21:29', 'text': '@Uzh Rischtisch. Damit bist du natürlich im Rennen um die Postkarte. #QuizVine', 'id': '483314326913421312', 'user': 'Frau_W'}, {'fullname': 'Mike Klymkowsky', 'timestamp': '2014-06-27 20:11:23', 'text': 'Might need a close look at actual efficacy @ehafen @ETH @Uzh   What the Theory of “Disruptive Innovation” Gets Wrong http://www.newyorker.com/reporting/2014/06/23/140623fa_fact_lepore?currentPage=all?mbid=social_retweet\xa0…', 'id': '482617207055081472', 'user': 'mikeklymkowsky'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-06-27 06:30:34', 'text': 'The Economist | The future of universities: The digital degree @ETH @uzh @mikeklymkowskyhttp://www.economist.com/news/briefing/21605899-staid-higher-education-business-about-experience-welcome-earthquake-digital?frsc=dg%7Ca&fsrc=scn/tw_app_ipad\xa0…', 'id': '482410643791028224', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-06-27 06:27:35', 'text': 'The Economist | Higher education: Creative destruction @ETH @uzh @mikeklymkowskyhttp://www.economist.com/news/leaders/21605906-cost-crisis-changing-labour-markets-and-new-technology-will-turn-old-institution-its?frsc=dg%7Ca&fsrc=scn/tw_app_ipad\xa0…', 'id': '482409891739729920', 'user': 'ehafen'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-06-22 22:47:29', 'text': '@Uzh in der Tat!', 'id': '480844551503241216', 'user': 'HaarFestTiger'}, {'fullname': 'Zwyback Ketszersult', 'timestamp': '2014-06-15 17:28:01', 'text': "@uzh die bewohner der @lindenstrasse haben's echt gut! :D", 'id': '478227439450345472', 'user': 'zwyback'}, {'fullname': 'Lindenstraße', 'timestamp': '2014-06-15 17:25:00', 'text': 'Steht 1:1 #SUIECU #WM2014 :-) RT @Uzh: @Lindenstrasse @zwyback Sie muss sich ja auch nicht zwischen Fußball und Lindenstraße entscheiden.', 'id': '478226680411324416', 'user': 'Lindenstrasse'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2014-06-15 15:46:41', 'text': '@Uzh Ich ja eigentlich auch. Aber die Leute reagieren dann immer so pikiert.', 'id': '478201937125728257', 'user': 'Stecki'}, {'fullname': 'Michael Baudis', 'timestamp': '2014-06-15 11:18:02', 'text': 'University of Zurich | Universität Zürich | @UZH pic.twitter.com/G44rCP8vvN', 'id': '478134331966513154', 'user': 'mbaudis'}, {'fullname': 'Bastian', 'timestamp': '2014-06-13 20:04:58', 'text': '@Uzh Scherzkeks', 'id': '477542163941965824', 'user': 'Schreibspecht'}, {'fullname': 'Stefan', 'timestamp': '2014-06-13 19:56:33', 'text': '@Uzh coool. Wie gemacht? Brennweite? Zeit?', 'id': '477540042685317120', 'user': 'stefan4all'}, {'fullname': 'florian v.', 'timestamp': '2014-06-13 19:55:26', 'text': 'Wunderschönes Foto von @DDpix_de RT @Uzh: @DLR_next Die ISS über Dresden...pic.twitter.com/txKCaXWMgZ', 'id': '477539764862992384', 'user': 'fasnix'}, {'fullname': 'The SI guy', 'timestamp': '2014-06-13 19:55:21', 'text': '@Uzh Und da steht "Lübeck, Lübeck" als Geoinformation dran (und es sieht auch nicht nach Lübeck aus)?', 'id': '477539743065186305', 'user': 'xZise'}, {'fullname': 'Science IT UZH', 'timestamp': '2014-06-11 08:31:49', 'text': 'Join us in a 4 week Kinetec Storage test setup @UZH.\nhttp://www.s3it.uzh.ch/news/Kinetic_PoC/\xa0…', 'id': '476642951167479808', 'user': 'UZH_ScienceIT'}, {'fullname': 'Bastian', 'timestamp': '2014-06-06 22:13:46', 'text': '@Uzh Auch :-)', 'id': '475037861889445888', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-06-02 21:01:29', 'text': '@Uzh Danke. :)', 'id': '473570120791777280', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-06-02 21:00:14', 'text': 'Aber ein orales bitteschön! RT @Uzh: @ernke Ferkel!', 'id': '473569804964859905', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-06-02 20:32:49', 'text': '@Uzh Zum Glück! http://animexx.onlinewelten.com/doujinshi/zeichner/111690/50071/92104/870019/\xa0…', 'id': '473562904277835777', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-06-01 21:26:21', 'text': '@Uzh, natürlich nicht! Die Färöer-Inseln gehören zum Königreich Lummerland und haben den gleichen Status wie Wales innerhalb von GB.', 'id': '473213990777389056', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-06-01 20:56:32', 'text': '@Uzh Hehe. Hab ja sonst nur Skizzen getwittert. ;)', 'id': '473206487138177024', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-06-01 20:54:41', 'text': 'Der @Uzh favt sich so durch.', 'id': '473206018433122304', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-05-26 19:12:22', 'text': '@Uzh, ich kann von Glück sprechen, dass die @filia_de mich nicht ins Bett steckte.', 'id': '471005943652941824', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-05-24 08:46:38', 'text': '@Uzh, <loriot>ach was?!</loriot>  | @nessi6688', 'id': '470123695995113473', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-05-24 08:45:32', 'text': "@nessi6688, wat 'n Glück! | @Uzh", 'id': '470123418873257985', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-05-24 08:42:26', 'text': '@ernke @Uzh Offenbar nicht.', 'id': '470122639219249152', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-05-24 08:39:07', 'text': '@Uzh, zwischen die Augen?! | @nessi6688', 'id': '470121806624337920', 'user': 'Eumelzocker'}, {'fullname': 'Marco Tempest', 'timestamp': '2014-05-23 15:43:49', 'text': 'Tip-of-the-hat to @SwissCGNY and all the presenters for the amazing job with the ZurichMeetsNewYork Festival. #ZHNY @ETH @UZH...', 'id': '469866295014748161', 'user': 'virtualmagician'}, {'fullname': 'phaenomeme', 'timestamp': '2014-05-19 07:15:17', 'text': '@Uzh @weissertiger2 wenn das https://twitter.com/Uzh/status/467760367062765568\xa0… und das https://twitter.com/weissertiger2/status/467701549243043840\xa0… stimmt, haben wir es ja richtig gemacht ;-)', 'id': '468288768177627136', 'user': 'phaenomeme'}, {'fullname': 'Nessa', 'timestamp': '2014-05-16 19:57:57', 'text': '@Uzh @doppeltim @DerLachwitz will doch bestimmt. :)', 'id': '467393537458196480', 'user': 'nessi6688'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-05-16 07:36:13', 'text': 'Charles Weissmann (83) who publ 11 pprs last yr, built Scripps Florida last 11 yrs had to retire from @UZH at 65  Loss for UZH and CH', 'id': '467206873620680704', 'user': 'ehafen'}, {'fullname': '©Ҥ®1$   Ҭ0ҎҤ™ \xa0🐕', 'timestamp': '2014-05-13 20:24:08', 'text': '@Uzh letztes Jahr. So schön.', 'id': '466312962807173121', 'user': 'dwarfplanet'}, {'fullname': 'Bernward', 'timestamp': '2014-05-10 23:04:32', 'text': '@Uzh Klar :) Wenn man in Bayern wohnt, wirds sogar noch mehr.', 'id': '465266162985869312', 'user': 'Autanius'}, {'fullname': 'Simon Zeimke', 'timestamp': '2014-05-10 19:55:29', 'text': '@Uzh danke, Hemnes.', 'id': '465218589302489088', 'user': 'Pillendreher'}, {'fullname': 'Xdopa', 'timestamp': '2014-05-10 19:28:09', 'text': '@Uzh Prost!', 'id': '465211709092020224', 'user': 'x_dopa'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2014-05-03 10:40:11', 'text': 'Three’s Company: In Residency at swissnex San Francisco http://ow.ly/wdW4T\xa0 @ETH_en @unil @UZH', 'id': '462542128556826624', 'user': 'swissnexSF'}, {'fullname': 'LN_Online', 'timestamp': '2014-05-01 09:45:01', 'text': '@Uzh Bei mir Zuhause ist sie heute auch nicht gekommen. Naja, kann ja mal passieren. Wir schalten dafür mehr Inhalte auf LN Online gratis.', 'id': '461803467443814400', 'user': 'LN_Online'}, {'fullname': 'LN_Online', 'timestamp': '2014-05-01 07:30:02', 'text': '@Uzh Nicht, dass ich wüsste. Ist sie nicht gekommen?', 'id': '461769498530705408', 'user': 'LN_Online'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2014-04-30 17:16:00', 'text': '@Uzh Thanks for that note. Will edit tweets.', 'id': '461554575393431552', 'user': 'swissnexSF'}, {'fullname': 'Georg Gemander', 'timestamp': '2014-04-30 17:14:22', 'text': '@swissnexSF No, but I am @Uzh by myself.', 'id': '461554161566633985', 'user': 'Uzh_HL'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2014-04-30 17:12:47', 'text': "Are you a student @UZH? Don't miss this opportunity to work w/ us in SF for the international relations office of UZH http://ow.ly/wl7RF\xa0", 'id': '461553764735148032', 'user': 'swissnexSF'}, {'fullname': 'Université Lausanne', 'timestamp': '2014-04-29 10:02:35', 'text': 'MT @swissnexSF: Three’s Company: In Residency at swissnex San Francisco w/ prof. Francesco Panese @unil http://ow.ly/whcxF\xa0 @ETH_en @Uzh', 'id': '461083112446119936', 'user': 'unil'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2014-04-29 09:40:13', 'text': 'Three’s Company: In Residency at swissnex San Francisco http://ow.ly/wdW0f\xa0 @ETH_en @unil @UZH', 'id': '461077485636308992', 'user': 'swissnexSF'}, {'fullname': 'Nessa', 'timestamp': '2014-04-27 12:40:28', 'text': '@Uzh Ohja! @HaarFestTiger @BeAvonHL', 'id': '460398070422061056', 'user': 'nessi6688'}, {'fullname': 'Myertyn Pryeble', 'timestamp': '2014-04-26 06:58:46', 'text': '@Uzh hmmm yeah', 'id': '459949690067251201', 'user': 'MartinPribble'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-04-13 14:45:37', 'text': '"Krümel haben keine Kalorien" (@Uzh gibt Ernährungstipps.)', 'id': '455356133637890049', 'user': 'HaarFestTiger'}, {'fullname': 'Daniel Pache', 'timestamp': '2014-04-09 20:28:51', 'text': '@Uzh da verzichte ich widerstrebend auf jegliche Wort-zum-Donnerstag-Flachwitze und wie dankst Du es mir? Gar nicht! :-P', 'id': '453992963434369024', 'user': 'deep470'}, {'fullname': 'Nessa', 'timestamp': '2014-04-05 21:31:05', 'text': '@Uzh Das beruhigt mich. Ich finde da sonst keine Infos zu.', 'id': '452559070403510272', 'user': 'nessi6688'}, {'fullname': 'Daniel Pache', 'timestamp': '2014-04-02 20:54:23', 'text': '@nessi6688 @Uzh Klugschieter! :-P', 'id': '451462672312467456', 'user': 'deep470'}, {'fullname': 'Nessa', 'timestamp': '2014-04-02 20:23:02', 'text': '@Uzh @deep470 Das dachte ich mir schon. ;)', 'id': '451454783048929281', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-04-02 20:17:41', 'text': '@Uzh Samstagabend nach den Tagesthemen.', 'id': '451453436434067457', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-04-02 20:16:25', 'text': '@deep470 Das Wort ZUM Sonntag kommt auch nicht Sonntags. ;) @Uzh', 'id': '451453118216413184', 'user': 'nessi6688'}, {'fullname': 'Daniel Pache', 'timestamp': '2014-04-02 20:15:37', 'text': '@nessi6688 @Uzh heute ist gar nicht Donnerstag :-o', 'id': '451452914507448322', 'user': 'deep470'}, {'fullname': 'Nessa', 'timestamp': '2014-04-02 20:09:52', 'text': '@Uzh :)', 'id': '451451468349194241', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-04-02 19:56:21', 'text': '@Uzh Ein Herz für Nietenzähler und Pufferküsser. :)', 'id': '451448066839957505', 'user': 'nessi6688'}, {'fullname': 'A. Fauzi', 'timestamp': '2014-04-02 16:28:28', 'text': 'Hahaha suwunk maneh awkmu iku po.ki ws blk ng jkt to awkmu? "@Herry_Chy: Ancen wong suwung y ngunu iku.."@destydynasty: @uzh', 'id': '451395752447586305', 'user': 'uzhie_ahmad'}, {'fullname': 'KPMG CH Careers', 'timestamp': '2014-03-28 20:23:27', 'text': 'Um Platz eins, zwei und drei spielen: @ETH @HSR @UZH', 'id': '449642949790695425', 'user': 'KPMG_CH_Careers'}, {'fullname': 'KPMG CH Careers', 'timestamp': '2014-03-28 20:02:36', 'text': 'Im Finale sind auch: @UZH und @HSR', 'id': '449637700514373632', 'user': 'KPMG_CH_Careers'}, {'fullname': 'Impact Hub Zürich', 'timestamp': '2014-03-21 14:07:53', 'text': 'Win the SOCIAL IMPACT AWARD with your idea for a Social Enterprise! \n\nJoin us NEXT WEEK for free WORKSHOPS @UZH,... http://fb.me/2TCGtgt0t\xa0', 'id': '447011718993293312', 'user': 'impacthubzurich'}, {'fullname': 'Nessa', 'timestamp': '2014-03-20 22:20:36', 'text': '@Uzh Ui! Das ist ja putzig.', 'id': '446773326179229696', 'user': 'nessi6688'}, {'fullname': '(((mbuguajellin)))', 'timestamp': '2014-03-20 19:07:41', 'text': '@ernke @Uzh -- er ist geblitzt  - von dem blitzdingens -- vorsicht !!!      :)', 'id': '446724776279932928', 'user': 'sunnyjobs'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-03-20 19:02:20', 'text': '@Uzh, mit Ach und Krach.', 'id': '446723429728014336', 'user': 'Eumelzocker'}, {'fullname': 'Stadtbibliothekar', 'timestamp': '2014-03-17 11:53:19', 'text': 'http://www.uzh.ch/news/articles/2014/medien-vor-den-massenmedien.html\xa0…:\n"Social Networks" (très) avant la lettre, tolles Forschungsprojekt @uzh', 'id': '445528304397737984', 'user': 'bibliothekensh'}, {'fullname': 'Nessa', 'timestamp': '2014-03-08 23:05:58', 'text': '@Uzh Ich King???', 'id': '442436090285539328', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-03-08 22:49:34', 'text': '.@Uzh, the king of SingStar.', 'id': '442431964193488896', 'user': 'nessi6688'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-03-08 19:58:01', 'text': '@Uzh, ich bin bereits in der Horizontalen …', 'id': '442388790204989440', 'user': 'Eumelzocker'}, {'fullname': 'Kreftige Worte', 'timestamp': '2014-03-07 23:33:07', 'text': '@unimogfahrer @peerolix @Uzh hier findet ihr alle sechs gründe: http://enrico-kreft.de/wp-content/uploads/sites/14/2014/02/Einleger_Spendenbrief.pdf\xa0…', 'id': '442080533095653376', 'user': 'krewor'}, {'fullname': 'Christian', 'timestamp': '2014-03-07 21:17:08', 'text': '@peerolix @Uzh @krewor das ist EU-Mathe. Da gelten andere Gesetze... ;-)', 'id': '442046312037748736', 'user': 'unimogfahrer'}, {'fullname': 'Peer H.', 'timestamp': '2014-03-07 21:15:48', 'text': '@unimogfahrer @Uzh @krewor Ist das SPD-Mathe? ;)', 'id': '442045978175365121', 'user': 'peerolix'}, {'fullname': 'Christian', 'timestamp': '2014-03-07 21:13:50', 'text': '@peerolix @Uzh @krewor Moment. 1+2+3=6 ;-)', 'id': '442045484136693760', 'user': 'unimogfahrer'}, {'fullname': 'Kreftige Worte', 'timestamp': '2014-03-07 20:33:08', 'text': '@peerolix @Uzh oh doch. die andere drei gründe stehen weiter rechts, du scherzkeks.', 'id': '442035239775653888', 'user': 'krewor'}, {'fullname': 'Peer H.', 'timestamp': '2014-03-07 20:31:26', 'text': 'Aber rechnen kann er nicht: sechs Gründe und nur bis drei gezählt. RT @Uzh: Post von @krewor . Daschamanett.pic.twitter.com/yVwNZef6xg', 'id': '442034812992634880', 'user': 'peerolix'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 18:46:43', 'text': 'Deiner? Unser aller!!!!! RT @ernke: @Schreibspecht, der @Uzh ist mein Held.', 'id': '438746968886878210', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-26 18:33:34', 'text': '@Schreibspecht, der @Uzh ist mein Held.', 'id': '438743661057441792', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 18:04:45', 'text': '@ernke Frag mal @Uzh. Der kennt sich damit aus. Und schickt sogar ungefragt Fotos.', 'id': '438736408027856897', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 17:32:10', 'text': 'Eben! RT @Uzh: @Schreibspecht Aber das Schreibspecht ist doch gar nicht gemein. |@ernke', 'id': '438728205449854976', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 08:09:27', 'text': 'Du sagst es. Verkanntes Das. Ich. RT @ernke: @Uzh, das gemeine Journalist ist eben ein ganz Liebes. | @Schreibspecht', 'id': '438586593168084992', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-26 08:06:50', 'text': '@Uzh, das gemeine Journalist ist eben ein ganz Liebes. | @Schreibspecht', 'id': '438585936113573888', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-26 08:05:51', 'text': '@Schreibspecht, das arme Kerl! | @Uzh', 'id': '438585687919837184', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 07:51:09', 'text': '@Uzh So bin ich. Ein großer Menschenfreund.', 'id': '438581989030264832', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-02-26 07:40:06', 'text': 'Lass bitte @Uzh aus dem Spiel. RT @ernke: Also ich wäre ja fürs generische Neutrum.', 'id': '438579209691467776', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-17 08:15:20', 'text': '@Uzh, <loriot>ach was?!</loriot> | @HaarFestTiger', 'id': '435326584246243329', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-17 00:52:05', 'text': '@HaarFestTiger, das Ding kann nur eine billige Fälschung sein! | @Uzh', 'id': '435215036911722496', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-02-16 14:08:51', 'text': '@Uzh Auf deiner Facebookseite. Entschuldige die unpräzise Wortwahl :D', 'id': '435053162475421696', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-02-16 14:05:41', 'text': "Habe auf Facebook @Uzh' drei Lieblingsfilme gesehen: Das kleine Gespenst, Ronja Räubertochter und Pulp Fiction.", 'id': '435052366497206274', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-02-16 13:59:39', 'text': '@Uzh Aber ich kannte bisher nur den @ernke, der sowas macht! Ihr müsst Schwestern im Geiste sein!', 'id': '435050847228030977', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-02-16 12:40:41', 'text': '@Uzh Wieso hast du das denn?! @ernke', 'id': '435030974322442240', 'user': 'HaarFestTiger'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-16 09:32:30', 'text': '@Uzh, ich habe keinen blassen Schimmer …', 'id': '434983617451012096', 'user': 'Eumelzocker'}, {'fullname': 'Dr.Ausserhouse', 'timestamp': '2014-02-16 03:19:39', 'text': 'Da war schön mit @peerolix @deep470 @Grey_Gor @Schreibspecht @HaarFestTiger @Uzh @krewor etc. Freunde eben!', 'id': '434889786583953408', 'user': 'Lugh_Haurie'}, {'fullname': 'Daniel Pache', 'timestamp': '2014-02-16 03:07:34', 'text': 'Das war ein toller Abend mit @Uzh & Frau @Schreibspecht @HaarFestTiger @peerolix @luebeck_muse @krewor @Grey_Gor Kai und @Luuliiaa', 'id': '434886744199426050', 'user': 'deep470'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-12 14:35:26', 'text': '@Schreibspecht, 2.05 Uhr?! Das kann gar nicht sein! – Obwohl … | @Uzh', 'id': '433610302832537600', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-02-12 14:11:14', 'text': 'Manchmal* machen mir @ernke und @Uzh Angst. Zumindest Zweifel ich an ihrer Zurechnungsfähigkeit.\n\n*immer pic.twitter.com/Wa3NjtmG4d', 'id': '433604210308186112', 'user': 'Schreibspecht'}, {'fullname': 'Yusran Apuadji', 'timestamp': '2014-02-10 16:38:13', 'text': 'Blm gw pintain bang , wkwk"@uzhthe19: Ywd mana pin yg tadi kita bicarakan "@yusranapuadji: Berangkatlah itumah slowww wkwkw"@uzh"', 'id': '432916423954804737', 'user': 'yusranapuadji'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-02-09 19:58:04', 'text': '@Uzh Ach so. Naja, das wars nicht wirklich. Ist ein sensibles Thema hier. Wie du sicherlich inzwischen bemerkt hast...', 'id': '432604332035301376', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-02-09 19:51:14', 'text': '@Uzh Darauf verzichte ich gerne. Ich gehöre zu denen, die nicht angstgetrieben und kurzsichtig Ja gestimmt haben. Also lass das bitte. Danke', 'id': '432602613024964608', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-02-09 19:20:50', 'text': '@Uzh Bitte?', 'id': '432594960756396034', 'user': 'Frau_W'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-02-08 07:32:12', 'text': 'The Economist | Sexual selection:  Attractiveness signals endurance study by Eric Postma @uzh http://www.economist.com/news/science-and-technology/21595889-new-study-suggests-link-between-cyclists-looks-and-their-performance-hot?frsc=dg%7Ca&fsrc=scn/tw_app_ipad\xa0…', 'id': '432054239666663424', 'user': 'ehafen'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2014-02-03 05:54:54', 'text': '@Uzh Joah, und schick is!', 'id': '430217813299458048', 'user': 'Stecki'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-02-02 21:33:20', 'text': '@Uzh, Du hast eine sehr gute Beobachtungsgabe. Respekt!', 'id': '430091591236452352', 'user': 'Eumelzocker'}, {'fullname': 'Si Uzhie_Petot', 'timestamp': '2014-02-01 13:49:20', 'text': 'Kunaon cmberut? :v "@_aweyers: :(( RT" @Uzhie_21: Nya atos ari alim mh -,- bye :p "@_aweyers: Haha :p hoyong cewe abimah ah :((( RT" @Uzh...', 'id': '429612434320400384', 'user': 'uzhie_21'}, {'fullname': 'Bastian', 'timestamp': '2014-01-31 22:55:04', 'text': '@Uzh das ist jetzt sehr ehrverletzend!', 'id': '429387382140731392', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-01-29 21:25:49', 'text': '@Uzh Hehe, stimmt. ^^ Und der @nico einen schönen Artikel... http://lumma.de/2012/08/10/der-elternabend-an-sich-die-fruhen-jahre/\xa0…', 'id': '428640147421556736', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-01-29 21:19:35', 'text': '@Uzh Ich bin gespannt, was Du schreibst, wenn ihr bei den schulischen Elternabenden angelangt seid... ;)', 'id': '428638580135972864', 'user': 'nessi6688'}, {'fullname': 'Fabian Korn', 'timestamp': '2014-01-28 09:01:25', 'text': 'Modulbuchung im Schnee @uzh @LAAX_Schweiz #wellseehowitgoes', 'id': '428090425568948224', 'user': 'f_koorn'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-26 18:42:12', 'text': '@Uzh, im Moment noch nicht.', 'id': '427511809122516992', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-01-26 17:56:27', 'text': '@Uzh Ihr sprecht in Rätseln.', 'id': '427500296088997888', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2014-01-26 09:04:34', 'text': "Warum hockst Du auf Bäumen rum? RT @Uzh: Wieder zurück aus der Heimat vom @Schreibspecht. Schee war's.", 'id': '427366440661172224', 'user': 'Schreibspecht'}, {'fullname': 'Hernâni Marques', 'timestamp': '2014-01-23 17:31:43', 'text': '@NZZcampus @Uzh #FAIL xD', 'id': '426406905175486464', 'user': 'vecirex'}, {'fullname': '\xa0♦ JochenRochen KUNST', 'timestamp': '2014-01-22 08:32:03', 'text': '@Pyrolim @Schreibspecht @lilli2 @Uzh Klingt interessant: Zug wird geschleppt. Hat er die Grippe?', 'id': '425908707193397248', 'user': 'JochenRochen'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-22 08:31:28', 'text': '@Schreibspecht @lilli2 @Uzh Bahn hat mitgeteilt: Lokpanne um 7.26 Uhr, Rtg. HH, 150 Reisende konnten in Eutin aussteigen.', 'id': '425908560078196736', 'user': 'Pyrolim'}, {'fullname': 'Bastian', 'timestamp': '2014-01-22 08:15:34', 'text': '@lilli2 @Pyrolim @Uzh Liegenbleiber in Eutin. Dadurch ist ein Gleis dicht, Zug wird aber gerade geschleppt.', 'id': '425904560339963904', 'user': 'Schreibspecht'}, {'fullname': 'gerda petrich', 'timestamp': '2014-01-22 08:13:50', 'text': '@Pyrolim @Schreibspecht @Uzh der soll 6:59 in eutin losfahren, guck meine tweets ...', 'id': '425904124597530624', 'user': 'lilli2'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-22 08:12:01', 'text': '@lilli2 @Schreibspecht @Uzh Seit wann steht der da?', 'id': '425903665358991361', 'user': 'Pyrolim'}, {'fullname': 'gerda petrich', 'timestamp': '2014-01-22 08:11:00', 'text': '@Pyrolim @Schreibspecht @Uzh darüber reg ich mich schon seit stunden auf, lütte und weitere passagiere mit auto nach hl gebracht', 'id': '425903408881479680', 'user': 'lilli2'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-22 08:09:37', 'text': '@Schreibspecht @Uzh @lilli2 Bahn melde sich in Kürze mit näheren Infos. Danach melde ich mich hier wieder.', 'id': '425903063665090560', 'user': 'Pyrolim'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-22 08:06:28', 'text': '@Schreibspecht @Uzh Ok, ich rufe jetzt E. M.-L. an.', 'id': '425902269402316800', 'user': 'Pyrolim'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-22 07:59:46', 'text': '@Uzh @Schreibspecht Müsst Ihr mich so früh so etwas fragen?', 'id': '425900584265187328', 'user': 'Pyrolim'}, {'fullname': 'Bastian', 'timestamp': '2014-01-22 07:58:35', 'text': '@Uzh @Pyrolim weiß einfach alles.', 'id': '425900286222540800', 'user': 'Schreibspecht'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-01-21 21:06:43', 'text': '@Uzh Täglich ;)', 'id': '425736238617075712', 'user': 'Frau_W'}, {'fullname': 'schattenreiter', 'timestamp': '2014-01-21 18:11:53', 'text': '@DLR_next Habe rumgerechnet. Aus unbewohnten, d.h. dunkeln Gebieten, sollte es funktionieren. Köln wäre eher nicht geeignet ;-) @Uzh', 'id': '425692237339848705', 'user': 'Schattenreiter'}, {'fullname': 'schattenreiter', 'timestamp': '2014-01-21 18:07:48', 'text': '@Uzh Fast, die ISS soll nicht beleuchtet werden. In einem Absatz steht dort sowas in der Art. @DLR_next', 'id': '425691213061431296', 'user': 'Schattenreiter'}, {'fullname': 'Bastian', 'timestamp': '2014-01-21 10:04:47', 'text': 'Tolle Idee! Applaus! RT @Pyrolim: @Uzh @Schreibspecht Ihr wollt doch nur Malente nach Nordschleswig ausgemeinden.', 'id': '425569656863481856', 'user': 'Schreibspecht'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-21 09:55:17', 'text': '@Uzh @Schreibspecht Ihr wollt doch nur Malente nach Nordschleswig ausgemeinden.', 'id': '425567264029417472', 'user': 'Pyrolim'}, {'fullname': 'Bastian', 'timestamp': '2014-01-21 09:54:24', 'text': '@Uzh Vortreffliches Konzept', 'id': '425567041882689536', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-01-21 09:51:18', 'text': '@Pyrolim @Uzh Dann starte ich eine Sammelaktion für eine Schneekanone', 'id': '425566263944171520', 'user': 'Schreibspecht'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2014-01-21 09:47:52', 'text': '@Uzh @Schreibspecht So klein ist Malente nun auch nicht. Da reicht das bisschen Schnee nicht aus.', 'id': '425565401158664192', 'user': 'Pyrolim'}, {'fullname': 'DLR_next', 'timestamp': '2014-01-21 08:23:29', 'text': '@Uzh Interessant.', 'id': '425544162763493376', 'user': 'DLR_next'}, {'fullname': 'Bastian', 'timestamp': '2014-01-21 07:48:01', 'text': '@Uzh Du, der lässt echt nach...', 'id': '425535237737943040', 'user': 'Schreibspecht'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-01-17 22:09:52', 'text': '@Uzh Wir werden sehen ;)', 'id': '424302576771686400', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2014-01-17 22:02:19', 'text': '@Uzh Die Schweiz meint, über folgendes abstimmen zu müssen: http://www.parlament.ch/D/WAHLEN-ABSTIMMUNGEN/VOLKSABSTIMMUNGEN/VOLKSABSTIMMUNGEN-2014/ABSTIMMUNG-2014-02-09/Seiten/default.aspx\xa0… #Hüstel', 'id': '424300677339160577', 'user': 'Frau_W'}, {'fullname': 'Bastian', 'timestamp': '2014-01-17 07:29:45', 'text': '@Uzh Das geht damit einher.... ;-)', 'id': '424081087837786112', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-01-17 07:23:47', 'text': '@Uzh Ich nenn es liebevoll Realismus :-)', 'id': '424079587778506752', 'user': 'Schreibspecht'}, {'fullname': 'Sarah Genner, PhD', 'timestamp': '2014-01-16 12:51:47', 'text': 'Seit 1997 ist der Internetkonsum von 76 Min. auf 169 Min. pro Tag angestiegen, sagt Prof. K. Rost von der @UZH. pic.twitter.com/apJropzTvf', 'id': '423799743962431488', 'user': 'sgenner'}, {'fullname': 'Bastian', 'timestamp': '2014-01-15 22:04:13', 'text': '@Uzh Mich!', 'id': '423576380664975360', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-15 11:09:40', 'text': '@Uzh, jammern auf hohem Niveau …', 'id': '423411656786706432', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-15 09:48:35', 'text': '@Uzh, das ist die miese Hardware meines Tabs. Die dreht den Bildschirm und die Kamera nicht so schnell, wie ich es gern hätte. :-/', 'id': '423391250646327296', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-14 17:33:08', 'text': '@Schreibspecht, sehr traurig. | @Uzh', 'id': '423145772914585601', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-01-14 17:25:59', 'text': '@ernke der @Uzh darf deshalb auch bis heute nicht in der Disco oder bei Konzerten zu nah an der Box stehen - von wegen Ploppgefahr', 'id': '423143972341841920', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-14 17:21:46', 'text': '@Schreibspecht, ploppen die Pickel bei @Uzh auch so schön auf und spritzen überall hin?', 'id': '423142911317135360', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-01-14 17:19:42', 'text': '@ernke Da ist ja @Uzh Experte!', 'id': '423142392452374528', 'user': 'Schreibspecht'}, {'fullname': 'Oliver Fraederich', 'timestamp': '2014-01-14 09:07:58', 'text': '@Uzh @Schreibspecht Gibt’s da auch ein Foto?', 'id': '423018643468075008', 'user': 'textlastig'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-14 08:39:19', 'text': '@Uzh, der Herr hat sehr gut aufgepasst. Respekt. ツ', 'id': '423011434352889856', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-01-14 07:50:18', 'text': '@Uzh Vielleicht einen Horror-Roman. Oder einen Porno.', 'id': '422999098426683392', 'user': 'Schreibspecht'}, {'fullname': 'Peer H.', 'timestamp': '2014-01-13 15:40:15', 'text': '@Uzh Umso besser: "@ingorant ist draußen" wollte ich schon immer mal sagen.', 'id': '422754974737502209', 'user': 'peerolix'}, {'fullname': 'Peer H.', 'timestamp': '2014-01-13 15:37:46', 'text': '@Uzh Wir erklären einfach @Ingorant zur Gefahrenzone. Dann ist der Zaun kleiner und somit die Finanzbelastung der Stadt.', 'id': '422754351078068224', 'user': 'peerolix'}, {'fullname': '@Froschkoenig84 \xa0🇪🇺', 'timestamp': '2014-01-11 22:11:37', 'text': '@Uzh Wichtig ist der Kofferraum und Chlorid-Putzmittel! :P //@hermione_rescue', 'id': '422128690559188993', 'user': 'Froschkoenig84'}, {'fullname': 'Bastian', 'timestamp': '2014-01-09 09:41:49', 'text': 'Gleich läuft der @Uzh samt seiner Uzhine/Uzha/Uzhlette, je nachdem..., zum Frühstück auf. Hab sogar Rührei in Vorbereitung. Hamma, oder?', 'id': '421215224231100416', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-09 07:40:36', 'text': '@HaarFestTiger, da müsst Ihr noch ein paar Monate warten. Trampolin und Eichhorn schlafen. | @BeAvonHL, @Schreibspecht, @Uzh, @dwarfplanet', 'id': '421184715467804672', 'user': 'Eumelzocker'}, {'fullname': 'Nessa', 'timestamp': '2014-01-08 20:25:26', 'text': '@Uzh Wäre vielleicht der musikalischen Sozialisation förderlich. :D', 'id': '421014806486061056', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-01-08 20:22:08', 'text': '@Uzh Nötig nicht, aber lustig. :)', 'id': '421013976726896640', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-01-08 19:47:59', 'text': "@Uzh Ich möchte Dir noch das Heavy Metal-Malbuch an's Herz legen. :D", 'id': '421005380853202944', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-01-08 18:06:15', 'text': 'Hej @ernke, was war nun eigentlich mit Scrabble, freiem Trampolinspringen und Eichhörnchen? @BeAvonHL @Schreibspecht @Uzh @dwarfplanet', 'id': '420979777752027136', 'user': 'HaarFestTiger'}, {'fullname': 'Ernst Hafen', 'timestamp': '2014-01-08 10:03:47', 'text': 'Amazing, 30 years after first in situ hybridization paper Stoeger, Battich and Pelkmans @uzh in situ transcriptomics http://www.nature.com/nmeth/journal/v10/n11/full/nmeth.2657.html\xa0…', 'id': '420858362507821056', 'user': 'ehafen'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-07 21:52:37', 'text': '@Uzh, ich habe kein Problem. Du hast eine „Wissenslücke“ und musst nun glauben. Und zwar mir. ツ', 'id': '420674356868837376', 'user': 'Eumelzocker'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-07 21:38:17', 'text': '@Uzh, wie soll ich etwas beweisen, das es nicht gibt?!', 'id': '420670752099409920', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2014-01-07 19:51:50', 'text': '@Uzh Nee. Sah vorhin nur aus, als wäre ich Vampir nach dem Frühstück ;-)', 'id': '420643963381755904', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2014-01-07 14:29:01', 'text': '@Uzh Dann warst Du wohl noch nie in Malente... Kennst Du die Serie Walking Dead?', 'id': '420562724968734720', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-01-07 14:24:58', 'text': '@Uzh Musste ich ja glücklicherweise nicht. :) @Schreibspecht', 'id': '420561705081765889', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2014-01-07 14:23:28', 'text': '@Uzh In Malente gefällt Dir das, oder? Dachte ich mir schon...', 'id': '420561327334387712', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-01-07 13:51:10', 'text': '@Schreibspecht Kümmer Du Dich erstmal um Deine Kauleiste, bevor Du hier den Lauten machst. ;) @Uzh', 'id': '420553197477179392', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2014-01-07 13:42:25', 'text': "Dann hätte das aber auch gerappelt! RT @nessi6688: @Uzh Des @Schreibspecht's Blatt ist gar nicht gemeint.", 'id': '420550996486815744', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2014-01-07 11:27:45', 'text': "@Uzh Des @Schreibspecht's Blatt ist gar nicht gemeint.", 'id': '420517105252179968', 'user': 'nessi6688'}, {'fullname': 'Nessa', 'timestamp': '2014-01-03 20:28:55', 'text': '@Schreibspecht @BeAvonHL @dwarfplanet @jemandin @ernke @Uzh @HaarFestTiger Cool! Grüße!!', 'id': '419203743067156480', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2014-01-03 20:27:30', 'text': 'Spässgen mit @BeAvonHL @dwarfplanet @jemandin @ernke @uzh @HaarFestTigerpic.twitter.com/Mj6jVDwBUy', 'id': '419203387813801984', 'user': 'Schreibspecht'}, {'fullname': 'thorvald ernke™', 'timestamp': '2014-01-03 16:15:05', 'text': '@Uzh, das ist eine Maschine, die „Ping!“ macht. ツ – Bis nachher.', 'id': '419139865897615360', 'user': 'Eumelzocker'}, {'fullname': 'HaarFestTiger', 'timestamp': '2014-01-01 14:49:09', 'text': '@Uzh Zum Tanzen ist es nie zu spät!!!', 'id': '418393463587995648', 'user': 'HaarFestTiger'}, {'fullname': 'Peer H.', 'timestamp': '2013-12-31 20:28:14', 'text': '@Uzh Plenty of time, still almost 3 1/2 hours :) Cheers, mate!', 'id': '418116405704556544', 'user': 'peerolix'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-30 08:17:52', 'text': '@Uzh Aber die Mausis sind sehr süß!', 'id': '417570217574039552', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2013-12-29 11:00:41', 'text': 'Scheint ein vortrefflicher Tag zu werden. Schon 12 und noch nicht vom @ernke oder @Uzh angestupst worden.', 'id': '417248804170371072', 'user': 'Schreibspecht'}, {'fullname': 'grace pettigrew', 'timestamp': '2013-12-27 09:44:40', 'text': '@Uzh @vanbadham yes', 'id': '416504897140305920', 'user': 'broomstick33'}, {'fullname': 'Van Badham \xa0✊🏻\xa0🌈', 'timestamp': '2013-12-27 09:40:55', 'text': '@gr33nrust @Uzh yes.', 'id': '416503954227224576', 'user': 'vanbadham'}, {'fullname': 'green rust', 'timestamp': '2013-12-27 09:38:15', 'text': '@Uzh @vanbadham yes', 'id': '416503281603469313', 'user': 'gr33nrust'}, {'fullname': 'Bastian', 'timestamp': '2013-12-26 13:40:09', 'text': '@Uzh Meinetwegen auch noch bis zum 11. Februar :-)', 'id': '416201769321246721', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-22 08:48:45', 'text': '@Uzh @Schreibspecht @peerolix @Ingorant @Grey_Gor @deep470 We thank thee.', 'id': '414678887919267840', 'user': 'HaarFestTiger'}, {'fullname': 'Peer H.', 'timestamp': '2013-12-21 23:22:02', 'text': '@Uzh @HaarFestTiger @Schreibspecht @Ingorant @Grey_Gor @deep470 My pleasure!', 'id': '414536265871421440', 'user': 'peerolix'}, {'fullname': 'Peer H.', 'timestamp': '2013-12-21 18:46:46', 'text': '@Uzh Silvester.', 'id': '414466993866031104', 'user': 'peerolix'}, {'fullname': 'thorvald ernke™', 'timestamp': '2013-12-20 07:57:54', 'text': '@Schreibspecht, Euch kann man auch nicht eine Stunde allein lassen! – So schön! ツ | @Grey_Gor, @Uzh', 'id': '413941315173617664', 'user': 'Eumelzocker'}, {'fullname': 'Bastian', 'timestamp': '2013-12-20 07:48:48', 'text': 'In Sachen flüssiger Besinnlichkeit ist @Grey_Gor Experte! RT @Uzh: @Schreibspecht @ernke Christmas-Spirit? Wie viele Umdrehungen hat der?', 'id': '413939024139915264', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2013-12-20 07:32:32', 'text': 'Hui, der @Uzh möchte @ernke die Füße massieren. Das muss dieser Christmas-Spirit sein.', 'id': '413934931531010048', 'user': 'Schreibspecht'}, {'fullname': 'Bettina Werren', 'timestamp': '2013-12-20 05:29:34', 'text': '@Uzh Das ist doch schon mal was, nä.', 'id': '413903986258108416', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2013-12-17 18:39:15', 'text': '@Uzh Freilich! Die erhält man sogar per Paket. Cool, hä!', 'id': '413015549346852864', 'user': 'Frau_W'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-17 08:51:51', 'text': '@Uzh Das kam aber von einem Mann!', 'id': '412867727330521088', 'user': 'HaarFestTiger'}, {'fullname': 'gerardo angulo', 'timestamp': '2013-12-17 05:42:58', 'text': '@biakoff @uzh @nastupil @roshcha @otriahaet saludos nastav', 'id': '412820191202914304', 'user': 'oktiabr'}, {'fullname': 'Bastian', 'timestamp': '2013-12-13 07:34:08', 'text': '"Last Christmas" RT @Uzh: Ohregel: Bezeichnung für einen besonders nervigen Ohrwurm.', 'id': '411398616537133056', 'user': 'Schreibspecht'}, {'fullname': 'Nessa', 'timestamp': '2013-12-11 11:26:56', 'text': 'Real life! "@Schreibspecht: Ergötzt Euch an diesem Lichtbildnis des vergangenen Wochenendes: @nessi6688 @Uzh @ernke pic.twitter.com/2T9hOPYt28"', 'id': '410732428362547200', 'user': 'nessi6688'}, {'fullname': 'Bastian', 'timestamp': '2013-12-11 08:14:52', 'text': 'Ergötzt Euch an diesem Lichtbildnis des vergangenen Wochenendes: @nessi6688 @Uzh @ernkepic.twitter.com/w9jyEWROaV', 'id': '410684093580722176', 'user': 'Schreibspecht'}, {'fullname': 'Maschinengrim', 'timestamp': '2013-12-10 10:13:54', 'text': '@Uzh meins macht aus informationelle -> informelle.', 'id': '410351660645376000', 'user': 'syndikalista'}, {'fullname': 'Maschinengrim', 'timestamp': '2013-12-10 09:24:11', 'text': '@Uzh ups, wort in der eile zwischen 3 türen autokorrektieren lassen.', 'id': '410339147451084800', 'user': 'syndikalista'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-08 00:42:51', 'text': '@Uzh ich danke auch! @Schreibspecht @ernke @nessi6688', 'id': '409483175745032193', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2013-12-07 22:31:00', 'text': '@Uzh Danke, ebenso! :)) @Schreibspecht @HaarFestTiger @ernke', 'id': '409449995772108800', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-04 22:19:19', 'text': '@Uzh So isses.', 'id': '408359891544576000', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-04 07:36:54', 'text': '@Uzh Ich bin nur für einen bestimmten Specht Expertin ;) @Schreibspecht', 'id': '408137822160183296', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-12-04 07:20:26', 'text': '@Uzh was jetzt genau? :) @Schreibspecht', 'id': '408133678934798336', 'user': 'HaarFestTiger'}, {'fullname': 'Bastian', 'timestamp': '2013-12-04 07:01:22', 'text': '@Uzh Morgens bin ich extrem maulig. Frag nicht nach Sonnenschein.', 'id': '408128880630054912', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2013-12-04 06:36:44', 'text': '@Uzh Hack!', 'id': '408122682111438848', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2013-12-04 06:33:38', 'text': '@Uzh Nee, das waren Spechte ;-)', 'id': '408121901845061632', 'user': 'Schreibspecht'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-11-29 11:25:41', 'text': '@nessi6688 Das muss man ja nicht so eng sehen ;) @Uzh @peerolix', 'id': '406383460035469313', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2013-11-29 11:16:36', 'text': '@HaarFestTiger Stimmt. Aber da machen keine Kerle mit. ;) @Uzh @peerolix', 'id': '406381172500234240', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-11-29 11:15:55', 'text': '@nessi6688 Aber du guckst doch immer Shopping Queen! ;) @Uzh @peerolix', 'id': '406381001099583488', 'user': 'HaarFestTiger'}, {'fullname': 'Nessa', 'timestamp': '2013-11-29 10:47:45', 'text': '@HaarFestTiger Du weißt doch, in bin in Mode nicht so bewandert. @Uzh @peerolix', 'id': '406373911606358016', 'user': 'nessi6688'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-11-29 07:01:46', 'text': '@Uzh @peerolix @nessi6688 Das ist für den modernen Herrn, sieht man doch!', 'id': '406317041462022144', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-11-25 20:39:17', 'text': '@Uzh Ich glaube, die hat aufgegeben... ;)', 'id': '405073225685958656', 'user': 'HaarFestTiger'}, {'fullname': 'HaarFestTiger', 'timestamp': '2013-11-25 20:34:34', 'text': 'Das unten im Bild ist aber Julia! RT @Uzh: #twunschen mit @Schreibspecht , @krewor, @HaarFestTiger und sopic.twitter.com/rflSIC4umb', 'id': '405072039096365056', 'user': 'HaarFestTiger'}, {'fullname': 'schnellschnell', 'timestamp': '2013-11-25 08:01:24', 'text': '@Uzh Eine Aula mit Steinway oder es handelt sich um eine Verwechslung.', 'id': '404882497697492992', 'user': 'schnellschnells'}, {'fullname': 'schnellschnell', 'timestamp': '2013-11-24 21:34:31', 'text': '#FräuleinElse in der Aula der @uzh: Wie gut das das Klavier (nicht der Flügel!) besser sein hätte können.', 'id': '404724738351976448', 'user': 'schnellschnells'}, {'fullname': 'sz-online.de', 'timestamp': '2013-11-16 14:24:12', 'text': '@Uzh Jawoll. Danke für den Hinweis. Haben es berichtigt.', 'id': '401717341202825216', 'user': 'szonline'}, {'fullname': 'Expertscape', 'timestamp': '2013-11-16 11:50:31', 'text': 'Beat Knechtle @UZH_news @UZH.new_en a world leader in #running research - http://bit.ly/1hJqnpo\xa0 - Congrats from http://Expertscape.com\xa0!', 'id': '401678666050310144', 'user': 'expertscapenews'}, {'fullname': 'EU GrantsAccess', 'timestamp': '2013-11-07 09:01:11', 'text': 'Register for preview event on Health in Horizon 2020 (2014-2020), which will be held @uzh on Monday 25 November 2013 http://grantsaccess.ethz.ch/en/servicesupport/veranstaltungen/anmeldung/?tx_powermail_pi1[uid24]=Health+in+Horizon+2020&tx_powermail_pi1[uid41]=Health+in+Horizon+2020&tx_powermail_pi1[uid25]=25.11.2013&tx_powermail_pi1[uid42]=25.11.2013\xa0…', 'id': '398374562745696257', 'user': 'GrantsAccess'}, {'fullname': 'Ruth Ellenberger', 'timestamp': '2013-11-03 13:44:06', 'text': '@UZH\xa0Im Westen viel Übergewicht http://www.sonntagszeitung.ch/home/artikel-detailseite/?newsid=266306\xa0… - Wenn nur der BMI zählt, ist das Resultat zu hinterfragen, gerade bei jungen Männern', 'id': '396996207769157634', 'user': 'ru_ellenberger'}, {'fullname': 'EU GrantsAccess', 'timestamp': '2013-10-30 16:10:43', 'text': 'All presentations & video of #H2020 event THE GLOBALISATION OF RESEARCH @UZH on 23 Oct 2013 are now online:  http://grantsaccess.ethz.ch/en/servicesupport/veranstaltungen/oktober-2013/\xa0…', 'id': '395583552814739456', 'user': 'GrantsAccess'}, {'fullname': 'EU GrantsAccess', 'timestamp': '2013-10-30 13:10:38', 'text': 'Deputy Director-General of DG Research&Innovation Burtscher amusing the #H2020 Preview Event audience @UZH on 23 Oct pic.twitter.com/ANw9qgoNGo', 'id': '395538235297759233', 'user': 'GrantsAccess'}, {'fullname': 'adipriatna_Silva', 'timestamp': '2013-10-19 08:56:21', 'text': 'W baru lannding,kayanya ga smpet latihan ni -_- " @emaynisty: Tp gw gawe .. Haha"@uzhthe19: Ywd gw meluncur sana "@emaynisty: Iya .."@uzh', 'id': '391487974069637120', 'user': 'adipriatna19'}, {'fullname': 'Simon Bächtold', 'timestamp': '2013-10-10 20:32:54', 'text': 'BR Burkhalter @UZH zur Institutionalisierung der Bilateralen: "EWR-Andocken ist dem Volk nicht zu verkaufen. Der EuGH IST unabhängig." Ä-hä!', 'id': '388401775885418496', 'user': 'sbachtold'}, {'fullname': 'MyRhyaN', 'timestamp': '2013-10-04 00:32:37', 'text': 'ioo kdong, sibuk ka rusakki Tab ku :( @uzhygrazhier kdooonG...bmna kw sibuk sndri...ckckckck“@rhyanrock: galau krna ko cueki ka :/ Haha @uzh', 'id': '385925387600941057', 'user': 'rhyan_prayudi'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2013-09-24 18:08:16', 'text': 'Meet @story2023 finalists: @Michael2023 | RemixDemix |  Bio-domotic 2023 http://ow.ly/paHkZ\xa0 #transmedia @HEAD @ECAL @zhaw @UZH #talent', 'id': '382567171832176640', 'user': 'swissnexSF'}, {'fullname': 'Mala11197', 'timestamp': '2013-09-22 02:35:39', 'text': 'Apa ji pale ? Hahahak "@WindaDirgawatiW: Haha.ih tdk lah:p"@Lhaaaaaa: Lesbi-->"@WindaDirgawatiW: haha.lope u to zee:*:*"@Uzh', 'id': '381607696471834624', 'user': 'Nurmaladewi0111'}, {'fullname': 'Sharely', 'timestamp': '2013-09-19 07:02:34', 'text': '@bertschingers @mss7676 Viel Erfolg beim letzten Seminar an der @uzh', 'id': '380587703110098944', 'user': 'sharely_ch'}, {'fullname': 'Neugebauer Petr', 'timestamp': '2013-09-16 11:10:51', 'text': 'Četli jste mé poslední 3 tvíty? Tak chápete,že se teď budu radši věnovat studiu #politologie na @uzh než dění v české politice...', 'id': '379563022710505472', 'user': 'NeuPetr'}, {'fullname': 'Mike S. Schäfer', 'timestamp': '2013-09-09 19:27:45', 'text': 'New @handelsblatt ranking: @UZH Economists rank 4th in German speaking world according to publikation record: http://www.tagesanzeiger.ch/wirtschaft/Wie-Schweizer-Fakultaeten-im-Vergleich-abschneiden/story/21951394\xa0…', 'id': '377151356911747072', 'user': 'mss7676'}, {'fullname': 'Viki Fauzi', 'timestamp': '2013-09-08 04:11:38', 'text': 'Di palu saya. Terserah kau saja kapan RT @Mohammadsaid18 Aiii doyo,,,d\'mana kw?kpan sda"@UzhyIkhi: Aii, germo RT @Mohammadsaid18 Gatal"@Uzh', 'id': '376558421983498240', 'user': 'vikifauzii'}, {'fullname': 'Sylvie Fee Matter', 'timestamp': '2013-08-27 09:30:48', 'text': 'Die @uzh sollte ihre Museen updaten.... pic.twitter.com/A8hPubXZXT', 'id': '372290086097784833', 'user': 'rote_Fee'}, {'fullname': 'jose alfredo', 'timestamp': '2013-08-26 23:15:17', 'text': "B bbåat a 09'@uzh bxaxx bñig", 'id': '372135186986983424', 'user': 'jafz19'}, {'fullname': 'MONK', 'timestamp': '2013-08-19 00:07:20', 'text': 'Jiah pakek 3 sama aja lah ƗƚɑƗƚɑƗƚɑƗƚɑƗƚɑ "@iinfranatesaa: Itu baru kartu aku kalo dk ad m nyo haha @nawaiteSiksiR: Jiah nambah parah"@Uzh', 'id': '369249182462115840', 'user': 'RiskiAsriadi'}, {'fullname': 'AdLi Dzil Ikram', 'timestamp': '2013-07-26 08:08:29', 'text': 'astapiluloh.. :D RT @uzhygrazhier: weitz..,msh puasa bpk2,istighfar broo...wkwkwkwk“@AdliMoeslim: hahaha obat anti kelilipan itu.. RT @uzh', 'id': '360672960249466881', 'user': 'AdliMoeslim'}, {'fullname': 'Iggy Azalea', 'timestamp': '2013-07-26 00:59:55', 'text': 'Sabar qaqa ini hanya untuk buat dia peka kok hahaRT @fettyyyy: Mmg udums( ⌣ ́_ ⌣ ̀)\u200b RT@wirayunitaaa: Sok dibajaknyaRT @fettyyyy: Bajak @uzh', 'id': '360565106603593729', 'user': 'wirayunitaaa'}, {'fullname': 'Uwais', 'timestamp': '2013-07-24 18:08:53', 'text': 'Aii doyoo so tidoor dia "@UzhyIkhi: Iyaa suruh liatkan temanmu juga, haha RT @fatwaeno Kita saja cuma d liatkan ngana lgi ba suruh. "@Uzh', 'id': '360099281987837952', 'user': 'Uwais_420'}, {'fullname': 'IndonesiaIndieCloth', 'timestamp': '2013-07-09 14:11:33', 'text': 'Uda dulu ya, мιѕѕ ソσυ "@Uzhard09: Oh, syukur lah RT aniza_hafiza: Rumah cikha kok kak "@Uzhard09: Trus dmana RT aniza_hafiza: Kaga kak "@Uzh', 'id': '354603734338252803', 'user': 'indoindie1'}, {'fullname': 'Fauzar', 'timestamp': '2013-07-07 01:09:00', 'text': 'Ayok RT @aniza_hafiza: Iya "@Uzhard09: Ngajakin ribut kmu RT aniza_hafiza: Entah "@Uzhard09: Egk gimana RT aniza_hafiza: Ya enggak lah "@Uzh', 'id': '353682026534141954', 'user': 'fauzarrg'}, {'fullname': 'IndonesiaIndieCloth', 'timestamp': '2013-07-05 15:58:26', 'text': 'Cuma mao ucpin met tidur "@Uzhard09: Lha napa manggil RT aniza_hafiza: Engx jua! "@Uzhard09: Iya, kangen yha? RT aniza_hafiza: Fauzar?? @Uzh', 'id': '353181080947396609', 'user': 'indoindie1'}, {'fullname': 'Fauzar', 'timestamp': '2013-07-04 08:50:30', 'text': 'Lha ngapa ngkano RT @nita_nuita: ohh tak kro isik ng sma RT"@Uzhard09: Ora, mau kae lho, antrine RT @nita_nuita: isik ng sma po koe? RT"@Uzh', 'id': '352710999880630272', 'user': 'fauzarrg'}, {'fullname': 'IndonesiaIndieCloth', 'timestamp': '2013-06-29 10:17:40', 'text': 'Maksud gw hp to pc RT @Uzhard09: Rumah, RT aniza_hafiza: On dimana zar RT @Uzhard09: Haha kali kali RT aniza_hafiza: Jiah, kamu lagi RT @Uzh', 'id': '350920996452179969', 'user': 'indoindie1'}, {'fullname': 'Fauzar', 'timestamp': '2013-06-28 12:17:08', 'text': 'Neng jare jarene ha\'a RT @nita_nuita: tenan RT @Uzhard09 Tnan ra RT @nita_nuita: ora RT"@Uzhard09: Ora luih? RT @nita_nuita: konco ! RT"@Uzh', 'id': '350588676062969857', 'user': 'fauzarrg'}, {'fullname': 'Xdopa', 'timestamp': '2013-06-19 21:47:13', 'text': '@Uzh Word!', 'id': '347470650807570433', 'user': 'x_dopa'}, {'fullname': 'IndonesiaIndieCloth', 'timestamp': '2013-06-15 12:50:12', 'text': 'Haha kali kali RT @Uzhard09: Curhat ni RT/cc aniza_hafiza: Masa twet gtw cuma 1 RT @Uzhard09: Lha gemana RT/cc aniza_hafiza: Gak tao RT @Uzh', 'id': '345885954856341504', 'user': 'indoindie1'}, {'fullname': 'yoga solindo', 'timestamp': '2013-05-21 02:19:49', 'text': 'Hari ini dia telat,, mungkin dia lg hamil #LOL RT @uzhthe19: cie yg abis belajar sma papa.. Haha RT @filindho: Salah Piutang pd Kas  RT @uzh', 'id': '336667618444447744', 'user': 'filindho'}, {'fullname': 'Rini Zhaleona Ris', 'timestamp': '2013-05-14 10:06:57', 'text': 'oooo.. "@uzhthe19: itu poni brai RT @qriniris: spik kan model gaya rambut cowo "@uzhthe19: spik aja lw RT @qriniris: oh tidak.. "@uzh', 'id': '334248458129117184', 'user': 'qriniris'}, {'fullname': 'Lusi Wijayanti', 'timestamp': '2013-05-08 13:33:14', 'text': 'Masa?ko teteh itu nggak berhasil kamu akalin...hahaha" @Uzhopcerutu: Sekarang pinter aku. :p "@lusii04: Emang sekarang beda gitu?haha" @Uzh', 'id': '332126046109462529', 'user': 'lusii04'}, {'fullname': 'Nagesh Beltramini', 'timestamp': '2013-05-05 13:35:05', 'text': '@laurie1991 no @unilu and @uzh.', 'id': '331039346583035904', 'user': 'nsb1990'}, {'fullname': 'Gian Reto à Porta', 'timestamp': '2013-04-23 17:01:19', 'text': 'Dr. Daniel Kahneman @UZH: http://youtu.be/qzJxAmJmj8w\xa0 Enjoy!', 'id': '326742592786137088', 'user': 'gianretoaporta'}, {'fullname': 'Amancio Bouza', 'timestamp': '2013-04-16 15:23:38', 'text': 'Looking forware the talk of #Kahneman aka Mr. #BehavioralEconomics @UZH', 'id': '324181294915387392', 'user': 'AmancioBouza'}, {'fullname': 'Amancio Bouza', 'timestamp': '2013-04-10 15:23:55', 'text': "Looking forward to today's talk of #DanAriely @UZH about #Dishonesty #Truth  and #Lies #BehavioralEconomics", 'id': '322007041256345601', 'user': 'AmancioBouza'}, {'fullname': 'Science et Cité', 'timestamp': '2013-04-10 07:07:58', 'text': '"Wem gehört der öffentl. Raum?" mit Ulrike Franklin-Habermalz \n@bfh_hesb, Markus Müller @unibern, Kurt Imhof @uzh http://tiny.cc/cicbvw\xa0', 'id': '321882230802759680', 'user': 'ScienceEtCite'}, {'fullname': 'Tomi', 'timestamp': '2013-04-08 12:51:42', 'text': 'GGMU "@Musyafaaa: Uhuk Mu Vs City nih tomi29rahmat @uzh"', 'id': '321243955712897025', 'user': 'tomi29rahmat'}, {'fullname': 'Fauziah', 'timestamp': '2013-04-04 08:54:12', 'text': 'muluutmu waria!“@maodemelani: Edd...jablai teriak jablai..cape de"@uzhygrazhier: edd...lagi jablaiko kah!sensi sx!“@yoanfebianty: @uzh', 'id': '319734638740385792', 'user': 'uzhygrazhier'}, {'fullname': 'Windy', 'timestamp': '2013-03-26 16:46:24', 'text': 'Mana sini RT @uzhthe19: Kabur ayam kabur kacang tanah"@windiesidabalok: Waahhh, sarap bnran #kabur RT @uzh', 'id': '316591979083476992', 'user': 'windiesidabalok'}, {'fullname': 'Shintaindramaya', 'timestamp': '2013-03-26 13:56:04', 'text': 'Yakin 55% haha "@uzhthe19: Yakin lw ????"@shintasinaga30: Keinget org gila yg narik2 gw di mall cilandak *bhgbgt "@uzh"', 'id': '316549111430139905', 'user': 'shintasinaga30'}, {'fullname': 'Ernst Hafen', 'timestamp': '2013-03-06 06:37:01', 'text': 'Michael Hengartner @hengartn nominiert als @uzh Rektor. Erste Wahl für Herausf in Med IT LS und GW http://NZZ.to/kyyu\xa0', 'id': '309190863886635010', 'user': 'ehafen'}, {'fullname': 'Ernst Hafen', 'timestamp': '2013-02-28 22:07:04', 'text': 'Seraphin, our grandson in the Zoological Museum of @uzh Great opportunity to recruit future scientists pic.twitter.com/vcVg9slwub', 'id': '307250593196556289', 'user': 'ehafen'}, {'fullname': 'Amancio Bouza', 'timestamp': '2013-02-28 06:34:18', 'text': '@IfI @UZH Congrats to smart people from the University of Zurich. A robot shows feelings http://www.srf.ch/player/tv/tagesschau/video/ein-roboter-zeigt-gefuehle?id=7ad95a76-e3bf-4c0d-b032-9b4150885770\xa0… #Roboy #AI', 'id': '307015853801611264', 'user': 'AmancioBouza'}, {'fullname': 'Fauziah', 'timestamp': '2013-02-26 10:42:16', 'text': "dpn tv cuyy“@AdliMoeslim: posisi skrg dimana? RT: @uzhygrazhier: nnton mko trans7 skrg“@AdliMoeslim: io kah? kisah apami itu de'e.. RT: @uzh", 'id': '306353483886497793', 'user': 'uzhygrazhier'}, {'fullname': 'Ahmad Aji Buana H', 'timestamp': '2013-02-20 11:35:14', 'text': 'Banyak2 RT @rhyanrock: Brapa ku bayar mas ? RT @ajibuana: Bayar RT @rhyanrock: Coddoka dulee, RT @ajibuana: Tp cepat tawwa nah RT @uzh', 'id': '304192485733842944', 'user': 'ajibuana'}, {'fullname': 'Uzy Agustin Ardiyati', 'timestamp': '2013-02-05 16:32:38', 'text': '(-(oo)-) RT: @keramatt: -___- RT @uzhyard: dariussinatriya RT: @keramatt: srius? RT @uzhyard: ndapapaji RT: @keramatt: maaf kebo T-T RT @uzh', 'id': '298831511329853440', 'user': 'uzhyard'}, {'fullname': 'Sven Meier', 'timestamp': '2013-01-24 06:17:50', 'text': "@Uzh aber in achteinhalb Wochen gibt es erst einmal Ferien. Ostern. #Nahziel - freu' mich schon drauf ;)", 'id': '294328136684957696', 'user': 'SvenMeier3'}, {'fullname': 'Fitriana wulandari', 'timestamp': '2013-01-02 11:26:22', 'text': 'wahaha gak ngmg yah kak, kaka yg ngmg RT @uzhietic: Gpp kesannya ditanya gitu kaya blum laku wkwkw RT fitrianawulan: dih knp ka haha RT @uzh', 'id': '286433245422292993', 'user': 'fitrianawulan'}, {'fullname': 'FRD', 'timestamp': '2012-12-31 12:23:04', 'text': '@uzh agak pesimis ji ae, kayaknya PHP. Tpi yg penting jatuh hati dlu...haha :)', 'id': '285722740625915907', 'user': '_perlahansore'}, {'fullname': 'Uzhail Yamani', 'timestamp': '2012-12-31 01:15:32', 'text': 'Mau apa aja deh yg penting asyik :)RT @nit_aneeda: mau apa carra? :o RT @uzhail_11: Ciyus :) mau carra RT @nit_aneeda: oh ya, ciyus? RT @uzh', 'id': '285554751452610560', 'user': 'uzhail_11'}, {'fullname': 'Myertyn Pryeble', 'timestamp': '2012-12-16 08:18:39', 'text': '@Uzh oh that should have been @uzh77 sorry :)', 'id': '280225413123436544', 'user': 'MartinPribble'}, {'fullname': 'Myertyn Pryeble', 'timestamp': '2012-12-15 05:15:26', 'text': '@uzh hey thanks for havin me on the show, that was great fun! Was it okay?', 'id': '279816917294936064', 'user': 'MartinPribble'}, {'fullname': 'Bastian', 'timestamp': '2012-12-12 23:03:38', 'text': 'Schleimer ;-) RT @Uzh: Na gut, obgleich lutherisch mit langem E folge ich zumindest hier mal dem Papst @Pontifex_de', 'id': '278998573109104642', 'user': 'Schreibspecht'}, {'fullname': 'A. Fauzi', 'timestamp': '2012-12-08 17:16:19', 'text': 'hadehhh...juara berkhayal itu namanya RT @SylviedPedrosa: @uzhie_ahmad @Uzh lhoh dia uda juara kug mas ;)\njuara di hati banyak orang ;)', 'id': '277461619326459904', 'user': 'uzhie_ahmad'}, {'fullname': 'A. Fauzi', 'timestamp': '2012-12-08 17:13:22', 'text': 'bwt apa memiliki bnyk fans sil.klo dy gak pnya trofi jurdun :P RT @SylviedPedrosa: @uzhie_ahmad @Uzh biariiiiin :P\nrider yg memiliki bnyak', 'id': '277460875307282433', 'user': 'uzhie_ahmad'}, {'fullname': 'A. Fauzi', 'timestamp': '2012-12-08 17:05:31', 'text': 'hadehhh...spa tu pedrosa??jurdun aja blm,terkenal dr mn coba?? :P RT @SylviedPedrosa: @uzhie_ahmad @Uzh sapa mas???Daniiii????\ndani pedrosa', 'id': '277458902541553665', 'user': 'uzhie_ahmad'}, {'fullname': 'A. Fauzi', 'timestamp': '2012-12-08 17:02:32', 'text': 'ohh tidak bisa.di Indonesia tu ttep Dewa yg The Best.apa lg ada Ahmad Dhani.blm ada yg mampu menyaingi karya2nya :P RT @SylviedPedrosa: @uzh', 'id': '277458149068382210', 'user': 'uzhie_ahmad'}, {'fullname': 'Michel Gruppe AG', 'timestamp': '2012-12-05 12:45:57', 'text': '@UZH: Gratulieren Prof. A. Aguzzi vom Ins.für Neuropathologie des Unispitals Zürich zum Théodore-Ott-Preis 2012. http://www.samw.ch/de/Aktuell/News.html\xa0…', 'id': '276306413482045440', 'user': 'MichelGruppeAG'}, {'fullname': 'Fabian Korn', 'timestamp': '2012-12-03 13:22:40', 'text': 'Christmas time @UZH pic.twitter.com/cHXtWfhR', 'id': '275590876846247936', 'user': 'f_koorn'}, {'fullname': 'Try Fitriany Sujana', 'timestamp': '2012-11-23 14:40:24', 'text': 'nama akunya salah sa haha pantesan gamasuk ke mention ckck RT @mirzanovynt: insyaAllah sa, tp mau ko. ersa? dateng atuh yuk semuanya RT @uzh', 'id': '271986564383531008', 'user': 'tryfitriany'}, {'fullname': 'Stefan Winkler', 'timestamp': '2012-11-12 08:35:44', 'text': '.@Uzh ♩ ♫♬♩♩♫♬♬♫♩', 'id': '267908526054191105', 'user': 'ExilKieler'}, {'fullname': 'A. Fauzi', 'timestamp': '2012-11-06 07:51:43', 'text': "q sek arep metu lk saiki RT @yandyputra: saik tandg'a?? Piye RT @uzhie_ahmad Wis latihan drng yan? RT @yandyputra: musuh awke dwe ik RT @uzh", 'id': '265723120038584320', 'user': 'uzhie_ahmad'}, {'fullname': 'Martina Denzler', 'timestamp': '2012-10-30 20:34:08', 'text': '@GStuderus @ContentLabCH Oder wie bei der alljährilchen Modulbuchung der @UZH.', 'id': '263378275961815040', 'user': 'martiniquue'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-10-05 21:01:32', 'text': "@Uzh Raststätten verlangen Geld für's Klo. Das macht mein Kopf nicht - er kann also gar keine Rastastätte sein. #Logik", 'id': '254325470944968705', 'user': 'Frau_W'}, {'fullname': 'DHVS', 'timestamp': '2012-10-04 03:20:50', 'text': "Aujourd'hui: La fin de la révolution thérapeutique? avec présentations par N. Kessel & C. Bonah @unistra @uzh #histmed http://www.mhiz.uzh.ch/drugs.html\xa0", 'id': '253696151478493185', 'user': 'dhvstweets'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-10-01 17:59:07', 'text': '@Uzh @flauschbaer Ich begrüsse das Käsebrotkochen.', 'id': '252830015580954624', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-27 06:37:10', 'text': '@Uzh @tserafouin Du bekommst ein Käsebrot.', 'id': '251208845089701888', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-23 11:00:58', 'text': '@Uzh Voilà - möge die bessere Manschaft gewinnen. *Hüstel*', 'id': '249825682711003136', 'user': 'Frau_W'}, {'fullname': 'Daniel Pache', 'timestamp': '2012-09-22 11:16:58', 'text': '@Uzh ach Du bist das? Habe mich schon immer gefragt, wer der Ärmste wohl sein mag... :-)', 'id': '249467318969708546', 'user': 'deep470'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-21 21:43:56', 'text': '@Uzh An dies und jenes. Und an #Käsebrot.', 'id': '249262712364863488', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-21 20:33:20', 'text': '@Uzh Du meinst für nach dem zweiten Dessert. Verstehe, verstehe. Schlingel.', 'id': '249244944945008641', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-21 20:27:17', 'text': '@Uzh Wie wahr. Und ein feiner Whisky zur schwarzen Schokolade...', 'id': '249243423691902977', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-21 20:18:53', 'text': '@Uzh Leider nein. Darf grad nicht. #NixAlkohol', 'id': '249241309112590336', 'user': 'Frau_W'}, {'fullname': 'Usef Satria', 'timestamp': '2012-09-21 00:01:00', 'text': 'RT @IraRhania: Ucen kenal sama ryan juga ? iya knal . , dia tmn q , ,RT @ryanovousta26: baik bro.. Km gmana? RT @Uzh... http://5q4tj.mnt.bz\xa0', 'id': '248934820179238912', 'user': 'Atep_Agnezious'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-19 05:19:48', 'text': '@Uzh Mimimi.', 'id': '248290270326714368', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-18 21:09:04', 'text': '@Uzh Kreisch.', 'id': '248166773143252992', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-16 13:18:10', 'text': '@Uzh Ha!!! #Freudeherrscht', 'id': '247323492805136386', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-12 20:15:00', 'text': '@Uzh Ach, dann steckt er wohl auch hinter dieser Website hier...? #Logo http://www.praxis-jugendarbeit.de/spielesammlung/toilettenpapier-spiele.html\xa0…', 'id': '245978840084656128', 'user': 'Frau_W'}, {'fullname': 'Unyil !', 'timestamp': '2012-09-12 01:17:54', 'text': 'Yo ngekek i rejeki noh ng mbak e RT @Uzhik_13: wkwk.nunut ngrepoti mbak spg RT @putriyurista: Ciee sing wes tau ng rita supermall :p RT @Uzh', 'id': '245692679340560385', 'user': 'arumyurista'}, {'fullname': 'Marina Weisband', 'timestamp': '2012-09-10 20:16:56', 'text': '@Uzh Ist es ja letztlich auch.', 'id': '245254554113945601', 'user': 'Afelia'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-09-08 17:11:40', 'text': '@Uzh Und eigentlich auch ein ganz normales Frühstück für mich (41 2/3)...', 'id': '244483150565216257', 'user': 'Frau_W'}, {'fullname': 'Fitriana wulandari', 'timestamp': '2012-09-07 03:51:51', 'text': 'emg iyasih wou haha RT @uzhietic: Hahahhaaa gini ni setelah ada kata modus ,. Bilang cantik aja dibilang modus hadehh RT fitrianawulan: @uzh', 'id': '243919482874130433', 'user': 'fitrianawulan'}, {'fullname': 'SüperwomAn :))', 'timestamp': '2012-08-29 19:10:36', 'text': "“@Uzh: @BeAvonHL Kinder mit 'nem Willen...” / bekommen das Allerallerbeste! HA!", 'id': '240889203465019392', 'user': 'BeAvonHL'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-08-25 19:52:33', 'text': '@Uzh Drölfundzwölfzig?', 'id': '239450208822493185', 'user': 'Frau_W'}, {'fullname': 'Bastian', 'timestamp': '2012-08-21 06:09:54', 'text': '@Uzh *grummel', 'id': '237793633192001536', 'user': 'Schreibspecht'}, {'fullname': 'Lisa voll sauber', 'timestamp': '2012-08-21 04:54:10', 'text': '@Uzh @Schreibspecht Es tut mir ja leid.', 'id': '237774571456061440', 'user': 'LisaDreck'}, {'fullname': 'Lisa voll sauber', 'timestamp': '2012-08-20 15:37:43', 'text': '@Schreibspecht @Uzh Das stimmt wohl. #niewieder', 'id': '237574138494083074', 'user': 'LisaDreck'}, {'fullname': 'Bastian', 'timestamp': '2012-08-20 15:32:40', 'text': 'Ist ja auch warm - und Du hattest nur eine Banane! RT @LisaDreck: @Uzh @Schreibspecht Wer redet v Flughafen? Sorry,hab ich nicht mitbekommen', 'id': '237572867062112259', 'user': 'Schreibspecht'}, {'fullname': 'Lisa voll sauber', 'timestamp': '2012-08-20 15:31:27', 'text': '@Uzh @Schreibspecht Wer redet denn vom Flughafen? ^^ Sorry, hab ich nicht mitbekommen.', 'id': '237572564120121344', 'user': 'LisaDreck'}, {'fullname': 'Bastian', 'timestamp': '2012-08-20 15:15:47', 'text': '@Uzh Schämf mich auch sehr', 'id': '237568620379635712', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2012-08-20 15:15:24', 'text': '@Uzh @LisaDreck Egal, gefällt mir!', 'id': '237568524120367104', 'user': 'Schreibspecht'}, {'fullname': 'Fauziah', 'timestamp': '2012-08-18 15:14:07', 'text': 'yoan knpako??mawko uji kedewasaanku??hahaha RT @yoanfebianty: Haha, cb d mks, makan ketupat,opor, rendang, nyamanna, sm kluarga lagi.RT @uzh', 'id': '236843423343202304', 'user': 'uzhygrazhier'}, {'fullname': 'Fauziah', 'timestamp': '2012-08-13 04:17:20', 'text': 'Astgaa..ku kasi bgun jam stgh3 toh,mlah molorq lgi..ikut mak molor jg. RT @AlveraJumiasri :bgt mna #kamseode tdk ksih bgun k shur... RT @uzh', 'id': '234866200289624064', 'user': 'uzhygrazhier'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-08-12 19:06:48', 'text': '@Uzh Ja, übrigens schon.', 'id': '234727653737906176', 'user': 'Frau_W'}, {'fullname': 'Fauziah', 'timestamp': '2012-08-10 03:15:56', 'text': 'pke travel..kw iya??RT @yoanfebianty Jadi.nae apa ko ?RT @uzhygrazhier: yoi..tggl berangkat. kw iya??RT @yoanfebianty Jd ko k jogja ?RT @uzh', 'id': '233763585296326657', 'user': 'uzhygrazhier'}, {'fullname': '♚AYUNK♚', 'timestamp': '2012-08-06 05:39:31', 'text': 'Gw Udh pindah dari kapan tau RT @uzhthe19: Ama bonyok lw ? "@aYunkmeSsia: Gw mah udh tinggal d sana RT @uzh', 'id': '232350167658008576', 'user': 'ayunkmessia'}, {'fullname': 'Fildza Nabila', 'timestamp': '2012-08-03 12:40:57', 'text': 'Ga tau RT @uzhthe19: Behhh... Masa ga tau kuncen ? Hahaha"@filzhaa: Ga tau deh .. RT @uzhthe19: Pondok cabe macet yeh"@filzhaa: --" RT @uzh', 'id': '231369062905692160', 'user': 'filzhaa'}, {'fullname': 'kb \xa0🇪🇺', 'timestamp': '2012-07-30 21:03:49', 'text': '@Uzh Ich fürchte, das glaubt er wirklich…', 'id': '230046061119557632', 'user': 'kbojens'}, {'fullname': 'Peer H.', 'timestamp': '2012-07-30 21:02:11', 'text': '@Uzh Angesichts der militanten Politessen eher zu den Schurkenstädten.', 'id': '230045651310891008', 'user': 'peerolix'}, {'fullname': 'Fildza Nabila', 'timestamp': '2012-07-27 15:38:56', 'text': 'Mending gw naek metro dah -_- RT @uzhthe19: ya iyalah. sekali ngojek 100rbu RT @filzhaa Lah keren ada waipi nya ..hahaha :D RT @uzh', 'id': '228877137942282240', 'user': 'filzhaa'}, {'fullname': 'Daniel Segmüller \xa0🍽', 'timestamp': '2012-07-26 20:31:55', 'text': '@Uzh @Frau_W @manuela_kaech @mblutzi Also der Name scheint entschieden zu sein: Lina Maria. Ich würde als Twittername @LiMaKa vorschlagen!', 'id': '228588482631712769', 'user': 'wolkenpumpe'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-26 20:29:01', 'text': '@Uzh Meine war eine aber süsse kleine Normalbierflasche. Mit lecker Stoff drin. Und die tönen Zwaffzisch. Imfall.', 'id': '228587749152784384', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-26 20:18:43', 'text': '@Uzh Echt? So genau will ich das glaubs gar nicht wissen. Börgh.', 'id': '228585159241375745', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-25 04:20:09', 'text': '@Uzh Urghs...', 'id': '227981540225863680', 'user': 'Frau_W'}, {'fullname': 'Rohmat gozali', 'timestamp': '2012-07-24 17:55:32', 'text': 'Satu cambukan mau gak ? RT @uzhthe19: 1 raukan aja RT @zaly_trong Tambah segelas apa sebakul RT @uzhthe19: tambain dikit RT @zaly_trong @uzh', 'id': '227824351767064576', 'user': 'zaly_trong'}, {'fullname': 'Daniel Segmüller \xa0🍽', 'timestamp': '2012-07-22 12:57:22', 'text': '@Uzh Habe die Süddeutsche (hier in CH) leider nicht. Könntest Du mir ein Foto zwitschern?', 'id': '227024537252933632', 'user': 'wolkenpumpe'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-21 21:13:38', 'text': '@Uzh Darum habe ich keine Kinder. Aber Schuhe... *Grübelgrübel*', 'id': '226787039662706688', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-18 19:48:35', 'text': '@Uzh Dachte ich mir schon. Ich kritisiere das nicht, ich stelle es bloss fest.', 'id': '225678472062849025', 'user': 'Frau_W'}, {'fullname': 'Daniel Segmüller \xa0🍽', 'timestamp': '2012-07-10 20:56:41', 'text': '@Uzh Uiuiui, dann bleibe ich wohl diesen komischen Regionen fern, Kroa tien', 'id': '222796505843634178', 'user': 'wolkenpumpe'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-07-10 20:51:08', 'text': '@Uzh Noch nicht aber auch das begeistert mich tendenziell. Vielleicht hüpfe ich deswegen einmal auf und ab. Das muss aber gut überlegt sein.', 'id': '222795111157870593', 'user': 'Frau_W'}, {'fullname': 'Fitri Nurhayati', 'timestamp': '2012-07-02 10:42:44', 'text': 'ok ok ok :p RT @uzhiekaka: emg da UU a g blh blg ok. seterah saya dong weeee RT @telorkoala: lah knpa jadi ok ? bukan buat aa kaliii RT @uzh', 'id': '219742897891844096', 'user': 'telorkoala'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-06-28 18:57:30', 'text': '@Uzh Stylish ;-))', 'id': '218417859381047296', 'user': 'Stecki'}, {'fullname': 'Bernward', 'timestamp': '2012-06-24 20:52:29', 'text': '@Uzh Danke. Eben angekommen. Jetzt Public Viewing: http://via.me/-2cxj4wa\xa0', 'id': '216997244170285056', 'user': 'Autanius'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-06-23 19:39:21', 'text': '@Uzh Und ich habe sie sofort verstanden. Ich sah das Regal korrekt vor mir. Ätsch. Frauen können sowas, weisste! Gell, @tserafouin', 'id': '216616452357226496', 'user': 'Frau_W'}, {'fullname': 'laura', 'timestamp': '2012-06-23 19:35:45', 'text': '@Uzh @Frau_W stimmt. ich dachte an "doppelt so hoch und doppelt so breit".', 'id': '216615547058655232', 'user': 'tserafouin'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-06-22 21:00:16', 'text': '@Uzh Ich bin am überlegen.', 'id': '216274426302447616', 'user': 'Frau_W'}, {'fullname': 'Bastian', 'timestamp': '2012-06-21 07:29:51', 'text': '@Uzh Nix da!!!!', 'id': '215708092766228480', 'user': 'Schreibspecht'}, {'fullname': 'Bernward', 'timestamp': '2012-06-16 21:26:13', 'text': '@Uzh Das ist eine Frage der Definition.', 'id': '214106632743960577', 'user': 'Autanius'}, {'fullname': 'Fauziah', 'timestamp': '2012-06-14 03:00:36', 'text': 'berarti kw bangsa apa donk??? RT @ajibuana :Videony bangsamu itu RT @uzhygrazhier: msa videomu sndri maw kw tonton..hahaha RT @ajibuana:@uzh', 'id': '213103619279560706', 'user': 'uzhygrazhier'}, {'fullname': 'Bastian', 'timestamp': '2012-06-13 19:31:51', 'text': '@Uzh genau das ;-)', 'id': '212990686146990081', 'user': 'Schreibspecht'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2012-06-13 18:37:44', 'text': "Don't feel like exercise? Swiss scientists find compound that may help you work out harder: http://bit.ly/KqZqHj\xa0 @UZH", 'id': '212977066616954881', 'user': 'swissnexSF'}, {'fullname': 'kb \xa0🇪🇺', 'timestamp': '2012-06-09 20:56:19', 'text': '@Uzh Ja, das ist der mit dem Hund und dem Stock.', 'id': '211562393296306178', 'user': 'kbojens'}, {'fullname': 'Ernst Hafen', 'timestamp': '2012-06-04 12:24:21', 'text': 'Ohad Medalia gave an outstanding talk on cyro-EM. He is looking for motivated scientists to join his new group at @UZH #DBIOL2012', 'id': '209621613468069888', 'user': 'ehafen'}, {'fullname': 'Words like swords', 'timestamp': '2012-06-04 10:12:09', 'text': '@Uzh das Dogma der UdSSR war Atheismus?', 'id': '209588341044289537', 'user': 'Weltregierung'}, {'fullname': 'Sven Meier', 'timestamp': '2012-06-02 17:49:21', 'text': '@Uzh nun habe ich schon ein paar #krankenhaustweets gelesen und muss schmunzeln ^^ Gute Besserung und dass du bald wieder zuhause bist', 'id': '208978624798408704', 'user': 'SvenMeier3'}, {'fullname': 'Bernward', 'timestamp': '2012-06-01 21:46:20', 'text': '@Uzh Denn mal gute Nacht und gute Besserung.', 'id': '208675877020631040', 'user': 'Autanius'}, {'fullname': 'Henrik Bröckelmann', 'timestamp': '2012-05-30 20:01:06', 'text': '@Uzh "gehoben" sagt ja alles.', 'id': '207924616465879041', 'user': 'henrikMSL'}, {'fullname': 'Henrik Bröckelmann', 'timestamp': '2012-05-30 19:46:06', 'text': '@Uzh Super! Danke!', 'id': '207920844142415873', 'user': 'henrikMSL'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-29 21:09:59', 'text': '@Uzh Papperlapapp!', 'id': '207579566326288385', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-29 20:59:43', 'text': '@Uzh Oh. Iss gut?', 'id': '207576981510950913', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-29 20:50:23', 'text': '@Uzh Du möchtest eine Raumstation?', 'id': '207574631215931392', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-29 17:36:24', 'text': 'Oh. Ich denke ja. Elite-Twitterer sind da nicht anders.... @Uzh @einstueckkaese', 'id': '207525814990929920', 'user': 'Frau_W'}, {'fullname': 'foraus', 'timestamp': '2012-05-29 15:24:12', 'text': 'BR Sommaruga @ChrMoergeli @KathyRiklin NR Markus Hutter & Prof. Hans-Ueli Vogt heute Abend 19 Uhr @uzh http://owl.li/bdAId\xa0 #AUNS-Initiative', 'id': '207492546476249088', 'user': 'foraus'}, {'fullname': 'Maximilian Stern', 'timestamp': '2012-05-29 09:25:26', 'text': 'BR Sommaruga, @ChrMoergeli, @KathyRiklin, NR Markus Hutter und Prof. Hans-Ueli Vogt heute Abend an #foraus -Debatte zur AUNS-Initiative @UZH', 'id': '207402260823683072', 'user': 'maximilianstern'}, {'fullname': 'Peer H.', 'timestamp': '2012-05-27 20:11:24', 'text': '@Uzh Beste Kombi wo gibt.', 'id': '206840044269481984', 'user': 'peerolix'}, {'fullname': 'Bastian', 'timestamp': '2012-05-27 20:06:02', 'text': '@Uzh Eigentlich ist er Belgier, aber er steht nicht dazu.', 'id': '206838695431634944', 'user': 'Schreibspecht'}, {'fullname': 'Fauziah', 'timestamp': '2012-05-27 13:36:44', 'text': 'z kra hri2x kw pnasran RT @Gerhylinekel Ok mi, tp pnasaran ka RT "@uzhygrazhier: bskpi d kmpus z taxko RT @Gerhylinekel Tentang apa RT "@uzh', 'id': '206740724903976962', 'user': 'uzhygrazhier'}, {'fullname': 'SüperwomAn :))', 'timestamp': '2012-05-26 20:25:57', 'text': '@Uzh :))', 'id': '206481319356661760', 'user': 'BeAvonHL'}, {'fullname': 'SüperwomAn :))', 'timestamp': '2012-05-26 20:02:03', 'text': '@Uzh & @mfedorec Orr. Ganz tolle Süperhilfen seid ihr. Menno', 'id': '206475304892510209', 'user': 'BeAvonHL'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-05-25 20:55:41', 'text': '@Frau_W @Uzh Von mir Knuddelkonservativen :) mit kurzurlaubsbedingter leichter Verspätung auch ein herzliches Danke!', 'id': '206126415593209856', 'user': 'Stecki'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-25 18:04:53', 'text': '@Uzh @Stecki Fühle mich geehrt. Und danke daffür.', 'id': '206083429564039170', 'user': 'Frau_W'}, {'fullname': 'DNN', 'timestamp': '2012-05-24 13:43:44', 'text': '@Uzh Sie haben natürlich demonstriert. Pardon!', 'id': '205655321677545472', 'user': 'dnn_online'}, {'fullname': 'Bastian', 'timestamp': '2012-05-19 20:02:44', 'text': '@Uzh Jetzt wo Du es sagst... Ist leider ne Gratis-Zeitung...', 'id': '203938762068205568', 'user': 'Schreibspecht'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-16 20:37:44', 'text': '@Uzh @wolkenpumpe Grummel.', 'id': '202860404953714688', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-16 20:32:28', 'text': '@Uzh Nee, nä? Das ist ja super. Ein potentieller Lieferant für die Bordverpflegung. Ey, @wolkenpumpe, guck dir das fürs Konzept an.', 'id': '202859079314587648', 'user': 'Frau_W'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-05-16 20:28:58', 'text': '@Uzh Nun. Es ist so, dass #TiKiÄi jede Destination anfliegen wird, welche sich offiziell zum Käsebrot als vollwertige Mahlzeit bekennt.', 'id': '202858199538335744', 'user': 'Frau_W'}, {'fullname': 'ISpeakGaganese!!!', 'timestamp': '2012-05-15 07:05:34', 'text': 'Like yu dnt know.. "@uzoorh: Runz in u \'n\' whu\'s blood????RT @Anagazo: Abi? "@black2dabone: Runz in the family.. "@Anagazo: Weyrey.. "@uzh', 'id': '202293631028178944', 'user': 'black2dabone'}, {'fullname': 'Bastian', 'timestamp': '2012-05-11 17:46:34', 'text': 'Getreu dem Motto Save the best for last: @fragdochuli @ai_hua @Evo2Me @haseltweet @HeikeRost @ichbinschaf @LastOne2099 @ne_ratte @Uzh #ff', 'id': '201005391058964481', 'user': 'Schreibspecht'}, {'fullname': 'moneyland.ch', 'timestamp': '2012-05-07 16:34:50', 'text': 'SNB\'s Jordan about @IMFNews\' @Lagarde: "she speaks the truth" @uzh', 'id': '199537789363171328', 'user': 'moneyland_ch'}, {'fullname': 'kb \xa0🇪🇺', 'timestamp': '2012-05-07 08:45:27', 'text': '@Uzh Das stimmt. Die sagen dann Schiele.', 'id': '199419664638554112', 'user': 'kbojens'}, {'fullname': 'Eyke Bittner', 'timestamp': '2012-05-02 10:44:52', 'text': '@Uzh Das die CDU in Lübeck ziemlich pleite ist!', 'id': '197637777658089472', 'user': 'linkesocke'}, {'fullname': 'Eyke Bittner', 'timestamp': '2012-05-02 10:25:01', 'text': '@Uzh Scheinbar hat FDP die Dienste der Wählerpotentialanalysen nach Wohnort genutzt. Deine Armut kotzt die #FDP an ;)  http://bit.ly/IIGcFA\xa0', 'id': '197632782032322560', 'user': 'linkesocke'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-04-29 21:16:13', 'text': '@Uzh Naja, da müsstest du in der ersten Woche meine Housesitter fragen und ab der zweiten Woche wieder mich ;-)', 'id': '196709497325105152', 'user': 'Frau_W'}, {'fullname': 'Oliver Fraederich', 'timestamp': '2012-04-25 19:32:26', 'text': '@Uzh :-(', 'id': '195233826895691777', 'user': 'textlastig'}, {'fullname': 'Citraaaaaa', 'timestamp': '2012-04-20 11:31:18', 'text': 'ah gabener kamu mah RT @uzheanjar: sudah terlambat cit hahaha RT @CitraKidiw: yu ath yu ;;) jajanin yah mehehe tp da ujan disini mah RT @uzh', 'id': '193300808924807168', 'user': 'CitraKidiw'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-04-06 19:51:54', 'text': 'So, nu aber! #ff @ju_paderborn @randyehrich @lieselm @sprzepiorka @PNeuenfeldt @uzh @swenwacker @landesblog @hschmidt @themroc @tomaschek', 'id': '188353356840972291', 'user': 'Stecki'}, {'fullname': 'abgeordnetenwatch.de', 'timestamp': '2012-04-03 19:40:42', 'text': '@Uzh Stimmt, sorry. Im Text stehts korrekt', 'id': '187263376261517315', 'user': 'a_watch'}, {'fullname': 'Frau Sturm', 'timestamp': '2012-03-31 22:34:39', 'text': '@Uzh ...Ich frage nur, weil meine Timeline voll mit Boxen und anderem TV-Schmu (DSDS) ist. \nDeine Wahl ist vollkommen OK^^', 'id': '186219987713802241', 'user': 'Schreibstute'}, {'fullname': 'Dentist', 'timestamp': '2012-03-31 20:21:00', 'text': '@Uzh Nach Gefühlen bohren... Wie romantisch ;)', 'id': '186186352432386048', 'user': '_theDentist'}, {'fullname': 'Fitri Nurhayati', 'timestamp': '2012-03-26 07:51:48', 'text': 'hah buahh ? makin aneh saja :D RT @uzhiekaka: itu kan buah"an, dih g tau lg, payah RT @telorkoala payah itu sejenis makanan apa ya ? RT @uzh', 'id': '184185873091399680', 'user': 'telorkoala'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-25 16:45:03', 'text': 'Danke, @Uzh, freue mich für die Kollegen im Saarland, die wirklich auch mit enormen Einsatz gekämpft haben.', 'id': '183957681122459648', 'user': 'Stecki'}, {'fullname': 'Brigitte Ferlet', 'timestamp': '2012-03-23 16:57:58', 'text': '@Uzh Uups. da hast Du vollkommen recht! Aber die Überschrift stammt nicht von mir..... und dieser Fehler ist mir leider nicht aufgefallen!', 'id': '183236155368685569', 'user': 'ferlebri'}, {'fullname': 'Fitri Nurhayati', 'timestamp': '2012-03-22 01:47:24', 'text': 'payah itu sejenis makanan apa ya ? RT @uzhiekaka: ga tau kaleeee, payah RT @telorkoala ga ada kaleee sotoy goyeeeng mah . HªhªhªHªhª RT @uzh', 'id': '182644614711349251', 'user': 'telorkoala'}, {'fullname': 'Lapier Nox', 'timestamp': '2012-03-21 03:43:44', 'text': '@Uzh http://30pd.co.cc/buz\xa0', 'id': '182311505528762368', 'user': 'lapierhcidml9'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-14 17:41:18', 'text': '@Uzh (und in einem Facebook-Posting habe ich π-Day natürlich erwähnt, Nerdehrensache)', 'id': '179985570133590016', 'user': 'Stecki'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-14 17:40:35', 'text': '@Uzh Den feiere ich aber immer nur, wenn ich auch um 1:59 Uhr wach bin, was ich aufgrund Übermüdung nicht war :-(', 'id': '179985388549582848', 'user': 'Stecki'}, {'fullname': 'Bastian', 'timestamp': '2012-03-14 14:49:28', 'text': '@Uzh Gramaddigg wird überbewertet ;-)', 'id': '179942325844316160', 'user': 'Schreibspecht'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-03-13 18:53:59', 'text': '@Uzh Ach so, du bist einfach ein bisschen komisch - das ist in Ordnung. Willkommen.', 'id': '179641473254432769', 'user': 'Frau_W'}, {'fullname': 'Granger \xa0☕️ Danger', 'timestamp': '2012-03-12 09:00:10', 'text': '@Uzh Ich kann in den Regeln zumindest nichts finden, was dagegenspricht. :)', 'id': '179129645269127168', 'user': 'hermione_rescue'}, {'fullname': 'Bettina Werren', 'timestamp': '2012-03-11 19:58:51', 'text': '@Uzh Pipwas?', 'id': '178933021439832064', 'user': 'Frau_W'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-11 07:45:37', 'text': '@Uzh Danke, wobei das iPad ja „nur“ Weiterentwicklung ist, insofern eher Fanboy- als Earlyadoptertum ;)', 'id': '178748498773147648', 'user': 'Stecki'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-03 21:29:24', 'text': 'Einfach genial! :D RT @Uzh: @Stecki: Extra für Dich habe ich zum Wahlkampfstart in S-H die #Ramboralle gemalt.pic.twitter.com/QK6KZ5gz', 'id': '176056706940411907', 'user': 'Stecki'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-03-03 21:27:05', 'text': '@Uzh GRANDIOS! DANKE!!! #ramboralle', 'id': '176056123772780545', 'user': 'Stecki'}, {'fullname': 'Bastian', 'timestamp': '2012-02-29 21:54:48', 'text': '@Uzh Hach....', 'id': '174975935639072768', 'user': 'Schreibspecht'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-02-25 10:48:18', 'text': '@Uzh Das zwar nicht, aber Format und Titel sind mir bekannt und die Begrifflichkeit paßte hervorragend zur Situation ;)', 'id': '173358653410254848', 'user': 'Stecki'}, {'fullname': 'Hananto adhi', 'timestamp': '2012-01-30 10:21:11', 'text': "Kan masih ada aku RT @viinaaVH: Huft hiks hiks :'( RT @uzhi22: cerai.. RT @viinaaVH: Mau kawin atau nikah nih wkwk RT @uzh", 'id': '163929744348422144', 'user': 'Hanantoadhi_'}, {'fullname': 'Ernst Hafen', 'timestamp': '2012-01-26 22:54:57', 'text': '@ETH @UZH Excellent news ETH & UZH score in ERC starting and senior grant. Congrats to M Schwab, J Jiricny, D Gehrlich http://bit.ly/y4hBm4\xa0', 'id': '162669884600356864', 'user': 'ehafen'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2012-01-25 12:19:45', 'text': '@Uzh Oh, dann wünsche ich erfolgreiches Gesundpflegen/gute Besserung!', 'id': '162147644217634816', 'user': 'Stecki'}, {'fullname': 'swissnex S Francisco', 'timestamp': '2012-01-17 20:06:05', 'text': 'Swiss scientists show that breaking your arm can affect your brain. News in Science (ABC Science) http://bit.ly/AzuipO\xa0 @uzh', 'id': '159365899286102017', 'user': 'swissnexSF'}, {'fullname': 'Bastian', 'timestamp': '2012-01-08 16:44:14', 'text': '@Uzh Oh Gott. Du Armer. Bist Du dahin verschleppt worden?', 'id': '156053608742404097', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2012-01-08 16:39:53', 'text': '@Uzh Lübech?', 'id': '156052514448482305', 'user': 'Schreibspecht'}, {'fullname': 'junirio', 'timestamp': '2012-01-06 20:25:32', 'text': '@Uzh Ach deswegen ;)', 'id': '155384525566910465', 'user': 'junirio'}, {'fullname': 'Peer H.', 'timestamp': '2012-01-04 21:21:43', 'text': "@Uzh No, does it not I'm afraid.", 'id': '154673889136480256', 'user': 'peerolix'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2011-12-30 13:52:46', 'text': '@Uzh Wohl Rosinen im Kopf, wa? Danke sehr.', 'id': '152748968760197121', 'user': 'Pyrolim'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2011-12-28 21:06:12', 'text': '@Uzh Tja, der Klassiker halt, alles Dinge, die ich in der Zeitung nie lesen. Wetter bespreche ich lieber übern Gartenzaun.', 'id': '152133270572765184', 'user': 'Pyrolim'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2011-12-27 17:40:03', 'text': '@Uzh Schon gesehen und kommentiert. Danke für den Hinweis.', 'id': '151719001205121025', 'user': 'Pyrolim'}, {'fullname': 'Peer H.', 'timestamp': '2011-12-15 20:43:58', 'text': '@Uzh Sehr schön ;-)', 'id': '147416631981772801', 'user': 'peerolix'}, {'fullname': 'Inuy14', 'timestamp': '2011-12-09 04:22:40', 'text': 'iyaam baik jual nyata jdi duit , nah ketahuan am nah kedoknya jadi ojek payung kalinya wyahini RT @uzh', 'id': '144995351970070528', 'user': 'inuuuuuy'}, {'fullname': '♚AYUNK♚', 'timestamp': '2011-11-30 13:17:50', 'text': 'anying luRT @uzhthe19: Kemane aje lw baru nongol.. Baru bangkit dari kuburan yah. HahaRT @aYunkmeSsia: @POETRrA @uzh... http://26be4.mnt.bz\xa0', 'id': '141868540742479873', 'user': 'ayunkmessia'}, {'fullname': 'Bastian', 'timestamp': '2011-11-23 21:55:03', 'text': '@Uzh sehr gut!', 'id': '139461986244239360', 'user': 'Schreibspecht'}, {'fullname': 'Akbar Gunawan Wadi', 'timestamp': '2011-11-18 10:47:48', 'text': 'Yee -_- RT @uzhi22 sip sip.. liat bayar ya haha RT @akbaargw: Oh ya udah besok aja kalo gitu disekolah RT @uzh ... "http://bit.ly/sHKhJY"', 'id': '137482128966434816', 'user': 'akbaargw'}, {'fullname': 'Susanne Peyronnet', 'timestamp': '2011-11-16 21:54:33', 'text': '@Uzh Sehr streng genommen ja. Das NIE ist aber Versalien und dient hier nur der Betonung. Kommt bei mir sehr selten vor.', 'id': '136925145808896000', 'user': 'Pyrolim'}, {'fullname': 'Bianka Boock', 'timestamp': '2011-11-16 10:20:58', 'text': 'Danke fürs Retweeten "Madsack will die Märkische Allgemeine kaufen..." @Schreibspecht und @Uzh', 'id': '136750601840238593', 'user': 'BiankaBoock'}, {'fullname': 'Bastian', 'timestamp': '2011-11-13 10:37:59', 'text': '@Uzh Nee, habe ich nicht.', 'id': '135667720057401344', 'user': 'Schreibspecht'}, {'fullname': 'Oliver Fraederich', 'timestamp': '2011-11-10 10:37:53', 'text': '@Uzh Mit Anfang 30 hat man ja alle Kombinationsmöglichkeiten mal durch.', 'id': '134580530468495360', 'user': 'textlastig'}, {'fullname': 'Eyke Bittner', 'timestamp': '2011-11-10 10:32:59', 'text': '@Uzh Nein, da muss ich dich leider enttäuschen es ist die 103!', 'id': '134579296986595328', 'user': 'linkesocke'}, {'fullname': 'Jan Bastick', 'timestamp': '2011-11-09 07:13:50', 'text': 'Und da wir vom Wetter sprachen... RT @Uzh: @Schreibspecht Noch 136 Tage, 16 Stunden, 54 Minuten Winterzeit.', 'id': '134166793097986048', 'user': 'JanBastick'}, {'fullname': '_phoenicia', 'timestamp': '2011-11-09 07:09:20', 'text': 'Ui, noch genauer :-)) RT @Schreibspecht: Danke!!! RT @Uzh: @Schreibspecht Noch 136 Tage, 16 Stunden, 54 Minuten Winterzeit.', 'id': '134165658865893376', 'user': '_phoeni'}, {'fullname': 'Bastian', 'timestamp': '2011-11-09 07:07:54', 'text': 'Danke!!! RT @Uzh: @Schreibspecht Noch 136 Tage, 16 Stunden, 54 Minuten Winterzeit.', 'id': '134165299422441472', 'user': 'Schreibspecht'}, {'fullname': '♚AYUNK♚', 'timestamp': '2011-11-08 11:01:17', 'text': 'jd bahan bakarnyeRT @arieTHEBOYS: Jd pnghuni neraka..RT @aYunkmeSsia: semoga kekal d nerakaRT @arieTHEBOYS: RIP @uzh... http://1mkd1.mnt.bz\xa0', 'id': '133861643313618944', 'user': 'ayunkmessia'}, {'fullname': 'Bastian', 'timestamp': '2011-10-26 08:15:34', 'text': '@Uzh Jupp!', 'id': '129108898639642624', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2011-10-26 06:54:14', 'text': '@Uzh Der korrekt und vollständig angewendete Genitiv wird auch überbewertet, werter Uzh. Und Geographie war auch nie so meins...', 'id': '129088430847168513', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2011-10-25 19:38:17', 'text': '@Uzh Darum hab ich es doch extra gemacht. Das mag der @deep470', 'id': '128918320836653058', 'user': 'Schreibspecht'}, {'fullname': "Barbie Amelia's ♔", 'timestamp': '2011-10-13 16:32:56', 'text': 'Ke dugem gera/nyodokRT @uzhi_kataksipit: iya hehehe , kalo lagi gini teh pengenya teh ngeroko :)RT @ameliananabila Haha bebaskaan ajaRT @uzh', 'id': '124523021691125760', 'user': 'amelianzrnnbl'}, {'fullname': 'j0rn0r', 'timestamp': '2011-10-11 06:40:40', 'text': '@LUKIZO hey whats up buddy @UZH with @NicoLetti90 #BWL #erfolgsrechnung #aufwand=ertrag #PornLife #6days #DEAMREALBIG', 'id': '123649196350914560', 'user': 'j0rn0r'}, {'fullname': "Barbie Amelia's ♔", 'timestamp': '2011-10-08 23:10:16', 'text': 'RT @uzhi_kataksipit: yeahhhhh :pRT @ameliananabila Owyeaah?RT @uzhi_kataksipit: kaga ane mah :pRT @ameliananabila Yey emangnya eloh:pRT @uzh', 'id': '122811075388391424', 'user': 'amelianzrnnbl'}, {'fullname': 'Itza Hernandez', 'timestamp': '2011-10-08 03:14:19', 'text': 'NOO MMZ SON JALADAS :@UZH!', 'id': '122510103252439040', 'user': 'iittzaa'}, {'fullname': 'ДИОГЕН БЯКОВ', 'timestamp': '2011-09-30 22:26:39', 'text': '@oktiabr @uzh @nastupil @uzh @roshcha @otriahaet ...', 'id': '119900996662071296', 'user': 'biakoff'}, {'fullname': 'Arie_Picasso', 'timestamp': '2011-09-11 14:34:38', 'text': 'ahhahaahhahaa RT @uzhthe19: Apan sie om,, ga jelas lw ?? RT @arieTHEBOYS: sbnrnya sih w tw hhmm tp ksih tw ng yaa RT @uzh', 'id': '112896839807811587', 'user': 'arieTHEBOYS'}, {'fullname': 'Arie_Picasso', 'timestamp': '2011-09-10 07:41:31', 'text': 'Bangsat brisik..lu RT @uzhthe19: Lw raja nya setan. Hahaha RT @P0ETRrA: Persetan dengan @aYunkmeSsia @arieTHEBOYS @uzh', 'id': '112430488496504832', 'user': 'arieTHEBOYS'}, {'fullname': '♚AYUNK♚', 'timestamp': '2011-09-07 14:04:33', 'text': 'insya allah....RT @aditapril: "Knpa ? Iyah gue ke kampus RT@arieTHEBOYS: @ayunkmessia @POETRra @aditapril @uzh… (cont) http://deck.ly/~Y2RH2\xa0', 'id': '111439718390054912', 'user': 'ayunkmessia'}, {'fullname': 'Peer H.', 'timestamp': '2011-09-01 09:57:00', 'text': '@uzh Sehr schön! Und was wird geantwortet?', 'id': '109203092578377728', 'user': 'peerolix'}, {'fullname': 'Bastian', 'timestamp': '2011-09-01 06:34:12', 'text': '@Uzh Gute Frage, aber hey, man kann ja nicht alles wissen....', 'id': '109152053619720192', 'user': 'Schreibspecht'}, {'fullname': 'UzhyAgustinArdhiyati', 'timestamp': '2011-08-29 12:04:42', 'text': 'Uzhy agustin ardhiyati alias widi vierra haha (¯―¯٥) RT @IdhilQhatir: Haha iakah? Apa nama fbmu?RT @Uzh ... (cont)  http://tm.to/QBhI', 'id': '108148064308576256', 'user': 'uzhysaw'}, {'fullname': 'Auza Ghifary', 'timestamp': '2011-08-21 03:39:15', 'text': "ga kok.. ni d rumah masing'' RT @rissa_cha: Lagi pada ngumpul di rumah pakri ya ? RT @Dimas_fahrie: Hehe, kamu marah saya tuan rumah RT @Uzh", 'id': '105121760042688514', 'user': 'auzaghifary'}, {'fullname': 'FLUFF YOU', 'timestamp': '2011-08-17 09:18:28', 'text': '@Uzh ^^', 'id': '103757574461079552', 'user': 'Klllmanjaro'}, {'fullname': 'Oliver Fraederich', 'timestamp': '2011-08-17 08:49:50', 'text': '@Uzh Oh okay, das ist dann ja ganz cool. Wenn der irgendwann auch noch Gerüche im Bus reinigt, fahre ich vielleicht mal mit.', 'id': '103750370941079552', 'user': 'textlastig'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-08-16 20:17:35', 'text': '@Uzh Danke, das tut gut!', 'id': '103561060442836992', 'user': 'Stecki'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-07-21 10:30:47', 'text': 'ώªκ•̃⌣•̃ώªκ•̃⌣•̃ώªκ RT @chewpye_182: ┐(˘–˘ )┌RT @uzhy_Fauzhy: sori men ges payu RT @chewpye_182: =»> @uzh', 'id': '93991300893900800', 'user': 'sifauzhy'}, {'fullname': 'Jean Pierre Hintze', 'timestamp': '2011-07-15 21:17:09', 'text': '@Uzh ... natürlich richtig! Es ist die Rehderbrücke.', 'id': '91979637374193664', 'user': 'jphintze'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-07-11 08:57:35', 'text': 'jiahahah RT @Annahafidah: adadeh ehehhe :p RT @uzhy_Fauzhy: apa na? hahah RT @Annahafidah: Bukaaaan :( RT @uzh… (cont) http://deck.ly/~DRlqD', 'id': '90343971439656960', 'user': 'sifauzhy'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-07-01 09:02:42', 'text': 'bisa sih RT @SelviLutviani: o tidak bisa RT @uzhy_Fauzhy: iya punya km RT @SelviLutviani: rumah kamu ? RT @uzh… (cont) http://deck.ly/~9b7UW', 'id': '86721379134742528', 'user': 'sifauzhy'}, {'fullname': 'Pramayuda', 'timestamp': '2011-06-29 03:49:12', 'text': 'enya oge sih RT @uzhy_Fauzhy: nya ku nu ngarti ath RT Azep_Herdian: enya sih, tpi teu wani uy bsi kasalahkun RT @uzh... http://2a5qt.twa.im', 'id': '85917709447086081', 'user': 'Azep_Herdian'}, {'fullname': 'RAMDHANI', 'timestamp': '2011-06-26 02:33:27', 'text': 'hyang kawin..?? hahahaha... nikah tah kawin ieu teh .... ckckckck RT @chewpye_182 @uzh', 'id': '84811482616963072', 'user': 'ramdhani7'}, {'fullname': 'Cheppy Suherman', 'timestamp': '2011-06-25 23:32:52', 'text': 'Meringis hayang kawin°~=))••°wk.wk.wk\n°••=))~°RT @ramdhani7: "mringis" ngeriiiii kaaaaaaliiiiii... hahaha RT @chewpye_182 @uzh', 'id': '84766037005975552', 'user': 'cheppys07'}, {'fullname': 'Fauzi Alditsa', 'timestamp': '2011-06-24 18:09:38', 'text': 'hm , baru bangun apa emang belum tidur ? RT @ajengyuliani: Blom ngantukk cooy RT @uzhialditsa: tidur udah pagi :D RT @ajengyuliani: RT @uzh', 'id': '84322301629304832', 'user': 'uzhialditsa'}, {'fullname': 'Tomi', 'timestamp': '2011-06-18 13:13:01', 'text': 'katanya gada dirumah RT @uzhi22 di dieu ti tatadi oge hehe RT @TomiRahmat29: kamana waee atuh ujaaaang RT @uzh ... "http://bit.ly/kQskjD"', 'id': '82073330353582081', 'user': 'tomi29rahmat'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-06-15 19:55:35', 'text': '@Uzh In Delingsdorf war der Strom nicht mal weg, mein iMac lief durch. In Ahrensburg, Bargteheide und Reinbek gingen gingen die PCs aus…', 'id': '81087474742472704', 'user': 'Stecki'}, {'fullname': 'Oliver Fraederich', 'timestamp': '2011-06-09 12:56:42', 'text': '@Uzh Nicht allgemein. Die da meinte ich: http://bit.ly/jUaSg5', 'id': '78807734983725056', 'user': 'textlastig'}, {'fullname': 'Bastian', 'timestamp': '2011-06-09 06:44:49', 'text': '@Uzh Stimmt! Neulich stand ich wieder halbnackt im Hazsflur und hab die Oma aus dem 2. Stock erschreckt....', 'id': '78714146497118209', 'user': 'Schreibspecht'}, {'fullname': 'Granger \xa0☕️ Danger', 'timestamp': '2011-06-09 06:43:20', 'text': '@Uzh @schreibspecht Stimmt, dann irrt er verwirrt im Schlafanzug durch die Stadt und wird irgendwann bei der Polizei abgegeben. :D', 'id': '78713771299844096', 'user': 'hermione_rescue'}, {'fullname': 'Pramayuda', 'timestamp': '2011-06-09 06:25:03', 'text': 'ƗƗɑƗƗɑ "@tha3424Ye: 2011 emnk aneh.. heuRT Azep_Herdian: 2011 :p "@tha3424Ye: ikh. atut. lalaki2 ngidamRT @uzh (cont) http://tui.tl/Dovh', 'id': '78709170731360257', 'user': 'Azep_Herdian'}, {'fullname': 'Bastian', 'timestamp': '2011-06-09 06:22:39', 'text': '@Uzh Call me the Bot ;-)', 'id': '78708567179399168', 'user': 'Schreibspecht'}, {'fullname': 'Peer H.', 'timestamp': '2011-06-07 19:07:12', 'text': '@Uzh Ja, weil meistens die Fragen noch dümmer sind. "Sie haben gewonnen. Sind sie glücklich?"', 'id': '78176196369719296', 'user': 'peerolix'}, {'fullname': 'Peer H.', 'timestamp': '2011-06-07 19:04:18', 'text': '@Uzh Aber danach macht der den Fehler nicht mehr ;-)', 'id': '78175468817362944', 'user': 'peerolix'}, {'fullname': 'Peer H.', 'timestamp': '2011-06-07 19:01:27', 'text': '@Uzh Ja, das ist legendär und sollte in jedem Volo gezeigt werden :-D', 'id': '78174751192907777', 'user': 'peerolix'}, {'fullname': 'Peer H.', 'timestamp': '2011-06-07 18:54:57', 'text': '@Uzh Ja, ich habe sein E vom Nachnamen als Geisel.', 'id': '78173114298671105', 'user': 'peerolix'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-06-05 12:58:33', 'text': 'konci apaan? RT @ArdyVogard2nd: Keren yaa apalagi lht stts \uf8ebввм nya si cepz katanya hilang konci wkwk  RT @uzh… (cont) http://deck.ly/~o1tSV', 'id': '77358649437204480', 'user': 'sifauzhy'}, {'fullname': 'Pramayuda', 'timestamp': '2011-06-05 12:44:49', 'text': 'eh da pedrosa mah cedra nya? Teu aya RT @uzhy_Fauzhy: eh salah stoner poho RT Azep_Herdian: Ntong atuh RT @uzh (cont) http://wl.tl/lwmG', 'id': '77355190956736513', 'user': 'Azep_Herdian'}, {'fullname': 'Pramayuda', 'timestamp': '2011-06-04 09:04:08', 'text': 'ωkωk =)) piss ah "@uzhy_Fauzhy: sialan RT Azep_Herdian: justru boleh pisan, kan tos om2 wkwk *luncaatt RT @uzh (cont) http://tui.tl/FiPg', 'id': '76937267251392512', 'user': 'Azep_Herdian'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-05-30 09:05:31', 'text': 'haha batur wi RT @Wie_vy: nya ath. .blh teh sha!?ta wie yarioz na pdu wae. .bsi d crekan ku btr heu. . RT @uzh… (cont) http://deck.ly/~4AOwc', 'id': '75125676956581889', 'user': 'sifauzhy'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-05-22 12:01:54', 'text': 'nyaan jng brudak imah, pnggih saprol d tmpt futsal td RT @chewpye_182: Lah waduuk... Jng sha wae cuu?? RT @uzh… (cont) http://deck.ly/~azQcZ', 'id': '72270959012364288', 'user': 'sifauzhy'}, {'fullname': 'Sascha Kloettschen', 'timestamp': '2011-05-13 20:31:01', 'text': '@Uzh Das kommt davon, wenn man gute Postings verfasst :-)', 'id': '69137592758714369', 'user': 'Kloettschen'}, {'fullname': 'Nicole Bataclan', 'timestamp': '2011-05-12 07:33:03', 'text': 'INTERESTED in what an innocent man who was imprisoned for 18 years has to say?! Meeting w/ ANTHONY GRAVES today at 12h30 K02-F-174 @UZH !', 'id': '68579422193717248', 'user': 'noupa'}, {'fullname': 'Vincent', 'timestamp': '2011-05-11 18:44:56', 'text': '“@Uzh: RT @Xpaprika: Wenn die Eltern SMS schreiben.. #epic http://twitpic.com/4pdqz9\xa0” So jetzt für euch. Ist wirklich sehr lustig :-) #genial', 'id': '68386119510798337', 'user': 'Vince_Reloaded'}, {'fullname': 'Nicole Bataclan', 'timestamp': '2011-05-11 08:32:15', 'text': 'An innocent man imprisoned for 18 years TALKS!Meeting w/ ANTHONY GRAVES tom. at 12h30 K02-F-174 @UZH ! http://www.amnesty-uzh.blogspot.com', 'id': '68231936035926017', 'user': 'noupa'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-05-11 03:36:18', 'text': 'enya brad RT @Azep_FiVers: Oh punten atuh jgan teh batre, kacapean nya RT @uzhy_Fauzhy: awak RT @Azep_FiVers: Batrenya Lembiru haha RT @uzh', 'id': '68157455993012224', 'user': 'sifauzhy'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-05-11 03:36:01', 'text': 'enya brad RT @Azep_FiVers: Oh punten atuh jgan teh batre, kacapean nya RT @uzhy_Fauzhy: awak RT @Azep_FiVers: Batrenya Lembiru haha RT @uzh', 'id': '68157382898892801', 'user': 'sifauzhy'}, {'fullname': 'Nicole Bataclan', 'timestamp': '2011-05-10 13:07:22', 'text': 'UNSCHULDIG IM TODESTRAKT - BEGEGNUNG MIT ANTHONY GRAVES Donn. 12/05/2011 12H30 Salle: K02-F-174 @UZH! Nicht verpassen!', 'id': '67938780136472576', 'user': 'noupa'}, {'fullname': 'Bastian', 'timestamp': '2011-05-10 10:33:41', 'text': '@Uzh Hab ich schon ;-) @Pyrolim', 'id': '67900107588239360', 'user': 'Schreibspecht'}, {'fullname': 'AdoBey ★★★★', 'timestamp': '2011-05-10 09:32:15', 'text': '@yosi1905 @uzh ooww yea man! sana puanım 10 kanka!', 'id': '67884644057624576', 'user': 'adocation'}, {'fullname': '\xa0☀Yoşi', 'timestamp': '2011-05-10 09:05:17', 'text': 'Pauseeeee @uzh http://yfrog.com/h2h3uepj\xa0', 'id': '67877861423448064', 'user': 'yosi1905'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-05-09 19:27:05', 'text': '@Uzh Es gibt auch noch Delegativ Ⅱ: Man müßte mal, wenn man Zeit hätte. :-)', 'id': '67671952873099264', 'user': 'Stecki'}, {'fullname': 'Bastian', 'timestamp': '2011-05-06 20:00:21', 'text': '@Uzh Jupp, genau so einer...', 'id': '66593161681698817', 'user': 'Schreibspecht'}, {'fullname': 'Peer H.', 'timestamp': '2011-05-05 18:13:12', 'text': '@Uzh So war das auch gemeint! ;-)', 'id': '66203807511625728', 'user': 'peerolix'}, {'fullname': 'Bastian', 'timestamp': '2011-05-05 13:23:26', 'text': '@Uzh Du meinst die Geschichte zum Bild? Jaa, die kann man heute lesen....', 'id': '66130886487314433', 'user': 'Schreibspecht'}, {'fullname': 'Bastian', 'timestamp': '2011-05-04 20:43:27', 'text': '@Uzh Das war für eine Geschichte...', 'id': '65879232743616512', 'user': 'Schreibspecht'}, {'fullname': 'REMBO', 'timestamp': '2011-05-02 15:52:18', 'text': '@Uzh!3chukitzjiw4 RT @curcolBDG: Mun rek nyieun ngaran twitter alay maneh rek nyieun ngaran @_______ #maaing #curcolNANYA', 'id': '65081186153799680', 'user': 'fauzinirwansyah'}, {'fullname': 'Dieter Brügmann', 'timestamp': '2011-05-02 07:34:30', 'text': '@Uzh Schwerin ist schwer in. Und in Rostock macht man Ostrock.', 'id': '64955909763383296', 'user': 'didispandau'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-04-29 06:24:23', 'text': '@Uzh Achso, und ich fragte mich, inwiefern heute Landtagswahlen NRW 2011 aktuell sind :) Ja: War unfreiwillig.', 'id': '63851100364750848', 'user': 'Stecki'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-04-29 06:18:39', 'text': '@Uzh #nrw2011? Worum geht’s?', 'id': '63849657893261312', 'user': 'Stecki'}, {'fullname': 'In', 'timestamp': '2011-04-27 09:30:03', 'text': 'RT @martinovnzlgv9: @Uzh @salwa_alvarsh @indfitrianni @shahlaharira @SJAMPANSEE @Borre_killer @kingofhearts951 http://goo.gl/leTPl', 'id': '63173050874593281', 'user': 'indrifitrianni'}, {'fullname': 'Bastian', 'timestamp': '2011-04-20 20:46:49', 'text': '@Uzh @mthie Ist ja auch egal. Ich schenkt Euch einen Gratis---->>>', 'id': '60806647097999360', 'user': 'Schreibspecht'}, {'fullname': 'Martin Thielecke', 'timestamp': '2011-04-20 20:43:16', 'text': '@Uzh @Schreibspecht Ihr beide verwirrt mich. Auf was habt ihr denn wo wann und wie geantwortet?', 'id': '60805753451192321', 'user': 'mthie'}, {'fullname': 'Martin Thielecke', 'timestamp': '2011-04-20 20:41:19', 'text': '@Uzh Hae?', 'id': '60805263246098432', 'user': 'mthie'}, {'fullname': 'Bastian', 'timestamp': '2011-04-20 20:40:18', 'text': '@Uzh Du sprichst in Rätseln ;-)', 'id': '60805007536173056', 'user': 'Schreibspecht'}, {'fullname': 'Wetterservice Lübeck', 'timestamp': '2011-04-18 15:10:18', 'text': '@Uzh - Danke fürs Folgen! - Das Lübecker Wetter gibt es auch bei Facebook: http://www.facebook.com/Luebecker.Wetterservice - DAS NORDWETTER', 'id': '59997183931465728', 'user': 'LuebeckWetter'}, {'fullname': 'Malte Steckmeister', 'timestamp': '2011-04-12 17:53:43', 'text': '@Uzh Danke :) Foto-Frühjahrsputz sozusagen…', 'id': '57863981888581633', 'user': 'Stecki'}, {'fullname': 'Stück van de Wurst', 'timestamp': '2011-04-11 19:21:21', 'text': '@Uzh also: fizzen und Fokke. Klar, oder? *grins*', 'id': '57523650265489408', 'user': 'Huta_Blage'}, {'fullname': 'Stück van de Wurst', 'timestamp': '2011-04-11 19:19:22', 'text': '@Uzh und du kannst wahlweise "K\'s" oder "Z\'s" einsetzen.', 'id': '57523150761623552', 'user': 'Huta_Blage'}, {'fullname': 'Stück van de Wurst', 'timestamp': '2011-04-11 19:18:05', 'text': '@Uzh lass mich kurz überlegen... Ja, unbedingt!! :))', 'id': '57522826646786048', 'user': 'Huta_Blage'}, {'fullname': 'MiaNiemand', 'timestamp': '2011-04-11 19:01:16', 'text': '@Uzh Oh. Ne. Morgen.', 'id': '57518597643313152', 'user': 'MiaNiemand'}, {'fullname': 'Fauzhy Ahmad', 'timestamp': '2011-04-08 04:05:13', 'text': "nya tp d fb bdak dork na nu mitnah fivers nu lmpar sendal tea RT @Azep_FiVers: hu'uh eta mah di upload ku dochi pwg pas dijogja tea RT @uzh", 'id': '56205935537950720', 'user': 'sifauzhy'}, {'fullname': 'Simon Zeimke', 'timestamp': '2011-04-06 17:41:37', 'text': '@Uzh @mianiemand da würd ich 20€ dazu geben....', 'id': '55686611245076481', 'user': 'Pillendreher'}]
In [190]:
collection.insert_one(tweets[0])
Out[190]:
<pymongo.results.InsertOneResult at 0x7fb072474208>
In [191]:
print(collection)
Collection(Database(MongoClient(host=['localhost:27017'], document_class=dict, tz_aware=False, connect=True), 'tweets'), 'uzh')
In [192]:
print(collection.find()[0])
{'_id': ObjectId('5d1330602f473a22959b3d6c'), 'fullname': 'Monica Oliveira', 'timestamp': '2017-08-18 00:06:36', 'text': 'Today miss @UZH my ALMA MATER and unfortunately stucked with the ALMA "STEP" MATER @YOU_KNOW_WHO life is a bitch', 'id': '898335281660612608', 'user': 'RVO_Monica'}
In [193]:
collection.insert_many(tweets[1:])
Out[193]:
<pymongo.results.InsertManyResult at 0x7fb0507024c8>
In [194]:
collection.find_one()
Out[194]:
{'_id': ObjectId('5d1330602f473a22959b3d6c'),
 'fullname': 'Monica Oliveira',
 'timestamp': '2017-08-18 00:06:36',
 'text': 'Today miss @UZH my ALMA MATER and unfortunately stucked with the ALMA "STEP" MATER @YOU_KNOW_WHO life is a bitch',
 'id': '898335281660612608',
 'user': 'RVO_Monica'}
In [195]:
for tweet in collection.find({'timestamp' : {'$gt':'2017-01-01'}}):
    print(tweet["text"])
Today miss @UZH my ALMA MATER and unfortunately stucked with the ALMA "STEP" MATER @YOU_KNOW_WHO life is a bitch
New survey by @LJMU @BIFM_UK & @UZH shows that 83 per cent of FMs believe BIM can add value to FM http://www.fm-world.co.uk/news/eighty-three-per-cent-of-fms-believe-bim-will-support-delivery-of-fm/ … #BIM #FacManpic.twitter.com/G0AJDBUw9e
Marine #Megafauna um ein Drittel reduziert - bisher unbekanntes #Artensterben im #Pliozän https://www.wissenschaftsjahr.de/2016-17/aktuelles/alle-aktuellen-meldungen/juni-2017/artensterben-im-pliozaen.html … @uzh
After sampling in the field, analyzing #soil samples, field-lab class @UZH #laegern @nadiahueberpic.twitter.com/wGwPmreUbV
Before meet us at the bookstall @uzh and have a look at the special issue «Art, Work and (De-)regulation» of the Swiss Journal of #Sociologyhttps://twitter.com/Foko_Kukuso/status/877803257095172096 …
Unser Büchertisch am SGS-Kongress 2017. Wir freuen uns über Besuch im Lichthof @uzh @Foko_Kukusopic.twitter.com/73SCA7YAcv
Content an Suchverhalten anpassen: wird gesucht, was man produziert? Ja, was sucht Ihr denn an der @uzh ? #DiMaUZH
Gratulation @lukasmaeder ! Die halbe Maeder Familiy fand ihren Weg über die KOM-Abteilung der @uzh zum Journalismus :-) @phmaederhttps://twitter.com/persoenlichcom/status/869568991496474625 …
.@ETH_DBIOL Buchklub: 2.-Sem Studierende diskutieren mit @uzh Autor Andreas Wagner sein Buch Arrival of The Fittest pic.twitter.com/rxqAhw855T
Heute startet die 4-teilige öff. #HSG-Vorlesung #Kulturgeschichte #Äthiopien mit Dr. Hodel-Hoenes (@UZH) http://bit.ly/2o30FSh 
Heute startet die 5-teilige öff. #HSG-Vorlesung #Kulturgeschichte «Japan-Schweiz» mit Prof. Patrik Ziltener (@UZH) http://bit.ly/2o30FSh 
.@START_Global #startblockchaingathering Hashtag zu Event Blockchain Gathering @UZH
#fantastic #customer #recommendation @uzh @unizh #uzh #university #zurich #campaignfit #phd workshops #leadership #phd #innovation #projectspic.twitter.com/rPMHhfmPkd
World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/L4t1rcG51t
World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/MPolIV7hTE
World’s fastest girls in racing kart are Swiss: Tara + Gaia Eichenberger (14, 11). Guests at our #IWD2017 event @UZH. @LadiesDrivepic.twitter.com/NmxNHu72AP
Die @uzh & @ETH lädt ein zur Woche des #Gehirns vom 13.-18. März in #Zürich. #BrainFair http://bit.ly/2m4sU2m 
Gender equality still 100 years away? Panel 8.3. @UZH
http://bit.ly/2lTzJmH 
#genderequalityCH!pic.twitter.com/7fnbrsXDf1
Frauke Berndt, Prof. für Neuere deutsche Literatur @uzh äussert sich zum Wert der Germanistik https://www.nzz.ch/feuilleton/germanistik-hier-wird-an-der-zukunft-gearbeitet-ld.145207 … via @NZZ
In [196]:
import pprint
In [197]:
pprint.pprint(collection.find_one())
{'_id': ObjectId('5d1330602f473a22959b3d6c'),
 'fullname': 'Monica Oliveira',
 'id': '898335281660612608',
 'text': 'Today miss @UZH my ALMA MATER and unfortunately stucked with the '
         'ALMA "STEP" MATER @YOU_KNOW_WHO life is a bitch',
 'timestamp': '2017-08-18 00:06:36',
 'user': 'RVO_Monica'}
In [198]:
collection.delete_many({})
Out[198]:
<pymongo.results.DeleteResult at 0x7fb060d53288>