Re: Abstraction level at which to create SQLAlchemy ORM object

2022-02-11 Thread Loris Bennett
Hi Cameron, Cameron Simpson writes: > On 10Feb2022 14:14, Loris Bennett wrote: >>I am writing a command line program which will modify entries in a >>database and am trying out SQLAlchemy. >> >>A typical command might look like >> >> um --operation add --uid ada --gid coders --lang en >> >>Par

Re: Abstraction level at which to create SQLAlchemy ORM object

2022-02-10 Thread Cameron Simpson
On 10Feb2022 14:14, Loris Bennett wrote: >I am writing a command line program which will modify entries in a >database and am trying out SQLAlchemy. > >A typical command might look like > > um --operation add --uid ada --gid coders --lang en > >Parsing the arguments I get, ignoring the operation,

Abstraction level at which to create SQLAlchemy ORM object

2022-02-10 Thread Loris Bennett
Hi, I am writing a command line program which will modify entries in a database and am trying out SQLAlchemy. A typical command might look like um --operation add --uid ada --gid coders --lang en Parsing the arguments I get, ignoring the operation, a dict {uid: "ada", gid: "coders", lang: