Skip to main content

The Assistant python library

Project description

Assistant library

This Python 3.x library is used to write programs that can interact with the Assistant.

Assistant : https://gitlab.com/goassistant/assistant

Pypi webpage : https://pypi.org/project/assistant-lib

Changelog

TODO

License

The license choosen for this project it the LGPLv3. It was choosen instead of the GPLv3 because :

The license allows developers and companies to use and integrate a software component released under the LGPL into their own (even proprietary) software without being required by the terms of a strong copyleft license to release the source code of their own components. However, any developer who modifies an LGPL-covered component is required to make their modified version available under the same LGPL license.

See Wikipedia for more informations.

Installation

pip3 install assistant-lib

Usage

Here is a simple test :

$ python3
Python 3.7.4 (default, Jul 11 2019, 10:43:21) 
[GCC 8.3.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> from assistant_lib import assistant
>>> ac = assistant.AssistantClient()
Output redirected to the file : 'assistant.log'
>>> ac.get_hostname()
'ambre'

Logging

When you initialise the assistant client with:

ac = assistant.AssistantClient()

It will also configure the python logging engine. You will just have to use the standard logging functions :

logging.debug("A debug message")
logging.info("An info message")
logging.warning("A warning message")
logging.error("An error message")

By default, the logs are written in a log file named assistant.log in the debug log level. The logs are written in json format to be ready to be used by logging centralization tools as Elastic or Datalog.

If you want to change this behavious, just set the following environement variables:

  • LOG_FILE : a path to a file
  • LOG_LEVEL : a log level : DEBUG, INFO, WARNING, ERROR

Examples with an application foobar.py :

$ LOG_LEVEL=DEBUG LOG_FILE=/var/log/foobar.log /usr/bin/python3 foobar.py
$ LOG_LEVEL=WARNING /usr/bin/python3 foobar.py

If you don't want to log in a file and prefer to log in the console, use this environment variable :

  • LOG_OUTPUT : TTY to log in console, anything else to log in a file.

Example :

$ LOG_OUTPUT=TTY /usr/bin/python3 foobar.py

The log displayed in the console are no more in json format.

Logging limitations

The json logging formatter does not handle the old python way to include variables in strings like this :

a = 8
logging.info("The number 8 will not be display : %d" % a)

You must use the new way :

a = 8
logging.info("The number 8 will be display : {0}".format(a))

Local tests

If you plan to make some upgrades and test them, here is how to process :

  • Edit your changes in the code
  • Run the clean and build command:
make
  • Check the dist/ folder
  • Install the builded package from the dist/ folder:
pip3 install dist/assistant_lib-<version>.tar.gz

Releasing

The version number is automatically get from git thanks to the setuptools_scm library. So you have no version to set in the code.

To create a new release, just create a tag and push it to Gitlab. The CI/CD pipeline will build a release and publish it to Pypi. This is just magic ;). You can check the .gitlab-ci.yml file to understand how it works.

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

assistant_lib-0.14.tar.gz (11.9 kB view details)

Uploaded Source

Built Distribution

assistant_lib-0.14-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

Details for the file assistant_lib-0.14.tar.gz.

File metadata

  • Download URL: assistant_lib-0.14.tar.gz
  • Upload date:
  • Size: 11.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for assistant_lib-0.14.tar.gz
Algorithm Hash digest
SHA256 d41c00c8d23dcf9e5d431e712e847bff4ab6ca6ca24ba0916d2ca5d97f658bd1
MD5 8b7d483e38510c4cf22365d654618fc8
BLAKE2b-256 8aa25bce70e5124388ba5a4ce74579d40f0e7b4a312481e8fcdcd73b4831db54

See more details on using hashes here.

File details

Details for the file assistant_lib-0.14-py3-none-any.whl.

File metadata

  • Download URL: assistant_lib-0.14-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.8.1

File hashes

Hashes for assistant_lib-0.14-py3-none-any.whl
Algorithm Hash digest
SHA256 3f3e664563096322ac4b898d629b59aa1c3d23ace4a747f5830074908ac14007
MD5 bfbefff0bcf770a83fa5eb2367cd151c
BLAKE2b-256 126ebc7d4cb3ffa24fd96e6c18ab441d8f7dde6aeaec3f9a6e7b24b9e22ef2b6

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