Pythonic Layer for Sinequa REST API
Project description
Pynequa
A python library to handle communication with Sinequa REST API.
Sinequa is an enterprise search tool. It provides a cognitive search and analytics platform that helps organizations gain insights from their structured and unstructured data spread across various sources, including databases, documents, emails, websites, and more.
Installation
$ pip install pynequa
Example Usage
import pynequa
from pynequa.models import QueryParams
# provide following config parameters
config = {
"base_url": "",
"app_name": "",
"access_token":"",
"query_name": ""
}
# initialize a Sinequa connector instance
sinequa=pynequa.Sinequa.from_config(config)
# OR
# you can directly instantiate Sinequa using
sinequa = pynequa.Sinequa(
access_token: config["access_token"],
base_url: config["base_url"],
app_name: config["app_name"],
query_name: config["query_name"],
)
params = QueryParams()
params.search_text = "<your_search_text>"
# other params
# perform a search query operation
results=sinequa.search_query(params)
Feature Roadmap
Implement following REST endpoints to manage requests with Sinequa API.
Search Endpoints:
- search.app
- search.dataset
- search.query
- queryintent
- search.profile
- search.usersettings
- search.preview
- search.queryexport
- search.recentqueries
- search.similardocuments
- search.querylinks
- search.ratings
- search.profile.subtree
- search.alerts
- search.baskets
- search.labels
- serach.savedQueries
- search.suggest
- search.custom
- suggestField
- engine.sql
Indexing Endpoints
- indexing.collection
- indexing.customCollection
- indexing.partition
Operating Task Endpoints
- operation.actionStatus
- operation.collectionStart
- operation.commandStart
- operation.jobStart
- operation.partitionStart
- operation.server
- operation.serverstatus
- operation.taskstatus
General Endpoints
- audit.notify
- admin.config
- dev.plugin
- multi
Development
Check DEVELOPERS GUIDE for details.
Contributing
When contributing to this repository, please first discuss the change you wish to make via issue, email, or any other method with the authors of this repository before making a change.
License
Distributed under the terms of the MIT license,
pynequa
is free and open source software.
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
File details
Details for the file pynequa-0.2.0.tar.gz
.
File metadata
- Download URL: pynequa-0.2.0.tar.gz
- Upload date:
- Size: 10.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9a94649ace7ca14889b49a81e984c10b5b65028cb06dc68678808ec98c8671d |
|
MD5 | 33f26dad702a4b5136c3e68545296a37 |
|
BLAKE2b-256 | 538da1ad8d430f96bf3ae234291f0f75610a2dd847e707017549e9ae34f39db1 |
File details
Details for the file pynequa-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: pynequa-0.2.0-py3-none-any.whl
- Upload date:
- Size: 9.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2581d635b0dbec8291d91d70767edfaca2955bb0a1500b13b58cc8a131926cd1 |
|
MD5 | b488a70655bbdf80fb35c5d13a2ac6fb |
|
BLAKE2b-256 | a8ddc69385911f63d95c44a946d0b2aeb0ced4087dbde2abcc155e994a50faeb |