QQ怎么查看特别关心我的人 qq怎么查看特别关心我的人有几个手机

 内涵001   2023-05-01 14:20:04   0 人阅读  0 条评论

IndexError: Cannot choose from an empty sequence // Werkzeug Debugger var CONSOLE_MODE = false, EVALEX = true, EVALEX_TRUSTED = false, SECRET = "Cztug1SITH6VWk19YYTC";

IndexError

IndexError: Cannot choose from an empty sequence

QQ怎么查看特别关心我的人?qq怎么查看特别关心我的人有几个手机-第1张图片-东江百科

Traceback(most recent call last)

The above exception was the direct cause of the following exception:

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2551, in__call__

def __call__(self, environ: dict, start_response: t.Callable) -> t.Any:

"""The WSGI server calls the Flask application object as the

WSGI application. This calls :meth:`wsgi_app`, which can be

wrapped to apply middleware.

"""

return self.wsgi_app(environ, start_response)

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2531, inwsgi_app

try:

ctx.push()

response = self.full_dispatch_request()

except Exception as e:

error = e

response = self.handle_exception(e)

except: # noqa: B001

error = sys.exc_info()[1]

raise

return response(environ, start_response)

finally:

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line2528, inwsgi_app

ctx = self.request_context(environ)

error: t.Optional[BaseException] = None

try:

try:

ctx.push()

response = self.full_dispatch_request()

except Exception as e:

error = e

response = self.handle_exception(e)

except: # noqa: B001

error = sys.exc_info()[1]

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1825, infull_dispatch_request

request_started.send(self)

rv = self.preprocess_request()

if rv is None:

rv = self.dispatch_request()

except Exception as e:

rv = self.handle_user_exception(e)

return self.finalize_request(rv)

def finalize_request(

self,

rv: t.Union[ft.ResponseReturnValue, HTTPException],

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1823, infull_dispatch_request

try:

request_started.send(self)

rv = self.preprocess_request()

if rv is None:

rv = self.dispatch_request()

except Exception as e:

rv = self.handle_user_exception(e)

return self.finalize_request(rv)

def finalize_request(

File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line1799, indispatch_request

and req.method == "OPTIONS"

):

return self.make_default_options_response()

# otherwise dispatch to the handler for that endpoint

view_args: t.Dict[str, t.Any] = req.view_args # type: ignore[assignment]

return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)

def full_dispatch_request(self) -> Response:

"""Dispatches the request and on top of that performs request

pre and postprocessing as well as HTTP exception catching and

error handling.

File "/www/wwwroot/chat.py", line39, ingen_header

# post入参访问方式二:from-data(k-v)格式参数

@api.route('/gen_header', methods=['post'])

def gen_header():

wd = flask.request.values.get('wd')

future = executor.submit(do_heavy_work,wd)

return str(future.result())

def do_heavy_work(wd):

prompt = wd

#openai.api_key = api_key_list[-1]

openai.api_key = random.choice(api_key_list)

File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line435, inresult

self._condition.wait(timeout)

if self._state in [CANCELLED, CANCELLED_AND_NOTIFIED]:

raise CancelledError()

elif self._state == FINISHED:

return self.__get_result()

else:

raise TimeoutError()

def exception(self, timeout=None):

"""Return the exception raised by the call that the future represents.

File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line384, in__get_result

with self._condition:

return self._state in [CANCELLED, CANCELLED_AND_NOTIFIED, FINISHED]

def __get_result(self):

if self._exception:

raise self._exception

else:

return self._result

def add_done_callback(self, fn):

"""Attaches a callable that will be called when the future finishes.IndexError: Cannot choose from an empty sequence

This is the Copy/Paste friendly version of the traceback.

concurrent.futures.process._RemoteTraceback: """Traceback (most recent call last): File "/usr/local/python3/lib/python3.7/concurrent/futures/process.py", line 239, in _process_worker r = call_item.fn(*call_item.args, **call_item.kwargs) File "/www/wwwroot/chat.py", line 44, in do_heavy_work openai.api_key = random.choice(api_key_list) File "/usr/local/python3/lib/python3.7/random.py", line 261, in choice raise IndexError('Cannot choose from an empty sequence') from NoneIndexError: Cannot choose from an empty sequence"""The above exception was the direct cause of the following exception:Traceback (most recent call last): File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2551, in __call__ return self.wsgi_app(environ, start_response) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2531, in wsgi_app response = self.handle_exception(e) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 2528, in wsgi_app response = self.full_dispatch_request() File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1825, in full_dispatch_request rv = self.handle_user_exception(e) File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1823, in full_dispatch_request rv = self.dispatch_request() File "/usr/local/python3/lib/python3.7/site-packages/flask/app.py", line 1799, in dispatch_request return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args) File "/www/wwwroot/chat.py", line 39, in gen_header return str(future.result()) File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line 435, in result return self.__get_result() File "/usr/local/python3/lib/python3.7/concurrent/futures/_base.py", line 384, in __get_result raise self._exceptionIndexError: Cannot choose from an empty sequenceThe debugger caught an exception in your WSGI application. You can now look at the traceback which led to the error. If you enable JavaScript you can also use additional features such as code execution (if the evalex feature is enabled), automatic pasting of the exceptions and much more.Brought to you byDON'T PANIC, your friendly Werkzeug powered traceback interpreter.

Console Locked

The console is locked and needs to be unlocked by entering the PIN. You can find the PIN printed out on the standard output of your shell that runs the server.

PIN:

一、手机qq怎么看有几个人对你设置了特别关心?

*** 作为我们常用的社交软件之一,也带有特别关心功能,查看自己 *** 被别人设为特别关心,按如下操作就行1.打开浏览器,然后点开设置。2.点击浏览器UA标识。3.选择电脑4.搜索 *** 空间电脑版5.点击第一个打开,登录 *** 空间6.点击特别关心。7.在右下角状态栏里就有,关心我的人

二、空间设置特别关心对方会有提示吗?

优质答案1:

*** 空间设置特别关心对方,不会有提示,一般情况下,设置 *** 关心是为了让对方发消息时能够第一时间提醒方发,说,说时也能第一时间接收到,所以是给自己的一个特别提醒,并不是与对方有什么关系,如果希望对方有提示,你可以让对方也设置成特别关心就好了。

优质答案2:

没有提示。在设置过特别关心后,对方的空间只会显示有多少人关心,而不会显示出具体是谁关心。这种关心是相当于匿名的,对方无法知道。关心别人后,你的空间动态就会提示被关心人的相关动态。比如:

优质答案3:

设置特别关心,对方空间发表新动态会有提示,发消息也会提示,发秘密没有权限的不会提示 ,关联账号只能收到对方的聊天消息,并不能接收到空间的提示信息和秘密

三、怎么看qq音乐关注的人?

手机上下载安装完qq音乐之后,再从手机界面点击qq音乐进行打开。

来到qq音乐首页我的音乐设置窗口,还没有登陆的话,可以先点击上面的“登陆”按钮。

来到qq音乐的登陆窗口,选择“手机qq快速登陆”按钮。

接着qq音乐会扫描到目前手机登陆上的qq账号,确认是这个qq账号登陆的话,可以直接点击“登陆”。

完成qq账号的登陆之后,再点击头像下面的“关注”菜单。

来到默认的关注页面,显示还没有关注过别人,再点击上面的“可能感兴趣的人“菜单。

就可以看到相应的歌手列表,看到自己感兴趣或者喜欢的歌手,可以直接点击歌手头像右侧的”关注“按钮进行关注。

选择完关注的人之后,再回到qq音乐首页我的音乐界面,就可以看到自己已经关注别人的数量。

四、什么 *** 能够知道 *** 空间特别关心你的人是谁?

1、首先在登录 *** 空间,或者在 *** 主板面上点击【空间图标】进入。

2、进入 *** 空间个人中心后点击左边导航栏的=》【特别关心】。

3、此时在页面的最左边中间就可以看到【特别关心我】的模块了。总共有多少人特别关心过你都会以数字形式显示【好友关心数】。

4、为了保护用户隐私, *** 空间是不支持查看【关心我的好友的具体信息】的。

5、目前 *** 空间仅支持查看【我关心了谁】。

6、如果想进一步了解都有哪些好友比较关心自己,可以查看空间的【亲密度】=》【谁在意我】,或者查看空间访问频率高的访客,来大概猜想都有谁,最有可能关心了自己。

五、我在qq群里有一个特别关注的人,都不知道怎么搞的,我连好友都没加怎么取消特别关注呢?

*** 一:打开群聊天框=》点击消息屏蔽按钮=》点击“设置本群特别关注”=》进入后,将鼠标移到要删除的群成员上=》点击删除按钮即可。

*** 二:在群成员列表中找到您要删除的关注人(设置为特别关注后,该群成员的昵称前会显示一个红心)=》鼠标右键点击“取消群内特别关注”即可取消。

本文地址:https://www.neihan001.com/zyfx/120374.html
版权声明:免责声明:本文来源网友投稿及网络整合仅代表文章作者的个人观点,与本站无关。其原创性、真实性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容文字的真实性、完整性和原创性本站不作任何保证或承诺,请读者仅作参考,并自行核实相关内容。投诉邮箱:1765130767@qq.com.
  • 评论已关闭!