SlideShare a Scribd company logo
Presented by:
Elephants, ibises and a more Pythonic
way to work with databases
July 13, 2022
Marlene Mhangami
2
● Harare, Zimbabwe
● Developer Advocate Voltron Data
● Previous Vice-Chair and Director for
the Python Software Foundation
@marlene_zw
marlenemhangami.com
Marlene Mhangami
3
Art Around
Dublin
post conference exploration
4
MySQL database
- Not as familiar
- Had to switch to
terminal
- Working with specific
data types (e.g
geographic data)
- Not as maintainable
(tests, readability etc)
5
There’s got to be a more
Pythonic way?
6
Ibis
A bird???
7
Ibis
- A Python package that
provides us with a more
pythonic way to work to
databases
- A library for analytical SQL
- Inspired by dplyr
8
Ibis
the idea behind ibis is that we
want lightweight Python code
telling the backend to do the
heavy lifting
Hey! Can you turn
to the right and take
us there
9
- pandas-like
- compiles to sql
(executed efficiently)
* anything you can
write with a SELECT
statement you can
write in ibis
t.groupby(‘region’)
.aggregate(topk=t.funding_rounds.count())
.sort_by(ibis.desc(‘topk’))
.head()
Produces
SQLAlchemy
Expression
<sqlalchemy.sql.select
able.Select object>
SQL
BACKENDS
Ibis produces Expressions or Strings
for SQL backends
SELECT region,
count(founding_rounds) AS topk
FROM companies
GROUP BY region
ORDER BY topk
SQL STRINGS
EXECUTED
Ibis expression
11
Ibis
Elephants are large and your
data can be too
12
Scale up or
down
https://data.smartdublin.ie/dataset/dublin-canvas-public-art
14
Installing Ibis
pip install ibis-framework
import ibis
15
Connecting to database
-switch to jupyter notebook (using vscode with theme)
-import ibis
-connect to database
16
Table columns
Add description...
● access sqlite table
● column names
● pandas-like
17
Query the dataset
Add description...
- 420 artists part of the project
- 5 Councils took part
18
Methods in Ibis
Add description...
-methods available
-table. (hit tab)
-visit ibis-project.org for
docs
19
Displaying the art in a notebook
Add description...
20
Dublin Convention
Center
Find the canvas art closest to us
21
Switching to PostgreSQL
Add description...
- GeoJSON file
- PostGIS for working
with geospatial
geometries
- Data stored in wkb
format
22
Working with GeoPandas
Add description...
- get wkb data
- get corresponding art
titles
- use geopandas to
change wkb to
longitude and latitude
- Create a dataframe
containing titles and
lats and long
- add latitude and
longitude of the
convention center
23
Working with GeoPandas
Add description...
Use Geopandas
explore method on
the dataframe to
visualise
geographic location
of the art
24
‘Rabbits’
25
‘Beckett’
marlene@voltrondata.com
marlene_zw
Contact
READ THE BLOG POST!
Twitter
SOCIAL MEDIA
GENERAL CONTACT
marlenemhangami.com
Thanks

More Related Content

PPTX
Elephants J on the beach.pptx
PDF
Ibis: Scaling the Python Data Experience
PDF
Pandas & Cloudera: Scaling the Python Data Experience
PPTX
PyData NYC 2019
PDF
Ibis: operating the Python data ecosystem at Hadoop scale by Wes McKinney
PDF
PyData: The Next Generation
PDF
Ibis: Seamless Transition Between Pandas and Apache Spark
PDF
Enabling Python to be a Better Big Data Citizen
Elephants J on the beach.pptx
Ibis: Scaling the Python Data Experience
Pandas & Cloudera: Scaling the Python Data Experience
PyData NYC 2019
Ibis: operating the Python data ecosystem at Hadoop scale by Wes McKinney
PyData: The Next Generation
Ibis: Seamless Transition Between Pandas and Apache Spark
Enabling Python to be a Better Big Data Citizen

More from ssuser59b75e (7)

PPTX
PyCon LT .pptx
PPTX
PyCon Italia 2023.pptx
PPTX
PyCon MEA Arrow Slides.pptx
PPTX
Augmented Reality.pptx
PPTX
Transcendance
PPTX
PyCon Colombia.pptx
PPTX
An Introduction to Apache Arrow for Python Programmers.pptx
PyCon LT .pptx
PyCon Italia 2023.pptx
PyCon MEA Arrow Slides.pptx
Augmented Reality.pptx
Transcendance
PyCon Colombia.pptx
An Introduction to Apache Arrow for Python Programmers.pptx
Ad

Recently uploaded (20)

PPTX
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
PPTX
20250228 LYD VKU AI Blended-Learning.pptx
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PPTX
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
PDF
Network Security Unit 5.pdf for BCA BBA.
PDF
Review of recent advances in non-invasive hemoglobin estimation
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PPTX
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
PDF
NewMind AI Monthly Chronicles - July 2025
PDF
Empathic Computing: Creating Shared Understanding
PDF
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
PPTX
Digital-Transformation-Roadmap-for-Companies.pptx
PPTX
Big Data Technologies - Introduction.pptx
PPT
Teaching material agriculture food technology
PDF
Spectral efficient network and resource selection model in 5G networks
PDF
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
PPTX
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
PDF
Approach and Philosophy of On baking technology
PPTX
A Presentation on Artificial Intelligence
PDF
Machine learning based COVID-19 study performance prediction
VMware vSphere Foundation How to Sell Presentation-Ver1.4-2-14-2024.pptx
20250228 LYD VKU AI Blended-Learning.pptx
Building Integrated photovoltaic BIPV_UPV.pdf
KOM of Painting work and Equipment Insulation REV00 update 25-dec.pptx
Network Security Unit 5.pdf for BCA BBA.
Review of recent advances in non-invasive hemoglobin estimation
Reach Out and Touch Someone: Haptics and Empathic Computing
PA Analog/Digital System: The Backbone of Modern Surveillance and Communication
NewMind AI Monthly Chronicles - July 2025
Empathic Computing: Creating Shared Understanding
Build a system with the filesystem maintained by OSTree @ COSCUP 2025
Digital-Transformation-Roadmap-for-Companies.pptx
Big Data Technologies - Introduction.pptx
Teaching material agriculture food technology
Spectral efficient network and resource selection model in 5G networks
Architecting across the Boundaries of two Complex Domains - Healthcare & Tech...
Detection-First SIEM: Rule Types, Dashboards, and Threat-Informed Strategy
Approach and Philosophy of On baking technology
A Presentation on Artificial Intelligence
Machine learning based COVID-19 study performance prediction
Ad

Elephants Ibises and a more Pythonic way to work with databases