Re: Where to include libraries I write in a django app

2023-03-14 Thread Scott McKissock
│ └── utility2.py └── views.py > ​ > > If the utility grows and becomes useful across a range of apps and > deployments you might then consider breaking it out into its own python > package that could be installable independently of the original Django app. > > Brian > > > On Saturd

Where to include libraries I write in a django app

2023-03-11 Thread Scott McKissock
Django/Python noob question. What is the convention for including utility packages/modules within a django app? I have a bit of code that will only be used in a single django app, and I'd like to write tests for it and use it within the app. Should I just put it in a directory/package in the