摘要: 新浪博客 python3.0 中文手册 Beautiful Soup 4.2.0 文档 Requests: 让 HTTP 服务人类 python爬虫系列教程 廖雪峰python HTML CSS 以及JavaScript python基础教程 32个爬虫项目 书籍: Python GUI Progr 阅读全文
posted @ 2018-01-18 10:57 v_keys 阅读(395) 评论(1) 推荐(0) 编辑
摘要: # -*- coding:gb2312 -*- from tkinter import ttk from tkinter import * from tkinter import messagebox import sqlite3 import os class JXC(object): def __init__(self): self.db_path = os.pa... 阅读全文
posted @ 2018-03-16 00:07 v_keys 阅读(358) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:gb2312 -*-from tkinter import ttkfrom tkinter import *from tkinter import messageboximport sqlite3import osclass JXC(object): def __init_ 阅读全文
posted @ 2018-03-15 00:00 v_keys 阅读(147) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:gb2312 -*- from tkinter import ttk from tkinter import * from tkinter import messagebox class JXC(object): def __init__(self): self.filename = '简易进销存数据.txt' self.b... 阅读全文
posted @ 2018-01-26 00:36 v_keys 阅读(157) 评论(0) 推荐(0) 编辑
摘要: # -*- coding:gb2312 -*- from tkinter import ttk from tkinter import * from tkinter import messagebox class JXC(object): def __init__(self): self.index = 0 '''初始顶层框架''' s... 阅读全文
posted @ 2018-01-25 16:55 v_keys 阅读(204) 评论(0) 推荐(0) 编辑
摘要: __author__ == 'Jeffery Gao' #coding=utf-8 import urllib2 import re import os class Tool: removeImg = re.compile('| {7}') removeAddr = re.compile('|') replaceLine = re.compile('|||') ... 阅读全文
posted @ 2018-01-19 15:34 v_keys 阅读(161) 评论(0) 推荐(0) 编辑