摘要:
1.汇率url https://www.exchangerate-api.com/docs/supported-currencies 2.调用 class Command(BaseCommand): help = "Sync currency pair and exchange rate" def 阅读全文
摘要:
1.生成token方式及自定义荷载信息 from rest_framework_simplejwt.tokens import RefreshToken def _generate_jwt_token_for_jobseeker(self): refresh = RefreshToken.for_u 阅读全文
摘要:
上传文件到AWS 及其他资源池def upload_initial_avatar(recruiter, image_object): try: file_path = recruiter.avatar_dir_path(image_object.name.split("/")[-1]) image_ 阅读全文
摘要:
推荐个接口测试工具,火焰图及各模块性能分析 https://github.com/jazzband/django-silk 配合使用的火焰图工具 https://jiffyclub.github.io/snakeviz/ 压力测试的工具 https://locust.io/ 数字化分析网站 http 阅读全文
摘要:
1.翻了很多资料发现大多是Windows的库偏多,并且不支持linux,还需要借助word软件,方案是首先docx 转 html 再转 pdf 代码: from pydocx import PyDocX from xhtml2pdf import pisa import os def word2ht 阅读全文
摘要:
打包vue文件时候报错:npm ERR! missing script: build 查看文件package.json中scripts参数 所以此时的运行命令应为 npm run build:prod --report 阅读全文
摘要:
1.docker包下载准备 链接: https://pan.baidu.com/s/1KSigVtGK11znUYtGUExL_w 提取码: 3gnt 阅读全文
摘要:
1.dockerfile 编写 FROM ubuntu:latest MAINTAINER jiangmoo ENV DEBIAN_FRONTEND=noninteractive ENV LANG C.UTF-8 RUN sed -i "s/security.debian.org/mirrors.a 阅读全文
摘要:
1.CentOS 8.0 + Docker部署Django项目(pycharm连接服务器并上传项目) https://tehub.com/a/8zozDUcGbV 2.docker 打包项目 并把项目run起来 https://www.jianshu.com/p/9e074eac5a74 阅读全文
摘要:
一句代码解决homebrew在 Mac Big Sur 版本下的Error opening archive: Failed to open问题 通过homebrew安装MySQL的时候一直报错… 报错信息如下 tar: Error opening archive: Failed to open '/ 阅读全文