摘要:
代码中配置matplotlib参数 # 以下mpl均可以用plt进行替代:import matplotlib.pyplot as plt import matplotlib as mpl mpl.rcParams['lines.linewidth'] = 2 mpl.rcParams['axes.p 阅读全文
摘要:
所有基金名称列表API接口: http://fund.eastmoney.com/js/fundcode_search.js 所有基金公司名称列表API接口 http://fund.eastmoney.com/js/jjjz_gs.js 基金实时信息 http://fundgz.1234567.co 阅读全文
摘要:
步骤: 明确需求 编写框架代码 编写功能代码 改进 工具: trace unittest pychecker/pylint profile/timeit 工具说明: trace: https://learnku.com/docs/pymotw/trace-follow-program-flow/34 阅读全文
摘要:
https://mirrors.tuna.tsinghua.edu.cn/help/ubuntu/ 选择ubuntu版本 将内容copy到/etc/atp/sources.list中 阅读全文
摘要:
https://shumeipai.nxez.com/ 树莓派实验室,包含各种实例,入门说明 https://pinout.xyz/ 树莓派实用工具,包含GPIO的说明 阅读全文
摘要:
参考:https://www.raspberrypi.org/documentation/usage/gpio/ 1)使用GPIO pinout命令确认板上GPIO配置 参考:https://pinout.xyz/ 2)GPIO库分类: wiringPi C,有Perl, PHP, Ruby, No 阅读全文
摘要:
入门: 参考:https://www.waveshare.com/wiki/Raspberry_Pi_Tutorial_Series:_I2C 打开IIC功能 树莓派默认是将IIC功能关闭的,需要通过设置打开。 参考:http://www.embed-net.com/thread-140-1-1.h 阅读全文
摘要:
CPU型号与IO映射关系: sudo cat /proc/cpuinfo 查看CPU信息 sudo cat /proc/iomem 查看当前IO映射信息 阅读全文
摘要:
相关库 redminelib datetime 例子 #用于取得特定时间后更新的问题票,减少同步的时间 from redminelib import Redmine import datetime redmine = Redmine('redmine address', key='your key' 阅读全文
摘要:
变量表示 语法:{{ 变量标识符 }} 例:My first name is {{ first_name }}. My last name is {{ last_name }}. 在使用Context({'first_name': 'John', 'last_name': 'Doe'})进行渲染时, 阅读全文