Skip to content

Commit 4634980

Browse files
committed
add new web frameworks resource
1 parent 1adbb5f commit 4634980

3 files changed

Lines changed: 19 additions & 1 deletion

File tree

content/pages/04-web-development/01-web-frameworks.markdown

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,12 @@ frameworks, templating engines and
188188
looks at the best use cases for Django and Flask along with what
189189
makes them unique, from an educational and development standpoint.
190190

191+
* [11 new Python web frameworks](https://deepsource.io/blog/new-python-web-frameworks/)
192+
has a quick blurb on several newer frameworks that are still emerging,
193+
such as [Sanic](/sanic.html), [Masonite](https://docs.masoniteproject.com/)
194+
and [Molten](https://moltenframework.com/).
195+
196+
191197
### Web frameworks learning checklist
192198
1. Choose a major Python web framework ([Django](/django.html) or
193199
[Flask](/flask.html) are recommended) and stick with it. When you're just

content/pages/examples/django/django-code-examples.markdown

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,18 @@ Code examples from django-smithy are shown on the following pages:
428428
* [django.db.models TextField](/django-db-models-textfield-examples.html)
429429

430430

431+
### django-sql-explorer
432+
[django-sql-explorer](https://github.com/groveco/django-sql-explorer)
433+
([PyPI page](https://pypi.org/project/django-sql-explorer/0.2/)),
434+
also referred to as "SQL Explorer",
435+
is a code library for the [Django](/django.html) Admin that allows
436+
approved, authenticated users to view and execute direct database SQL
437+
queries. The tool keeps track of executed queries so users can share them
438+
with each other, as well as export results to downloadable formats.
439+
django-sql-explorer is provided as open source under the
440+
[MIT license](https://github.com/groveco/django-sql-explorer/blob/master/LICENSE).
441+
442+
431443
### django-tables2
432444
[django-tables2](https://github.com/jieter/django-tables2)
433445
([projection documentation](https://django-tables2.readthedocs.io/en/latest/)

theme/templates/sponsor.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% if page.sortorder[0:2] == "01" or page.sortorder[0:2] == "02" or page.sortorder[0:2] == "03" or page.sortorder[0:2] == "04" or page.sortorder[0:2] == "05" or page.sortorder[0:2] == "06" %}
1+
{% if page.sortorder[0:2] == "01" or page.sortorder[0:2] == "02" or page.sortorder[0:2] == "03" or page.sortorder[0:2] == "04" or page.sortorder[0:2] == "05" or page.sortorder[0:2] == "06" or page.sortorder[0:2] == "50" %}
22
{% include "sponsor/twilioquest.html" %}
33
{% include "sponsor/carbon.html" %}
44
{% endif %}

0 commit comments

Comments
 (0)