Saturday, June 19, 2021

Talk Python to Me: #321: HTMX - Clean, Dynamic HTML Pages

Have you wanted to add more interactivity and liveness to your web application? If you built it using Flask, Django, or some other Python web framework, that thought probably didn't fill you with joy. Because it might mean that you need to change a bunch of code and rewrite a significant bit of your app using a full-on front-end framework like Vue.js or React.js. <br/> <br/> In this episode, we meet Carson from Big Sky Software. He's the creator of HTMX. This front-end JavaScript library let's you leverage the server side aspects of your Python web app and add amazing interactivity but keep the logic on the server, near the database, and implemented in Python. <br/> <br/> You're going to love it.<br/> <br/> <strong>Links from the show</strong><br/> <br/> <div><b>HTMX</b>: <a href="https://htmx.org" target="_blank" rel="noopener">htmx.org</a><br/> <b>HTMX on Twitter</b>: <a href="https://twitter.com/htmx_org" target="_blank" rel="noopener">@htmx_org</a><br/> <br/> <b>Essays</b>: <a href="https://htmx.org/talk/" target="_blank" rel="noopener">htmx.org/talk</a><br/> <br/> <b>Examples</b>: <a href="https://ift.tt/3xyjhg3" target="_blank" rel="noopener">htmx.org/examples</a><br/> <b>Active Search</b>: <a href="https://ift.tt/3wLChrx" target="_blank" rel="noopener">htmx.org/examples/active-search</a><br/> <b>Click to edit</b>: <a href="https://ift.tt/3wIwumE" target="_blank" rel="noopener">htmx.org/examples/click-to-edit</a><br/> <b>Infinite scroll</b>: <a href="https://ift.tt/3vGsHF5" target="_blank" rel="noopener">htmx.org/examples/infinite-scroll</a><br/> <br/> <b>YouTube Live Stream</b>: <a href="https://www.youtube.com/watch?v=4wjqsPtj2QY" target="_blank" rel="noopener">youtube.com</a><br/> <b>Episode transcripts</b>: <a href="/episodes/transcript/321/htmx-clean-dynamic-html-pages" target="_blank" rel="noopener">talkpython.fm</a><br/></div><br/> <strong>Sponsors</strong><br/> <br/> <a href='https://ift.tt/2AndcLj Error Monitoring, Code TALKPYTHON</a><br> <a href='https://ift.tt/3iZLOaB> <a href='https://ift.tt/3vjihuL> <a href='https://ift.tt/2PVc9qH Python Training</a>

from Planet Python
via read more

No comments:

Post a Comment

TestDriven.io: Working with Static and Media Files in Django

This article looks at how to work with static and media files in a Django project, locally and in production. from Planet Python via read...