➜ ~ curl -v http://darklorian.site:5000
* Rebuilt URL to: http://darklorian.site:5000/
* Trying 45.141.102.132...
* TCP_NODELAY set
* Connected to darklorian.site (45.141.102.132) port 5000 (#0)
> GET / HTTP/1.1
> Host: darklorian.site:5000
> User-Agent: curl/7.58.0
> Accept: */*
>
< HTTP/1.1 302 FOUND
< Server: gunicorn
< Date: Tue, 13 Apr 2021 04:27:33 GMT
< Connection: close
< Content-Type: text/html; charset=utf-8
< Content-Length: 219
< Location: http://darklorian.site:5000/login
<
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>Redirecting...</title>
<h1>Redirecting...</h1>
* Closing connection 0
<p>You should be redirected automatically to target URL: <a href="/login">/login</a>. If not click the link.%
➜ ~
def qw():
global killhard(score, shoot, health, level), health, score
health, score = killhard(score, shoot, health, level)
Button(window, text="kill", command=qw).place(x=0,y=0) # сюда координаты кнопки
id = f.read().split('\n')
>>> id = [1, 2, 3, 4, 5]
>>> if 5 in id:
... print(True)
...
True
>>> import random
>>> random.choice(['a', 'b'])
'a'
>>> random.choice(['a', 'b'])
'b'
>>> random.choice(['a', 'b'])
'a'
>>> random.choice(['a', 'b'])
'a'
>>> random.choice(['a', 'b'])
'a'
>>> random.choice(['a', 'b'])
'b'
>>> random.choice(['a', 'b'])
'b'
>>> random.choice(['a', 'b'])
'a'
>>> random.choice(['a', 'b'])
'b'
3. Как разобраться под какую материнку, какой брать процессор? Про сокеты интела, и амд знаю, есть ли еще какие либо нюансы в подборе например мать под сокет интела, и процессор интеловский?
from vk_api.bot_longpoll import VkBotLongPoll, VkBotEventType
import vk_api
vk = vk_api.VkApi(token="toktoken")
vk._auth_token()
vk.get_api()
longpoll = VkBotLongPoll(vk, id)
while True:
for event in longpoll.listen():
if event.type == VkBotEventType.MESSAGE_NEW:
if event.object.peer_id != event.object.from_id:
if "!kick " in event.object.text.lower(): #сюда надо бы добавить проверку кто это пишет, например если админ - выполнять или пропустить
user = event.object.text.lower().split(" ")[1] #И после этой строки получать всё необходимое для кика пользователя
vk.method('messages.removeChatUser', {'chat_id': chat_id, 'user_id': member_id, 'member_id': member_id})