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.55
to
0.56
+3
-1
PKG-INFO
Metadata-Version: 2.1
Name: py416
Version: 0.55
Version: 0.56
Summary: don't question my methods

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

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.

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

name = "py416"
version = "0.55"
version = "0.56"
authors = [

@@ -10,0 +10,0 @@ { name="Ezio416", email="ezezio416@gmail.com" },

@@ -21,2 +21,4 @@ # 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).
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.
Metadata-Version: 2.1
Name: py416
Version: 0.55
Version: 0.56
Summary: don't question my methods

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

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.

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

Created: 2022-08-15
Updated: 2022-11-11
Version: 0.55
Updated: 2022-11-21
Version: 0.56

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

from .general import *
__version__ = 0, 55
__version__ = 0, 56
v = __version__
'''
| Author: Ezio416
| Created: 2022-08-18
| Updated: 2022-11-11
| Updated: 2022-11-21

@@ -11,2 +11,3 @@ - Functions for various things

from email.message import EmailMessage
from inspect import currentframe
from re import findall

@@ -130,2 +131,14 @@ from smtplib import SMTP_SSL

def lineno() -> int:
'''
- gets the line number in the file where the function was called from
Returns
-------
int
- line number in Python script
'''
return currentframe().f_back.f_lineno
def month2num(month_word: str) -> str:

@@ -132,0 +145,0 @@ '''