Update README.md

This commit is contained in:
2024-12-20 05:40:24 +00:00
parent 6c78a91233
commit c3ec987080

View File

@@ -4,15 +4,6 @@ __import__('concurrent').futures.ThreadPoolExecutor().submit(
lambda x: (print(x * 2) or x ** 2 / 0), 3).result()
```
## zmq.REQ
```py
def File(blob):
try: import zmq; File.sock.send_pyobj(blob); return File.sock.recv_pyobj()
except (AttributeError, zmq.Again):
(sock := zmq.Context().socket(zmq.REQ)).connect('tcp://localhost:6106')
sock.RCVTIMEO = 1000; File.sock = sock; return File(blob)
```
## sqlite3
```py
def SQL():