dmddl 0.2.9__py3-none-any.whl → 0.2.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
dmddl/config/settings.py CHANGED
@@ -1,12 +1,17 @@
1
1
  import dotenv
2
-
2
+ import os
3
+ from pathlib import Path
3
4
 
4
5
  def get_dotenv_path():
6
+ # Проверяем стандартные места поиска .env
5
7
  env_path = dotenv.find_dotenv()
8
+
9
+
6
10
  if not env_path:
7
- with open("dmddl/config/.env", "w"):
8
- pass
9
- env_path = dotenv.find_dotenv()
11
+ env_dir = "config"
12
+ env_path = os.path.join(env_dir, ".env")
13
+ os.makedirs(env_dir, exist_ok=True)
14
+ Path(env_path).touch(exist_ok=True)
10
15
  return env_path
11
16
 
12
17
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: dmddl
3
- Version: 0.2.9
3
+ Version: 0.2.10
4
4
  Summary: cli tool for creating insert script from ddl script
5
5
  License: MIT
6
6
  Author: HoJLter
@@ -0,0 +1,12 @@
1
+ dmddl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ dmddl/cli.py,sha256=22zK7qzhhUyJU6k3QhrD8p9l98gSB5cRtPifTkxLrMY,3168
3
+ dmddl/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ dmddl/config/settings.py,sha256=tzxldPnnVv1Shu32XljVO2VuHza43zr61zFcMM_bxvg,1341
5
+ dmddl/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
+ dmddl/models/llm.py,sha256=-0e9tyMXki4t9R-zKEqcNveFbwKhJmMxOVR7VkhMv7g,851
7
+ dmddl/models/prompt.py,sha256=7cjWC-mQJR32jc0a0GsyoYDZWROB57Yk4Wy4nRsiFoM,1923
8
+ dmddl-0.2.10.dist-info/entry_points.txt,sha256=87tyUAFcB9RYRLhYyxroZxcTho-o3IGXnMM4uMGKdV4,40
9
+ dmddl-0.2.10.dist-info/LICENSE,sha256=C--Tlk2EXyLEz1DSTQFKOo-WblCPTsxPcd8t63NCauw,1090
10
+ dmddl-0.2.10.dist-info/METADATA,sha256=XvY_ZN4yYL_e_rBrpZy5bNZtb67gMe8TJyZgDcMU4yg,935
11
+ dmddl-0.2.10.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
12
+ dmddl-0.2.10.dist-info/RECORD,,
@@ -1,12 +0,0 @@
1
- dmddl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
- dmddl/cli.py,sha256=22zK7qzhhUyJU6k3QhrD8p9l98gSB5cRtPifTkxLrMY,3168
3
- dmddl/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
- dmddl/config/settings.py,sha256=6wNSlm9GCF0OMfTSEgUI67P6JNjlebnnc2_uOO-2F2k,1157
5
- dmddl/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
- dmddl/models/llm.py,sha256=-0e9tyMXki4t9R-zKEqcNveFbwKhJmMxOVR7VkhMv7g,851
7
- dmddl/models/prompt.py,sha256=7cjWC-mQJR32jc0a0GsyoYDZWROB57Yk4Wy4nRsiFoM,1923
8
- dmddl-0.2.9.dist-info/entry_points.txt,sha256=87tyUAFcB9RYRLhYyxroZxcTho-o3IGXnMM4uMGKdV4,40
9
- dmddl-0.2.9.dist-info/LICENSE,sha256=C--Tlk2EXyLEz1DSTQFKOo-WblCPTsxPcd8t63NCauw,1090
10
- dmddl-0.2.9.dist-info/METADATA,sha256=HDGX571p90ciP7EIquI8heOtO6vty-8c32tzDFbvXoo,934
11
- dmddl-0.2.9.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
12
- dmddl-0.2.9.dist-info/RECORD,,
File without changes