上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页
摘要: pip install -i https://pypi.tuna.tsinghua.edu.cn/simple/ -r requirements.txt 腾讯云 https://mirrors.cloud.tencent.com/pypi/simple/ 阿里云 https://mirrors.al 阅读全文
posted @ 2022-07-05 15:03 3ξ 阅读(283) 评论(0) 推荐(0)
摘要: 1.如果效果出不来,你要把dbug改成True 2.drf_yasg是swagger对于python的sdk哦 3.我的项目地址:https://gitee.com/wusen0601 1.内置的文档api 1.1 在总的urls文件里面 from django.conf.urls import u 阅读全文
posted @ 2022-07-04 23:09 3ξ 阅读(90) 评论(0) 推荐(0)
摘要: chkconfig --list 显示开机可以自动启动的服务 chkconfig --add *** 添加开机自动启动***服务 chkconfig --del *** 删除开机自动启动***服务 setup 可以在shell图形终端里面配置的命令,去service里选择 ntsysv 在shell 阅读全文
posted @ 2022-06-24 17:58 3ξ 阅读(24) 评论(0) 推荐(0)
摘要: aes之ecb模式的加密解密 from Crypto.Cipher import AES import base64 BLOCK_SIZE = 16 # Bytes pad = lambda s: s + (BLOCK_SIZE - len(s.encode()) % BLOCK_SIZE) * c 阅读全文
posted @ 2022-06-21 19:56 3ξ 阅读(827) 评论(0) 推荐(0)
摘要: ##########django之使用celery############## 1.首先在目录:/项目/applition/celery.py添加以下内容 import os import django from celery import Celery, platforms from django 阅读全文
posted @ 2022-06-16 11:43 3ξ 阅读(45) 评论(0) 推荐(0)
摘要: linux之centos安装redis # 首先看一下c语言有没有安装 gcc -v # 如果没有安装 yum install -y gcc # 创建并进入一个目录 专门下载软件的目录 mkdir /software cd /software # 下载 wget http://download.re 阅读全文
posted @ 2022-06-13 11:05 3ξ 阅读(49) 评论(0) 推荐(0)
摘要: 1.安装使用 1.安装教程 https://dataease.io/docs/installation/offline_installation/ 2.下载安装包网址 https://community.fit2cloud.com/#/products/dataease/downloads 3.下载 阅读全文
posted @ 2022-05-19 10:53 3ξ 阅读(573) 评论(0) 推荐(0)
摘要: centos7安装kafka安装教程:https://blog.csdn.net/shenyuanhaojie/article/details/121200011 一.安装jdkrpm -qa | grep javarpm -qa | grep jdkrpm -qa | grep gcjrpm -q 阅读全文
posted @ 2022-05-17 18:42 3ξ 阅读(35) 评论(0) 推荐(0)
摘要: 1.mysql行拼接 SELECT GROUP_CONCAT(area_name SEPARATOR ',') from area 1.1效果图 2.clinkhouse行拼接 select groupArray(t3.enterprise_name) AS kpi_asc from area t1 阅读全文
posted @ 2022-05-17 17:01 3ξ 阅读(108) 评论(0) 推荐(0)
摘要: 1.clinkhouse比较特殊基于Java,如果是数字还得强转 select t1.area_name,t1.nums,t2.allcount,concat(toString(round(((t1.nums/t2.allcount)*100),2)),'%') as rate from ( sel 阅读全文
posted @ 2022-05-16 18:12 3ξ 阅读(40) 评论(0) 推荐(0)
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 31 下一页