find-the-site

Find the site in duckduckgo


Keywords
find, search, company, website, brand
License
MIT
Install
pip install find-the-site==0.2

Documentation

Maintenance made-with-python GitHub contributors GitHub stars GitHub forks GitHub issues

find_the_site

Are you looking for a company/enterprise website? This small library finds websites in duckduckgo search engine

Optionally you can use:

  • the ecosia search engine, to support environmental efforts
How to Install ?
pip install find_the_site
How to use ?

def get_website(website, eco=False)

website: Whose website you are searching for

eco:

  • True: Use ecosia search.
  • default: False
Find the website
In [1]: from find_the_site.fw import get_website                                               

In [2]: get_website("UNITED NATIONS")                                                          
Out[2]: 'https://www.un.org/en/'

In [1]: from find_the_site.fw import get_website 

In [2]: get_website("UNITED NATIONS", eco=True)                                                          
Out[2]: 'https://www.un.org/en/'