Run your ORM code online with DryORM / ORM /

Introduction

How often do you find yourself wanting to test something quickly with the Django ORM? Possibly some relationship, or a query? How often have you wondered how many queries some queryset or block executes?

If you’re anything like me, you either have some sandbox app in a dummy project that you use as a container for testing; or you create random throw-away projects, with the overhead of setting up the models, generating the migrations, filling the data, prepping some functions to run, running them in the shell and/or via some view with Django Debug Toolbar loaded.

This rings true even more to those of us that help folks using Django daily on different platforms. We need a way to iterate and quickly run on code shared by others. For that reason, I created DryORM.

DryORM is a playground that allows you to setup django models and run queries against them fairly quickly, all the while showing you the output and the queries that were generated during the execution. You do not need to setup a project and you do not need to login; It's very quick and simple. Here are some existing snippets that you can load and run:

I hope you like it and if you'd like to talk about it further, you can reach out to me on the forums or on discord

You can also toss is a star on GitHub and spread the word if you're feeling generous!

Features

additionally,

Supported Dependencies