Using Koios with Python

KOIOS is an excellent open-source tool built by the Cardano Community which is used for querying the blockchain for on-chain data, enabling developers to make various things. But how can an average or even beginner developer begin to use it in their projects and what SDKs are out there?

In this section, we will go over various examples and use cases for KOIOS and introduce a python based SDK for interfacing with the KOIOS API. Read more about koios_python here.

To follow along with this module let's go over some of the requirements you may need:

Koios_Python Set up and installation

Let's get started by installing koios_python. Open up your computer command line interface or shell terminal, and enter the following line below.

pip install koios_python

Now let's go ahead and make sure we are updated to the latest version of koios_python which can be found here.

pip install koios_python -U

Okay, now that we have finished with the installation process we can get started with our koios_python Jupyter Notebook that I have created for this module.

Head over to the GitHub repo I have created and clone the notebook into a folder or your desktop on your computer.

git clone https://github.com/AstroWa3l/koios-python-notebook.git

Last updated