摘要:
网上有很多这样的资料,学起来还是比较简单,为了将学到的东西应用于工程化,参考这样的样板代码: https://github.com/jeffmacdonald/pytest_test 将其下载到C:\work\python\pytest_test后尝试在命令行中运行: py.test tests 如图,出错了,经典的Py.test No module named * 根据作者的提示,需要将当前目... 阅读全文
摘要:
从验证结果看应该是网络关闭了,不过程序写的不错,可以作为其它websocket客户端的测试程序 # !/usr/bin/env python # -*- coding: utf-8 -*- # author: luhx # https://pypi.org/project/websocket-client/ # pip install websocket-client # 火币数据调试, 感觉... 阅读全文
摘要:
朋友发的,之前在网上一直没找着,先记着 #!/usr/bin/env python import asyncio import websockets import json async def test_ws_quote(): async with websockets.connect('ws://192.168.0.205:8888/quote/quote') as websoc... 阅读全文
摘要:
最近写了一些工具,想到分享给同事时好麻烦,并且自己每次用也是需要打开pycharm这些工具,感觉很麻烦,因此想到打包,网上有些例子,照做后又摸索很久方成,索性记录一下,以备不时之需. 主要参考:https://blog.csdn.net/llsmingyi/article/details/78691 阅读全文
摘要:
原贴:https://segmentfault.com/q/1010000009284816?_ea=1883181 也是找了好久 阅读全文
摘要:
#!/usr/bin/env python # -*- coding: utf-8 -*- from urllib.request import urlopen import warnings import os import json URL = 'http://bangth.com:8080/osconfeed.json' JSON = 'osconfeed.json' def load(... 阅读全文
摘要:
@property 这个我们在很多代码中都会用到,简单讲即为一个只读属性的调用 如果需要有修改权限,需要再加一个@属性名.setter 例:#!/usr/bin/env python# -*- coding: utf-8 -*-# # @property 示例class Student(object): @property def score(self): return ... 阅读全文
摘要:
转自:http://www.cnblogs.com/wushuaishuai/p/7686290.html 描述 encode() 方法以指定的编码格式编码字符串,默认编码为 'utf-8'。 对应的解码方法:bytes decode() 方法。 语法 encode() 方法语法: 1 S.encode([encoding='utf-8'][,errors='strict']) 参数 enco... 阅读全文
摘要:
之前看代码每次遇到import *时就会特别蒙,看到这篇文章一下子就弄明白了,原文地址:https://www.cnblogs.com/alamZ/p/6943869.html 1.测试文件foo.py #!/usr/bin/env python# -*- coding: utf-8 -*-__all__ = ['bar', 'baz']waz = 5bar = 10def baz(): ... 阅读全文
摘要:
windows环境: win7 64bit rqalpha版本3.0.9 参考文档:http://rqalpha.readthedocs.io/zh_CN/latest/intro/install.html 前提条件: 由于安装bcolz,ta-lib这两个组件都需要安装vs2015 因此我们假设你 阅读全文