Upgrade-ProcessOn icon indicating copy to clipboard operation
Upgrade-ProcessOn copied to clipboard

增加 ProcessOn 的免费文件数

Results 7 Upgrade-ProcessOn issues
Sort by recently updated
recently updated
newest added

一年一百多的价格并不贵,对程序员群体来说。当然探究技术后门本身是有趣的

```python Traceback (most recent call last): File "processon.py", line 82, in make(getuser()) File "processon.py", line 73, in make domain = getdomain() File "processon.py", line 28, in getdomain domains = [tag.text...

现在貌似不好使了,出现邮箱后,一直卡着

bug

![image](https://user-images.githubusercontent.com/40450903/63603860-06068880-c5fd-11e9-9fa6-4bdb36b5b0eb.png)

Traceback (most recent call last): File "processon.py", line 82, in make(getuser()) File "processon.py", line 73, in make domain = getdomain() File "processon.py", line 28, in getdomain domains = [tag.text for...

虽然不是完美的程序,但至少可用,目前主要会遇到2个问题 1. 验证码需要手动图形解锁 2. 使用次数过多会被锁定,多段时间可以继续解锁,目前实际测试上限大概为14次 感谢作者分享这么优秀的Python案例,未来可以继续扩展到其它项目中

有个小小的问题,直接运行python脚本报SyntaxError: Non-ASCII character '\xe6' in file processon.py on line 79, but no encoding declared; see http://python.org/dev/peps/pep-0263/ for details错误,因为源码中有中文所以需要在脚本的第一行加 ```python # -*- coding: UTF-8 -*- ``` 还有pip需要多装一个依赖 ```shell pip install futures...