Skip to main content

An API client for Swiftype App Search

Project description

Note: Swiftype App Search is currently in beta

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:

$ python -m pip install swiftype_app_search

You can also download the project source and run:

$ python setup.py install

Dependencies

Swiftype App Search supports Python 2.7 and Python 3.3+. It depends on requests and PyJWT.

Usage

Instantiating a client

>>> from swiftype_app_search import Client
>>> account_host_key = 'host-c5s2mj'
>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> client = Client(account_host_key, api_key)

Index document

>>> 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.'
    }
>>> client.index_document(engine_name, document)
{'id': 'INscMGmhmX4'}

Index documents

>>> 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

>>> 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

>>> engine_name = 'favorite-videos'
>>> client.destroy_documents(engine_name, ['INscMGmhmX4'])
[{'id': 'INscMGmhmX4','result': True}]

List Engines

>>> client.list_engines()
[{'name': 'favorite-videos'}, {'name': 'another-engine'}]

Get an Engine

>>> client.get_engine('favorite-videos')
{'name': 'favorite-videos'}

Create an Engine

>>> client.create_engine('favorite-videos')
{'name': 'favorite-videos'}

Destroy an Engine

>>> client.destroy_engine('favorite-videos')
{'deleted': True}

Create a Signed Search Key

Creating a search key that will only search over the body field.

>>> api_key = 'api-mu75psc5egt9ppzuycnc2mc3'
>>> api_key_id = '42'
>>> signed_search_key = Client.create_signed_search_key(api_key, api_key_id, {'search_fields': { 'body': {}}})
>>> client = Client(account_host_key, signed_search_key)

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

swiftype_app_search-0.1.1.tar.gz (5.9 kB view details)

Uploaded Source

File details

Details for the file swiftype_app_search-0.1.1.tar.gz.

File metadata

File hashes

Hashes for swiftype_app_search-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5539c116585ce91d64e85495441d4a90a7dcd2714ba9458c70fe6a70127c724d
MD5 f41a73212b5d5e22eea963e2b378df75
BLAKE2b-256 e6d3819a27b2dacd7c4ae09eaeb491634630d024729a8e6f119dc7386aea740e

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page