Django Google linked custom search engine app.
Project description
Django Google Search
Django Google custom search engine app.
Provides a simple tag rendering a Google Custom Search Engine input field and a view displaying search results. The product is an implementation of http://www.google.com/cse/docs/cref.html. The custom search engine definition is stored on your site, not by Google. This allows you to define a search engine in version controlled code.
Installation
Install or add django-googlesearch to your Python path.
Add googlesearch to your INSTALLED_APPS setting.
Add googlesearch url include to your project’s urls.py file:
(r'^search/', include('googlesearch.urls')),
Optionally add "django.core.context_processors.request", to your TEMPLATE_CONTEXT_PROCESSORS setting, i.e.:
TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.request", ...other processors... )
We need a request object when rendering the search input field and results to be able to display the search query value. This is optional and is not required for operation but is highly recommended.
Usage
Once installed you can add a Google search box to your templates by using the googlesearch_form template tag, i.e.:
{% load googlesearch_inclusion_tags %} ...some html... {% googlesearch_form %} ...some more html...
By default search results are displayed through the view with URL named googlesearch-results, as defined in googlesearch.urls. You can create your own URL named googlesearch-results and include the googlesearch_results template tag in its template to display results, i.e.:
{% load googlesearch_inclusion_tags %} ...some html... {% googlesearch_results %} ...some more html...
Changelog
0.2
Django 1.6 compatibility.
0.1.2
Refer to correct template tag in help text. Thanks grafyte.
0.1
Refactor to use a linked custom search engine as described at http://www.google.com/cse/docs/cref.html.
0.0.6
Packaging and test setup cleanup.
0.0.5
Refactor to not use django-preferences.
Documentation.
Project details
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
File details
Details for the file django-googlesearch-0.2.tar.gz
.
File metadata
- Download URL: django-googlesearch-0.2.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0a50737df6128282c8bab4363bb5206f9bca8daf72f4dcbe8e0905725a4a991 |
|
MD5 | 5a9b6c7b079f1a3ccf8106617cfe423d |
|
BLAKE2b-256 | 6506d83f6345d84be4b3bf101cab18c928e22b3a3a48141df1530a66450d3aac |
File details
Details for the file django_googlesearch-0.2-py2.7.egg
.
File metadata
- Download URL: django_googlesearch-0.2-py2.7.egg
- Upload date:
- Size: 8.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2786d041de9b18be00aa223d3c4abd6d6bcb102bb83eb4c0fdf785511abaabf5 |
|
MD5 | b12ff9dbd0279737169cc9f19fe8130c |
|
BLAKE2b-256 | fd8677d7fa5eb9836b2f22d8f3210cdea0ab4454229c53a6ec4414b116c33219 |