Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

zeclient

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zeclient

Python APIs for ZE Web Services

  • 1.1.8
  • PyPI
  • Socket score

Maintainers
1

ZE Python Client

The ZE Python Client provides a unified module - ZemaClient for retrieving data from ZEMA web services.

Prerequisites

Python 3.5 or above and the following packages

  • requests
  • lxml
  • pandas
  • zeep
  • dicttoxml

The packages will be automatically installed during the installation.

Installation

pip install zeclient

Usage

  from zeclient.zema_client import ZemaClient
    
  # ZEMA Data Direct server URL
  datadirect_url = "http://host.company.com/datadirect";
    
  # Create ZEMA client instance and start a session using using username and password
  client = ZemaClient(datadirect_url, 'user.name', 'password', 'Client')

  or
  
  # Create ZEMA client instance using ZEMA API token or OAuth ID token
  client = ZemaClient(datadirect_url, token)

  ZEMA API Token is created or renewed from DataDirect. Please refer to API Token Generation Guidelines in ZEMA Data Direct Web Services documentation.  
  
  # Get profile data
  result = client.get_profile('user.name', 'profile group', 'profile name')

Support

Please report bugs to support@ze.com

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