File tree 6 files changed +15
-4
lines changed
6 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 4
4
<a href =" https://github.com/SilkePilon/youdotcom/ " ><img src =" https://github.com/SilkePilon/youdotcom/blob/main/youdotcom.png?raw=true " alt =" Markdownify " width =" 200 " ></a >
5
5
<br >
6
6
<br >
7
- YouDotCom for python v1.0.22
7
+ YouDotCom for python v1.0.23
8
8
<br >
9
9
</h1 >
10
10
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
5
5
6
6
[tool .poetry ]
7
7
name = " youdotcom"
8
- version = " 1.0.22 "
8
+ version = " 1.0.23 "
9
9
description = " official api wrapper for you.com and all of its apps"
10
10
readme = " README.md"
11
11
authors = [
" SilkePilon <[email protected] >" ]
Original file line number Diff line number Diff line change 1
- from youdotcom import Webdriver
Original file line number Diff line number Diff line change @@ -66,5 +66,13 @@ def write():
66
66
print ("Total time taken: " + text ["time" ])
67
67
68
68
69
+ @app .command ()
70
+ def clear ():
71
+ try :
72
+ os .system ("clear" )
73
+ except :
74
+ os .system ("cls" )
75
+
76
+
69
77
if __name__ == "__main__" :
70
78
app ()
Original file line number Diff line number Diff line change @@ -150,7 +150,8 @@ def __init_browser(self) -> None:
150
150
151
151
# Start the browser
152
152
options = uc .ChromeOptions ()
153
- options .add_argument (f"--window-size={ 800 } ,{ 600 } " )
153
+ # options.add_argument(f"--window-size={800},{600}")
154
+ options .add_argument ("--headless" )
154
155
if self .__proxy :
155
156
options .add_argument (f"--proxy-server={ self .__proxy } " )
156
157
try :
Original file line number Diff line number Diff line change
1
+ import write
2
+
3
+ print (write .Write .write ("an email" ))
You can’t perform that action at this time.
0 commit comments