Socket
Socket
Sign inDemoInstall

sysnet-dict

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sysnet-dict

REST API of the SYSNET managed dictionaries (code lists) system.


Maintainers
1

dict

REST API of the SYSNET managed dictionaries (code lists) system. Primarily designed for the CITES Registry.

This Python package is automatically generated by the Swagger Codegen project:

  • API version: 1.0.0
  • Package version: 1.0.0
  • Build package: io.swagger.codegen.v3.generators.python.PythonClientCodegen

Requirements.

Python 2.7 and 3.4+

Installation & Usage

pip install

If the python package is hosted on Github, you can install directly from Github

pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git

(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)

Then import the package:

import dict

Setuptools

Install via Setuptools.

python setup.py install --user

(or sudo python setup.py install to install the package for all users)

Then import the package:

import dict

Getting Started

Please follow the installation procedure and then run the following:

from __future__ import print_function
import time
import dict
from dict.rest import ApiException
from pprint import pprint

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier
key = 'key_example'  # str | Descriptor key or alternate key
active = True  # bool | activate/deactivate descriptor

try:
    # activates/deactivates the descriptor by key
    api_response = api_instance.activate_descriptor(dictionary, key, active)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->activate_descriptor: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier
body = dict.Descriptor()  # Descriptor | Descriptor to add (optional)

try:
    # adds an descriptor
    api_instance.add_descriptor(dictionary, body=body)
except ApiException as e:
    print("Exception when calling AdminsApi->add_descriptor: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier
key = 'key_example'  # str | Descriptor key or alternate key

try:
    # removes a descriptor
    api_response = api_instance.delete_descriptor(dictionary, key)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->delete_descriptor: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))

try:
    # exports all descriptors from the system
    api_response = api_instance.export_all()
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->export_all: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier

try:
    # exports all descriptors from specifies dictionary
    api_response = api_instance.export_dictionary(dictionary)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->export_dictionary: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
body = [dict.Descriptor()]  # list[Descriptor] | Array of descriptors to import (optional)
replace = True  # bool | replaces whole database (optional)

try:
    # imports descriptors of several directories
    api_response = api_instance.import_descriptors(body=body, replace=replace)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->import_descriptors: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier
body = [dict.Descriptor()]  # list[Descriptor] | Array of descriptors to import (optional)
replace = True  # bool | replaces existing dictionary (optional)

try:
    # imports a dictionary
    api_response = api_instance.import_dictionary(dictionary, body=body, replace=replace)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->import_dictionary: %s\n" % e)

# Configure API key authorization: apiKey
configuration = dict.Configuration()
configuration.api_key['X-API-KEY'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['X-API-KEY'] = 'Bearer'

# create an instance of the API class
api_instance = dict.AdminsApi(dict.ApiClient(configuration))
dictionary = 'dictionary_example'  # str | Dictionary identifier
key = 'key_example'  # str | Descriptor key or alternate key
body = dict.Descriptor()  # Descriptor | Descriptor to replace (optional)

try:
    # replaces a descriptor
    api_response = api_instance.put_descriptor(dictionary, key, body=body)
    pprint(api_response)
except ApiException as e:
    print("Exception when calling AdminsApi->put_descriptor: %s\n" % e)

Documentation for API Endpoints

All URIs are relative to https://virtserver.swaggerhub.com/SYSNET/dictionary/1.0.0

ClassMethodHTTP requestDescription
AdminsApiactivate_descriptorGET /{dictionary}/{key}/activateactivates/deactivates the descriptor by key
AdminsApiadd_descriptorPOST /{dictionary}adds an descriptor
AdminsApidelete_descriptorDELETE /{dictionary}/{key}removes a descriptor
AdminsApiexport_allGET /exportexports all descriptors from the system
AdminsApiexport_dictionaryGET /{dictionary}/exportexports all descriptors from specifies dictionary
AdminsApiimport_descriptorsPOST /importimports descriptors of several directories
AdminsApiimport_dictionaryPOST /{dictionary}/importimports a dictionary
AdminsApiput_descriptorPUT /{dictionary}/{key}replaces a descriptor
DevelopersApiinfo_apiGET /infogets service info
PublicApiget_descriptorGET /{dictionary}/{key}gets a descriptor by key
PublicApisearch_dictionaryGET /{dictionary}searches dictionary (autocomplete)

Documentation For Models

Documentation For Authorization

apiKey

  • Type: API key
  • API key parameter name: X-API-KEY
  • Location: HTTP header

Author

info@sysnet.cz

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc