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

nlxcaptcha

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nlxcaptcha - pypi Package Compare versions

Comparing version
1.6
to
1.7
+1
-1
nlxcaptcha.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: nlxcaptcha
Version: 1.6
Version: 1.7
Summary: Tell "iPad Kids" and "Non-iPad Kids" apart using OpenAI API in this easy-to-integrate captcha.

@@ -5,0 +5,0 @@ Home-page: https://github.com/nlckysolutions/NLX-Captcha

@@ -13,2 +13,3 @@ import tkinter as tk

self.device = self.detect_device()
self.result = None

@@ -78,8 +79,10 @@ def detect_device(self):

self.result = content # Set the result here
self.loading.stop()
self.loading.pack_forget()
tk.messagebox.showinfo("Verification", "Verification Successful")
self.window.destroy()
self.result = content
def verify(difficulty, openaiapikey):

@@ -89,5 +92,6 @@ captcha = NLXCaptcha(api_key=openaiapikey, difficulty=difficulty)

# Wait for the result to be set before returning it
captcha.window.mainloop()
return captcha.result # Return only the result
# Ensure that the result is set before returning it
if captcha.result is None:
captcha.result = "0" # Default to "0" if no result was set
return captcha.result
Metadata-Version: 2.1
Name: nlxcaptcha
Version: 1.6
Version: 1.7
Summary: Tell "iPad Kids" and "Non-iPad Kids" apart using OpenAI API in this easy-to-integrate captcha.

@@ -5,0 +5,0 @@ Home-page: https://github.com/nlckysolutions/NLX-Captcha

@@ -5,3 +5,3 @@ from setuptools import setup, find_packages

name='nlxcaptcha',
version='1.6',
version='1.7',
packages=find_packages(),

@@ -8,0 +8,0 @@ install_requires=[