How To Install python3-zaqar on Ubuntu 20.04

In this tutorial we learn how to install python3-zaqar on Ubuntu 20.04. python3-zaqar is OpenStack Queueing as a Service - Python 3 libraries OpenStack Queueing as a Service - Python 3 libraries

Introduction

In this tutorial we learn how to install python3-zaqar on Ubuntu 20.04.

What is python3-zaqar

python3-zaqar is:

Zaqar is a multi-tenant cloud messaging service for web developers. It combines the ideas pioneered by Amazon’s SQS product with additional semantics to support event broadcasting.

The service features a fully RESTful API, which developers can use to send messages between various components of their SaaS and mobile applications, by using a variety of communication patterns. Underlying this API is an efficient messaging engine designed with scalability and security in mind.

Other OpenStack components can integrate with Zaqar to surface events to end users and to communicate with guest agents that run in the “over-cloud” layer. Cloud operators can leverage Zaqar to provide equivalents of SQS and SNS to their customers.

This package contains the Python 3 libraries that are part of Zaqar.

Package: python3-zaqar Architecture: all Version: 10.0.0~b3~git2020041014.22c457a5-0ubuntu1 Priority: optional Section: universe/python Source: zaqar Origin: Ubuntu Maintainer: Ubuntu Developers [email protected] Original-Maintainer: PKG OpenStack [email protected] Bugs: https://bugs.launchpad.net/ubuntu/+filebug Installed-Size: 2208 Depends: alembic (>= 0.8.10), python3-alembic (>= 0.8.10), python3-autobahn (>= 0.17.1), python3-babel (>= 2.3.4), python3-falcon (>= 1.1.0), python3-futurist (>= 1.2.0), python3-iso8601 (>= 0.1.11), python3-jsonschema (>= 2.6.0), python3-keystoneclient (>= 1:1.6.0), python3-keystonemiddleware (>= 4.17.0), python3-memcache (>= 1.56), python3-msgpack (>= 0.5.1), python3-oslo.cache (>= 1.26.0), python3-oslo.config (>= 1:5.2.0), python3-oslo.context (>= 1:2.19.2), python3-oslo.db (>= 4.27.0), python3-oslo.i18n (>= 3.15.3), python3-oslo.log (>= 3.36.0), python3-oslo.messaging (>= 5.29.0), python3-oslo.policy (>= 1.30.0), python3-oslo.reports (>= 1.18.0), python3-oslo.serialization (>= 2.18.0), python3-oslo.upgradecheck (>= 0.1.1), python3-oslo.utils (>= 3.33.0), python3-osprofiler (>= 1.4.0), python3-pbr (>= 2.0.0), python3-pymongo (>= 3.0.2), python3-requests (>= 2.14.2), python3-six (>= 1.10.0), python3-sqlalchemy (>= 1.0.10), python3-stevedore (>= 1:1.20.0), python3-webob (>= 1:1.7.1), python3:any Filename: pool/universe/z/zaqar/python3-zaqar_10.0.0~b3~git2020041014.22c457a5-0ubuntu1_all.deb Size: 219632 MD5sum: 91ec7d9aa9fc8cd6558264b3e63045c3 SHA1: a3ed3c61d89a445876358802306a1cf0b5e435a4 SHA256: 4402558b3aa8b2635cc01b9a7e0c9ef8ada0c67201e6891c2d6825b2b4e19457 Homepage: https://github.com/openstack/zaqar/ Description-en: OpenStack Queueing as a Service - Python 3 libraries Zaqar is a multi-tenant cloud messaging service for web developers. It combines the ideas pioneered by Amazon’s SQS product with additional semantics to support event broadcasting.

The service features a fully RESTful API, which developers can use to send messages between various components of their SaaS and mobile applications, by using a variety of communication patterns. Underlying this API is an efficient messaging engine designed with scalability and security in mind.

Other OpenStack components can integrate with Zaqar to surface events to end users and to communicate with guest agents that run in the “over-cloud” layer. Cloud operators can leverage Zaqar to provide equivalents of SQS and SNS to their customers.

This package contains the Python 3 libraries that are part of Zaqar.

There are three methods to install python3-zaqar on Ubuntu 20.04. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install python3-zaqar Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install python3-zaqar using apt-get by running the following command:

sudo apt-get -y install python3-zaqar

Install python3-zaqar Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install python3-zaqar using apt by running the following command:

sudo apt -y install python3-zaqar

Install python3-zaqar Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Ubuntu. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install python3-zaqar using aptitude by running the following command:

sudo aptitude -y install python3-zaqar

How To Uninstall python3-zaqar on Ubuntu 20.04

To uninstall only the python3-zaqar package we can use the following command:

sudo apt-get remove python3-zaqar

Uninstall python3-zaqar And Its Dependencies

To uninstall python3-zaqar and its dependencies that are no longer needed by Ubuntu 20.04, we can use the command below:

sudo apt-get -y autoremove python3-zaqar

Remove python3-zaqar Configurations and Data

To remove python3-zaqar configuration and data from Ubuntu 20.04 we can use the following command:

sudo apt-get -y purge python3-zaqar

Remove python3-zaqar configuration, data, and all of its dependencies

We can use the following command to remove python3-zaqar configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge python3-zaqar

References

Summary

In this tutorial we learn how to install python3-zaqar package on Ubuntu 20.04 using different package management tools: apt, apt-get and aptitude.