Re: Best Practice Virtual Environment

2024-10-06 Thread transreductionist via Python-list
byproduct.toml On Sun, Oct 6, 2024, 13:30 transreductionist wrote: > This is how we handle this problem at a large organization. > > In the repository there are a number of build scripts. For convenience we > use poetry (poetry.toml) to manage the virtual environment. A > py

Re: Best Practice Virtual Environment

2024-10-06 Thread transreductionist via Python-list
This is how we handle this problem at a large organization. In the repository there are a number of build scripts. For convenience we use poetry (poetry.toml) to manage the virtual environment. A pyproduct.toml is used to define dependencies, how tests are run, the linter config, etc. So there a

Re: Organizing modules and their code

2023-02-04 Thread transreductionist
or me, I would rather walk into a grocery store where the bananas, apples, and oranges are separated in to their own bins, instead of one common crate. On Friday, February 3, 2023 at 4:18:57 PM UTC-5, transreductionist wrote: > Here is the situation. There is a top-level module (see desig

Re: Organizing modules and their code

2023-02-04 Thread transreductionist
On Friday, February 3, 2023 at 5:31:56 PM UTC-5, Thomas Passin wrote: > On 2/3/2023 4:18 PM, transreductionist wrote: > > Here is the situation. There is a top-level module (see designs below) > > containing code, that as the name suggests, manages an ETL pipeline. A > >

Organizing modules and their code

2023-02-03 Thread transreductionist
Here is the situation. There is a top-level module (see designs below) containing code, that as the name suggests, manages an ETL pipeline. A directory is created called etl_helpers that organizes several modules responsible for making up the pipeline. The discussion concerns the Python languag