03 2019 档案
摘要:Panel python踩过的坑 曹正: 原因:语言的理解不精准。 语言特性坑:函数的参数不可变类型的定义类似list[],惰性处理简而言之延后执行, 胡阳: gevent的问题,django连接池的问题,patch掉数据。 python版本的问题,升级牵扯到一个成本的问题,但是不升级的话收到的评价
阅读全文
摘要:```
import logging
from cloghandler import ConcurrentRotatingFileHandler import os class ColoredFormatter(logging.Formatter): def __init__(self, fmt=None): logging.Formatter.__init__(se...
阅读全文
摘要:```
def 想不到吧(): def 阴(阴): yield '@' def 阳(阳): yield '*' yield from 阴(阳) yield from 阳(阳) yield from 阴(阴) for 艾克斯, _杠 in zip(想不到吧(), range(25...
阅读全文
摘要:```
from async_retrying import retry
import aiohttp
import asyncio @retry(attempts=6)
async def fetch(): print(1) async with aiohttp.ClientSession() as session: async with session.ge...
阅读全文
摘要:import asyncio import aiojobs async def coro(timeout): print(timeout) await asyncio.sleep(timeout) print(">>>>>>>") async def main(): scheduler = await aiojobs.create_scheduler() ...
阅读全文
摘要:from multidict import CIMultiDict dic=CIMultiDict() dic["key"]="1234" print(dic["KEy"])
阅读全文
摘要:import aiohttp import asyncio import async_timeout from urllib.parse import urljoin, urldefrag root_url = "http://python.org/" crawled_urls, url_hub = [], [root_url, "%s/sitemap.xml" % (root_url), ...
阅读全文
摘要:asyncio模块提供了使用协程构建并发应用的工具。它使用一种单线程单进程的的方式实现并发,应用的各个部分彼此合作, 可以显示的切换任务,一般会在程序阻塞I/O操作的时候发生上下文切换如等待读写文件,或者请求网络。同时asyncio也支持调度代码在将来的某个特定事件运行,从而支持一个协程等待另一个协
阅读全文
摘要:```
import lzstring ic = {"name": "root", "password": "123456"} x = lzstring.LZString()
compressed = x.compressToBase64(str(ic))
print(compressed)
decompressed = x.decompressFromBase64(compressed)
p...
阅读全文
摘要:```
// ==UserScript==
// @name ajax hook 调试
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match ht...
阅读全文
摘要:TCPConnector class aiohttp.TCPConnector( , verify_ssl=True, fingerprint=None, use_dns_cache=True, ttl_dns_cache=10, family=0, ssl_context=None, local_
阅读全文
摘要:```
class B(): def __init__(self): pass def start(self): print(self.parse()) class A(B): def __init__(self): B.__init__(self) def parse(self): retur...
阅读全文
摘要:``` coding: utf 8 @Time : 2018/12/20 4:28 PM @Author : cxa @File : DictHelper.py @Software: PyCharm coding: utf 8 @Time : 2018/10/16 10:34 @Author : c
阅读全文
摘要:1.修改文件名 2.文件预览 3.任务之间进行切换 4.复制文件 推动文件按照option键不放即可实现复制文件的功能。 5.删除文件 6.打开聚焦搜索 7.查看当前文件所在的文件夹 在访达中按住command然后点击标题,既可以看到当前文件所在的标题。 8.在文本中查找关键字 9.打开文件 选中文
阅读全文
摘要:1.选定区域截图 选定区域按住control,可以直接截图到剪切板, 按option可以进行比例缩放。 按住shift可以选定区域 按住空格键可以进入窗口截图模式。 2.全屏截图 3.修改截图的类型 如果修改截图为jpg格式 运行下面命令 其次还可以修改为pdf,tif和gif格式等。按照自己需要的
阅读全文