In [1]:
%matplotlib inline

In [2]:
import networkx as nx
import projx as px

Dirty XML from Gephi


In [3]:
g = nx.read_graphml('data/full_prelims.graphml').to_undirected()
g.nodes(data=True)[0]


Out[3]:
('2318',
 {'Fecha': u'1605-04-01',
  'Titulo': u'Erratas_Arcadia Madrid Cuesta 1605',
  '[Schema] Type': u'Fe de erratas',
  '[Schema] Type Id': u'153',
  'b': 153,
  'g': 153,
  'label': u'Erratas_Arcadia Madrid Cuesta 1605',
  'r': 153,
  'size': 10.0,
  'x': 379.74106,
  'y': -81.48442})

In [4]:
# Process the data with a couple one-off functions.
def process_graph(g):
    graph = nx.Graph()
    to_merge = [u'Fe de erratas', u'Tasa', u'Aprobacion', u'Carta',
                u'Otro documento', u'Privilegio/Licencia']
    ignore = ['x', 'y', 'r', 'size', 'b', 'g', '[Schema] Type', '[Schema] Type Id', 'label', 'Nombre']
    rel_types = []
    for n, attrs in g.nodes(data=True):
        new_attrs = {k.lower(): v.replace('"', "").encode('utf-8') for (k, v) in attrs.items() if k not in ignore}
        graph.add_node(n, new_attrs)
        node_type = g.node[n]["[Schema] Type"]
        if node_type in to_merge:
            graph.node[n]["doc_type"] = node_type
            node_type = u'Documento'
        graph.node[n]["type"] = node_type
        graph.node[n]["label"] = g.node[n]["label"].replace('"', '')     
    for s, t, attrs in g.edges(data=True):
        try:
            rel_type = '{0}_{1}'.format(graph.node[s]["type"], graph.node[t]["type"])
            rev_rel_type = '{0}_{1}'.format(graph.node[t]["type"], graph.node[s]["type"])
            rel_type = rel_type.lower()
            rev_rel_type = rev_rel_type.lower()
            if rel_type not in rel_types and rev_rel_type not in rel_types:
                rel_types.append(rel_type)
            elif rev_rel_type in rel_types:
                rel_type = rev_rel_type
            new_attrs = {"type": rel_type}
            graph.add_edge(s, t, new_attrs)
        except KeyError:
            print('Failed to add edge: {0}, {1} - No Allowed Relationship for RelTypeId {2}'.format(
                s, t, attrs['[Schema] Allowed Relationship Id']
            ))
    return graph


def process_projection(proj):
    g = proj.copy()
    for n, attrs in proj.nodes(data=True):
        places = attrs.get("lugar", {})
        places = sorted(places, key=places.get, reverse=True)
        dates = attrs.get("fecha", {})
        genres = attrs.get("genero", {})
        genres = sorted(genres, key=genres.get, reverse=True)
        date_list= []
        for k, v in dates.items():
            year = k.split("-")[0]
            if year:
                date_list += [int(year)] * v
        if date_list:
            avg_date = int(sum(date_list) / float(len(date_list)))
        else:
            avg_date = ""
        if places:
            top_place = places[0]
            try:
                second_place = places[1]
            except IndexError:
                second_place = ""
        else:
            top_place = ""
            second_place = ""
        if genres:
            top_genre = genres[0]
            try:
                second_genre = genres[1]
            except IndexError:
                second_genre = ""
        else:
            top_genre = ""
            second_genre = ""
        g.node[n]["avg_date"] = avg_date
        g.node[n]["top_place"] = top_place
        g.node[n]["top_genre"] = top_genre
        g.node[n]["second_place"] = second_place
        g.node[n]["second_genre"] = second_genre
    for s, t, attrs in proj.edges(data=True):
        earliest_year = 2000
        dates = attrs.get("fecha", {})
        for k, v in dates.items():
            year = int(k.split("-")[0])
            if year < earliest_year:
                earliest_year = year
        g.adj[s][t]["earliest_year"] = earliest_year
        g.adj[t][s]["earliest_year"] = earliest_year
    return g

In [5]:
graph = process_graph(g)

Transfer the Lugar type as an attribute to documents, impressions, institutions:

(need to implement WHERE in MATCH statement and I could do this is one statement)


In [6]:
p1 = px.Projection(graph)
sub1 = p1.execute("""
    MATCH GRAPH (l:Lugar)-(d:Documento)
    TRANSFER (l)-(d)
    METHOD ATTRS
    SET lugar=l.label
""")

In [7]:
p2 = px.Projection(sub1)
sub2 = p2.execute("""
    MATCH GRAPH (l:Lugar)-(d:Dedicatoria)
    TRANSFER (l)-(d)
    METHOD ATTRS
    SET lugar=l.label
""")

In [8]:
p3 = px.Projection(sub2)
sub3 = p3.execute("""
    MATCH GRAPH (l:Lugar)-(i:Institucion)
    TRANSFER (l)-(i)
    METHOD ATTRS
    SET lugar=l.label
""")

In [9]:
p4 = px.Projection(sub3)
sub4 = p4.execute("""
    MATCH GRAPH (l:Lugar)-(i:Impresion)
    TRANSFER (l)-(i)
    METHOD ATTRS
    SET lugar=l.label
""")

In [10]:
nx.write_gexf(sub3, 'projections/multipartite.gexf')

Refine the graph with some more fine tuned planned transfomations:


In [11]:
### TRANSFERS ###

#Documento --> Persona: attrs - doc_type, fecha, lugar; edges - Edicion
#Institucion --> wild: attrs - name
#Impresion --> Persona: attrs - type, fecha, lugar; edges - Edicion
#Impresion --> Edicion: attrs - lugar
#Obra --> Edicion: attrs - genero
#Edicion --> Obra: attrs - type, lugar, fecha
#Obra --> Persona: attrs - type, lugar, fecha; edges - Edicion

### PROJECTION ###

#Persona -- Edicion -- Persona --> Persona -- Persona: attrs: fecha

In [12]:
p5 = px.Projection(sub4)
sub5 = p5.execute("""
    MATCH GRAPH (d:Dedicatoria)-(p:Persona)
    TRANSFER (d)-(p)
    METHOD EDGES Edicion
    SET doc_type="dedicatory", fecha=d.fecha, lugar=d.lugar, role="patron"
""")

In [13]:
p6 = px.Projection(sub5)
sub6 = p6.execute("""
    MATCH GRAPH (d:Documento)-(p:Persona)
    TRANSFER (d)-(p)
    METHOD EDGES Edicion
    SET doc_type=d.doc_type, fecha=d.fecha, lugar=d.lugar, role="signatory"
""")

In [14]:
p7 = px.Projection(sub6)
sub7 = p7.execute("""
    MATCH GRAPH (i:Institucion)-(wild)
    TRANSFER (i)-(wild)
    METHOD ATTRS
    SET inst=i.label
""")

In [15]:
p8 = px.Projection(sub7)
sub8 = p8.execute("""
    MATCH GRAPH (i:Impresion)-(p:Persona)
    TRANSFER (i)-(p)
    METHOD EDGES Edicion
    SET doc_type=i.type, fecha=i.fecha, lugar=i.lugar, role="printer/editor"
""")

In [16]:
p9 = px.Projection(sub8)
sub9 = p9.execute("""
    MATCH GRAPH (i:Impresion)-(e:Edicion)
    TRANSFER (i)-(e)
    METHOD ATTRS
    SET lugar=i.lugar
""")

In [17]:
p10 = px.Projection(sub9)
sub10 = p10.execute("""
    MATCH GRAPH (o:Obra)-(e:Edicion)
    TRANSFER (o)-(e)
    METHOD ATTRS
    SET genero=o.genero
""")
### This essentially counts 12 theatre obras as 1 genre edition
for n, attrs in sub10.nodes(data=True):
    if attrs.get("genero", ""):
        k = attrs.get("genero", {})
        if isinstance(k, str):
            sub10.node[n]["genero"] = {k: 1}
        else:
            k = k.keys()[0]
            sub10.node[n]["genero"][k] = 1

In [18]:
p11 = px.Projection(sub10)
sub11 = p11.execute("""
    MATCH GRAPH (e:Edicion)-(o:Obra)
    TRANSFER (e)-(o)
    METHOD ATTRS
    SET doc_type=e.type, ed_fecha=e.fecha, lugar=e.lugar
""")

In [19]:
p12 = px.Projection(sub11)
sub12 = p12.execute("""
    MATCH GRAPH (o:Obra)-(p:Persona)
    TRANSFER (o)-(p)
    METHOD EDGES Edicion
    SET doc_type=o.type, fecha=o.ed_fecha, lugar=o.lugar, author="true", role="author"
""")

In [20]:
p13 = px.Projection(sub12)
sub13 = p13.execute("""
    MATCH GRAPH (e:Edicion)-(p:Persona)
    TRANSFER (e)-(p)
    METHOD ATTRS
    SET genero=e.genero
""")

In [21]:
p14 = px.Projection(sub13)
bipartite = p14.execute("""
    MATCH (p:Persona)-(e:Edicion)
""")

In [22]:
nx.write_gexf(bipartite, "projections/bipartite.gexf")

In [23]:
p16 = px.Projection(bipartite)
projection = p16.execute("""
    MATCH (p1:Persona)-(e:Edicion)-(p2:Persona)
    PROJECT (p1)-(p2)
    METHOD NEWMAN Edicion
    DELETE e
""")

In [24]:
proj = process_projection(projection)
nx.write_gexf(proj, 'projections/onemode.gexf')

In [25]:
proj.nodes(data=True)[1]


Out[25]:
(4,
 {'avg_date': 1603,
  'doc_type': {u'Privilegio/Licencia': 1},
  'fecha': {'1603-12-11': 1},
  'genero': {'Teatro': 1},
  'inst': {u'Archidiocesis de Zaragoza': 1},
  'label': u'Pedro de Moya, vicario general',
  'lugar': {u'Zaragoza': 1},
  'real': {'True': 1},
  'role': 'signatory',
  'second_genre': '',
  'second_place': '',
  'top_genre': 'Teatro',
  'top_place': u'Zaragoza',
  'type': u'Persona'})

In [34]:
# Need to implement Cypher.
def places_per_role(g):
    places = {}
    for n, a in g.nodes(data=True):
        lugar = a.get("lugar", "")
        role = a.get("role", "")
        if lugar and role:
            places.setdefault(role, [])
            places[role].append(len(filter(bool, lugar.keys())))
    return places
            
def aggs(tps):
    aggs = {}
    for k, v in tps.items():
        aggs[k] = (sum(v) / float(len(v)))
    return aggs

In [35]:
plc = places_per_role(proj)
a = aggs(plc)

In [36]:
a


Out[36]:
{'author': 2.888888888888889,
 'patron': 0.19047619047619047,
 'printer/editor': 1.095890410958904,
 'signatory': 0.950920245398773}

In [48]:
# Need to implement Cypher.
def known_places_per_role(g):
    places = {}
    for n, a in g.nodes(data=True):
        lugar = a.get("lugar", "")
        role = a.get("role", "")
        if lugar and role:
            places.setdefault(role, [])
            num_places = len(filter(bool, lugar.keys()))
            if num_places:
                places[role].append(num_places)
    return places
            
def aggs(tps):
    aggs = {}
    for k, v in tps.items():
        aggs[k] = (sum(v) / float(len(v)))
    return aggs

In [49]:
plc = known_places_per_role(proj)
a = aggs(plc)

In [50]:
a


Out[50]:
{'author': 2.888888888888889,
 'patron': 1.0,
 'printer/editor': 1.095890410958904,
 'signatory': 1.1231884057971016}

In [ ]:


In [47]:
[(n, a) for n, a in proj.nodes(data=True) if a.get("role") == 'printer/editor']


