I use jupyter notebook with python to do database queries using the db.py library.
For example, it might look like (inside my code cell):
df = db.query("""
SELECT a,b
FROM c
ORDER BY d DESC
""")
What I would like to have is syntax highlighting of the SQL inside my string. Is that possible? A suggestion on how to build it would also help!