Skip to main content

polyanalyst6api is a PolyAnalyst API client for Python.

Project description

Telegram Group PyPI package Downloads Supported Python versions MIT License

polyanalyst6api is a simple and easy to use client library for the PolyAnalyst API.

This package provides wrappers for PolyAnalyst Analytical Client, Scheduler and Drive. Using it you can execute nodes, view datasets, run tasks, download/upload files and so on.

Installation

Python 3.7+ is required. Install and upgrade polyanalyst6api with these commands:

pip install polyanalyst6api
pip install --upgrade polyanalyst6api

Documentation

See API Reference for the client library methods.

Refer to PolyAnalyst User Manual at Application Programming Interfaces > Version 01 for REST API specification.

Usage

Import an api client and log in to PolyAnalyst server

from polyanalyst6api import API

with API(POLYANALIST_URL, USERNAME, PASSWORD) as api:
    # making a request to PolyAnalyst endpoint that require authorization
    print(api.get_server_info())

Working with project

Instantiate project wrapper by calling with existing project ID:

prj = api.project(PROJECT_UUID)

Set Python node code using parent Parameters node.

prj.parameters('Parameters (1)').set(
    'Dataset/Python',
    {'Script': 'result = pandas.DataFrame([{"val": 42}])'}
)

Execute Python node and wait to complete execution

prj.execute('Python', wait=True)

Check node results:

ds = prj.dataset('Python').preview()
assert ds[0]['val'] == 42

Save project:

prj.save()

Downloading file from user home folder using PA Drive API

content = api.drive.download_file('README.txt')
with open(r'C:\README.txt', mode='wb+') as local_file:
    local_file.write(content)

See polyanalyst6api-python/examples for more complex examples.

License

This project is licensed under the MIT License - see the LICENSE file for details

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

polyanalyst6api-0.35.1.tar.gz (17.5 kB view details)

Uploaded Source

Built Distribution

polyanalyst6api-0.35.1-py3-none-any.whl (19.4 kB view details)

Uploaded Python 3

File details

Details for the file polyanalyst6api-0.35.1.tar.gz.

File metadata

  • Download URL: polyanalyst6api-0.35.1.tar.gz
  • Upload date:
  • Size: 17.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1025-azure

File hashes

Hashes for polyanalyst6api-0.35.1.tar.gz
Algorithm Hash digest
SHA256 3a5e8ab253b5358f3812afb28472e4507bf20ccfc419e3e4a78ac4780c93f197
MD5 c93ee07702b762ebdbed8bf1f0dcfc57
BLAKE2b-256 62170e0468950dbabdc8e801a0a0f6491f12013d9d2c12057d7737d1c4d3ea38

See more details on using hashes here.

File details

Details for the file polyanalyst6api-0.35.1-py3-none-any.whl.

File metadata

  • Download URL: polyanalyst6api-0.35.1-py3-none-any.whl
  • Upload date:
  • Size: 19.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1025-azure

File hashes

Hashes for polyanalyst6api-0.35.1-py3-none-any.whl
Algorithm Hash digest
SHA256 b7ac57ec7168f5c24900d2c0c15e982a282e175ca935f7b85a26a739ba80a3da
MD5 9a835fdfa5ff7f7db25d48253aa245a0
BLAKE2b-256 9542fa38da3610bfbcb1ae60f2b974838432641d7b8e9a53c04709f1ecfdc5d1

See more details on using hashes here.

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