The Python script in README.md has two errors:
- missing
import os at the top
- unquoted
web on this line:
type = web # str | Enrich a search query with results pulled from Kagi indexes. (default to web)
should be:
type = 'web' # str | Enrich a search query with results pulled from Kagi indexes. (default to 'web')
The Python script in
README.mdhas two errors:import osat the topwebon this line: