Flask extension to provide a search view for querying the webteam's Google Custom Search account
Project description
canonicalwebteam.search
Flask extension to provide a search view for querying the webteam's Google Custom Search account.
Installation
pip3 install canonicalwebteam.search
Or add canonicalwebteam.search
to your requirements.txt
.
Usage
Local development
For local development, it's best to test this module with one of our website projects like ubuntu.com. For more information, follow this guide (internal only).
Application code
You can add the extension on your project's application as follows:
import talisker.requests
from flask import Flask
from canonicalwebteam.search import build_search_view
app = Flask("myapp") # You must provide app
session = talisker.requests.get_session() # You must provide a requests session
app.add_url_rule("/search", "search", build_search_view(app, session))
# Or, a bit more complex example
app.add_url_rule(
"/docs/search",
"docs-search",
build_search_view(
app=app # required in version 1.4.0 onwards
session=session,
site="maas.io/docs",
template_path="docs/search.html",
search_engine_id="xxxxxxxxxx", # Optional argument, required by some of our sites
request_limit="500/day", # Allows your to configure the limit at which the user will be forbidden to query more. Defaults to 2000 per day
)
)
The template
You need to create an HTML template at the specificed template_path
. By default this will be search.html
inside your templates folder. This template will be passed the following data:
{{ query }}
- the contents of theq=
search query parameter{{ start }}
- the contents of thestart=
query parameter - the offset at which to start returning results (used for pagination - default 0){{ num }}
- the contents of thenum=
query parameter - the number of search results to return (default 10){{ results }}
- the results returned from the Google Custom Search query. The actual search results are in{{ results.entries }}
.
The API key
You then need to provide the API key for the Google Custom Search API as an environment variable called SEARCH_API_KEY
when the server starts - e.g.:
SEARCH_API_KEY=xxxxx FLASK_APP=app.py flask run
Once this is done, you should be able to visit /search?q={some_query}
in your site and see search results built with your search.html
template.
For some sites, you will need to pass a specific search engine ID (cx) to the build_search_view
which you will find in the Custom Search Engine page.
New sites
If you created a new site and the API is not returning any results, you may need to add it to the Google Custom Search Engine list of sites. If you don't see any sites in this page, ask the Webteam.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for canonicalwebteam_search-2.0.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff9f91b46a719c9bd03cd6714dbf6342c636270ba671ee885b74cf3fe9d00b6e |
|
MD5 | a5a683896727b8c0ce1a61754c352baa |
|
BLAKE2b-256 | 3547562a65c36179d95153107efa9bc9d26b42ad86fab45c931efeea866162a6 |
Hashes for canonicalwebteam.search-2.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfec4bfc0cb8ccd34c4c69d9e9eb7fedcd663271a7c983fda7771d8933a5feeb |
|
MD5 | 00292da4965e2c4c7e1cb3588b482db3 |
|
BLAKE2b-256 | 36030e50ce9a7945fe780b815a9edfb073d423654f0e690a344aa0d64e1f1c64 |