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

py416

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

py416 - pypi Package Compare versions

Comparing version
0.57
to
0.58
+3
-5
PKG-INFO
Metadata-Version: 2.1
Name: py416
Version: 0.57
Version: 0.58
Summary: don't question my methods

@@ -514,3 +514,3 @@ Author-email: Ezio416 <ezezio416@gmail.com>

Classifier: Operating System :: OS Independent
Requires-Python: <3.11,>=3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown

@@ -539,4 +539,2 @@ License-File: LICENSE

This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8, 3.9, and 3.10. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9) or match (3.10).
Currently not supported on Python 3.11. It's too new and not all dependencies have been updated for it.
This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8-3.11. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9), match (3.10), or toml (3.11).

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

name = "py416"
version = "0.57"
version = "0.58"
authors = [

@@ -15,3 +15,3 @@ { name="Ezio416", email="ezezio416@gmail.com" },

license = { file="LICENSE" }
requires-python = ">=3.8,<3.11"
requires-python = ">=3.8"
classifiers = [

@@ -23,4 +23,4 @@ "Programming Language :: Python :: 3",

dependencies = [
"py7zr >= 0.20.0",
"py-cpuinfo >= 8.0.0",
"py7zr >= 0.20.2",
"py-cpuinfo >= 9.0.0",
"send2trash >= 1.8.0"

@@ -27,0 +27,0 @@ ]

@@ -21,4 +21,2 @@ # py416

This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8, 3.9, and 3.10. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9) or match (3.10).
Currently not supported on Python 3.11. It's too new and not all dependencies have been updated for it.
This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8-3.11. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9), match (3.10), or toml (3.11).
Metadata-Version: 2.1
Name: py416
Version: 0.57
Version: 0.58
Summary: don't question my methods

@@ -514,3 +514,3 @@ Author-email: Ezio416 <ezezio416@gmail.com>

Classifier: Operating System :: OS Independent
Requires-Python: <3.11,>=3.8
Requires-Python: >=3.8
Description-Content-Type: text/markdown

@@ -539,4 +539,2 @@ License-File: LICENSE

This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8, 3.9, and 3.10. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9) or match (3.10).
Currently not supported on Python 3.11. It's too new and not all dependencies have been updated for it.
This is built in Python 3.8 because it's the latest version available on Windows 8, which is required for my work. This is automatically tested on macOS, Ubuntu, and Windows with Python versions 3.8-3.11. I have no plans to test on older versions, nor to add new features that don't work in 3.8, such as dict union operators (3.9), match (3.10), or toml (3.11).

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

py7zr>=0.20.0
py-cpuinfo>=8.0.0
py7zr>=0.20.2
py-cpuinfo>=9.0.0
send2trash>=1.8.0

@@ -5,4 +5,4 @@ '''

Created: 2022-08-15
Updated: 2022-11-21
Version: 0.57
Updated: 2022-12-17
Version: 0.58

@@ -12,3 +12,3 @@ A collection of various functions

from .general import *
__version__ = 0, 57
__version__ = 0, 58
v = __version__

@@ -358,7 +358,7 @@ '''

- all retrieved items
`iterable` itself if not a list or tuple
- if `iterable` is not actually iterable, returns a tuple with just the item
'''
iterables = (list, tuple)
if type(iterable) not in iterables:
return iterable
return iterable,
values = []

@@ -365,0 +365,0 @@ for item in iterable: