当前位置:   article > 正文

分享73个ASP江湖论坛源码,总有一款适合您_论坛源代码

论坛源代码

分享73个ASP江湖论坛源码,总有一款适合您

 

73个ASP江湖论坛源码下载链接:https://pan.baidu.com/s/1cvtPY2s9kwM_L9sVRxI_xw?pwd=k08d 
提取码:k08d

Python采集代码下载链接:采集代码.zip - 蓝奏云

我的博客地址:亚丁号-知识付费平台 支付后可见 扫码付费可见

下载时代社区2004 完整版

 

BBSXP V4.0 Beta3

紫禁江湖

工校学生论坛-超级美化版

  1. import os
  2. import shutil
  3. import time
  4. from time import sleep
  5. from docx import Document
  6. from docx.shared import Inches
  7. from framework.base.BaseFrame import BaseFrame
  8. from sprider.business.DownLoad import DownLoad
  9. from sprider.business.SeleniumTools import SeleniumTools
  10. from sprider.business.SpriderTools import SpriderTools
  11. from selenium import webdriver
  12. from selenium.webdriver.common.by import By
  13. from sprider.model.SpriderEntity import SpriderEntity
  14. from sprider.access.SpriderAccess import SpriderAccess
  15. sprider_name = "ASP江湖论坛源码"
  16. class CNSourceCoder:
  17. base_url = "http://www.downcode.com"
  18. base_path = "D:\\Freedom\\Sprider\\CNSource"
  19. sprider_count = 73
  20. sprider_start_count = 622
  21. first_folder_name = "ASP"
  22. max_pager = 10 # 每页的数量 影响再次采集的起始位置.
  23. word_image_count = 5 # word插入图片数量 同时也是明细采集图片和描述的数量
  24. page_end_number = 0
  25. word_content_list = []
  26. haved_sprider_count = 0 # 已经采集的数量
  27. sprider_detail_index = 0 # 明细方法采集的数量 累加

雷爵论坛WIZ

若寒综合论坛

雪人论坛 V1.5唯美感觉美化版

6DBBS论坛 V1.0

家人社区

龍兒江湖(免虚拟目录)

BBSXP V4.0 Beta2

青春之门论坛 2004 精简版

DVBBS V6.1 三月风全插件

DVBBS V6.1 三月风无插件版

紫峰论坛

MY动力 Ver 3.51 Build 正式版

Idealcc树形论坛

永恒互联站圣诞节风格Leadbbs皮肤包

梦琰论坛2004版

Fancy V2003 测试版(72B整站程序)

SpeedPioneer(速度先锋) V2.0 Build 3123

星空驿站论坛

自在者天下论坛

动网论坛6.1完美支持在线支付Sql全版

16k论坛(改自6K)

最简论坛V3.3

现代皇城休闲社区12.07最新版

博爱论坛 V1.4

雪人 V2.0 心之宿舍修改美化版 V1.0

80秀论坛

博爱论坛 V1.1

星星的家园程序

云林动网全插件美化版 V6.1

BBSXP V1.0-V3.60 To V3.61 数据库升级程序

BBSXP V3.61 正式版

美丽人生论坛

三国江湖2003年最终版

艺术流氓Artrascal V4 Plus论坛精华版

E动力水吧 V2.0

BBSXP数据库升级程序[(1.00-3.50)-3.60]

BBSXP V3.60 Access版

DLForum V1.0 Beta3

  1. import os
  2. import shutil
  3. def void_folder(path):
  4. # 访问path路径下的文件或文件夹
  5. lst = os.listdir(path)
  6. # 打印每一层的文件或文件夹
  7. for name in lst:
  8. # 拼接名称,得到绝对路径,判断该文件是否符合是文件夹
  9. real_path = os.path.join(path, name)
  10. # 如果是文件夹,则打空格表示,并且递归访问下一层
  11. if os.path.isdir(real_path):
  12. # print(name)
  13. files = os.listdir(real_path)
  14. if len(files) == 0:
  15. print("void_folder():"+name)
  16. shutil.rmtree(real_path)
  17. endindex = len(real_path) - len(name)
  18. real_path = real_path[0:endindex]
  19. void_folder(real_path)
  20. else:
  21. void_folder(real_path)
  22. # 如果不是文件夹,直接打印,不再递归访问下一层
  23. else:
  24. #print(name)
  25. pass
  26. def void_file(dirPath):
  27. dirs = os.listdir(dirPath) # 查找该层文件夹下所有的文件及文件夹,返回列表
  28. for file in dirs:
  29. file_full_name = dirPath + '/' + file
  30. file_ext = os.path.splitext(file_full_name)[-1]
  31. if file_ext is None or file_ext=="":
  32. continue
  33. if "rar" == str(file_ext.split(".")[1]):
  34. os.remove(file_full_name)
  35. if "zip" == str(file_ext.split(".")[1]):
  36. os.remove(file_full_name)
  37. if "gz" == str(file_ext.split(".")[1]):
  38. os.remove(file_full_name)
  39. if "tgz" == str(file_ext.split(".")[1]):
  40. os.remove(file_full_name)
  41. # 查找指定文件夹下所有相同名称的文件
  42. def search_file(dirPath, fileName):
  43. dirs = os.listdir(dirPath) # 查找该层文件夹下所有的文件及文件夹,返回列表
  44. for currentFile in dirs: # 遍历列表
  45. absPath = dirPath + '/' + currentFile
  46. if os.path.isdir(absPath): # 如果是目录则递归,继续查找该目录下的文件
  47. search_file(absPath, fileName)
  48. elif currentFile == fileName:
  49. print(absPath) # 文件存在,则打印该文件的绝对路径
  50. os.remove(absPath)

艺术流氓Artrascal V3论坛标准版

昕格日记SidgDiary V2.0b(LeadBBS插件)

冰点网络SF V1.20

Mybbs V1.0Beta

艺术流氓最新论坛美化论坛 V6.1

清露论坛 V1.1

雪人 V1.5 女生美化版(饼干部屋 V1.2 Sp1)

平谷人都市社区

寒塘碧荷论坛(6KSU V1.1美化版)

艺术流氓最新论坛美化论坛 V6.1

就是流行梯形论坛

Np99家园第二版

BBSXP V3.50 SQL正式版

BBSXP V3.50 正式版

狂人论坛Jian V2.03 修正版

Snitz Forums 2000 V3.4.03 中文For Renee版

红雨同学录 V5.0.1

LeadBBS V2.88 恒星家园美化版

BBSXP V3.50 Access版

视觉天空论坛 V5.1

笑傲三国江湖程序

梦琰论坛(全插件) 测试版

Adbbs论坛1.02

灵剑江湖8.5图形版

Xbbs论坛 V1.3

梦琰论坛全插件版 V1.0

BBSXP V3.10 MSSQL

BBSXP V3.10 Access版

LeadBBS论坛 V2.88

网游客论坛 V2.0

动网论坛6.1及其补丁

最后送大家一首诗:

山高路远坑深,
大军纵横驰奔,
谁敢横刀立马?
惟有点赞加关注大军。
 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/956826?site
推荐阅读
相关标签
  

闽ICP备14008679号