Exemplo n.º 1
0
 def saves_excel(self, parameter):
     # creates the excel file
     os.chdir(self.current_directory)
     excelExporter = ExcelExporter.ExcelExporter(self.input_search,
                                                 self.gui.single_or_merge)
     excelExporter.gui = self.gui
     excelExporter.order_type(parameter)
Exemplo n.º 2
0
import ExcelExporter
import Gerenciador
import os

search = str(input('Search Phrase: '))
gerenciador = Gerenciador.Gerenciador(search, os.getcwd())
lista_autores = gerenciador.loadAutores()
lista_artigos = gerenciador.loadArtigos()

leitor = ExcelExporter.ExcelExporter(search, True, os.getcwd())
print('Done')


Exemplo n.º 3
0
def api_all():
    return ExcelExporter.ExportJsonToExcel(books)
Exemplo n.º 4
0
            else:
                criei = False
                for i in lista_artigos:
                    if novoArtigo.titulo == i.titulo and novoArtigo.autores == i.autores:
                        artigoRepetido = True
                        break
                    if novoArtigo.titulo[0] < i.titulo[0]:
                        lista_artigos.append(novoArtigo)
                        criei = True
                        break
                if criei is False and artigoRepetido is False:
                    lista_artigos.append(novoArtigo)

            if artigoRepetido is False:
                for autorTemp in lista_autores_artigo:
                    autorTemp.addArtigo(novoArtigo)

        try:
            element = driver.find_element_by_xpath("//a[@data-selenium-selector='next-page']")
            driver.execute_script('arguments[0].click()', element)
        except:
            print("ASSUNTO NÃO POSSUI MAIS PAGINAS DE PESQUISA!")
            break
        delay(3)

gerenciador.saveArtigos(lista_artigos)
gerenciador.saveAutores(lista_autores)
driver.quit()
os.chdir(diretorio_atual)
excelExporter = ExcelExporter.ExcelExporter(pesquisa)
Exemplo n.º 5
0
import ExcelExporter

leitor = ExcelExporter.ExcelExporter('fakenews')
print('Pronto')

Exemplo n.º 6
0
import ExcelExporter
import Gerenciador

search = str(input('Search Phrase:'))
gerenciador = Gerenciador.Gerenciador(search)
lista_autores = gerenciador.loadAutores()
lista_artigos = gerenciador.loadArtigos()

leitor = ExcelExporter.ExcelExporter(search)
print('Done')