From 5630ddaf68a7383f12d7bc4aa60dcbfa863fcb49 Mon Sep 17 00:00:00 2001 From: Suraj S Date: Fri, 26 Jan 2024 23:09:08 +0530 Subject: [PATCH] Updated package information --- .../mouse_movement.cpython-311.pyc | Bin 5097 -> 4893 bytes commands/mouse_movement.py | 28 ++++++++++-------- requirements.txt | 12 +++++++- 3 files changed, 26 insertions(+), 14 deletions(-) diff --git a/commands/__pycache__/mouse_movement.cpython-311.pyc b/commands/__pycache__/mouse_movement.cpython-311.pyc index bcbcf4bda29c7fd4a8b091b04c2421a1897b154c..60d9608eb2b49b3d3fcd8df5bb5b3d000f79c81f 100644 GIT binary patch delta 985 zcmah{OH30%7@pZjcl+Ay_C;UNQl6!nRE(Ms#77`0u?c9r&_jW^RUlBvvZPpc5fc)L z@gR;D12sKij2=vgCk_%56O0^6(inmlkD7QO@gyf_imPZe{yY2S`)B_7zJF%-b4#&V zcw)C(01o^6mF%FjEcjsma!ZE?$Z(uXb26RgWhQNw*+r1HEa%o>=eh@0sNfs5p6ogd zwZUKjj7ccNc+sp$V01xkLSN`qt1N253XmN|x_}FHQFR`vHyga5%1N9?a4MAP+UB6e3LoG*K0eeORN`;ML~* zoNJB3juhHAxf447TT8sg;ahPR=|7v&Sfy5DOLat_(ZuH-+)X{K+EJQ_rl=q~%LSkp zEx~Y8*f7-CvB*!(AK{!_gI2j7&R6yGqfcCeJy7Iy@&7)xtY+8E|GcCUABKHslYb=^ z*rCX<8Y$47YR4YzLJ!Rw>;W8#)uYRn7Z!Rnr|vQ8=tTB`^$JQ`L(qxx)|YnMwHZap z=F~y5gyJ?oOa6=qO4_C@7ce6iJDpsAZTkSR=3}AG8LTU+t2ZCbtH?Z_rB3ex d>q7PUC|z0*cAb3-;=U;ZVR#?>9hGjZ@Exp(*dqV{ delta 1333 zcmb_cO=uHA6rS0gbT_Hl{IpFrn?KVUW2DAbgo@aTzcl_JUIc@!w$7?4O{%+FD|TZQ z|1KU<=HQ_eaZ5Ty6F0WDTr-vE@Zj9m-W6ztUPQ(&4|9jSHJe1?|y zfngKLnL;7^HG3A`Gh>jUYz&TpE9^-y26bNPGy|Q_Nwj0F6E^_{w;#h*+af6U$Y0+pR04tGYst{L#{EdgDZB<>)aH; zEz|7kz3V2$ubXoIYWDhB7v@~F1wLQetN*n~>L8I~gBQ9<76!wCY69If6kO(f9p|t} zc5nwc&(D%1l0e}$E+hP(LIOPJUi&mFhv`FE=H6{`iht4a4W3D6>6J^iQ;5P68XO$C zLN=S9Gtu?ri}?w8U^yOc!1A!H$t9%9XcDxqWKqv5vYb{gjA$h&s}9-%vebCdvYV31g;1Z(r`COdu$#n%0J$poLU~ETIDMwjJMi0dVUia*dOnG<*-Hhn^U1zNv8(uRhG8~IE`#L)PV!Z_o3I1B z-vG$!F&Nh2DN2#|QtX`+Ta-EqQpZB`+E4kTJ5X>(3;-RT8Wfww?0$o#TDe>{8s=}< zwlUl|>^23}`{bFU{{Xwk-RlLfyq36+eHCtxyV< zDza}ybkxVa4MK`hiz3oaDVxY4r+;fxg>I}srG<~c5=Ef&Q2560N{!&rVYx@yN6pIr hL%l?%oJY2NavZ)c6rIPe+l+=j2!jS#8' last_movement_time = datetime.datetime.now().strftime("%d-%m-%Y %H:%M:%S") try: screenshot = ImageGrab.grab( - bbox=( - current_mouse_position[0] - 400, - current_mouse_position[1] - 300, - current_mouse_position[0] + 400, - current_mouse_position[1] + 300, - ) + # bbox=( + # current_mouse_position[0] - 400, + # current_mouse_position[1] - 300, + # current_mouse_position[0] + 400, + # current_mouse_position[1] + 300, + # ) ) screenshot.save(SCREENSHOT_PATH) @@ -69,12 +71,12 @@ async def monitor_mouse_movement(client, config, starting_mouse_position): - # Check if image_message is not None and attempt to delete it if it exists - if image_message: - try: - await image_message.delete() - except discord.NotFound: - pass # Message already deleted or not found + # # Check if image_message is not None and attempt to delete it if it exists + # if image_message: + # try: + # await image_message.delete() + # except discord.NotFound: + # pass # Message already deleted or not found image_message = await log_channel.send( message, file=discord.File(SCREENSHOT_PATH) diff --git a/requirements.txt b/requirements.txt index f0e1113..448b4a1 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,22 +2,32 @@ aiohttp==3.8.5 aiosignal==1.3.1 async-timeout==4.0.3 attrs==23.1.0 +blinker==1.6.3 charset-normalizer==3.2.0 +click==8.1.7 +colorama==0.4.6 discord.py==2.3.2 +dnspython==2.4.2 EasyProcess==1.1 entrypoint2==1.1 +Flask==3.0.0 frozenlist==1.4.0 idna==3.4 +itsdangerous==2.1.2 +Jinja2==3.1.2 +MarkupSafe==2.1.3 MouseInfo==0.1.3 mss==9.0.1 multidict==6.0.4 -Pillow==10.0.1 +pillow==10.2.0 PyAutoGUI==0.9.54 PyGetWindow==0.0.9 +pymongo==4.5.0 PyMsgBox==1.0.9 pyperclip==1.8.2 PyRect==0.2.0 pyscreenshot==3.1 PyScreeze==0.1.29 pytweening==1.0.7 +Werkzeug==3.0.0 yarl==1.9.2 \ No newline at end of file