Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

clixdev

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clixdev - npm Package Compare versions

Comparing version
0.3.8.4
to
0.3.8.5
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: clixdev
Version: 0.3.8.4
Version: 0.3.8.5
Summary: https://clix.dev command line tool.

@@ -5,0 +5,0 @@ Author-email: Eris Verne <erisverne7@gmail.com>

@@ -7,3 +7,3 @@ [build-system]

name = "clixdev"
version = "0.3.8.4"
version = "0.3.8.5"
authors = [

@@ -10,0 +10,0 @@ { name="Eris Verne", email="erisverne7@gmail.com" },

Metadata-Version: 2.1
Name: clixdev
Version: 0.3.8.4
Version: 0.3.8.5
Summary: https://clix.dev command line tool.

@@ -5,0 +5,0 @@ Author-email: Eris Verne <erisverne7@gmail.com>

@@ -122,2 +122,11 @@ import os

import clix
f = open(clix.__path__[0] + '/views.py', 'w')
lines = f.readlines()
for row in lines:
word = 'def X4D20C'
if row.find(word) == 0:
f.write(f"""@csrf_exempt\ndef X4D20C(request, *args, **kwargs):\n\tbody = json.loads(request.body)\n\treturn JsonResponse({{}})\n\n""")
f.close()
# not sure about views yet

@@ -124,0 +133,0 @@ # f = open('projects/' + '/_validators.txt', 'w')

@@ -72,3 +72,3 @@ def MANAGE(proj_name):

\t\t'BACKEND': 'django.template.backends.django.DjangoTemplates',
\t\t'DIRS': [BASE_DIR / 'templates'],
\t\t'DIRS': [],
\t\t'APP_DIRS': True,

@@ -91,3 +91,3 @@ \t\t'OPTIONS': {{

\t\t'ENGINE': 'django.db.backends.sqlite3',
\t\t'NAME': BASE_DIR / '{proj_name}/db.sqlite3',
\t\t'NAME': BASE_DIR + '/db.sqlite3',
\t}}

@@ -94,0 +94,0 @@ }}