Out[47]:
[(9,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-27': 1},
   'genero': {'Ficcion': 1},
   'label': u'Sebastian Matevat',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (11,
  {'avg_date': 1616,
   'doc_type': {u'Impresion': 3, u'Privilegio/Licencia': 2},
   'fecha': {'1613-12-23': 1,
    '1614-05-17': 1,
    '1617-11-07': 1,
    '1618-01-01': 1,
    '1618-06-25': 1},
   'genero': {'Ficcion': 2, 'Teatro': 1},
   'label': u'Miguel Martinez',
   'lugar': {u'Madrid': 5},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (18,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 8, u'Privilegio/Licencia': 5},
   'fecha': {'1600-05-15': 1,
    '1604-01-15': 2,
    '1607-03-07': 2,
    '1607-10-08': 1,
    '1608-01-01': 1,
    '1610-01-01': 1,
    '1610-11-07': 1,
    '1611-01-01': 1,
    '1614-01-01': 1,
    '1614-05-10': 2},
   'genero': {'Ficcion': 7, 'Teatro': 1},
   'label': u'Roger Velpius',
   'lugar': {u'Bruselas': 13},
   'notas': {'Impresor de sus Altezas, en el aguila de oro cerca del palacio': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (29,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Esteban Liberos',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (35,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-06-22': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Perez de Valdivielso',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (39,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 5},
   'fecha': {'1604-12-04': 1,
    '1605-03-08': 1,
    '1605-03-29': 1,
    '1609-09-02': 1,
    '1612-01-30': 1},
   'genero': {'Ficcion': 2, 'Historia': 2, 'Teatro': 1},
   'label': u'Pedro Crasbeeck',
   'lugar': {u'Lisboa': 5},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (42,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-04-09': 1},
   'genero': {'Poesia': 1},
   'label': u'Francisco de Lyra Varreto',
   'lugar': {u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (47,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Jeronimo Genoves',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (56,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Baptista Bidelo',
   'lugar': {u'Milan': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (69,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1598-02-16': 1, '1599-03-04': 1, '1600-01-01': 1},
   'genero': {'': 1, 'Ficcion': 2},
   'label': u'Varez de Castro',
   'lugar': {u'Madrid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (87,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Estevao Lopez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (90,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Francisco Miguel',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (93,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Gaspar Leget',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (95,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1605-07-14': 1, '1609-07-24': 2},
   'genero': {'Teatro': 2},
   'label': u'Juan de Bostillo',
   'lugar': {u'Valladolid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (96,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-11-29': 1},
   'genero': {'Filosofia': 1},
   'label': u'Antonio Ricardo',
   'lugar': {u'Lima': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (97,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1598-11-27': 1,
    '1599-04-26': 1,
    '1604-07-28': 1,
    '1615-03-23': 1,
    '1616-09-12': 1,
    '1617-11-16': 1},
   'genero': {'Ficcion': 3, 'Poesia': 2, 'Teatro': 1},
   'label': u'Luis Sanchez',
   'lugar': {u'Madrid': 5, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': u'Valladolid',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (121,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-21': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antonio \xc1lvarez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (123,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1600-01-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Luis Perez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (126,
  {'avg_date': 1601,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1601-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Martinez',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (132,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 4, u'Privilegio/Licencia': 2},
   'fecha': {'1614-01-11': 2,
    '1615-01-01': 1,
    '1617-01-01': 1,
    '1617-09-17': 1,
    '1617-11-17': 1},
   'genero': {'Ficcion': 4},
   'label': u'Nicolas de Assiayn',
   'lugar': {u'Pamplona': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (142,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-04-18': 1},
   'genero': {'Historia': 1},
   'label': u'Juan de Larombe',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (144,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Gabriel Graells',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (151,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Viuda de Pedro Bellero',
   'lugar': {u'Amberes': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Amberes',
   'type': u'Persona'}),
 (153,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 8},
   'fecha': {'1600-01-01': 1,
    '1602-01-01': 1,
    '1605-01-01': 1,
    '1611-01-01': 1,
    '1616-01-01': 1,
    '1616-08-01': 1,
    '1618-01-01': 1,
    '1618-01-12': 1},
   'genero': {'Ficcion': 5, 'Poesia': 1, 'Teatro': 2},
   'label': u'Sebastian de Cormellas',
   'lugar': {u'Barcelona': 8, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': u'Madrid',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (163,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1603-08-26': 2, '1611-01-01': 1},
   'genero': {'Ficcion': 2, 'Poesia': 1},
   'label': u'Jeronimo Bordon',
   'lugar': {u'Milan': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (167,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1603-08-26': 2},
   'genero': {'Ficcion': 2},
   'label': u'Pedromartir Locarno',
   'lugar': {u'Milan': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (177,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 2},
   'fecha': {'1602-11-12': 1, '1603-10-15': 1, '1604-01-01': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'label': u'Angelo Tavanno',
   'lugar': {u'Zaragoza': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (181,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-03-23': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Berrillo',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (188,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1607-11-07': 1, '1608-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Olivero Brunello',
   'lugar': {u'Bruselas': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (191,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-06-22': 1},
   'genero': {'Teatro': 1},
   'label': u'Juan de Rueda',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (194,
  {'avg_date': 1612,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1612-10-11': 1},
   'genero': {'Poesia': 1},
   'label': u'Cristobal de Loarte',
   'lugar': {u'Toledo': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Toledo',
   'type': u'Persona'}),
 (197,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-03-13': 1},
   'genero': {'Ficcion': 1},
   'label': u'Mongaston',
   'lugar': {u'Najera': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Najera',
   'type': u'Persona'}),
 (201,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1604-01-01': 1, '1604-02-27': 1},
   'genero': {'Ficcion': 1, 'Poesia': 1},
   'label': u'Clemente Hidalgo',
   'lugar': {u'Sevilla': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (207,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1600-01-18': 1,
    '1603-02-26': 1,
    '1605-01-01': 1,
    '1605-03-01': 1,
    '1617-01-17': 1,
    '1618-07-24': 1},
   'genero': {'Ficcion': 4, 'Poesia': 1, 'Teatro': 1},
   'label': u'Jorge Rodriguez',
   'lugar': {u'Lisboa': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (211,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-06-25': 1, '1617-08-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antonio Garcia',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (212,
  {'avg_date': 1612,
   'doc_type': {u'Impresion': 15,
    u'Otro documento': 1,
    u'Privilegio/Licencia': 1},
   'fecha': {'': 1,
    '1605-01-01': 1,
    '1605-02-09': 1,
    '1605-04-01': 1,
    '1607-07-17': 1,
    '1608-06-25': 1,
    '1609-02-10': 1,
    '1612-02-09': 1,
    '1612-11-06': 1,
    '1613-08-12': 1,
    '1615-11-05': 1,
    '1617-01-01': 1,
    '1617-06-25': 1,
    '1617-08-18': 1,
    '1617-09-24': 1,
    '1618-01-01': 1,
    '1618-06-25': 1},
   'genero': {'': 1, 'Ficcion': 11, 'Poesia': 2, 'Teatro': 1},
   'label': u'Juan de la Cuesta',
   'lugar': {'': 1, u'Madrid': 16},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (219,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1607-02-23': 1},
   'genero': {'Poesia': 1},
   'label': u'Jaime Cendrat',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (224,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Raphael Vives',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (225,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1617-01-01': 1, '1617-06-04': 1},
   'genero': {'Ficcion': 2},
   'label': u'Bautista Sorita',
   'lugar': {u'Barcelona': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (226,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1617-01-27': 1, '1617-06-04': 1},
   'genero': {'Ficcion': 2},
   'label': u'Joan Simon',
   'lugar': {u'Barcelona': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (240,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1610-11-10': 1, '1611-06-22': 1},
   'genero': {'Teatro': 1},
   'label': u'Juan de Molina',
   'lugar': {u'Madrid': 1, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': u'Valladolid',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (260,
  {'avg_date': 1602,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1602-08': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antich Ribera',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (263,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1614-05-17': 1,
    '1614-09-24': 1,
    '1614-11-17': 1,
    '1615-10-19': 1,
    '1616-01-01': 1,
    '1618-03-06': 1},
   'genero': {'Ficcion': 2, 'Poesia': 4},
   'label': u'Viuda de Alonso Martin',
   'lugar': {u'Madrid': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (267,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1599-06-22': 1, '1617-04-18': 2},
   'genero': {'Ficcion': 1, 'Historia': 1},
   'label': u'Juan de Bonilla',
   'lugar': {u'Zaragoza': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (272,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604': 1},
   'genero': {'Poesia': 1},
   'label': u'Melchior Ocharte',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (274,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Hieronymo Martin',
   'lugar': {u'Tarragona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Tarragona',
   'type': u'Persona'}),
 (276,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Roberto',
   'lugar': {u'Tarragona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Tarragona',
   'type': u'Persona'}),
 (277,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-06-05': 1},
   'genero': {'Teatro': 2},
   'label': u'Antonio Sanchez',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (288,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Miguel Menescal',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (290,
  {'avg_date': 1614,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1613-01-01': 1, '1615-01-01': 1},
   'genero': {'Historia': 1, 'Poesia': 1},
   'label': u'Matias Clavijo',
   'lugar': {u'Sevilla': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (309,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1618-01-29': 1, '1618-03-06': 1},
   'genero': {'Ficcion': 1},
   'label': u'Domingo Gonzalez',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (311,
  {'avg_date': 1602,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1602-08': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Amello',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (319,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Pedro Bellero',
   'lugar': {u'Anvers': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Anvers',
   'type': u'Persona'}),
 (321,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Bellero',
   'lugar': {u'Anvers': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Anvers',
   'type': u'Persona'}),
 (330,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan de Villaroel',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (334,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1607-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Juan Gracian',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (344,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Giraldo Dotil',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (353,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Diego Lopez Davalos',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (354,
  {'avg_date': 1613,
   'doc_type': {u'Impresion': 4},
   'fecha': {'1611-02-04': 1,
    '1612-01-01': 1,
    '1615-01-01': 1,
    '1616-06-06': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1},
   'label': u'Luis Menescal',
   'lugar': {u'Lerida': 4},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (355,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 4},
   'fecha': {'1607-02-23': 1,
    '1609-01-01': 1,
    '1612-01-01': 1,
    '1618-04-19': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1},
   'label': u'Geronimo Margarit',
   'lugar': {u'Barcelona': 3, u'Lerida': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': u'Lerida',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (362,
  {'avg_date': 1614,
   'doc_type': {u'Impresion': 6, u'Privilegio/Licencia': 4},
   'fecha': {'1610-11-07': 1,
    '1611-01-01': 1,
    '1614-01-01': 1,
    '1614-05-10': 2,
    '1616-02-04': 2,
    '1617-01-01': 1,
    '1617-08-18': 1,
    '1618-01-01': 1},
   'genero': {'Ficcion': 5, 'Teatro': 1},
   'label': u'Huberto Antonio',
   'lugar': {u'Bruselas': 10},
   'notas': {'Impresor de sus Altezas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (367,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Historia': 1},
   'label': u'Barrera',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (371,
  {'avg_date': 1601,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1599-03-17': 1, '1602-11-30': 1, '1603-01-01': 1},
   'genero': {'Poesia': 3},
   'label': u'Pedro Madrigal',
   'lugar': {u'Madrid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (389,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-06-05': 1},
   'genero': {'Teatro': 1},
   'label': u'Viuda de Luis Martinez Grande',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (410,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1604-09-20': 1, '1605-01-01': 1, '1607-01-01': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'label': u'Martin Nucio',
   'lugar': {u'Amberes': 1, u'Anvers': 1, u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': u'Bruselas',
   'top_genre': 'Teatro',
   'top_place': u'Amberes',
   'type': u'Persona'}),
 (413,
  {'avg_date': 1613,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1613-06-12': 1},
   'genero': {'Teatro': 1},
   'label': u'Francisco de Cea',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (419,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1600-05-15': 2},
   'genero': {'Ficcion': 1},
   'label': u'Juan de Mommarte',
   'lugar': {'': 1, u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': u'Bruselas',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (422,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1600-01-04': 1},
   'genero': {'Ficcion': 1},
   'label': u'Diogo Gomez Loureiro',
   'lugar': {u'Coimbra': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Coimbra',
   'type': u'Persona'}),
 (423,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-01-14': 1},
   'genero': {'Poesia': 1},
   'label': u'Vicente \xc1lvarez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (424,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-07-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Jusepe Ferrer',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (425,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-07-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Pedro Patricio Mey',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (437,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 7, u'Privilegio/Licencia': 2},
   'fecha': {'1604-02-20': 1,
    '1608-01-01': 1,
    '1609-01-01': 1,
    '1609-08-11': 1,
    '1609-11-18': 1,
    '1611-01-01': 1,
    '1611-04-14': 1,
    '1614-09-24': 1,
    '1615-10-19': 1},
   'genero': {'Ficcion': 3, 'Poesia': 4, 'Teatro': 3},
   'label': u'Alonso Perez',
   'lugar': {'': 2, u'Madrid': 6, u'Valladolid': 1},
   'notas': {'Mercader de libros': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (439,
  {'avg_date': 1609,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1608-01-01': 1,
    '1609-01-01': 1,
    '1609-04-01': 1,
    '1609-11-18': 1,
    '1611-01-01': 1,
    '1611-04-14': 1},
   'genero': {'Ficcion': 2, 'Poesia': 3, 'Teatro': 1},
   'label': u'Alonso Martin',
   'lugar': {'': 2, u'Madrid': 4},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'})]

In [46]:
[(n, a)  for n, a  in proj.nodes(data=True)]


Out[46]:
[(3,
  {'avg_date': '',
   'genero': {'Teatro': 7},
   'label': u'Bernardo Grassa',
   'real': {'True': 1},
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (4,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-12-11': 1},
   'genero': {'Teatro': 1},
   'inst': {u'Archidiocesis de Zaragoza': 1},
   'label': u'Pedro de Moya, vicario general',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (5,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'inst': {u'Condado de Sastago': 1},
   'label': u'Gabriel Blasco de Alagon, conde de Sastago',
   'lugar': {'': 1},
   'notas': {'Senor de las baronias de Espes y Escuer, camarlengo del Rey': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (6,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-12-11': 1},
   'genero': {'Teatro': 1},
   'label': u'Jeronimo de Iturralde',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (7,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1616-05-27': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Archidiocesis de Valencia': 1},
   'label': u'Juan Jusepe Martinez Rubio',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (8,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-01-27': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Archidiocesis de Valencia': 1},
   'label': u'Domingo Abbad y Huerta',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (9,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-27': 1},
   'genero': {'Ficcion': 1},
   'label': u'Sebastian Matevat',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (11,
  {'avg_date': 1616,
   'doc_type': {u'Impresion': 3, u'Privilegio/Licencia': 2},
   'fecha': {'1613-12-23': 1,
    '1614-05-17': 1,
    '1617-11-07': 1,
    '1618-01-01': 1,
    '1618-06-25': 1},
   'genero': {'Ficcion': 2, 'Teatro': 1},
   'label': u'Miguel Martinez',
   'lugar': {u'Madrid': 5},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (12,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 4},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u'Pedro de Tapia',
   'lugar': {'': 1},
   'notas': {'Oidor de Consejo real y consultor del santo oficio de la Inquisiscion Suprema': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (13,
  {'avg_date': '',
   'doc_type': {'dedicatory': 3},
   'fecha': {'': 3},
   'genero': {'Ficcion': 2, 'Poesia': 3},
   'inst': {u'Archidiocesis de Toledo': 1,
    u'Consejo de Estado': 1,
    u'Consejo de Inquisicion': 1},
   'label': u'Bernardo de Sandoval y Rojas, Cardenal, Arzobispo de Toledo',
   'lugar': {'': 3},
   'notas': {'Inquisidor general, y del Consejo de Estado ': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (14,
  {'avg_date': 1617,
   'doc_type': {u'Otro documento': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-10-19': 2},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Simon \xc1ngel Ufay',
   'lugar': {'': 1, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': u'Madrid',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (15,
  {'avg_date': 1617,
   'doc_type': {u'Tasa': 1},
   'fecha': {'1617-12-12': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Diego Gonzalo de Villarroel',
   'lugar': {u'Madrid': 1},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (16,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 2},
   'inst': {u'Condado de Saldana': 1},
   'label': u'Conde de Saldana',
   'lugar': {'': 1},
   'notas': {'\xc2\xbfAna de Mendoza?': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (17,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 4},
   'fecha': {'1604-01-15': 1,
    '1604-09-20': 1,
    '1607-03-07': 1,
    '1607-10-08': 1},
   'genero': {'Ficcion': 4},
   'inst': {u'Consejo de Flandes': 1},
   'label': u'J. de Buschere',
   'lugar': {u'Bruselas': 4},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (18,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 8, u'Privilegio/Licencia': 5},
   'fecha': {'1600-05-15': 1,
    '1604-01-15': 2,
    '1607-03-07': 2,
    '1607-10-08': 1,
    '1608-01-01': 1,
    '1610-01-01': 1,
    '1610-11-07': 1,
    '1611-01-01': 1,
    '1614-01-01': 1,
    '1614-05-10': 2},
   'genero': {'Ficcion': 7, 'Teatro': 1},
   'label': u'Roger Velpius',
   'lugar': {u'Bruselas': 13},
   'notas': {'Impresor de sus Altezas, en el aguila de oro cerca del palacio': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (20,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1605-03-25': 1, '1605-03-27': 1},
   'genero': {'Ficcion': 1, 'Historia': 1},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u'Costa',
   'lugar': {u'Lisboa': 2},
   'notas': {'Nombre que aparece en publicaciones de Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (25,
  {'author': {'true': 1},
   'avg_date': 1612,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1611-04-30': 1, '1613-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Andres de Claramont',
   'lugar': {u'Aranjuez': 1, u'Sevilla': 1},
   'notas': {'Natural de Murcia': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Aranjuez',
   'top_genre': 'Poesia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (26,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Fernando de Ulloa',
   'lugar': {'': 1},
   'notas': {'Veinticuatro de Sevilla': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (29,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Esteban Liberos',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (33,
  {'avg_date': 1612,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1612-05-17': 1},
   'genero': {'Historia': 1},
   'inst': {u'Convento de San Francisco de Mexico': 1},
   'label': u'Pedro de Aragon',
   'lugar': {u'Mexico': 1},
   'notas': {'Secretario ': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (34,
  {'author': {'true': 1},
   'avg_date': 1613,
   'doc_type': {u'Carta': 1, u'Obra': 1, u'Privilegio/Licencia': 2},
   'fecha': {'': 1, '1612-05-17': 1, '1613-05-18': 1, '1615-01-01': 1},
   'genero': {'Historia': 1},
   'inst': {u'Orden de San Francisco': 1},
   'label': u'Juan de Torquemada, Fray',
   'lugar': {'': 1, u'Madrid': 1, u'Mexico': 1, u'Sevilla': 1},
   'notas': {'Guardian del Convento de Tlaxcala, Ministro provincial de la Orden de San Francisco en la provincia de Santo Evangelico de Mexico': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Historia',
   'top_place': '',
   'type': u'Persona'}),
 (35,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-06-22': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Perez de Valdivielso',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (36,
  {'avg_date': 1612,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1612-05-17': 1},
   'genero': {'Historia': 1},
   'inst': {u'Convento de San Francisco de Mexico': 1,
    u'Orden de San Francisco': 1},
   'label': u'Hernando Duran, Fray',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (37,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-02-05': 1},
   'genero': {'Historia': 1},
   'inst': {u'Orden de San Francisco': 1},
   'label': u'Diego de Sicilia, Fray',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (38,
  {'avg_date': 1613,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1613-02-04': 1},
   'genero': {'Historia': 1},
   'inst': {u'Convento de San Francisco de Mexico': 1,
    u'Orden de San Francisco': 1},
   'label': u'Francisco de Arribas, Fray',
   'lugar': {u'Madrid': 1},
   'notas': {'Padre de la provincia de la concepcion, confesor de  la reina de Francia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (39,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 5},
   'fecha': {'1604-12-04': 1,
    '1605-03-08': 1,
    '1605-03-29': 1,
    '1609-09-02': 1,
    '1612-01-30': 1},
   'genero': {'Ficcion': 2, 'Historia': 2, 'Teatro': 1},
   'label': u'Pedro Crasbeeck',
   'lugar': {u'Lisboa': 5},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (40,
  {'avg_date': 1609,
   'doc_type': {u'Otro documento': 1},
   'fecha': {'1609-04-06': 1},
   'genero': {'Historia': 1},
   'inst': {u'Orden de San Francisco': 1},
   'label': u'Bernardo de Salba, Fray',
   'lugar': {u'Madrid': 1},
   'notas': {'De la Orden de Frayles Menores (franciscana). Padre de la provincia de Cataluna y comisario general de todas las indias': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (42,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-04-09': 1},
   'genero': {'Poesia': 1},
   'label': u'Francisco de Lyra Varreto',
   'lugar': {u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (43,
  {'author': {'true': 1},
   'avg_date': 1617,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-11-26': 1, '1618-04-09': 1},
   'genero': {'Poesia': 1},
   'label': u'Juan de Jauregui',
   'lugar': {u'Madrid': 1, u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Sevilla',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (44,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Cesar Fidelis',
   'lugar': {'': 1},
   'notas': {'Vicesgerens \xc2\xbfVirrey?': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (45,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-08-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Laurentius de Ayala',
   'lugar': {'': 1},
   'notas': {'Procurator Monasteri Sanct. Benedicti Vallisoletani': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (46,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Eliseus Mansinius',
   'lugar': {'': 1},
   'notas': {'Socius S. Officy y Magistri Sac. Pal. Apost': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (47,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Jeronimo Genoves',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (48,
  {'avg_date': 1599,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1599-4-27': 1},
   'genero': {'Ficcion': 4},
   'label': u'Juan Vicente, Fray',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (49,
  {'avg_date': 1610,
   'doc_type': {u'Fe de erratas': 2},
   'fecha': {'1609-04-20': 1, '1611-06-09': 1},
   'genero': {'Teatro': 2},
   'label': u'Augustin de Vergara',
   'lugar': {u'Valladolid': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (51,
  {'avg_date': 1611,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1611-11-15': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Colegio de Mantua': 1, u'Compania de Jesus': 1},
   'label': u'Juan Luis de la Cerda',
   'lugar': {'': 1},
   'notas': {'Toledano. 1560-1643': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (53,
  {'avg_date': 1613,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1613-09-29': 1},
   'genero': {'Ficcion': 3},
   'inst': {u'Consejo de Navarra': 1},
   'label': u'Pedro de Olivares, Fray',
   'lugar': {u'Pamplona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (55,
  {'avg_date': 1610,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1607-11-07': 1, '1614-05-10': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Consejo de Flandes': 1},
   'label': u'P. Piermans',
   'lugar': {u'Bruselas': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (56,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Baptista Bidelo',
   'lugar': {u'Milan': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (57,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'': 2},
   'genero': {'Ficcion': 1, 'Poesia': 1},
   'label': u'Aloysius Barrola Augustanis',
   'lugar': {'': 2},
   'notas': {'Nombre latinizado': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (58,
  {'avg_date': 1615,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1615-08-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Luigi Trotti',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (60,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Pedro de Velasco',
   'lugar': {'': 1},
   'notas': {'Senor de la villa Cilleruelo y Valle de la ciudad de Hebro, capitan de lanzas de la guardia del excelente seonr condestable de Castilla, governador del estado de Milan': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (62,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-02-05': 1},
   'genero': {'Historia': 1},
   'inst': {u'Convento de San Francisco de Madrid': 1,
    u'Orden de San Francisco': 1},
   'label': u'Antonio de Trejo, Fray',
   'lugar': {u'Madrid': 1},
   'notas': {'Comisario general de las Indias': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (63,
  {'avg_date': 1612,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1612-02-22': 1},
   'genero': {'Historia': 1},
   'inst': {u'Convento de Santiago Tecali': 1},
   'label': u'Luis Vaez, Fray',
   'lugar': {u'Tecali de Herrera': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Tecali de Herrera',
   'type': u'Persona'}),
 (65,
  {'avg_date': 1599,
   'doc_type': {u'Tasa': 1},
   'fecha': {'1599-03-04': 1},
   'genero': {'': 1, 'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Gonzalo de la Vega',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': '',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (66,
  {'avg_date': 1598,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1598-01-13': 1},
   'genero': {'': 1, 'Ficcion': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Diego Davilo, Fray',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (67,
  {'avg_date': 1598,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1598-02-16': 1, '1599-02-16': 2},
   'genero': {'': 1, 'Ficcion': 1, 'Poesia': 4},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Luis de Salazar',
   'lugar': {'': 1, u'Madrid': 1, u'Oliva': 1},
   'notas': {'Secretario': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (68,
  {'avg_date': '',
   'doc_type': {u'Fe de erratas': 1},
   'fecha': {'': 1},
   'genero': {'': 1, 'Ficcion': 1},
   'label': u'Juan Vazquez de Marmol',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': '',
   'top_place': '',
   'type': u'Persona'}),
 (69,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1598-02-16': 1, '1599-03-04': 1, '1600-01-01': 1},
   'genero': {'': 1, 'Ficcion': 2},
   'label': u'Varez de Castro',
   'lugar': {u'Madrid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (70,
  {'author': {'true': 2},
   'avg_date': 1600,
   'doc_type': {u'Obra': 2, u'Privilegio/Licencia': 2},
   'fecha': {'1598-02-16': 1,
    '1599-04-30': 1,
    '1599-06-22': 1,
    '1600-01-01': 2,
    '1600-01-04': 1,
    '1600-01-18': 1,
    '1600-05-15': 1,
    '1601-01-01': 1,
    '1603-01-01': 1,
    '1603-08-26': 1,
    '1604-12-04': 2},
   'genero': {'': 1, 'Ficcion': 11},
   'label': u'Mateo Aleman',
   'lugar': {u'Barcelona': 2,
    u'Bruselas': 1,
    u'Coimbra': 1,
    u'Lisboa': 3,
    u'Madrid': 4,
    u'Milan': 1,
    u'Tarragona': 1,
    u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Lisboa',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (73,
  {'avg_date': 1599,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1599-06-22': 1},
   'genero': {'Ficcion': 1},
   'label': u'Galvan',
   'lugar': {u'Zaragoza': 1},
   'notas': {'Asesor': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (84,
  {'avg_date': 1604,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1604-07-29': 1},
   'genero': {'Ficcion': 1},
   'label': u'Francisco Pous',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (86,
  {'avg_date': 1604,
   'doc_type': {u'Fe de erratas': 1},
   'fecha': {'1604-07-07': 1},
   'genero': {'Teatro': 2},
   'label': u'Alonso Vaca de Santiago',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (87,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Estevao Lopez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (88,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-10-15': 1},
   'genero': {'Teatro': 1},
   'label': u'Joannis Laurenti Descartin',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (89,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 3},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Antonio Ramirez de Prado',
   'lugar': {'': 1},
   'notas': {'Consejo de su majestad, y su fiscal en el de la cruzada': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (90,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Francisco Miguel',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (91,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'label': u'Valerian Boyl',
   'lugar': {'': 1},
   'notas': {'Senor de Masa Magrel': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (92,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'label': u'Gonzalo Pirez Carvalho',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (93,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Gaspar Leget',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (94,
  {'avg_date': 1604,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1604-11-10': 1},
   'genero': {'Teatro': 1},
   'inst': {u'Archidiocesis de Valencia': 1},
   'label': u'Petrus Joannes Assensius',
   'lugar': {u'Valencia': 1},
   'notas': {'Nombre latinizado. Pedro Juan \xc2\xbfAssensius?': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (95,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1605-07-14': 1, '1609-07-24': 2},
   'genero': {'Teatro': 2},
   'label': u'Juan de Bostillo',
   'lugar': {u'Valladolid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (96,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-11-29': 1},
   'genero': {'Filosofia': 1},
   'label': u'Antonio Ricardo',
   'lugar': {u'Lima': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (97,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1598-11-27': 1,
    '1599-04-26': 1,
    '1604-07-28': 1,
    '1615-03-23': 1,
    '1616-09-12': 1,
    '1617-11-16': 1},
   'genero': {'Ficcion': 3, 'Poesia': 2, 'Teatro': 1},
   'label': u'Luis Sanchez',
   'lugar': {u'Madrid': 5, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': u'Valladolid',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (98,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-08-10': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Consejo de Inquisicion': 1, u'Orden de San Agustin': 2},
   'label': u'Juan de Camargo',
   'lugar': {u'Madrid': 1},
   'notas': {'Rector del colegio de donna Maria de Aragon, de la orden de San Agustin y calificador de la general inquisicion': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (99,
  {'avg_date': 1603,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1603-08-26': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Condado de Castion': 1},
   'label': u'Fabrico Serbellon, Conde de Castion',
   'lugar': {u'Milan': 1},
   'notas': {'Senor del Marquesado de Romanan': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (100,
  {'avg_date': 1614,
   'doc_type': {u'Aprobacion': 13},
   'fecha': {'': 1,
    '1609-08-01': 1,
    '1611-03-29': 1,
    '1612-07-09': 1,
    '1612-12-30': 1,
    '1614-09-16': 1,
    '1614-10-03': 1,
    '1614-12-11': 1,
    '1615-11-05': 1,
    '1616-12-19': 1,
    '1617-05-16': 1,
    '1617-07-24': 1,
    '1617-09-24': 1},
   'genero': {'Ficcion': 14, 'Poesia': 3, 'Teatro': 8},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Gutierre de Cetina, Vicario General',
   'lugar': {'': 1, u'Madrid': 12},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (101,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 8},
   'fecha': {'1615-01-24': 1,
    '1615-03-30': 1,
    '1615-11-21': 1,
    '1616-09-24': 1,
    '1617-01-19': 1,
    '1617-06-25': 1,
    '1617-08-09': 1,
    '1617-11-26': 1},
   'genero': {'Ficcion': 7, 'Poesia': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Pedro de Contreras',
   'lugar': {u'Arganda del Rey': 1, u'Madrid': 7},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Arganda del Rey',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (102,
  {'avg_date': 1614,
   'doc_type': {u'Aprobacion': 3},
   'fecha': {'1613-05-05': 1, '1614-01-06': 1, '1617-06-10': 1},
   'genero': {'Ficcion': 1, 'Historia': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Pedro de Valencia',
   'lugar': {u'Madrid': 3},
   'notas': {'Coronista del Rey': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (103,
  {'avg_date': 1602,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1602-08-20': 1},
   'genero': {'Ficcion': 1},
   'label': u'Francisco Paulus Alreus',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (104,
  {'avg_date': 1617,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1617-04-18': 1},
   'genero': {'Historia': 1},
   'inst': {u'Condado de Priego': 1,
    u'Consejo de Aragon': 1,
    u'Marquesado de Gelves': 1,
    u'Virreinato de Aragon': 1},
   'label': u'Diego Carrillo de Mendoza y Pimentel, Virrey de Aragon',
   'lugar': {u'Zaragoza': 1},
   'notas': {'Marques de Gelbes': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (105,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-04-16': 1},
   'genero': {'Historia': 1},
   'label': u'Agustin de Morlanes',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (106,
  {'avg_date': 1617,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1617-08-15': 1},
   'genero': {'Historia': 1},
   'inst': {u'Archidiocesis de Zaragoza': 1},
   'label': u'Pedro de Molina, Vicario General de Zaragoza',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (107,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Diocesis de Barcelona': 1},
   'label': u'Cellers',
   'lugar': {u'Barcelona': 1},
   'notas': {'Vicario General de diocesis de Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (108,
  {'avg_date': 1602,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1602-08-08': 1},
   'genero': {'Ficcion': 1},
   'label': u'Pedro Juan Asensio',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (109,
  {'avg_date': 1612,
   'doc_type': {u'Aprobacion': 2},
   'fecha': {'1612-05-10': 1, '1612-07-09': 1},
   'genero': {'Ficcion': 4, 'Poesia': 1},
   'inst': {u'Convento de la Santisima Trinidad': 1},
   'label': u'Juan Bautista',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (112,
  {'avg_date': 1604,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1604-02-17': 1},
   'genero': {'Teatro': 4},
   'label': u'Juan Gracian Dantisco',
   'lugar': {u'Valladolid': 1},
   'notas': {'Secretario. Me parece que hay 2 Juan Gracian en la base de datos, uno que es impresor y el otro que firma las aprobaciones de las Comedias de Valladolid. Tal vez sea Juan Gracian Dantisco hermano de Tomas Gracian Dantisco, persona que firma otras aprobaciones durante esta epoca': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (113,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1605-02-09': 1},
   'genero': {'Ficcion': 2},
   'label': u'Antonio Campello',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (115,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 1, u'Tasa': 1},
   'fecha': {'1616-09-10': 1, '1617-01-21': 1},
   'genero': {'Ficcion': 2},
   'label': u'Gama',
   'lugar': {'': 1, u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Lisboa',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (116,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 4, u'Tasa': 2},
   'fecha': {'1610-11-19': 1,
    '1611-01-14': 1,
    '1612-01-30': 1,
    '1616-09-10': 1,
    '1617-01-17': 1,
    '1617-01-21': 1},
   'genero': {'Ficcion': 2, 'Poesia': 1, 'Teatro': 1},
   'label': u'Luis Machado de Bouvea',
   'lugar': {'': 1, u'Lisboa': 5},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (117,
  {'avg_date': 1616,
   'doc_type': {u'Aprobacion': 1, u'Privilegio/Licencia': 2},
   'fecha': {'': 1, '1616-08-22': 1, '1616-10-26': 1},
   'genero': {'Ficcion': 3},
   'inst': {u'Consejo de Portugal': 1},
   'label': u'Manuel Coelho, Fray',
   'lugar': {'': 2, u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Lisboa',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (118,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1616-08-22': 1, '1616-10-26': 1},
   'genero': {'Ficcion': 2},
   'label': u'Damiao Viegas',
   'lugar': {'': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (119,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1616-09-22': 1},
   'genero': {'Ficcion': 1},
   'label': u'Baltasar \xc1lvarez',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (120,
  {'avg_date': 1614,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1612-01-27': 1, '1616-08-22': 1, '1616-10-26': 1},
   'genero': {'Ficcion': 2, 'Teatro': 1},
   'inst': {u'Consejo de Portugal': 1},
   'label': u'Antonio Diaz Cardoso',
   'lugar': {'': 1, u'Lisboa': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (121,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-21': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antonio \xc1lvarez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (123,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1600-01-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Luis Perez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (124,
  {'avg_date': 1600,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1600-01-07': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antonio Tarrique, Fray',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (126,
  {'avg_date': 1601,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1601-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Martinez',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (128,
  {'avg_date': '',
   'genero': {'Teatro': 1},
   'label': u'Gabriel de Nao',
   'notas': {'Vecino de Valladolid': 1},
   'real': {'True': 1},
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (130,
  {'avg_date': 1605,
   'doc_type': {u'Tasa': 3},
   'fecha': {'1602-11-30': 1, '1604-02-27': 1, '1609-07-24': 1},
   'genero': {'Ficcion': 1, 'Poesia': 1, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Francisco Martinez',
   'lugar': {u'Madrid': 1, u'Valladolid': 2},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': u'Madrid',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (131,
  {'avg_date': 1615,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1614-01-11': 1, '1617-09-17': 1},
   'genero': {'Ficcion': 4},
   'inst': {u'Consejo de Navarra': 1},
   'label': u'Pedro de Zunzarren',
   'lugar': {u'Pamplona': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (132,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 4, u'Privilegio/Licencia': 2},
   'fecha': {'1614-01-11': 2,
    '1615-01-01': 1,
    '1617-01-01': 1,
    '1617-09-17': 1,
    '1617-11-17': 1},
   'genero': {'Ficcion': 4},
   'label': u'Nicolas de Assiayn',
   'lugar': {u'Pamplona': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (133,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-09-12': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Navarra': 1, u'Convento de San Agustin': 1},
   'label': u'Geronimo de Parada, Fray',
   'lugar': {u'Pamplona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (134,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-11-17': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Navarra': 1,
    u'Convento de San Francisco de Pamplona': 1,
    u'Orden de San Francisco': 1},
   'label': u'Leon de San Pedro, Fray',
   'lugar': {u'Pamplona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Pamplona',
   'type': u'Persona'}),
 (137,
  {'avg_date': 1610,
   'doc_type': {u'Tasa': 4},
   'fecha': {'1604-12-04': 1,
    '1609-04-01': 1,
    '1613-06-12': 1,
    '1614-09-24': 1},
   'genero': {'Ficcion': 3, 'Poesia': 2, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Juan Gallo de Andrada',
   'lugar': {u'Madrid': 3, u'Valladolid': 1},
   'notas': {'Escribano de la Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Valladolid',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (138,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 7},
   'inst': {u'Casa de Zuniga': 1,
    u'Condado de Banares': 1,
    u'Condado de Belalcazar': 1,
    u'Ducado de Bejar': 1,
    u'Marquesado de Gibraleon': 1,
    u'Vizcondado de Puebla de Alcocer': 1},
   'label': u'Alfonso Lopez de Zuniga y Perez de Guzman, Duque de Bejar',
   'lugar': {'': 1},
   'notas': {'Marques de Gibralon, Conde de Belalcazar y Banares, Vizconde de la Puebla de Alcozer, Senor de las villas de Capilla, Curiel y Burguillos': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (139,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 2},
   'label': u'Juan de Arguijo',
   'lugar': {'': 1},
   'notas': {'Veinticuatro de Sevilla': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (140,
  {'author': {'true': 1},
   'avg_date': 1616,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1615-01-24': 1, '1615-03-23': 1, '1618-01-01': 1},
   'genero': {'Ficcion': 2},
   'label': u'Gonzalo de Cespedes y Meneses',
   'lugar': {u'Arganda del Rey': 1, u'Barcelona': 1, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Arganda del Rey',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (141,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Historia': 1},
   'inst': {u'Condado de Aranda': 1, u'Vizcondado de Rueda': 1},
   'label': u'Luisa de Padilla y Manrique, Condesa de Aranda',
   'lugar': {'': 1},
   'notas': {'Vizcondesa de Viota, y Rueda, Senora de la Tenencia de Alcalaten, y de las Boronias de Ventilova, Mizlata y Cortes': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': '',
   'type': u'Persona'}),
 (142,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-04-18': 1},
   'genero': {'Historia': 1},
   'label': u'Juan de Larombe',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (143,
  {'author': {'true': 1},
   'avg_date': 1617,
   'doc_type': {u'Obra': 1},
   'fecha': {'1617-04-18': 1},
   'genero': {'Historia': 1},
   'inst': {u'Compania de Jesus': 1},
   'label': u'Pedro Morejon',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (144,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Gabriel Graells',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (145,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 4},
   'fecha': {'1603-01-31': 1, '1603-06-16': 1, '1604-09-26': 2},
   'genero': {'': 1, 'Ficcion': 6},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Juan de Amezqueta',
   'lugar': {u'San Juan de Ortega': 1, u'Valladolid': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'San Juan de Ortega',
   'top_genre': 'Ficcion',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (146,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1, u'Tasa': 5},
   'fecha': {'1598-08-15': 1,
    '1598-11-27': 1,
    '1599-11-27': 1,
    '1603-10-22': 1,
    '1607-07-17': 1,
    '1618-03-13': 1},
   'genero': {'': 1, 'Ficcion': 5},
   'inst': {u'Consejo de Castilla': 1,
    u'San Lorenzo el Real de El Escorial': 1},
   'label': u'Pedro Zapata del Marmol',
   'lugar': {u'Madrid': 5, u'Valladolid': 1},
   'notas': {'Escribano de la Camara. Tambien aparece como Pedro Montemayor del Marmol.': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Valladolid',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (147,
  {'avg_date': 1603,
   'doc_type': {u'Aprobacion': 4, u'Privilegio/Licencia': 1},
   'fecha': {'1603-05-15': 1,
    '1603-11-25': 1,
    '1603-12-11': 1,
    '1604-08-02': 1,
    '1604-08-04': 1},
   'genero': {'': 1, 'Ficcion': 8},
   'label': u'Tomas Gracian Dantisco',
   'lugar': {u'Valladolid': 5},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (148,
  {'author': {'true': 1},
   'avg_date': 1608,
   'doc_type': {u'Obra': 1},
   'fecha': {'1608-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Francisco Lopez de \xdabeda',
   'lugar': {u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (149,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Guerra': 1},
   'label': u'Alonso Pimentel y Esterlico',
   'lugar': {'': 1},
   'notas': {'Del Consejo de Guerra y capitan de lanzas espanolas en Flandes': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (151,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-01-01': 1},
   'genero': {'Teatro': 1},
   'label': u'Viuda de Pedro Bellero',
   'lugar': {u'Amberes': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Amberes',
   'type': u'Persona'}),
 (153,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 8},
   'fecha': {'1600-01-01': 1,
    '1602-01-01': 1,
    '1605-01-01': 1,
    '1611-01-01': 1,
    '1616-01-01': 1,
    '1616-08-01': 1,
    '1618-01-01': 1,
    '1618-01-12': 1},
   'genero': {'Ficcion': 5, 'Poesia': 1, 'Teatro': 2},
   'label': u'Sebastian de Cormellas',
   'lugar': {u'Barcelona': 8, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': u'Madrid',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (155,
  {'avg_date': 1615,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1615-02-25': 1},
   'genero': {'Ficcion': 1},
   'label': u'Marquez Torres',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (159,
  {'avg_date': 1611,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1610-11-19': 1, '1611-01-14': 1, '1612-01-30': 1},
   'genero': {'Poesia': 1, 'Teatro': 1},
   'label': u'Magalhanes',
   'lugar': {u'Lisboa': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (160,
  {'avg_date': 1611,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1610-11-19': 1, '1611-01-14': 1, '1612-01-30': 1},
   'genero': {'Poesia': 1, 'Teatro': 1},
   'label': u'Barbosa',
   'lugar': {u'Lisboa': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (161,
  {'avg_date': 1608,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1608-08-23': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Tomas de Angulo',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (162,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'': 2},
   'genero': {'Ficcion': 2, 'Poesia': 1},
   'label': u'Aloysius Bossius',
   'lugar': {'': 2},
   'notas': {'Tal vez \xc2\xb4Luis Bosius\xc2\xb4 en Latin': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (163,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1603-08-26': 2, '1611-01-01': 1},
   'genero': {'Ficcion': 2, 'Poesia': 1},
   'label': u'Jeronimo Bordon',
   'lugar': {u'Milan': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (165,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'label': u'Agostino Galamini',
   'lugar': {'': 1},
   'notas': {'Inquisidor de Milan': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (167,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1603-08-26': 2},
   'genero': {'Ficcion': 2},
   'label': u'Pedromartir Locarno',
   'lugar': {u'Milan': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Milan',
   'type': u'Persona'}),
 (169,
  {'avg_date': 1601,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1601-09-06': 1},
   'genero': {'Filosofia': 1},
   'inst': {u'Orden de Santiago': 1,
    u'Real Audiencia del Peru': 1,
    u'Virreinato del Peru': 1},
   'label': u'Luis de Velasco y Castilla, Virrey del Peru',
   'lugar': {u'La Paz': 1},
   'notas': {'Caballero de la orden de Santiago, Capitan general de los reinos del Peru, Chile, Tierra firme': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'La Paz',
   'type': u'Persona'}),
 (170,
  {'author': {'true': 1},
   'avg_date': 1602,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1602-03-20': 1, '1603-11-29': 1},
   'genero': {'Filosofia': 1},
   'label': u'Diego Davalos y Figueroa',
   'lugar': {u'Lima': 2},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (171,
  {'avg_date': 1602,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1602-03-08': 1},
   'genero': {'Filosofia': 1},
   'inst': {u'Orden de los predicadores': 1},
   'label': u'Diego de Ojeda, Fray',
   'lugar': {u'Lima': 1},
   'notas': {'De la orden de los predicadores': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (172,
  {'avg_date': '',
   'doc_type': {u'Fe de erratas': 1},
   'fecha': {'': 1},
   'genero': {'Filosofia': 1},
   'label': u'Bartolome Garces de la Serna',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': '',
   'type': u'Persona'}),
 (173,
  {'avg_date': 1602,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1602-03-20': 1},
   'genero': {'Filosofia': 1},
   'label': u'Alonso Fernandez de Cordoba',
   'lugar': {u'Lima': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (174,
  {'avg_date': 1603,
   'doc_type': {u'Tasa': 1},
   'fecha': {'1603-11-29': 1},
   'genero': {'Filosofia': 1},
   'inst': {u'Real Audiencia del Peru': 1},
   'label': u'Antonio de Nagera Medrano',
   'lugar': {u'Lima': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': u'Lima',
   'type': u'Persona'}),
 (175,
  {'avg_date': '',
   'doc_type': {u'Fe de erratas': 1},
   'fecha': {'': 1},
   'genero': {'Filosofia': 1},
   'inst': {u'Casa de Zuniga': 1},
   'label': u'Juan de Zuniga',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Filosofia',
   'top_place': '',
   'type': u'Persona'}),
 (176,
  {'avg_date': 1602,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1602-11-12': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Virreinato de Aragon': 1},
   'label': u'Ascario Colonna, Cardenal, Virrey de Aragon',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (177,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 2},
   'fecha': {'1602-11-12': 1, '1603-10-15': 1, '1604-01-01': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'label': u'Angelo Tavanno',
   'lugar': {u'Zaragoza': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (179,
  {'avg_date': '',
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'label': u'Torralua',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (180,
  {'avg_date': 1602,
   'doc_type': {u'Aprobacion': 2},
   'fecha': {'1602-11-08': 1, '1603-04-11': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'label': u'Juan Briz Martinez',
   'lugar': {u'Zaragoza': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (181,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-03-23': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Berrillo',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (182,
  {'avg_date': 1599,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 3},
   'label': u'Julius Cordelles, Vicario General',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (183,
  {'author': {'true': 1},
   'avg_date': 1604,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'': 1, '1604-08-04': 1},
   'genero': {'': 1},
   'label': u'Juan Arce Solorzano',
   'lugar': {'': 1, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Valladolid',
   'top_genre': '',
   'top_place': '',
   'type': u'Persona'}),
 (184,
  {'avg_date': '',
   'doc_type': {'dedicatory': 6},
   'fecha': {'': 6},
   'genero': {'': 1, 'Ficcion': 17, 'Poesia': 2},
   'inst': {u'Condado de Andrade': 1,
    u'Condado de Lemos': 1,
    u'Condado de Villalba': 1,
    u'Consejo de Indias': 1,
    u'Consejo de Italia': 1,
    u'Marquesado de Sarria': 1,
    u'Orden de Alcantara': 1},
   'label': u'Pedro Fernandez de Castro, Conde de Lemos',
   'lugar': {'': 6},
   'notas': {'Conde de Andrade y Villalva, Marques de Sarria, Gentilhombre de la Camara de su Magestad, Presidente del Consejo Supremo de Italia, Comendador de Cncomienda de la Zarza, de la orden de Alcantara. Pariente del duque de Lerma': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (185,
  {'avg_date': 1604,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1604-09-26': 1},
   'genero': {'': 1},
   'label': u'Antonio Rodriguez',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': '',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (187,
  {'avg_date': 1607,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1607-11-07': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Flandes': 1},
   'label': u'Grimaldy',
   'lugar': {u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (188,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1607-11-07': 1, '1608-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Olivero Brunello',
   'lugar': {u'Bruselas': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (189,
  {'author': {'true': 1},
   'avg_date': 1617,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-06-25': 1, '1617-08-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Diego \xc1greda y Vargas',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (191,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-06-22': 1},
   'genero': {'Teatro': 1},
   'label': u'Juan de Rueda',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (193,
  {'avg_date': 1615,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1615-10-28': 1},
   'genero': {'Teatro': 1},
   'inst': {u'Convento de Santa Caterina': 1},
   'label': u'Alberto Soldenila, Fray',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (194,
  {'avg_date': 1612,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1612-10-11': 1},
   'genero': {'Poesia': 1},
   'label': u'Cristobal de Loarte',
   'lugar': {u'Toledo': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Toledo',
   'type': u'Persona'}),
 (195,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-01-03': 1},
   'genero': {'Ficcion': 1},
   'label': u'Cristobal de Mesa',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (196,
  {'avg_date': 1616,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1616-12-23': 1},
   'genero': {'Ficcion': 2},
   'label': u'Geronimo Alarcon',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (197,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1618-03-13': 1},
   'genero': {'Ficcion': 1},
   'label': u'Mongaston',
   'lugar': {u'Najera': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Najera',
   'type': u'Persona'}),
 (198,
  {'author': {'true': 1},
   'avg_date': 1617,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-01-19': 1, '1618-03-13': 1},
   'genero': {'Ficcion': 1},
   'label': u'Esteban Manuel de Villegas',
   'lugar': {u'Madrid': 1, u'Najera': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Najera',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (199,
  {'avg_date': 1616,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1616-06-06': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Diocesis de Lerida': 1},
   'label': u'Doctor Galipienzo',
   'lugar': {u'Lerida': 1},
   'notas': {'Catedratico de prima de Lerida': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (200,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Marquesado de Montalban': 1, u'Marquesado de Priego': 1},
   'label': u'Pedro Fernandez de Cordoba, Marques de Priego y Montalban',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (201,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1604-01-01': 1, '1604-02-27': 1},
   'genero': {'Ficcion': 1, 'Poesia': 1},
   'label': u'Clemente Hidalgo',
   'lugar': {u'Sevilla': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (203,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-07-05': 1},
   'genero': {'Ficcion': 1},
   'label': u'Henry Smeyers',
   'lugar': {u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (205,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1613-08-09': 1, '1613-08-23': 1},
   'genero': {'Ficcion': 2, 'Poesia': 1},
   'inst': {u'San Lorenzo el Real de El Escorial': 1},
   'label': u'Francisco Gassoi',
   'lugar': {u'Madrid': 2},
   'notas': {'\xc2\xbfGasol?': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (206,
  {'avg_date': 1605,
   'doc_type': {u'Aprobacion': 5},
   'fecha': {'1604-08-26': 1,
    '1604-09-07': 1,
    '1605-02-26': 1,
    '1605-03-27': 1,
    '1609-12-15': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1, 'Teatro': 1},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u'Antonio Freire, Fray',
   'lugar': {u'Lisboa': 5},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (207,
  {'avg_date': 1608,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1600-01-18': 1,
    '1603-02-26': 1,
    '1605-01-01': 1,
    '1605-03-01': 1,
    '1617-01-17': 1,
    '1618-07-24': 1},
   'genero': {'Ficcion': 4, 'Poesia': 1, 'Teatro': 1},
   'label': u'Jorge Rodriguez',
   'lugar': {u'Lisboa': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (208,
  {'author': {'true': 5},
   'avg_date': 1612,
   'doc_type': {u'Obra': 5, u'Privilegio/Licencia': 6},
   'fecha': {'1604-09-26': 1,
    '1605-01-01': 1,
    '1605-02-09': 2,
    '1605-03-01': 1,
    '1605-03-29': 1,
    '1605-07-18': 1,
    '1607-03-07': 1,
    '1608-06-25': 1,
    '1612-11-22': 1,
    '1613-08-09': 1,
    '1613-08-12': 1,
    '1614-01-11': 1,
    '1614-05-10': 1,
    '1614-10-18': 1,
    '1614-11-17': 1,
    '1615-01-01': 2,
    '1615-03-30': 1,
    '1615-11-05': 1,
    '1616-02-04': 1,
    '1617-01-01': 4,
    '1617-01-17': 1,
    '1617-01-21': 1,
    '1617-01-27': 1,
    '1617-06-04': 1,
    '1617-09-24': 1,
    '1617-11-17': 1,
    '1618-01-01': 1},
   'genero': {'Ficcion': 25, 'Poesia': 1},
   'label': u'Miguel de Cervantes Saavedra',
   'lugar': {u'Barcelona': 3,
    u'Bruselas': 5,
    u'Lisboa': 4,
    u'Madrid': 12,
    u'Milan': 1,
    u'Pamplona': 4,
    u'Valencia': 1,
    u'Valladolid': 2},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Poesia',
   'second_place': u'Bruselas',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (209,
  {'avg_date': 1604,
   'doc_type': {u'Privilegio/Licencia': 11},
   'fecha': {'1600-01-04': 1,
    '1600-01-18': 1,
    '1603-02-26': 1,
    '1604-08-31': 1,
    '1604-09-09': 1,
    '1604-11-23': 1,
    '1604-12-04': 1,
    '1605-03-01': 1,
    '1605-03-29': 1,
    '1609-12-16': 1,
    '1612-01-27': 1},
   'genero': {'Ficcion': 6, 'Historia': 2, 'Poesia': 1, 'Teatro': 2},
   'inst': {u'Consejo de Portugal': 1},
   'label': u'Ruy Pirez da Veiga',
   'lugar': {u'Lisboa': 11},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Historia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (211,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1617-06-25': 1, '1617-08-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antonio Garcia',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (212,
  {'avg_date': 1612,
   'doc_type': {u'Impresion': 15,
    u'Otro documento': 1,
    u'Privilegio/Licencia': 1},
   'fecha': {'': 1,
    '1605-01-01': 1,
    '1605-02-09': 1,
    '1605-04-01': 1,
    '1607-07-17': 1,
    '1608-06-25': 1,
    '1609-02-10': 1,
    '1612-02-09': 1,
    '1612-11-06': 1,
    '1613-08-12': 1,
    '1615-11-05': 1,
    '1617-01-01': 1,
    '1617-06-25': 1,
    '1617-08-18': 1,
    '1617-09-24': 1,
    '1618-01-01': 1,
    '1618-06-25': 1},
   'genero': {'': 1, 'Ficcion': 11, 'Poesia': 2, 'Teatro': 1},
   'label': u'Juan de la Cuesta',
   'lugar': {'': 1, u'Madrid': 16},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (213,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Marquesado de Montesclaros': 1},
   'label': u'Juan de Luna y Mendoza, Marques de Montesclaros',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (214,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 2, u'Tasa': 8},
   'fecha': {'1613-08-12': 1,
    '1614-11-17': 1,
    '1615-10-21': 1,
    '1616-09-12': 1,
    '1617-08-18': 1,
    '1617-11-07': 1,
    '1618-01-29': 1,
    '1618-03-06': 1,
    '1618-04-09': 1,
    '1618-06-25': 1},
   'genero': {'Ficcion': 5, 'Poesia': 3, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Hernando de Vallejo',
   'lugar': {u'Madrid': 10},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (215,
  {'avg_date': 1612,
   'doc_type': {u'Fe de erratas': 33, u'Privilegio/Licencia': 1},
   'fecha': {'': 8,
    '1604-12-20': 1,
    '1605-04-01': 1,
    '1607-03-07': 1,
    '1607-10-16': 1,
    '1608-06-25': 1,
    '1609-02-04': 1,
    '1609-03-28': 1,
    '1609-11-18': 1,
    '1611-04-09': 1,
    '1612-02-08': 1,
    '1612-11-02': 1,
    '1612-12-04': 1,
    '1613-08-07': 1,
    '1614-05-15': 1,
    '1614-09-20': 1,
    '1614-11-10': 1,
    '1615-03-20': 1,
    '1615-05-03': 1,
    '1615-10-13': 1,
    '1615-10-21': 1,
    '1616-12-15': 1,
    '1617-09-24': 1,
    '1618-03-04': 1,
    '1618-03-13': 1,
    '1618-04-04': 1,
    '1618-06-23': 1},
   'genero': {'': 1, 'Ficcion': 18, 'Poesia': 14, 'Teatro': 4},
   'inst': {u'Colegio de la Madre de Dios de los Teologos': 1},
   'label': u'Francisco Murcia de la Llana',
   'lugar': {'': 8, u'Alcala': 3, u'Bruselas': 1, u'Madrid': 22},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (219,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1607-02-23': 1},
   'genero': {'Poesia': 1},
   'label': u'Jaime Cendrat',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (221,
  {'avg_date': 1615,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1615-07-18': 1},
   'genero': {'Poesia': 2},
   'label': u'Tomas Tomayo de Vargas',
   'lugar': {u'Toledo': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Toledo',
   'type': u'Persona'}),
 (222,
  {'avg_date': 1603,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1603-09-15': 1},
   'genero': {'Poesia': 2},
   'inst': {u'Archidiocesis de Mexico': 1, u'Casa de Zuniga': 1},
   'label': u'Garcia de Mendoza y Zuniga, Fray, Arzobispo de Mexico',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (223,
  {'avg_date': 1617,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1617-08-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'T. Berti',
   'lugar': {u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (224,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Raphael Vives',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (225,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1617-01-01': 1, '1617-06-04': 1},
   'genero': {'Ficcion': 2},
   'label': u'Bautista Sorita',
   'lugar': {u'Barcelona': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (226,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1617-01-27': 1, '1617-06-04': 1},
   'genero': {'Ficcion': 2},
   'label': u'Joan Simon',
   'lugar': {u'Barcelona': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (229,
  {'avg_date': '',
   'genero': {'Poesia': 1},
   'inst': {u'Orden de Santiago': 1},
   'label': u'Rodrigo de Tapia',
   'notas': {'Caballero del habito de Santiago, hijo de Pedro de Tapia': 1},
   'real': {'True': 1},
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (230,
  {'avg_date': 1604,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1604-02-15': 1},
   'genero': {'Poesia': 2},
   'inst': {u'Convento de Santa Caterina': 1, u'Orden de los predicadores': 1},
   'label': u'Jaime Rebullosa',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (231,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Ducado de Feria': 1,
    u'Marquesado de Villalva': 1,
    u'Virreinato de Valencia': 1},
   'label': u'Gomez Suarez de Figueroa y Cordona, Duque de Feria, Virrey de Valencia',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (234,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 2},
   'label': u'Baltasar Eliseo de Medinilla',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (236,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 4},
   'label': u'Casilda de Guana Varona',
   'lugar': {'': 1},
   'notas': {'Mujer de Alonso Velez de Guevara. Aparece un poema por un tal Alonso de Guevar en El peregrino indiano, no creo que sea el mismo, sin embargo, hace falta mas investigacion. Ahora van incluidos como dos personas distintas': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (237,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'label': u'Fernando de Valdes',
   'lugar': {'': 1},
   'notas': {'Colegial de Santa Cruz de Valladolid, provisor general en todo su obisbado, catedratico de propriedad de decreto y abad de San Juan de Cenero': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (238,
  {'avg_date': 1609,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1609-07-30': 1},
   'genero': {'Teatro': 5},
   'label': u'Alonso Gomez de encinas, Fray',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (239,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'label': u'Andres Lopez',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (240,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1610-11-10': 1, '1611-06-22': 1},
   'genero': {'Teatro': 1},
   'label': u'Juan de Molina',
   'lugar': {u'Madrid': 1, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': u'Valladolid',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (241,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Teatro': 1},
   'label': u'Duarte de Alburquerque Coelho',
   'lugar': {'': 1},
   'notas': {'Capitan y governador de Pernambuco en Nova Lusitania': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (242,
  {'avg_date': 1612,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1612-01-25': 1},
   'genero': {'Teatro': 1},
   'label': u'Vicente Pereira, Fray',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (243,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Marquesado de Canete': 1},
   'label': u'Juan Andres Hurtado de Mendoza, V marques de Canete',
   'lugar': {'': 1},
   'notas': {'Montero mayo del rey nuestro senor, y guarda mayor de la ciudad de Cuenca': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (245,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 7},
   'inst': {u'Condado de Urena': 1,
    u'Ducado de Osuna': 1,
    u'Marquesado de Penafiel': 1},
   'label': u'Pedro Tellez-Giron y Velasco, Duque de Osuna',
   'lugar': {'': 1},
   'notas': {'Marques de Penafiel, Conde de Urena': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (246,
  {'avg_date': 1598,
   'doc_type': {u'Aprobacion': 2},
   'fecha': {'1598-08-06': 1, '1599-01-22': 1},
   'genero': {'Ficcion': 6, 'Poesia': 3},
   'inst': {u'Convento de nuestra senora del Carmen': 1,
    u'Orden de los carmelitas': 1},
   'label': u'Pedro de Padilla, Fray',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (247,
  {'avg_date': 1612,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1612-02-18': 1},
   'genero': {'Poesia': 1},
   'label': u'Alfonso Remon, Fray',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (250,
  {'avg_date': 1618,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1618-07-19': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u'Antonio dos Anjos',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (251,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Diego Bermudez',
   'lugar': {'': 1},
   'notas': {'Hermano de Juan Bermudez': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (252,
  {'author': {'true': 1},
   'avg_date': 1618,
   'doc_type': {u'Obra': 1},
   'fecha': {'1618-07-24': 1},
   'genero': {'Poesia': 1},
   'label': u'Juan Bermudez y Alfaro',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (256,
  {'avg_date': 1613,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1613-01-26': 1},
   'genero': {'Historia': 1},
   'inst': {u'Compania de Jesus': 1},
   'label': u'Francisco de Castro',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (257,
  {'avg_date': 1612,
   'doc_type': {u'Privilegio/Licencia': 11},
   'fecha': {'1609-02-08': 1,
    '1609-03-15': 1,
    '1611-04-30': 1,
    '1611-12-02': 1,
    '1612-06-03': 1,
    '1612-11-22': 1,
    '1613-05-18': 1,
    '1614-01-21': 1,
    '1614-06-30': 1,
    '1614-10-18': 1,
    '1614-11-15': 1},
   'genero': {'Ficcion': 3, 'Historia': 2, 'Poesia': 6, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Jorge de Tovar',
   'lugar': {u'Aranjuez': 1, u'Madrid': 10},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': u'Aranjuez',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (258,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'label': u'Carlos Felix de Vega',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (259,
  {'avg_date': 1608,
   'doc_type': {u'Privilegio/Licencia': 5, u'Tasa': 10},
   'fecha': {'1599-03-17': 1,
    '1604-02-20': 1,
    '1604-07-28': 1,
    '1605-07-14': 1,
    '1609-02-10': 1,
    '1609-08-11': 1,
    '1609-10-04': 1,
    '1609-11-18': 1,
    '1610-11-10': 1,
    '1611-04-14': 1,
    '1611-06-22': 1,
    '1612-02-09': 1,
    '1612-10-11': 1,
    '1612-12-16': 1,
    '1613-02-28': 1},
   'genero': {'Ficcion': 1, 'Poesia': 5, 'Teatro': 6},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Miguel de Ondarza Zabala',
   'lugar': {'': 1, u'Madrid': 11, u'Valladolid': 3},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Valladolid',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (260,
  {'avg_date': 1602,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1602-08': 1},
   'genero': {'Ficcion': 1},
   'label': u'Antich Ribera',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (261,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 4},
   'inst': {u'Condado de Bunol': 1},
   'label': u'Gaspar Mercader y Carroz, Conde de Bunol',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (262,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-09-24': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Condado de Villalonga': 1},
   'label': u'Pedro Franqueza, Conde de Villalonga',
   'lugar': {u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (263,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1614-05-17': 1,
    '1614-09-24': 1,
    '1614-11-17': 1,
    '1615-10-19': 1,
    '1616-01-01': 1,
    '1618-03-06': 1},
   'genero': {'Ficcion': 2, 'Poesia': 4},
   'label': u'Viuda de Alonso Martin',
   'lugar': {u'Madrid': 6},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (264,
  {'author': {'true': 1},
   'avg_date': 1608,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 2},
   'fecha': {'1603-06-16': 1,
    '1603-09-24': 1,
    '1603-10-22': 1,
    '1611-02-04': 1,
    '1614-05-17': 1,
    '1615-01-01': 1},
   'genero': {'Ficcion': 4},
   'label': u'Agustin de Rojas Villaldrando',
   'lugar': {u'Lerida': 2,
    u'Madrid': 2,
    u'San Juan de Ortega': 1,
    u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Ficcion',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (266,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1617-04-13': 1},
   'genero': {'Historia': 1},
   'label': u'Diego de la Huerta',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (267,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1599-06-22': 1, '1617-04-18': 2},
   'genero': {'Ficcion': 1, 'Historia': 1},
   'label': u'Juan de Bonilla',
   'lugar': {u'Zaragoza': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (270,
  {'avg_date': 1611,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1611-01-04': 1},
   'genero': {'Ficcion': 2},
   'label': u'Agustin Osorio, Fray',
   'lugar': {u'Lerida': 1},
   'notas': {'Prior de San Agustin de Lerida': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (271,
  {'avg_date': 1611,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1611-01-04': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Diocesis de Lerida': 1},
   'label': u'Antonio Castro, Vicario General de Lerida',
   'lugar': {u'Lerida': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (272,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604': 1},
   'genero': {'Poesia': 1},
   'label': u'Melchior Ocharte',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (274,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Hieronymo Martin',
   'lugar': {u'Tarragona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Tarragona',
   'type': u'Persona'}),
 (276,
  {'avg_date': 1603,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1603-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Roberto',
   'lugar': {u'Tarragona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Tarragona',
   'type': u'Persona'}),
 (277,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-06-05': 1},
   'genero': {'Teatro': 2},
   'label': u'Antonio Sanchez',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (278,
  {'avg_date': 1615,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1615-05-09': 1},
   'genero': {'Teatro': 2},
   'label': u'Lucas Nunez de Castaneda',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (280,
  {'avg_date': 1599,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1599-06-21': 1},
   'genero': {'Ficcion': 1},
   'label': u'Mateo de Canseco, vicario general',
   'lugar': {u'Zaragoza': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Zaragoza',
   'type': u'Persona'}),
 (281,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'label': u'Luis de Valdes, Alferez',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (282,
  {'avg_date': 1604,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1604-12-04': 1},
   'genero': {'Ficcion': 1},
   'label': u'Sebastiao Pereira',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (283,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Marquesado de San German': 1},
   'label': u'Juan de Mendoza y Velasco, Marques de San German',
   'lugar': {'': 1},
   'notas': {'Comendador del Campo de Montiel, Gentilhombre de la Camara del Rey, Teniente General de las Guardas y Caballerias de Espana, Capital General de los Reinos de Portugal': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (285,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1605-02-21': 1},
   'genero': {'Historia': 1},
   'label': u'Sousa',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (286,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Historia': 1},
   'inst': {u'Ducado de Barcelos': 1, u'Ducado de Braganza': 1},
   'label': u'Teodosio II, Duque de Braganza y Barcelos',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': '',
   'type': u'Persona'}),
 (288,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Miguel Menescal',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (290,
  {'avg_date': 1614,
   'doc_type': {u'Impresion': 2},
   'fecha': {'1613-01-01': 1, '1615-01-01': 1},
   'genero': {'Historia': 1, 'Poesia': 1},
   'label': u'Matias Clavijo',
   'lugar': {u'Sevilla': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (295,
  {'author': {'true': 1},
   'avg_date': 1603,
   'doc_type': {u'Carta': 1, u'Obra': 1},
   'fecha': {'1602-03-09': 1, '1605-01-01': 1},
   'genero': {'Historia': 1},
   'inst': {u'Compania de Jesus': 1},
   'label': u'Diego de Pantoja',
   'lugar': {u'Pekin': 1, u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Pekin',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (296,
  {'avg_date': 1605,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1605-04-23': 1},
   'genero': {'Historia': 1},
   'inst': {u'Casa de Zuniga': 1, u'Ducado de Arcos': 1},
   'label': u'Teresa de Zuniga, Duquesa de Arcos',
   'lugar': {u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (297,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1605-01-01': 1},
   'genero': {'Historia': 1},
   'label': u'Alonso Rodriguez Gamarra',
   'lugar': {u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (298,
  {'avg_date': 1605,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1605-04-23': 1},
   'genero': {'Historia': 1},
   'label': u'Esteban de Villarreal',
   'lugar': {u'Sevilla': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Sevilla',
   'type': u'Persona'}),
 (299,
  {'avg_date': 1602,
   'doc_type': {u'Carta': 1},
   'fecha': {'1602-03-09': 1},
   'genero': {'Historia': 1},
   'inst': {u'Compania de Jesus': 1},
   'label': u'Luis de Guzman',
   'lugar': {u'Pekin': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Pekin',
   'type': u'Persona'}),
 (301,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-12-23': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Luis de Salzedo',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (302,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-12-23': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Diego de Aldrete',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (303,
  {'avg_date': 1615,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1613-12-23': 1, '1617-11-07': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Jorge Olaal de Vergara',
   'lugar': {u'Madrid': 2},
   'notas': {'Chanciller mayor': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (304,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-12-23': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Melchor de Molina',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (305,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-12-23': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Juan de Ocan',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (306,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1, u'Tasa': 2},
   'fecha': {'1613-12-23': 1, '1614-05-17': 1, '1614-11-08': 1},
   'genero': {'Ficcion': 1, 'Historia': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Juan \xc1lvarez del Marmol',
   'lugar': {u'Madrid': 3},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (307,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-12-23': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Consejo de Castilla': 1, u'Marquesado del Valle': 1},
   'label': u'Marques del Valle',
   'lugar': {u'Madrid': 1},
   'notas': {"Es muy probable que sea Pedro Cortes Ramirez de Arellano. Se caso con Mencia Fernandez de Cabrera y Mendoza, hija de Maria de Mendoza y de la Cerda. en la dedicatoria de Patrona de Madrid restituida, Salas Barbadillo nombra a una tal Mencia de la Cerda como 'Marquesa del Valle'. Vease el enlace aqui para mas informacion": 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (308,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Orden de Santiago': 1},
   'label': u'Martin Valero de Franqueza',
   'lugar': {'': 1},
   'notas': {'Caballero del habito de Santiago y gentilhombre de la boca de su Majestad': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (309,
  {'avg_date': 1618,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1618-01-29': 1, '1618-03-06': 1},
   'genero': {'Ficcion': 1},
   'label': u'Domingo Gonzalez',
   'lugar': {u'Madrid': 2},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (310,
  {'author': {'true': 1},
   'avg_date': 1603,
   'doc_type': {u'Obra': 1},
   'fecha': {'1602-08-20': 1,
    '1603-02-26': 1,
    '1603-08-26': 1,
    '1604-01-15': 1},
   'genero': {'Ficcion': 4},
   'label': u'Juan Marti',
   'lugar': {u'Barcelona': 1, u'Bruselas': 1, u'Lisboa': 1, u'Milan': 1},
   'notas': {'Escribio bajo el pseudomino Mateo Lujan de Sayavedra': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Milan',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (311,
  {'avg_date': 1602,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1602-08': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Amello',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (312,
  {'avg_date': 1609,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1609-06-15': 1},
   'genero': {'Poesia': 1},
   'label': u'Antonio Nunez Busto',
   'lugar': {u'Segovia': 1},
   'notas': {'Senor provisor': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Segovia',
   'type': u'Persona'}),
 (313,
  {'avg_date': 1609,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1609-06-15': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Diocesis de Segovia': 1},
   'label': u'Mateo Verrueco de Samaniego, Vicario general de Segovia',
   'lugar': {u'Segovia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Segovia',
   'type': u'Persona'}),
 (314,
  {'avg_date': 1609,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1609-09-22': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Santo Tomas de Madrid': 1},
   'label': u'Domingo de los Reyes',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (316,
  {'avg_date': 1608,
   'doc_type': {u'Carta': 2},
   'fecha': {'1608-12-10': 1, '1608-12-16': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Consejo de Indias': 1, u'Consejo de Inquisicion': 1},
   'label': u'Pedro de Ledesma',
   'lugar': {u'Madrid': 1, u'Segovia': 1},
   'notas': {'Secretario del Consejo de Indias, consultor del Santo Oficio': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Segovia',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (317,
  {'avg_date': 1608,
   'doc_type': {u'Carta': 2},
   'fecha': {'1608-12-01': 1, '1609-12-01': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Orden de San Bernardo': 1},
   'label': u'Lorenzo de Zamora, Fray',
   'lugar': {u'Madrid': 1, u'Segovia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Segovia',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (319,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Pedro Bellero',
   'lugar': {u'Anvers': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Anvers',
   'type': u'Persona'}),
 (321,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan Bellero',
   'lugar': {u'Anvers': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Anvers',
   'type': u'Persona'}),
 (322,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'label': u'Francisco Davalos y Orozco',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (323,
  {'avg_date': 1614,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1614-12-26': 1},
   'genero': {'Ficcion': 2},
   'inst': {u'Santo Tomas de Madrid': 1},
   'label': u'Tomas Daoiz',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (324,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Ficcion': 2},
   'label': u'Sebastian de Cespedes y Meneses',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (325,
  {'avg_date': 1614,
   'doc_type': {u'Privilegio/Licencia': 1, u'Tasa': 4},
   'fecha': {'1612-05-19': 1,
    '1612-11-06': 1,
    '1615-03-23': 1,
    '1616-12-23': 1,
    '1617-11-16': 1},
   'genero': {'Ficcion': 4, 'Poesia': 1},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Geronimo Nunez de Leon',
   'lugar': {u'Aranjuez': 1, u'Madrid': 4},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Aranjuez',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (327,
  {'avg_date': 1611,
   'doc_type': {u'Aprobacion': 2, u'Privilegio/Licencia': 2},
   'fecha': {'1601-10-31': 1,
    '1610-01-01': 1,
    '1617-06-04': 1,
    '1617-11-29': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1, 'Teatro': 1},
   'inst': {u'Convento de Santa Caterina': 1},
   'label': u'Tomas Roca, Fray',
   'lugar': {u'Barcelona': 4},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (330,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Ficcion': 1},
   'label': u'Juan de Villaroel',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (331,
  {'author': {'true': 3},
   'avg_date': 1614,
   'doc_type': {u'Aprobacion': 4, u'Obra': 3, u'Privilegio/Licencia': 2},
   'fecha': {'1612-06-03': 1,
    '1612-10-11': 1,
    '1614-09-20': 1,
    '1615-03-17': 1,
    '1615-06-03': 1,
    '1615-06-05': 1,
    '1615-11-21': 1,
    '1616-01-01': 1,
    '1616-09-09': 1,
    '1616-09-12': 1,
    '1618-01-01': 1},
   'genero': {'Ficcion': 5, 'Poesia': 8, 'Teatro': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Jose de Valdivielso',
   'lugar': {u'Alcala': 1, u'Barcelona': 2, u'Madrid': 7, u'Toledo': 1},
   'notas': {'Capellan del cardenal de Sandoval': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Ficcion',
   'second_place': u'Barcelona',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (334,
  {'avg_date': 1607,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1607-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Juan Gracian',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (335,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Historia': 1},
   'inst': {u'Ducado de Braganza': 1},
   'label': u'Catalina de Portugal, Duquesa de Braganza',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': '',
   'type': u'Persona'}),
 (336,
  {'author': {'true': 3},
   'avg_date': 1610,
   'doc_type': {u'Obra': 3},
   'fecha': {'1605-03-08': 1, '1609-09-02': 1, '1617-01-01': 1},
   'genero': {'Historia': 3},
   'label': u'El Inca Garcilaso de la Vega',
   'lugar': {u'Cordoba': 1, u'Lisboa': 2},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Cordoba',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (337,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1605-02-21': 1, '1605-03-25': 1, '1605-03-27': 1},
   'genero': {'Ficcion': 1, 'Historia': 2},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u"Damiao d'Aguiar",
   'lugar': {u'Lisboa': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (338,
  {'avg_date': 1608,
   'doc_type': {u'Aprobacion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1604-11-16': 1, '1604-11-26': 1, '1616-08-22': 1},
   'genero': {'Ficcion': 1, 'Historia': 2},
   'inst': {u'Consejo de Inquisicion': 1, u'Convento de Sao Francisco': 1},
   'label': u'Luis dos Anjos',
   'lugar': {u'Lisboa': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (339,
  {'avg_date': 1610,
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'1609-09-02': 1, '1610-11-24': 1, '1612-01-27': 1},
   'genero': {'Historia': 1, 'Poesia': 1, 'Teatro': 1},
   'inst': {u'Consejo de Inquisicion': 1},
   'label': u'Sarayua',
   'lugar': {'': 1, u'Lisboa': 2},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (341,
  {'avg_date': 1608,
   'doc_type': {u'Aprobacion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1604-11-10': 1, '1613-08-23': 1},
   'genero': {'Poesia': 1, 'Teatro': 1},
   'label': u'Roig',
   'lugar': {u'Madrid': 1, u'Valencia': 1},
   'notas': {'Vicecanciller encargado general de tesorero': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Madrid',
   'top_genre': 'Teatro',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (342,
  {'avg_date': 1614,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1614-08-02': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Consejo de Inquisicion': 1,
    u'Convento de nuestra senora del Carmen': 1,
    u'Orden de los carmelitas': 1},
   'label': u'Ambrosio de Vallejo',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (343,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Orden de los carmelitas': 1},
   'label': u'Martin de San Cirilo, Fray',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (344,
  {'avg_date': 1599,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1599-04-30': 1},
   'genero': {'Ficcion': 1},
   'label': u'Giraldo Dotil',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (347,
  {'avg_date': 1608,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1608-12-12': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Ducado de Cea': 1},
   'label': u'Mariana de Padilla, Duquesa de Cea',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (348,
  {'avg_date': 1609,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1609-01-21': 1},
   'genero': {'Poesia': 1},
   'inst': {u'San Felipe el Real': 1},
   'label': u'Cristobal de Fonseca, Fray',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (349,
  {'avg_date': 1602,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1602-10-20': 1},
   'genero': {'Poesia': 2},
   'label': u'Antonio \xc1vila de la Cadena Arcediano de la nueva Galicia',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (350,
  {'avg_date': '',
   'doc_type': {u'Carta': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 2},
   'label': u'Isabel de Tobar y Guzman',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (352,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 10},
   'fecha': {'1600-01-04': 1,
    '1600-01-18': 1,
    '1603-02-26': 1,
    '1604-08-31': 1,
    '1604-09-09': 1,
    '1604-11-23': 1,
    '1604-12-04': 1,
    '1605-03-01': 1,
    '1605-03-29': 1,
    '1609-09-23': 1},
   'genero': {'Ficcion': 6, 'Historia': 2, 'Poesia': 1, 'Teatro': 1},
   'inst': {u'Consejo de Portugal': 1},
   'label': u'Marcos Teixiera',
   'lugar': {u'Lisboa': 10},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Historia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (353,
  {'avg_date': 1604,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1604-01-01': 1},
   'genero': {'Poesia': 1},
   'label': u'Diego Lopez Davalos',
   'lugar': {u'Mexico': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Mexico',
   'type': u'Persona'}),
 (354,
  {'avg_date': 1613,
   'doc_type': {u'Impresion': 4},
   'fecha': {'1611-02-04': 1,
    '1612-01-01': 1,
    '1615-01-01': 1,
    '1616-06-06': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1},
   'label': u'Luis Menescal',
   'lugar': {u'Lerida': 4},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lerida',
   'type': u'Persona'}),
 (355,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 4},
   'fecha': {'1607-02-23': 1,
    '1609-01-01': 1,
    '1612-01-01': 1,
    '1618-04-19': 1},
   'genero': {'Ficcion': 3, 'Poesia': 1},
   'label': u'Geronimo Margarit',
   'lugar': {u'Barcelona': 3, u'Lerida': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Poesia',
   'second_place': u'Lerida',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (357,
  {'author': {'true': 2},
   'avg_date': 1615,
   'doc_type': {u'Obra': 2},
   'fecha': {'1615-06-05': 2, '1616-01-01': 2},
   'genero': {'Teatro': 2},
   'label': u'Mira de Amescua',
   'lugar': {u'Alcala': 2, u'Barcelona': 2},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (358,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Hurtado de Velarde',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (360,
  {'avg_date': 1614,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1614-11-15': 1},
   'genero': {'Teatro': 2},
   'label': u'Francisco de \xc1vila',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (362,
  {'avg_date': 1614,
   'doc_type': {u'Impresion': 6, u'Privilegio/Licencia': 4},
   'fecha': {'1610-11-07': 1,
    '1611-01-01': 1,
    '1614-01-01': 1,
    '1614-05-10': 2,
    '1616-02-04': 2,
    '1617-01-01': 1,
    '1617-08-18': 1,
    '1618-01-01': 1},
   'genero': {'Ficcion': 5, 'Teatro': 1},
   'label': u'Huberto Antonio',
   'lugar': {u'Bruselas': 10},
   'notas': {'Impresor de sus Altezas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (365,
  {'avg_date': 1596,
   'doc_type': {u'Carta': 3},
   'fecha': {'': 2, '1596-11-27': 1},
   'genero': {'Poesia': 3},
   'label': u'Domingo de Mendoza, Fray',
   'lugar': {'': 2, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (366,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-03-06': 1},
   'genero': {'Historia': 1},
   'inst': {u'Diocesis de Cordoba': 1},
   'label': u'Diego de Mardones, Obispo de Cordoba',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (367,
  {'avg_date': 1617,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1617-01-01': 1},
   'genero': {'Historia': 1},
   'label': u'Barrera',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Historia',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (368,
  {'author': {'true': 3},
   'avg_date': 1612,
   'doc_type': {u'Carta': 2, u'Obra': 3, u'Privilegio/Licencia': 2},
   'fecha': {'1607-02-23': 1,
    '1608-12-16': 1,
    '1609-10-04': 1,
    '1609-12-01': 1,
    '1611-04-14': 1,
    '1615-06-13': 1,
    '1615-10-19': 1,
    '1616-01-01': 1,
    '1616-06-06': 1,
    '1616-08-01': 1},
   'genero': {'Poesia': 6},
   'label': u'Alonso de Ledesma',
   'lugar': {'': 1,
    u'Barcelona': 2,
    u'Lerida': 1,
    u'Madrid': 3,
    u'Segovia': 2,
    u'Valladolid': 1},
   'notas': {'Natural de Segovia': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Segovia',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (369,
  {'avg_date': 1607,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1607-02-20': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Convento de Santa Caterina': 1},
   'label': u'Tomas de Olivon',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (370,
  {'avg_date': 1617,
   'doc_type': {u'Aprobacion': 2},
   'fecha': {'1616-08-01': 1, '1618-04-19': 1},
   'genero': {'Ficcion': 1, 'Poesia': 1},
   'inst': {u'Convento de Santa Caterina': 1,
    u'Diocesis de Barcelona': 1,
    u'Orden de los predicadores': 1},
   'label': u'Onofre de Requesens',
   'lugar': {u'Barcelona': 2},
   'notas': {'Prior del Convento de Santa Caterina': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (371,
  {'avg_date': 1601,
   'doc_type': {u'Impresion': 3},
   'fecha': {'1599-03-17': 1, '1602-11-30': 1, '1603-01-01': 1},
   'genero': {'Poesia': 3},
   'label': u'Pedro Madrigal',
   'lugar': {u'Madrid': 3},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (372,
  {'author': {'true': 1},
   'avg_date': 1599,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1599-02-16': 1, '1599-03-17': 1},
   'genero': {'Poesia': 1},
   'label': u'Antonio de Saavedra Guzman',
   'lugar': {'': 1, u'Madrid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (375,
  {'avg_date': 1615,
   'doc_type': {u'Privilegio/Licencia': 1, u'Tasa': 2},
   'fecha': {'1615-06-05': 1, '1615-06-13': 1, '1615-10-19': 1},
   'genero': {'Poesia': 2, 'Teatro': 2},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Juan de Jerez',
   'lugar': {u'Madrid': 2, u'Valladolid': 1},
   'notas': {'Escribano de Camara': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': u'Valladolid',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (380,
  {'author': {'true': 1},
   'avg_date': 1609,
   'doc_type': {u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1603-01-31': 1,
    '1605-01-01': 1,
    '1609-01-01': 1,
    '1610-01-01': 1,
    '1618-03-06': 1},
   'genero': {'Ficcion': 4},
   'label': u'Gaspar Lucas Hidalgo',
   'lugar': {u'Barcelona': 2, u'Bruselas': 1, u'Madrid': 2, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (381,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Francisco Tarrega',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (382,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Miguel Sanchez',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (383,
  {'avg_date': '',
   'genero': {'Teatro': 2},
   'inst': {u'Universidad de Valladolid': 1},
   'label': u'Francisco Martinez Polo',
   'notas': {'Catedratico de prima de Medicina, en la Universidad de Valladolid': 1},
   'real': {'True': 1},
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (385,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Gaspar Aguilar',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (386,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Juan Grajales',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (387,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Damian Salusto del Poy',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (388,
  {'author': {'true': 1},
   'avg_date': 1615,
   'doc_type': {u'Obra': 1},
   'fecha': {'1615-06-05': 1, '1616-01-01': 1},
   'genero': {'Teatro': 2},
   'label': u'Juan Velez de Guevara',
   'lugar': {u'Alcala': 1, u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (389,
  {'avg_date': 1615,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1615-06-05': 1},
   'genero': {'Teatro': 1},
   'label': u'Viuda de Luis Martinez Grande',
   'lugar': {u'Alcala': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Alcala',
   'type': u'Persona'}),
 (390,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-07-10': 1},
   'genero': {'Poesia': 2},
   'label': u'Pedro de Campos Guerrero',
   'lugar': {'': 1},
   'notas': {'Secretario de gobernacion': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (391,
  {'avg_date': 1612,
   'doc_type': {u'Privilegio/Licencia': 5},
   'fecha': {'1609-09-23': 1,
    '1609-12-16': 1,
    '1612-01-27': 1,
    '1616-08-22': 1,
    '1618-07-24': 1},
   'genero': {'Ficcion': 1, 'Poesia': 2, 'Teatro': 1},
   'inst': {u'Consejo de Inquisicion': 1, u'Consejo de Portugal': 1},
   'label': u'Bertolameu da Fonseca',
   'lugar': {u'Lisboa': 5},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (392,
  {'avg_date': 1612,
   'doc_type': {u'Privilegio/Licencia': 2, u'Tasa': 1},
   'fecha': {'1610-11-19': 1, '1611-01-14': 1, '1617-01-17': 1},
   'genero': {'Ficcion': 1, 'Poesia': 1},
   'label': u'Pinto',
   'lugar': {u'Lisboa': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (394,
  {'avg_date': 1616,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1616-02-04': 1},
   'genero': {'Ficcion': 1},
   'label': u'DeVitte',
   'lugar': {u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Bruselas',
   'type': u'Persona'}),
 (395,
  {'avg_date': 1609,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1609-03-15': 1},
   'genero': {'Poesia': 1},
   'label': u'Alonso Ordonez de San Pedro',
   'lugar': {u'Madrid': 1},
   'notas': {'Mayordomo del santisimo sacramento de la parroquial de Toledo': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (396,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Condado de Fuensalida': 1},
   'label': u'Pedro Lopez de Ayala, VI conde de Fuensalida',
   'lugar': {'': 1},
   'notas': {'Algualcil mayor de Toledo, senor de las villas de Lillo, Guadamur, Humanes, y Guecas': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (397,
  {'avg_date': 1611,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1609-03-15': 1, '1614-06-30': 1},
   'genero': {'Poesia': 2},
   'label': u'Jorge de Tovar Berrio',
   'lugar': {u'Madrid': 2},
   'notas': {'Mayordomo del santisimo sacramento de la parroquial de Toledo': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (399,
  {'author': {'true': 1},
   'avg_date': 1610,
   'doc_type': {u'Impresion': 2, u'Obra': 1},
   'fecha': {'1609-03-15': 2, '1612-10-11': 1},
   'genero': {'Poesia': 2},
   'label': u'Pedro Rodriguez',
   'lugar': {u'Madrid': 2, u'Toledo': 3},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': u'Madrid',
   'top_genre': 'Poesia',
   'top_place': u'Toledo',
   'type': u'Persona'}),
 (402,
  {'avg_date': 1618,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1618-01-12': 1},
   'genero': {'Ficcion': 1},
   'inst': {u'Compania de Jesus': 1},
   'label': u'Luis Pujol',
   'lugar': {u'Barcelona': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (403,
  {'avg_date': 1613,
   'doc_type': {u'Aprobacion': 4},
   'fecha': {'': 2, '1610-05-23': 1, '1617-11-16': 1},
   'genero': {'Ficcion': 1, 'Poesia': 3},
   'inst': {u'Convento de la Santisima Trinidad': 1},
   'label': u'Hortensio Felix Paravicino, Fray',
   'lugar': {'': 1, u'Madrid': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (406,
  {'avg_date': 1603,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1603-09-14': 1},
   'genero': {'Poesia': 2},
   'label': u'Sebastian Torrero',
   'lugar': {'': 1},
   'notas': {'Secretario de de su senoria': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (407,
  {'avg_date': 1599,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1599-01-10': 1},
   'genero': {'Poesia': 1},
   'label': u'Antonio de Herrera',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (408,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 2},
   'label': u'Francisco Pacheco',
   'lugar': {'': 1},
   'notas': {'Pintor': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (409,
  {'avg_date': 1607,
   'doc_type': {'dedicatory': 1},
   'fecha': {'1607-07-15': 1},
   'genero': {'Poesia': 1},
   'inst': {u'Ducado de Alcala de los Gazules': 1},
   'label': u'Fernando enriquez de Ribera, duque de Alcala de los Gazules',
   'lugar': {u'Roma': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Roma',
   'type': u'Persona'}),
 (410,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 2, u'Privilegio/Licencia': 1},
   'fecha': {'1604-09-20': 1, '1605-01-01': 1, '1607-01-01': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'label': u'Martin Nucio',
   'lugar': {u'Amberes': 1, u'Anvers': 1, u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': u'Bruselas',
   'top_genre': 'Teatro',
   'top_place': u'Amberes',
   'type': u'Persona'}),
 (411,
  {'avg_date': 1613,
   'doc_type': {u'Privilegio/Licencia': 1},
   'fecha': {'1613-02-28': 1},
   'genero': {'Teatro': 1},
   'label': u'Juan Lopez',
   'lugar': {u'Madrid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (412,
  {'author': {'true': 1},
   'avg_date': 1613,
   'doc_type': {u'Obra': 1},
   'fecha': {'1613-06-12': 1},
   'genero': {'Teatro': 1},
   'label': u'Luis de Gongora y Argote',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (413,
  {'avg_date': 1613,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1613-06-12': 1},
   'genero': {'Teatro': 1},
   'label': u'Francisco de Cea',
   'lugar': {u'Cordoba': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Teatro',
   'top_place': u'Cordoba',
   'type': u'Persona'}),
 (415,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'': 3},
   'genero': {'Ficcion': 3},
   'label': u'De Vall',
   'lugar': {u'Barcelona': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (416,
  {'avg_date': '',
   'doc_type': {u'Privilegio/Licencia': 3},
   'fecha': {'': 3},
   'genero': {'Ficcion': 3},
   'label': u'De Salba',
   'lugar': {u'Barcelona': 3},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Barcelona',
   'type': u'Persona'}),
 (419,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1600-05-15': 2},
   'genero': {'Ficcion': 1},
   'label': u'Juan de Mommarte',
   'lugar': {'': 1, u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': u'Bruselas',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (420,
  {'avg_date': 1605,
   'doc_type': {u'Privilegio/Licencia': 2},
   'fecha': {'1600-05-15': 1, '1610-11-07': 1},
   'genero': {'Ficcion': 1, 'Teatro': 1},
   'inst': {u'Consejo de Flandes': 1},
   'label': u'Juan de Bruschere',
   'lugar': {'': 1, u'Bruselas': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': u'Bruselas',
   'top_genre': 'Teatro',
   'top_place': '',
   'type': u'Persona'}),
 (422,
  {'avg_date': 1600,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1600-01-04': 1},
   'genero': {'Ficcion': 1},
   'label': u'Diogo Gomez Loureiro',
   'lugar': {u'Coimbra': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Coimbra',
   'type': u'Persona'}),
 (423,
  {'avg_date': 1611,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1611-01-14': 1},
   'genero': {'Poesia': 1},
   'label': u'Vicente \xc1lvarez',
   'lugar': {u'Lisboa': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Lisboa',
   'type': u'Persona'}),
 (424,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-07-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Jusepe Ferrer',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (425,
  {'avg_date': 1605,
   'doc_type': {u'Impresion': 1},
   'fecha': {'1605-07-18': 1},
   'genero': {'Ficcion': 1},
   'label': u'Pedro Patricio Mey',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (426,
  {'avg_date': 1605,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1605-07-18': 1},
   'genero': {'Ficcion': 2},
   'label': u'Luis Pellicer, Fray',
   'lugar': {u'Valencia': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Valencia',
   'type': u'Persona'}),
 (428,
  {'avg_date': '',
   'doc_type': {'dedicatory': 2},
   'fecha': {'': 2},
   'genero': {'Ficcion': 1, 'Poesia': 3},
   'inst': {u'Consejo de Castilla': 1,
    u'San Lorenzo el Real de El Escorial': 1},
   'label': u'Felipe III, Rey de Espana y Portugal',
   'lugar': {'': 2},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (430,
  {'avg_date': 1612,
   'doc_type': {u'Aprobacion': 1},
   'fecha': {'1612-08-08': 1},
   'genero': {'Ficcion': 4},
   'label': u'Diego de Hortigosa',
   'lugar': {'': 1},
   'notas': {'Se relaciona con \xc2\xa8El Monasterio de la Santisima Trinidad\xc2\xa8, tal vez sea igual que \xc2\xa8El Convento de la Santisma Trinidad\xc2\xa8': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (431,
  {'author': {'true': 1},
   'avg_date': 1610,
   'doc_type': {u'Aprobacion': 1, u'Obra': 1, u'Privilegio/Licencia': 1},
   'fecha': {'1609-02-08': 1, '1609-04-01': 1, '1613-07-31': 1},
   'genero': {'Ficcion': 4, 'Poesia': 1},
   'inst': {u'Consejo de Aragon': 1},
   'label': u'Alonso Geronimo de Salas Barbadillo',
   'lugar': {u'Madrid': 3},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Poesia',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (432,
  {'avg_date': '',
   'doc_type': {'dedicatory': 1},
   'fecha': {'': 1},
   'genero': {'': 1, 'Ficcion': 9},
   'inst': {u'Casa de Monzon': 1,
    u'Consejo de Hacienda': 1,
    u'Marquesado de Poza': 1},
   'label': u'Francisco de Rojas, Marques de Poza',
   'lugar': {'': 1},
   'notas': {'Presidente del Consejo de Hacienda': 1},
   'real': {'True': 1},
   'role': 'patron',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (433,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'': 1, 'Ficcion': 10},
   'label': u'Alonso de Barros',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Ficcion',
   'top_place': '',
   'type': u'Persona'}),
 (434,
  {'author': {'true': 1},
   'avg_date': 1614,
   'doc_type': {u'Aprobacion': 3, u'Obra': 1},
   'fecha': {'1609-01-05': 1,
    '1612-03-27': 1,
    '1614-10-15': 1,
    '1618-01-01': 1,
    '1618-01-12': 1},
   'genero': {'Ficcion': 2, 'Poesia': 2, 'Teatro': 2},
   'label': u'Vicente Espinel',
   'lugar': {u'Barcelona': 1, u'Madrid': 4},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Ficcion',
   'second_place': u'Barcelona',
   'top_genre': 'Teatro',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (435,
  {'avg_date': '',
   'doc_type': {u'Otro documento': 1},
   'fecha': {'': 1},
   'genero': {'Poesia': 1},
   'label': u'Francisco de Lugo y Davila',
   'lugar': {'': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': '',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (436,
  {'avg_date': 1602,
   'doc_type': {u'Privilegio/Licencia': 2, u'Tasa': 2},
   'fecha': {'1599-02-16': 1,
    '1599-04-26': 1,
    '1604-08-11': 1,
    '1607-08-11': 1},
   'genero': {'Ficcion': 1, 'Poesia': 3},
   'inst': {u'Consejo de Castilla': 1},
   'label': u'Alonso de Vallejo',
   'lugar': {u'Madrid': 2, u'Oliva': 1, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'signatory',
   'second_genre': 'Ficcion',
   'second_place': u'Valladolid',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (437,
  {'avg_date': 1610,
   'doc_type': {u'Impresion': 7, u'Privilegio/Licencia': 2},
   'fecha': {'1604-02-20': 1,
    '1608-01-01': 1,
    '1609-01-01': 1,
    '1609-08-11': 1,
    '1609-11-18': 1,
    '1611-01-01': 1,
    '1611-04-14': 1,
    '1614-09-24': 1,
    '1615-10-19': 1},
   'genero': {'Ficcion': 3, 'Poesia': 4, 'Teatro': 3},
   'label': u'Alonso Perez',
   'lugar': {'': 2, u'Madrid': 6, u'Valladolid': 1},
   'notas': {'Mercader de libros': 1},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Teatro',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (438,
  {'author': {'true': 2},
   'avg_date': 1604,
   'doc_type': {u'Obra': 2, u'Privilegio/Licencia': 3},
   'fecha': {'1603-07-10': 1,
    '1603-09-14': 1,
    '1604-01-01': 2,
    '1604-08-11': 1,
    '1607-10-16': 1},
   'genero': {'Ficcion': 1, 'Poesia': 2},
   'label': u'Bernardo de Balbuena',
   'lugar': {'': 2, u'Madrid': 1, u'Mexico': 2, u'Valladolid': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Ficcion',
   'second_place': u'Mexico',
   'top_genre': 'Poesia',
   'top_place': '',
   'type': u'Persona'}),
 (439,
  {'avg_date': 1609,
   'doc_type': {u'Impresion': 6},
   'fecha': {'1608-01-01': 1,
    '1609-01-01': 1,
    '1609-04-01': 1,
    '1609-11-18': 1,
    '1611-01-01': 1,
    '1611-04-14': 1},
   'genero': {'Ficcion': 2, 'Poesia': 3, 'Teatro': 1},
   'label': u'Alonso Martin',
   'lugar': {'': 2, u'Madrid': 4},
   'real': {'True': 1},
   'role': 'printer/editor',
   'second_genre': 'Ficcion',
   'second_place': '',
   'top_genre': 'Poesia',
   'top_place': u'Madrid',
   'type': u'Persona'}),
 (440,
  {'author': {'true': 35},
   'avg_date': 1608,
   'doc_type': {u'Aprobacion': 1,
    u'Carta': 3,
    u'Obra': 35,
    u'Otro documento': 2,
    u'Privilegio/Licencia': 8},
   'fecha': {'': 4,
    '1596-11-27': 1,
    '1598-08-15': 1,
    '1598-11-27': 1,
    '1599-02-16': 1,
    '1599-04-26': 1,
    '1602-01-01': 1,
    '1602-10-20': 1,
    '1602-11-30': 1,
    '1603-01-01': 1,
    '1603-12-06': 1,
    '1604-01-01': 13,
    '1604-02-27': 1,
    '1604-07-28': 11,
    '1605-01-01': 23,
    '1605-04-01': 1,
    '1605-07-14': 11,
    '1607-01-01': 12,
    '1608-01-01': 1,
    '1608-08-23': 1,
    '1609-01-01': 1,
    '1609-02-10': 1,
    '1609-03-15': 1,
    '1609-07-24': 11,
    '1609-11-18': 12,
    '1611-01-01': 26,
    '1611-01-14': 1,
    '1611-06-22': 12,
    '1611-12-02': 1,
    '1612-01-01': 1,
    '1612-01-30': 12,
    '1612-02-09': 1,
    '1612-04-06': 1,
    '1613-06-12': 2,
    '1613-08-23': 1,
    '1614-01-01': 1,
    '1614-06-30': 1,
    '1614-09-24': 1,
    '1615-06-05': 1,
    '1616-01-01': 1,
    '1617-01-01': 1,
    '1618-06-25': 12},
   'genero': {'Ficcion': 11, 'Poesia': 13, 'Teatro': 16},
   'inst': {u'Consejo de Inquisicion': 1, u'Marquesado de Sarria': 1},
   'label': u'Felix Lope de Vega Carpio',
   'lugar': {'': 5,
    u'Alcala': 2,
    u'Amberes': 23,
    u'Anvers': 2,
    u'Barcelona': 15,
    u'Bruselas': 14,
    u'Cordoba': 2,
    u'Lerida': 1,
    u'Lisboa': 24,
    u'Madrid': 41,
    u'Milan': 1,
    u'Oliva': 1,
    u'Sevilla': 2,
    u'Toledo': 1,
    u'Valencia': 11,
    u'Valladolid': 58,
    u'Zaragoza': 11},
   'notas': {'Secretario del Marques de Sarria. Familiar del Santo Oficio': 1},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Poesia',
   'second_place': u'Madrid',
   'top_genre': 'Teatro',
   'top_place': u'Valladolid',
   'type': u'Persona'}),
 (441,
  {'author': {'true': 2},
   'avg_date': 1615,
   'doc_type': {u'Obra': 2, u'Privilegio/Licencia': 2},
   'fecha': {'1612-05-19': 1,
    '1612-11-06': 1,
    '1617-08-09': 1,
    '1617-11-16': 1,
    '1618-04-19': 1},
   'genero': {'Ficcion': 2, 'Poesia': 1},
   'label': u'Cristobal Suarez de Figueroa',
   'lugar': {u'Aranjuez': 1, u'Barcelona': 1, u'Madrid': 3},
   'real': {'True': 1},
   'role': 'author',
   'second_genre': 'Poesia',
   'second_place': u'Barcelona',
   'top_genre': 'Ficcion',
   'top_place': u'Madrid',
   'type': u'Persona'})]

In [ ]: