Loading

上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页
摘要: 配置文件my.ini sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" 修改为 sql-mode="NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" 阅读全文
posted @ 2019-12-07 09:35 5572 阅读(1425) 评论(0) 推荐(0) 编辑
摘要: 一、新手选品原则(主要是为了起量) 1、净利润率高(容易起量) 2、发货方便,售后方便(发货,打包方便,不易破损,退货率低) 3、具有细分市场优势(衣服->古代衣服,论文排版) 4、市场规模够大,容易起量 5、有货源优势 6、客单价合理(价格定位参考大部分顾客喜欢的价格区间) 7、产品能够吸引复购, 阅读全文
posted @ 2019-11-23 11:24 5572 阅读(388) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-11-23 10:21 5572 阅读(132) 评论(0) 推荐(0) 编辑
摘要: import urllib.request as ur import lxml.etree as le import user_agent keyword = input('请输入关键词:') pn_start = int(input('起始页:')) pn_end = int(input('终止页 阅读全文
posted @ 2019-11-20 15:22 5572 阅读(236) 评论(0) 推荐(0) 编辑
摘要: import urllib.request as ur import user_agent import lxml.etree as le request = ur.Request( url='https://edu.csdn.net/mycollege', headers={ 'User-Agen 阅读全文
posted @ 2019-11-20 15:16 5572 阅读(173) 评论(0) 推荐(0) 编辑
摘要: import urllib.request as ur proxy_address = ur.urlopen('http://api.ip.data5u.com/dynamic/get.html?order=d314e5e5e19b0dfd19762f98308114ba&sep=4').read().decode('utf-8').strip() print(proxy_address) # 创 阅读全文
posted @ 2019-11-20 15:10 5572 阅读(217) 评论(0) 推荐(0) 编辑
摘要: import urllib.request as ur import user_agent request = ur.Request( url='https://edu.csdn.net/', headers={ 'User-Agent':user_agent.get_user_agent_pc() 阅读全文
posted @ 2019-11-20 15:04 5572 阅读(400) 评论(0) 推荐(0) 编辑
摘要: import urllib.parse as up import urllib.request as ur import json word = input('请输入要翻译的中文') data = { 'kw':word } data_url = up.urlencode(data) request 阅读全文
posted @ 2019-11-20 14:42 5572 阅读(204) 评论(0) 推荐(0) 编辑
摘要: import urllib.parse as up import urllib.request as ur kw = '动漫' data ={ 'kw':kw, 'ie':'utf-8', 'pn':100 } data_url = up.urlencode( data ) ret = up.unq 阅读全文
posted @ 2019-11-20 14:37 5572 阅读(298) 评论(0) 推荐(0) 编辑
摘要: import urllib.request as ur ret = ur.urlopen('https://edu.csdn.net/').read() with open('edu.html','wb') as f: f.write(ret) 阅读全文
posted @ 2019-11-20 14:19 5572 阅读(141) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 28 下一页