All Brazilian elections from 1998 to 2018, available on the TSE repository, are accessible by this API. Votes, Candidates, and Parties aggregated by Section, UF, Municipal, and Macro region can be easily filtered through a high-performance Athenas SQL database.
CepespPython is a simple python wrapper designed to assist users in accessing the API to Cepespdata, which facilitates rapid, cleaned, organized and documented access to the Tribunal Superior Eleitoral's data on elections in Brazil from 1998 to 2018.
This Python project communicates with our CEPESPdata API. All the data within this application was extracted from the official TSE repository. After the extraction, the data files were post-processed and organized using HiveQL and Pandas (Python library). There is also an internal cache to minimize the response time of all pre-made requests.
The instalation is simple with píp
pip install electionsBR
After loading the cepesp-python package into your Python session, four functions retrieve alternative slices of the processed TSE data. Each returns a data.frame of the requested election details. The following get_* functions don't provide default values for year and position. The four functions are:
get_votes
- Details about the number of votes won by each candidate in a specific election. Just specify the position and year of the electoral contest you want data for, and the regional level at which you would like votes to be aggregated. For example, should Presidential election results be returned as national totals for all of Brazil, or separately for each municipality?
get_votes(year=2014, position="President", regional_aggregation="Municipality")
get_candidates
- Details about the characteristics of individual candidates competing in an election. Just specify the position and year for which you want data. It's also possible to filter the dataframe to return only the data concerning elected candidates using the option only_elected = TRUE (default option is only_elected = FALSE).
get_candidates(year=2014, position="President")
get_coalitions
- Details about the parties that constitute each coalition that competed in each election. Just specify the position and year for which you want data.
get_coalitions(year=2014, position="President")
get_elections
- The most comprehensive function which merges data on election results, candidates and coalitions to enable more sophisticated analysis. However, the merges performed here remain imperfect due to errors in the underlying TSE data, and so this function should be treated as beta and used with caution. Specify the position and year for which you want data, the regional aggregation at which votes should be summed, and the political aggregation at which votes should be disaggregated - by individual candidates, parties, coalitions, or as total for each electoral unit. The parameter only-elected is also available for this function (see #2 get_candidates).
get_elections(year=2014, position="President", regional_aggregation="Municipality", political_aggregation="Candidate")
get_assets
- Returns the details about assets or goods declared by the candidates in each election. The only mandatory parameter to specify isyear
. Optional parameters arestate
andcolumns_list
. For example:
get_assets(year = 2014, state = "AC", columns_list = list('CODIGO_CARGO','NOME_CANDIDATO','CPF_CANDIDATO','VALOR_BEM'))
get_secretaries
- Returns state, state secretary name, date of entry and exit, party affiliation, and other secretaries' personal data.name
andstate
are mandatory arguments to be filled.
get_secretaries(name = 'joao', state = 'AC')
Check below the available options for each required parameter:
-
year:
1998
,2000
,2002
,2004
,2006
,2008
,2010
,2012
,2014
,2016
,2018
. -
position:
Councillor
,Mayor
,State Deputy
,Federal Deputy
,Senator
,Governor
,President
. -
regional_aggregation:
Brazil
,Macro
,State
,Meso
,Micro
,Municipality
,Municipality-Zone
,Zone
,Electoral Section
. -
political_aggregation:
Candidate
,Party
,Coalition
,Consolidated
.
The same parameters can also be entered in Portuguese:
-
position:
Vereador
,Prefeito
,Deputado Estadual
,Deputado Federal
,Senador
,Governador
,Presidente
. -
regional_aggregation:
Brasil
,Macro
,Estado
,Meso
,Micro
,Municipio
,Municipio-Zona
,Zona
,Votação Seção
. -
political_aggregation:
Candidato
,Partido
,Coaligacao
,Consolidado
.
Deputies for the Federal District (DF) are included in the database as State Deputies and can be obtained through the argument position="State Deputy"
.
Not all electoral contests occur in every year. Feasible requests are:
Ano | Cargos Disponíveis (Descrição) |
---|---|
1998 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
2000 | Prefeito, Vereador |
2002 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
2004 | Prefeito, Vereador |
2006 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
2008 | Prefeito, Vereador |
2010 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
2012 | Prefeito, Vereador |
2014 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
2016 | Prefeito, Vereador |
2018 | Presidente, Governador, Senador, Deputado Federal, Deputado Estadual |
It is possible to download multiple years in a single request, once the above-mentioned match of years and positions is observed.
Exemple:
electedmayors_2012_2008 <- get_candidates(year = "2012, 2008", position = "Prefeito", only_elected = T)
The default setting is for the function to return all the available variables (columns). To select specific variables and limit the size of the request, you can specify a list of required columns using the columns_list
argument. The specific columns available depend on the political and regional aggregation selected, so you are advised to refer to the documentation on the available columns at https://github.com/Cepesp-Fgv/tse-dados/wiki/Colunas and to the API documentation at https://github.com/Cepesp-Fgv/cepesp-rest for further details.
Example:
columns <- list("NUMERO_CANDIDATO","UF","QTDE_VOTOS","COD_MUN_IBGE")
data <- get_votes(year = 2014, position=1, regional_aggregation="Municipality", columns_list=columns)
To limit the size of the data returned by the API, the request can be filtered to return data on specific units: By state (using the two-letter abbreviation, eg. "RJ"); by party (using the two-digit official party number, eg. 45), or by candidate number.
For example:
data <- get_elections(year = 2014, position=1, regional_aggregation=2, political_aggregation=2, state="RS") #To select Rio Grande do Sul
data <- get_elections(year = 2014, position=1, regional_aggregation=2, political_aggregation=2, party=13) #To select the PT (=13)
data <- get_elections(year = 2014, position=1, regional_aggregation=2, political_aggregation=2, candidate=2511) #To select candidate 2511
Important: When requesting data with regional_aggregation=9
, the filter state
should not be NULL
You can see more examples here
Remember that all the data returned by the functions above is filtered for apt candidacies (candidacies approved by TSE). Thus, you may find a slightly smaller number of observations in CepespData/FGV datasets than in the original TSE files.
The documentation on the filtering process can be found in this link: https://github.com/Cepesp-Fgv/tse-dados/blob/a28c237bcca0270840a39184e5a98322d3443e60/CepespData/etl/process/VotesVotsecProcess.py#L53.