Skip to content

Commit 1499146

Browse files
authored
details about libraries
1 parent 66d3c40 commit 1499146

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,38 @@
11
# 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>

0 commit comments

Comments
 (0)