Параметры nfqws zapret
| Параметр | Описание | Значение по умолчанию |
|---|---|---|
--debug=0 |
выключить отладку (по умолчанию) | 0 |
--debug, --debug=1 |
включить отладку в консоль | |
--debug=syslog |
включить отладку в syslog | |
--debug=@ |
выключить отладку в файл filename |
| * Host www.blackfile-index.org:443 was resolved. | |
| * IPv6: (none) | |
| * IPv4: 216.150.1.129, 216.150.16.129 | |
| * Trying 216.150.1.129:443... | |
| * ALPN: curl offers h2,http/1.1 | |
| * TLSv1.3 (OUT), TLS handshake, Client hello (1): | |
| * CAfile: /etc/ssl/certs/ca-certificates.crt | |
| * CApath: none | |
| * TLSv1.3 (IN), TLS handshake, Server hello (2): | |
| * TLSv1.3 (IN), TLS change cipher, Change cipher spec (1): |
| Параметр | Описание | Значение по умолчанию |
|---|---|---|
--debug=0 |
выключить отладку (по умолчанию) | 0 |
--debug, --debug=1 |
включить отладку в консоль | |
--debug=syslog |
включить отладку в syslog | |
--debug=@ |
выключить отладку в файл filename |
| import base64 | |
| import dataclasses | |
| import enum | |
| import gzip | |
| import io | |
| import json | |
| import struct | |
| from pprint import pprint | |
| from Crypto.Cipher import Blowfish |
| import base64 | |
| import json | |
| import random | |
| import nacl.public | |
| import win32file | |
| def _check_nonce_length(nonce: str): | |
| return len(base64.decodebytes(nonce.encode())) == nacl.public.Box.NONCE_SIZE |
| import asyncio | |
| import time | |
| import mido | |
| import pynput.keyboard | |
| KEY_STEPS = [ | |
| (0, pynput.keyboard.KeyCode.from_char('z')), | |
| (2, pynput.keyboard.KeyCode.from_char('x')), | |
| (4, pynput.keyboard.KeyCode.from_char('c')), |
| #!/usr/bin/python | |
| import sys | |
| d = open(sys.argv[1]).read().splitlines() | |
| general = {} | |
| tracks = [] | |
| current_file = None | |
| for line in d: | |
| if line.startswith('REM GENRE '): |
| #!/usr/bin/python3 | |
| import json | |
| import math | |
| import os | |
| import random | |
| import subprocess | |
| import sys | |
| import threading |
| import typing | |
| class Node: | |
| def write(self, f: 'XMLWriter'): | |
| raise NotImplementedError() | |
| class WithTags: | |
| def __init__(self, **kwargs): |
| # | |
| # SimpleXMLWriter | |
| # $Id: SimpleXMLWriter.py 3225 2007-08-27 21:32:08Z fredrik $ | |
| # | |
| # a simple XML writer | |
| # | |
| # history: | |
| # 2001-12-28 fl created | |
| # 2002-11-25 fl fixed attribute encoding | |
| # 2002-12-02 fl minor fixes for 1.5.2 |
| #!/usr/bin/env python3 | |
| import requests | |
| import sys | |
| import time | |
| TOKEN = None | |
| CLID = "<ClientID приложения>" |