An API client for Swiftype App Search
Project description
=========================================
Python Client for Swiftype App Search API
=========================================
.. image:: https://circleci.com/gh/swiftype/swiftype-app-search-python.svg?style=svg
:target: https://circleci.com/gh/swiftype/swiftype-app-search-python
About
=====
A Python client for interacting with Swiftype App Search API.
For more information, go to our official documentation page:
https://swiftype.com/documentation/app-search/
Installation
============
Swiftype App Search Client can be installed with
`pip <http://pypi.python.org/pypi/pip>`_::
$ python -m pip install swiftype_app_search
You can also download the project source and run::
$ python setup.py install
Running Tests
============
$ python setup.py test
Dependencies
============
Swiftype App Search supports Python 2.7 and Python 3.3+. It depends on requests and PyJWT.
Usage
========
Instantiating a client
----------------------
.. code-block:: python
>>> from swiftype_app_search import Client
>>> host_identifier = 'host-c5s2mj'
>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> client = Client(host_identifier, api_key)
Index document
--------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> document = {
'id': 'INscMGmhmX4',
'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',
'title': 'The Original Grumpy Cat',
'body': 'A wonderful video of a magnificent cat.'
}
>>> client.index_document(engine_name, document)
{'id': 'INscMGmhmX4'}
Index documents
---------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> documents = [
{
'id': 'INscMGmhmX4',
'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',
'title': 'The Original Grumpy Cat',
'body': 'A wonderful video of a magnificent cat.'
},
{
'id': 'JNDFojsd02',
'url': 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
'title': 'Another Grumpy Cat',
'body': 'A great video of another cool cat.'
}
]
>>> client.index_documents(engine_name, documents)
[{'id': 'INscMGmhmX4', 'errors': []}, {'id': 'JNDFojsd02', 'errors': []}]
Get Documents
-------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> client.get_documents(engine_name, ['INscMGmhmX4'])
[{'id': 'INscMGmhmX4','url': 'https://www.youtube.com/watch?v=INscMGmhmX4','title': 'The Original Grumpy Cat','body': 'A wonderful video of a magnificent cat.'}]
Destroy Documents
-----------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> client.destroy_documents(engine_name, ['INscMGmhmX4'])
[{'id': 'INscMGmhmX4','result': True}]
List Engines
------------
.. code-block:: python
>>> client.list_engines(current=1, size=20)
{
'meta': {
'page': {
'current': 1,
'total_pages': 1,
'total_results': 2,
'size': 20
}
},
'results': [{'name': 'favorite-videos'}, {'name': 'another-engine'}]
}
Get an Engine
-------------
.. code-block:: python
>>> client.get_engine('favorite-videos')
{'name': 'favorite-videos'}
Create an Engine
----------------
.. code-block:: python
>>> client.create_engine('favorite-videos')
{'name': 'favorite-videos'}
Destroy an Engine
-----------------
.. code-block:: python
>>> client.destroy_engine('favorite-videos')
{'deleted': True}
Search
------
.. code-block:: python
>>> client.search('favorite-videos', 'grumpy cat', {})
{'meta': {'page': {'current': 1, 'total_pages': 1, 'total_results': 2, 'size': 10}, ...}, 'results': [...]}
Create a Signed Search Key
--------------------------
Creating a search key that will only search over the body field.
.. code-block:: python
>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> api_key_name = 'my-api-token'
>>> signed_search_key = Client.create_signed_search_key(api_key, api_key_name, {'search_fields': { 'body': {}}})
>>> client = Client(host_identifier, signed_search_key)
Python Client for Swiftype App Search API
=========================================
.. image:: https://circleci.com/gh/swiftype/swiftype-app-search-python.svg?style=svg
:target: https://circleci.com/gh/swiftype/swiftype-app-search-python
About
=====
A Python client for interacting with Swiftype App Search API.
For more information, go to our official documentation page:
https://swiftype.com/documentation/app-search/
Installation
============
Swiftype App Search Client can be installed with
`pip <http://pypi.python.org/pypi/pip>`_::
$ python -m pip install swiftype_app_search
You can also download the project source and run::
$ python setup.py install
Running Tests
============
$ python setup.py test
Dependencies
============
Swiftype App Search supports Python 2.7 and Python 3.3+. It depends on requests and PyJWT.
Usage
========
Instantiating a client
----------------------
.. code-block:: python
>>> from swiftype_app_search import Client
>>> host_identifier = 'host-c5s2mj'
>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> client = Client(host_identifier, api_key)
Index document
--------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> document = {
'id': 'INscMGmhmX4',
'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',
'title': 'The Original Grumpy Cat',
'body': 'A wonderful video of a magnificent cat.'
}
>>> client.index_document(engine_name, document)
{'id': 'INscMGmhmX4'}
Index documents
---------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> documents = [
{
'id': 'INscMGmhmX4',
'url': 'https://www.youtube.com/watch?v=INscMGmhmX4',
'title': 'The Original Grumpy Cat',
'body': 'A wonderful video of a magnificent cat.'
},
{
'id': 'JNDFojsd02',
'url': 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
'title': 'Another Grumpy Cat',
'body': 'A great video of another cool cat.'
}
]
>>> client.index_documents(engine_name, documents)
[{'id': 'INscMGmhmX4', 'errors': []}, {'id': 'JNDFojsd02', 'errors': []}]
Get Documents
-------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> client.get_documents(engine_name, ['INscMGmhmX4'])
[{'id': 'INscMGmhmX4','url': 'https://www.youtube.com/watch?v=INscMGmhmX4','title': 'The Original Grumpy Cat','body': 'A wonderful video of a magnificent cat.'}]
Destroy Documents
-----------------
.. code-block:: python
>>> engine_name = 'favorite-videos'
>>> client.destroy_documents(engine_name, ['INscMGmhmX4'])
[{'id': 'INscMGmhmX4','result': True}]
List Engines
------------
.. code-block:: python
>>> client.list_engines(current=1, size=20)
{
'meta': {
'page': {
'current': 1,
'total_pages': 1,
'total_results': 2,
'size': 20
}
},
'results': [{'name': 'favorite-videos'}, {'name': 'another-engine'}]
}
Get an Engine
-------------
.. code-block:: python
>>> client.get_engine('favorite-videos')
{'name': 'favorite-videos'}
Create an Engine
----------------
.. code-block:: python
>>> client.create_engine('favorite-videos')
{'name': 'favorite-videos'}
Destroy an Engine
-----------------
.. code-block:: python
>>> client.destroy_engine('favorite-videos')
{'deleted': True}
Search
------
.. code-block:: python
>>> client.search('favorite-videos', 'grumpy cat', {})
{'meta': {'page': {'current': 1, 'total_pages': 1, 'total_results': 2, 'size': 10}, ...}, 'results': [...]}
Create a Signed Search Key
--------------------------
Creating a search key that will only search over the body field.
.. code-block:: python
>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> api_key_name = 'my-api-token'
>>> signed_search_key = Client.create_signed_search_key(api_key, api_key_name, {'search_fields': { 'body': {}}})
>>> client = Client(host_identifier, signed_search_key)
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
File details
Details for the file swiftype_app_search-0.3.0.tar.gz
.
File metadata
- Download URL: swiftype_app_search-0.3.0.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 049ac56a455f1a4f68f458394c843bf13b4dea13cac0744db31df4ca5d181f72 |
|
MD5 | b05c1247af0adb2e36c97d587ba7d1a0 |
|
BLAKE2b-256 | e01329ec98d14335051c25b979645e35e1ee48e0873054d80d10d8c128fabeae |