PyCon Limerick 2020


Date
2020-02-29 3:30 PM

I presented a talk at Python Conference Limerick 2020 entitled «Trees for structure and support in Python».

Abstract

Tree data structures are pervasive in computing, they enable us to organise information in a natural hierarchical fashion that can be very effective, as well as being convenient and intuitive. Python does not provide a built-in tree object for general use, but it’s not difficult create trees in Python. This talk presents some of the ways of constructing trees in Python, and examines a selection of some of the many applications of trees, including their uses in GUIs, data management, spatial partitioning, and decision analysis. We look at various interesting tree modules and applications in the wider Python ecosystem, and beyond. Finally, the talk introduces the presenter’s own Python package «vntree», examines some of its features, and demonstrates how it can be used to provide structure and support for various applications.

  1. Presentation slides
  2. Github repository with presentation resources including example source code
  3. vntree respository on GitHub
  4. PyCon Limerick 2020 website with conference details, including programme and schedule
  5. My presentation resources on GitHub, including source code and sides