This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
如何使用 PlainTasks: | |
项目: | |
☐ 任何以冒号结尾的行都会被作为项目标题 | |
☐ 可以通过缩进在项目中创建新的项目 | |
☐ 项目可以被折叠(利用了编辑器的原生功能) | |
任务: | |
可以在任何位置添加普通文本作为笔记或描述; | |
就是这么简单! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2018-01-03 21:02:54 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=北京 | |
2018-01-03 21:12:54 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=天津 | |
2018-01-03 21:22:54 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=北京 | |
2018-01-03 21:32:54 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=青岛 | |
2018-01-03 21:42:50 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=北京 | |
2018-01-03 21:52:11 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=河北 | |
2018-01-03 21:52:13 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=河北 | |
2018-01-03 21:52:17 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=河北 | |
2018-01-03 21:52:27 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=河北 | |
2018-01-03 21:52:39 http://www.amap.com/search?id=12345&keywords=凯德Mall&city=深圳 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: load | |
@Author: Ray | |
@Date: 2018-03-27 10:15:40 | |
@Version: 1.0 | |
""" | |
import json | |
import time | |
from urllib import parse |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: Card | |
@Author: Ray | |
@Date: 2018-03-16 11:01:35 | |
@Version: 1.0 | |
""" | |
import json | |
from collections import namedtuple | |
from random import shuffle | |
from itertools import zip_longest |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: NamedTule | |
@Author: Ray | |
@Date: 2018-03-15 17:41:14 | |
@Version: 1.0 | |
""" | |
from collections import namedtuple | |
Grade = namedtuple("Grade", ("score", "weight")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: File | |
@Author: Ray | |
@Date: 2018-02-28 19:09:22 | |
@Version: 1.0 | |
""" | |
class Reverse: | |
def __init__(self, start): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: File | |
@Author: Ray | |
@Date: 2018-02-28 18:36:35 | |
@Version: 1.0 | |
""" | |
class Node: | |
def __init__(self, value): | |
self._value = value |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@Version: 1.0 | |
@Project: News | |
@Author: JHao | |
@Data: 2017/12/21 下午2:09 | |
@File: log.py | |
""" | |
import logging | |
import os |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
@File: run | |
@Author: Ray | |
@Date: 2018-02-11 09:31:49 | |
@Version: 1.0 | |
""" | |
import json | |
from os import listdir, path | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import sys | |
import getopt | |
import re | |
class ChangeName: | |
def __init__(self): | |
self.HELPMESSAGE = '''参数列表: | |
-h --help 获取帮助信息 |
NewerOlder