コード例 #1
0
 def inicializaFiltrosQuery(self):
     self.language = auxiliares.getConfiguracion("FILTROS_PARAM",
                                                 "language")
     self.stars = auxiliares.getConfiguracion("FILTROS_PARAM", "stars")
     self.forks = auxiliares.getConfiguracion("FILTROS_PARAM", "forks")
     self.created = auxiliares.getConfiguracion("FILTROS_PARAM", "created")
     self.pushed = auxiliares.getConfiguracion("FILTROS_PARAM", "pushed")
     self.archived = auxiliares.getConfiguracion("FILTROS_PARAM",
                                                 "archived")
     self.qIs = auxiliares.getConfiguracion("FILTROS_PARAM", "qIs")
コード例 #2
0
 def getLapseExeSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "lapseExe")
コード例 #3
0
 def getGenerarListaReposSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "generarListaRepos")
コード例 #4
0
 def getRandomizarListaReposSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "randomizarListaRepos")
コード例 #5
0
 def getTokenSql(self):
     return auxiliares.getConfiguracion("CREDENCIALES", "token")
コード例 #6
0
 def getBuscarEnLocalSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "buscarEnLocal")
コード例 #7
0
 def inicializaConfiguracion(self):
     self.user = auxiliares.getConfiguracion("CREDENCIALES", "user")
     self.token = auxiliares.getConfiguracion("CREDENCIALES", "token")
     self.actualizarBD = auxiliares.getConfiguracion("SEARCH_PARAM", "actualizarBD")
     self.buscarEnLocal = auxiliares.getConfiguracion("SEARCH_PARAM", "buscarEnLocal")
     self.generarListaRepos = auxiliares.getConfiguracion("SEARCH_PARAM", "generarListaRepos")
     self.randomizarListaRepos = auxiliares.getConfiguracion("SEARCH_PARAM", "randomizarListaRepos")
     self.lapseExe = auxiliares.getConfiguracion("SEARCH_PARAM", "lapseExe")
     self.clonarRepositorios = auxiliares.getConfiguracion("SEARCH_PARAM", "clonarRepositorios")
     self.doExcel = auxiliares.getConfiguracion("SEARCH_PARAM", "doExcel")
     self.doCsv = auxiliares.getConfiguracion("SEARCH_PARAM", "doCsv")
     self.escribirEnLog = auxiliares.getConfiguracion("SEARCH_PARAM", "escribirEnLog")
     self.N_RANDOM = auxiliares.getConfiguracion("SEARCH_PARAM", "N_RANDOM")
     self.N_LAPSE_REPOS = auxiliares.getConfiguracion("SEARCH_PARAM", "N_LAPSE_REPOS")
     self.REPO_SIZE_LIMIT = auxiliares.getConfiguracion("SEARCH_PARAM", "REPO_SIZE_LIMIT")
     self.ITEMS_FOUND_LIMIT = auxiliares.getConfiguracion("SEARCH_PARAM", "ITEMS_FOUND_LIMIT")
     self.SEARCH_TIME_LIMIT = auxiliares.getConfiguracion("SEARCH_PARAM", "SEARCH_TIME_LIMIT")
コード例 #8
0
 def getUserSql(self):
     return auxiliares.getConfiguracion("CREDENCIALES", "user")
コード例 #9
0
 def getEscribirEnLogSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "escribirEnLog")
コード例 #10
0
 def getActualizarBDSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "actualizarBD")
コード例 #11
0
 def getDoCsvSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "doCsv")
コード例 #12
0
 def getDoExcelSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "doExcel")
コード例 #13
0
 def getClonarRepositoriosSql(self):
     return auxiliares.getConfiguracion("SEARCH_PARAM", "clonarRepositorios")