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

secretInspector

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

secretInspector - pypi Package Compare versions

Comparing version
0.1.0
to
0.0.2
LICENSE
+4
def hello_inspector():
return "Hello Inspector check the pwned!!!!"
+2
-1
Metadata-Version: 2.1
Name: secretInspector
Version: 0.1.0
Version: 0.0.2
Summary: very interesting secret inspection module

@@ -12,1 +12,2 @@ Author: jake

Description-Content-Type: text/markdown
License-File: LICENSE
Metadata-Version: 2.1
Name: secretInspector
Version: 0.1.0
Version: 0.0.2
Summary: very interesting secret inspection module

@@ -12,1 +12,2 @@ Author: jake

Description-Content-Type: text/markdown
License-File: LICENSE

@@ -0,4 +1,7 @@

LICENSE
README.md
pyproject.toml
setup.py
secretInspector/__init__.py
secretInspector/inspector.py
secretInspector.egg-info/PKG-INFO

@@ -5,0 +8,0 @@ secretInspector.egg-info/SOURCES.txt

@@ -1,1 +0,1 @@

secretInspector

@@ -13,5 +13,5 @@ # setup.py

setup(
name="secretInspector", # Package name
version="0.1.0", # Initial version
packages=find_packages(), # Include all Python packages
name="secretInspector",
version="0.0.2",
packages=find_packages(),
cmdclass={

@@ -21,4 +21,4 @@ 'egg_info': RunEggInfoCommand

description="very interesting secret inspection module",
long_description=open('README.md').read(), # Optional: read from README.md
long_description_content_type="text/markdown", # Optional: Specify the format of README
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
author="jake",

@@ -31,4 +31,4 @@ author_email="jake46@example.com",

],
python_requires='>=3.6', # Specify Python version requirements
python_requires='>=3.6',
)