Skip to content

cord0318/python_tenor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

TENOR

파이썬용 Gif 라이브러리입니다.

Download

pip install tenor

How To Use

# 비동기
import tenor
import asyncio

async def main():
    print(await tenor.asyncSearchGif("gif 이름", "가져올 수", "다운로드 확인", "다운로드 경로"))

asyncio.get_event_loop().run_until_complete(main())
# 동기
import tenor

print(tenor.searchGif("gif 이름", "가져올 수", "다운로드 확인", "다운로드 경로"))

Example

import tenor

print(tenor.searchGif("excited", 1, True, ""))

Tip

이 모듈을 사용하여 디스코드 봇을 만들수 있습니다!

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages