python
上海运维Q先生
当才华支持不起野心时,就安静下来学习吧.
展开
-
Python---密码生成器
Python---密码生成器原创 2023-03-03 14:38:52 · 1135 阅读 · 0 评论 -
CMDB 阿里云部分实现
https://api.aliyun.com/阿里云比腾讯云会更麻烦一点.腾讯云通过查询实例,就会返回实例清单,但阿里需要先查询到实例ID,再根据实例ID查询实例对应的磁盘列表.磁盘列表又分为操作系统磁盘和数据磁盘.当发起调用后我们就能拿到了这样一个json的返回TotalCount 是该地域下一共有多少个ECS实例.PageSize 是一次查询返回的实例个数,最少1最多100PageNumber 是这次查询的是第几页这个就和我们平时做的分页效果一样.那么就通过这3个值很简单的一个for循环就原创 2022-07-14 10:28:21 · 792 阅读 · 0 评论 -
CMDB 腾讯云部分实现
https://console.cloud.tencent.com/api/explorerDescribeInstances 必要参数是Region,在页面上因为已经做过登录,所以不需要传AK,但通过SDK调用sec原创 2022-07-14 09:38:08 · 727 阅读 · 0 评论 -
Django RDF filter无效故障排除
代码如下:用search时所有功能正常但使用过滤时,就将所有数据返回了.其实就是filter没有被实现用apipost也是一样将代码改成只是将filter_fields改为了filterset_fields,整整折腾了1整天.就能恢复正常的过滤了...原创 2022-06-24 11:21:20 · 2063 阅读 · 13 评论 -
RuntimeError: You called this URL via POST, but the URL doesn‘t end in a slash and you have APPEND_S
访问时报错:RuntimeError: You called this URL via POST, but the URL doesn’t end in a slash and you have APPEND_SLASH set. Django can’t redirect to the slash URL while maintaining POST data. Change your form to point to 127.0.0.1:8080/api/login/ (note the traili原创 2022-06-24 09:30:16 · 993 阅读 · 0 评论 -
报错:ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured.
1. 报错现象在idea的终端中执行from myapp_api.models import Project, App, Server后出现以下报错ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.原创 2022-05-19 17:40:27 · 1175 阅读 · 0 评论