File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed
AutomationScripts/Quotes Automation Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Quotes Automation
2
+ For quotes automation we are using ` quote ` library which is a python wrapper for the Goodreads Quote API.
3
+ To generate a random quote we will be using the quote function from the quote module.
4
+
5
+ ### Installation
6
+
7
+ Install with ` pip ` command in any terminal
8
+ ``` python
9
+ pip install poetpy
10
+ ```
11
+
12
+ ### Working
13
+
14
+ It is simple to use and ` quote ` library can also be used from the command line tool.
15
+
16
+ ``` python
17
+ from quote import quote
18
+
19
+ author = ' Albert Einstein'
20
+
21
+ result = quote(author, limit = 2 )
22
+
23
+ print (result)
24
+ ```
25
+
26
+ ### Output
27
+ #### In PyCharm
28
+
29
+
30
+
31
+
32
+ #### In CLI
33
+
34
+
35
+
36
+ ### Contributor
37
+
38
+ <a href =" https://github.com/Umesh-01 " >Umesh Singh</a >
You can’t perform that action at this time.
0 commit comments