├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── compose.yaml ├── duckduckgo.py ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/README.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/compose.yaml -------------------------------------------------------------------------------- /duckduckgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/duckduckgo.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorfu/PyFreeDuckDuckGo/HEAD/requirements.txt --------------------------------------------------------------------------------