用python 发 帝国cms 文章

在e\extent下面放一个jiekou.php

 

 

#!/usr/bin/env python3
# -*- coding: utf-8 -*-

import time
import urllib.request
import urllib.parse


def post(title, content, catid):
    query = "http://127.0.0.1/e/extend/jiekou.php?pw=123456"
    data_form = {
        "enews": "AddNews",
        "classid": catid,  # 栏目id
        "bclassid": 0,  # 父栏目id
        "id": 0,
        "filepass": int(time.time()),  # 发布文章的时间戳
        "username": "admin",
        "oldchecked": 1,
        "ecmsnfrom": 1,
        "ecmscheck": 0,
        "havetmpic": 0,
        "title": title,
        "checked": 1,
        "isgood": 0,
        "firsttitle": 0,
        "newstime": time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()),
        "writer": "admin",
        "befrom": "",
        "newstext": content,
        "dokey": 1,
        "copyimg": 1,
        "autosize": 5000,
        "istop": 0,
        "newstempid": 0,
        "groupid": 0,
        "userfen": 0,
        "onclick": 0,
        "totaldown": 0,
        "addnews": "提 交",
    }
    data = urllib.parse.urlencode(data_form).encode(encoding='utf-8')
    req = urllib.request.Request(query, data=data)
    res = urllib.request.urlopen(req, timeout=10)
    result = res.read().decode('utf-8')
    print(result)

if __name__ == "__main__":
    content_list = [line.strip() for line in open("duanwenxue.txt")]
    for wz in content_list[:5]:
        text = wz.split("####")
        title = text[0]
        content = text[1]
        print("开始发布:", title)
        post(title, content, 1)

 

参考:

如何用MarsEdit快速插入源代码

 

转载于:https://www.cnblogs.com/fengwenit/p/9713977.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值