Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
StawaDev committed Oct 23, 2022
1 parent d8dac54 commit cb24388
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,15 @@ print(Estrapy.__version__) # Print current version of Estrapy-API
### <span class="emoji">❔</span> Help Functions for Estrapy-API

```py
import Estrapy
from Estrapy import EstraClient
import asyncio

client = EstraClient()

async def Help():
print(Estrapy.Help.sfw()) # Print all sfw endpoints
print(Estrapy.Help.nsfw()) # Print all nsfw endpoints
print(Estrapy.Help().all()) # Print all sfw, nsfw endpoints in once
print(client.Help.sfw()) # Print all sfw endpoints
print(client.Help.nsfw()) # Print all nsfw endpoints
print(client.Help.all()) # Print all sfw, nsfw endpoints in once

asyncio.run(Help())
```
Expand Down

0 comments on commit cb24388

Please sign in to comment.