How to use darksearch - 4 common examples

To help you get started, we’ve selected a few darksearch examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github vlall / Darksearch / dark_server.py View on Github external
def main():
    application.run(
            host='0.0.0.0',
            port=80,
            threaded=True,
            debug=True
    )
github vlall / Darksearch / darksearch / darkspace.py View on Github external
self.darkResults(
                                                        elastic.titleList[i],
                                                        cat,
                                                        val,
                                                        elastic.namesList[i],
                                                        elastic.datesList[i]
                                                        )
                        )
            descTotal = descTotal + description
        elastic.free_mem()  # Attempting to free up memory..
        del elastic
        return Markup(descTotal)


if __name__ == '__main__':
    example = BackCheck('John Smith')
    print example.output
github vlall / Darksearch / darksearch / tools / elas.py View on Github external
def runSetup(self, jsonPath):
        self.pandas_to_json(jsonPath)
        self.save_json(self.searchIndex)

    def check_cat(self, description):
        return 'tor'

    def free_mem(self):
        del self.briefList
        del self.namesList
        del self.datesList
        del self.titleList

if __name__ == '__main__':
    test = DarkElastic()
    test.runSetup("../logs/process2.json")
    #  Build your index.
    test.ingest_items()
    es.indices.refresh(index='dark')
    print test.search_index('dark', 'cocaine', 15, 10)
github vlall / Darksearch / darksearch / tools / tk.py View on Github external
"URLS",
                                    "NAMES",
                                    "SIZE",
                            ]

                )
        #   Columns = [DATE,URL,NAME,SIZE,LANG,CONTENT')]
        #  with open("logs/process.csv", "a") as log:
        #     log.write('DATE,URL,NAME,SIZE,LANG,CONTENT\n')
        for i in range(0, len(logs)): 
            date = str(logs['DATE'][i].strip())
            url = str(logs['URL'][i].strip())
            name = str(logs['NAME'][i].strip())
            size = str(logs['SIZE'][i])
            try:
                output = Tikify(dataPath + name)
                content = unicode(output.content)
                title = str(output.title)
                lang = str(output.lang)
                with open("../logs/process2.csv", "a") as log:
                    log.write(('%s\t%s\t%s\t%s\t%s\t%s\t%s\n') % (date, url, name, size, lang, title, content))
                    print ('Appended line %d...') % i 
            except Exception:
                continue

darksearch

Python API wrapper for DarkSearch (darksearch.io).

MIT
Latest version published 2 years ago

Package Health Score

48 / 100
Full package analysis

Similar packages