Operating system
Latest stable version(下面的都可以点击下载对应版本)
Support status
Windows
10 v1709 and later
130.0.1 (ARM64)
2019–
128.2.0esr (ARM64)
10 and later, Server 2016 and later
130.0.1 (x64)
2015–
128.2.0esr (x64)
130.0.1 (IA-32)
128.2.0esr (IA-32)
7, Server 2008 R2, 8, Server 2012,
8.1 and Server 2012 R2
115.15.0es...
自己瞎写的一款加密、解密算法,算是瞎写着玩。
class ATOM128:
encode_table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
decode_table = {v: k for k, v in enumerate(encode_table)}
@staticmethod
def atom_encode(data, shift=1, salt="1234"):
# Add salt to data
salted_data = salt + data
...
Error on reading from the event loop self pipe
loop:
Traceback (most recent call last):
File "X:\Python\Python312\Lib\asyncio\proactor_events.py", line 795, in _loop_self_reading
f.result() # may raise
^^^^^^^^^^
File "X:\Python\Python312\Lib\asyncio\windows_events.py", line 803, in _poll
value = callback(transferred, ke...
不说废话直接上Python脚本
def code_replace_from(code):
code = code.replace(" ", "") # 去除空格 没有使用前后特殊字符去除.strip()
bytes_data = bytearray.fromhex(code)
decoded_str = ""
i = 0
while i < len(bytes_data):
# Check if the current byte is a potential start of a UTF-8 character
if bytes_...