- # https://pyperclip.readthedocs.io/en/latest/
- import pyperclip
- while True:
- # pyperclip.copy('Hello, world!')
- # pyperclip.paste()
- # pyperclip.waitForPaste()
- print(pyperclip.waitForNewPaste())
- # 获取要输入新的坐标,也可以通过autohotkey
- import time
- import pyautogui as pag
- import os
- try:
- while True:
- print("Press Ctrl-C to end")
- x, y = pag.position() # 返回鼠标的坐标
- posStr = "Position:" + str(x).rjust(4) + ',' + str(y).rjust(4)
- print(posStr) # 打印坐标
- time.sleep(0.2)
- os.system('cls') # 清楚屏幕
- except KeyboardInterrupt:
- print('end....')
- # 打印消息
- import pyautogui
- import time
- import pyperclip
- content = """
- 呼叫龙叔!
- 第二遍!
- 第三遍!
- 第四遍!
- 第五遍!
- """
- for line in list(content.split("\n"))*10:
- if line:
- pyautogui.click(433,605) #鼠标点击并定位到聊天窗口
- pyperclip.copy(line) #复制该行
- pyautogui.hotkey("ctrl","v") #粘贴,mac电脑则把ctrl换成command
- pyautogui.typewrite("\n") #发送
- time.sleep(5) #每次发完间隔5s
清华大学计算机系课程攻略 https://github.com/PKUanonym/REKCARC-TSC-UHT 浙江大学课程攻略共享计划 https://github.com/QSCTech/zju-icicles https://home.unicode.org/ 世界上的每个人都应该能够在手机和电脑上使用自己的语言。 http://codecanyon.net 初次看到这个网站,小伙伴们表示都惊呆了。原来代码也可以放在网上卖的?!! 很多coder上传了各种代码,每个代码都明码标价。看了下销售排行,有的19刀的卖了3万多份,额di神啊。可以看到代码的演示效果,真的很漂亮。代码以php、wordpress主题、Javascript、css为主,偏前台。 https://www.lintcode.com/ 算法学习网站,上去每天刷两道算法题,走遍天下都不怕。 https://www.codecademy.com/ 包含在线编程练习和课程视频 https://www.reddit.com/ 包含有趣的编程挑战题,即使不会写,也可以查看他人的解决方法。 https://ideone.com/ 在线编译器,可运行,可查看代码示例。 http://it-ebooks.info/ 大型电子图书馆,可即时免费下载书籍。 刷题 https://github.com/jackfrued/Python-100-Days https://github.com/kenwoodjw/python_interview_question 面试问题 https://github.com/kenwoodjw/python_interview_question https://www.journaldev.com/15490/python-interview-questions#python-interpreter HTTP 身份验证 https://developer.mozilla.org/zh-CN/docs/Web/HTTP/Authentication RESTful 架构详解 https://www.runoob.com/w3cnote/restful-architecture.html https://www.rosettacode.org/wiki/Rosetta_C...
评论
发表评论