16. Miscellaneous Features

16.1. Favorites

Add any Agora object (exams, series, datasets, folders) to the favorites list for fast access.

../../../_images/favorites.gif

16.2. Trash

Deleted data is moved to the trash folder, from where it can be restored during 30 days. After that it will be irrevocably deleted.

../../../_images/trash.gif

16.3. Python connector

Use the Python gtagora-connector library to interact with Agora from within your scripts. The library is open source and available on Github and Pip. It’s a Python 3.6+ library.

# create a virtual environment
python -m venv env

# install the python library
pip install gtagora-connector
from gtagora.agora import Agora

agora = Agora.create('https://agora.exmaple.com', user='admin', password='gtagora')
root_folder = agora.get_root_folder()

for f in root_folder.get_folders():
  print(f" - {f.name}")