#!/usr/bin/env python3
# autopkgtest check: Check whether awkward module is importable
# and does basic tasks
# Author: Sascha Steinbiss <satta@debian.org>

import awkward 

array = awkward.Array([[{"x": 1.1, "y": [1]}, {"x": 2.2, "y": [1, 2]}, {"x": 3.3, "y": [1, 2, 3]}], [], [{"x": 4.4, "y": [1, 2, 3, 4]}, {"x": 5.5, "y": [1, 2, 3, 4, 5]}]])

import numpy as np

output = np.square(array["y", ..., 1:])
