How To Install python3-aiorestapi on Fedora 36

In this tutorial we learn how to install python3-aiorestapi in Fedora 36. python3-aiorestapi is Rapid rest resources for aiohttp

Introduction

In this tutorial we learn how to install python3-aiorestapi on Fedora 36.

What is python3-aiorestapi

aiorestapi allows you to quickly create a rest resource in a few steps. It automatically creates the resource routes on the collections or individual items; it’s simply to specify the suffix ‘_collection’ or ‘_item’ on the methods. The serialization/deserialization of results/requests occurs transparently using python dictionaries.

We can use yum or dnf to install python3-aiorestapi on Fedora 36. In this tutorial we discuss both methods but you only need to choose one of method to install python3-aiorestapi.

Install python3-aiorestapi on Fedora 36 Using dnf

Update yum database with dnf using the following command.

sudo dnf makecache --refresh

After updating yum database, We can install python3-aiorestapi using dnf by running the following command:

sudo dnf -y install python3-aiorestapi

Install python3-aiorestapi on Fedora 36 Using yum

Update yum database with yum using the following command.

sudo yum makecache --refresh

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

sudo yum -y install python3-aiorestapi

How To Uninstall python3-aiorestapi on Fedora 36

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

sudo dnf remove python3-aiorestapi

python3-aiorestapi Package Contents on Fedora 36

/usr/lib/python3.10/site-packages/aiorestapi
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info/PKG-INFO
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info/SOURCES.txt
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info/dependency_links.txt
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info/requires.txt
/usr/lib/python3.10/site-packages/aiorestapi-0.1.1-py3.10.egg-info/top_level.txt
/usr/lib/python3.10/site-packages/aiorestapi/__init__.py
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/__init__.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/__init__.cpython-310.pyc
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/routers.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/routers.cpython-310.pyc
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/views.cpython-310.opt-1.pyc
/usr/lib/python3.10/site-packages/aiorestapi/__pycache__/views.cpython-310.pyc
/usr/lib/python3.10/site-packages/aiorestapi/routers.py
/usr/lib/python3.10/site-packages/aiorestapi/views.py
/usr/share/doc/python3-aiorestapi
/usr/share/doc/python3-aiorestapi/README.md

References

Summary

In this tutorial we learn how to install python3-aiorestapi on Fedora 36 using yum and [dnf]((/fedora/36/dnf/).