Skip to content

Commit

Permalink
📘 DOCS: Update
Browse files Browse the repository at this point in the history
  • Loading branch information
FernandoCelmer committed May 4, 2024
1 parent 76c27af commit 16498a7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
13 changes: 10 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@
- [ ] Unseen
- [x] Data table structure
- [x] Get emails
- [ ] Create email
- [ ] Answer email
- [ ] Get folders
- [ ] Get contacts
- [x] Download Attachments
- [x] Response JSON
- [x] Dump File JSON
Expand Down Expand Up @@ -88,14 +92,17 @@ for content in data:
# Attachments data model
print(content.attachments)

# Dump Json
# Dump File JSON
json = content.json()

# Response JSON
print(json)

# Dump HMTL
# Dump File HMTL
html = content.html()
print(html)

# Response HTML
print(html)
```

## Commit Style
Expand Down
8 changes: 6 additions & 2 deletions example.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,16 @@ def main():
# Attachments data model
print(content.attachments)

# Dump Json
# Dump File JSON
json = content.json()

# Response JSON
print(json)

# Dump HMTL
# Dump File HMTL
html = content.html()

# Response HTML
print(html)


Expand Down

0 comments on commit 16498a7

Please sign in to comment.