You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP →
Socket
Book a DemoSign in
Socket

ldjango

Package Overview
Dependencies
Maintainers
1
Versions
81
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ldjango - pypi Package Compare versions

Comparing version
7.8
to
7.9
+1
-1
ldjango.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: ldjango
Version: 7.8
Version: 7.9
Summary: CLI tool for creating Django projects with a predefined structure.

@@ -5,0 +5,0 @@ Author: Liaranda

@@ -12,3 +12,3 @@ import os

version = '7.8'
version = '7.9'

@@ -15,0 +15,0 @@ # Initialize colorama

@@ -107,3 +107,3 @@ import os

end_bracket_index = content.find(']', content.find(installed_apps_pattern))
new_apps = '\n ' + '\n '.join([f"'apps.{app_name}'" for app_name in app_names])
new_apps = '\n ' + '\n '.join([f"'apps.{app_name}'," for app_name in app_names])
updated_content = content[:end_bracket_index].rstrip() + new_apps + '\n]' + content[end_bracket_index+1:]

@@ -432,3 +432,3 @@ return updated_content.replace(",,", ",")

end_index = settings_content.find("\n", end_index)
settings_content = settings_content[:start_index] + "DATABASES = {\n 'default': env.db(),\n}" + settings_content[end_index:]
settings_content = settings_content[:start_index] + "DATABASES = {\n 'default': env.db(),\n" + settings_content[end_index:]

@@ -435,0 +435,0 @@ with open(settings_path, 'w') as settings_file:

Metadata-Version: 2.1
Name: ldjango
Version: 7.8
Version: 7.9
Summary: CLI tool for creating Django projects with a predefined structure.

@@ -5,0 +5,0 @@ Author: Liaranda