플럭스포인트.py
플럭스포인트.py
============
현대적이고 사용하기 쉬우며 기능이 풍부하고 비동기 지원 API 래퍼
플럭스포인트는 파이썬으로 작성되었습니다.
주요 특징들
async
및 await
를 사용하는 최신 Pythonic API. 설치 중
Python 3.8 이상이 필요합니다.
라이브러리를 설치하려면 다음 명령을 실행하면 됩니다.
# Linux/macOS
python3 -m pip install -U fluxpoint.py
# Windows
py -3 -m pip install -U fluxpoint.py
API 래퍼 속도를 높이려면 다음 명령을 실행해야 합니다.
# Linux/macOS
python3 -m pip install -U "fluxpoint.py[speed]"
# Windows
py -3 -m pip install -U fluxpoint.py[speed]
개발 버전을 설치하려면 다음을 수행하십시오.
$ git clone https://github.com/Dhruvacube/fluxpoint.py
$ cd fluxpoint.py
$ python3 -m pip install -U .[speed]
빠른 예
from fluxpoint import FluxpointClient
import asyncio
import sys
# setting up the fluxpoint client handler
a = FluxpointClient(api_token="get api token from https://fluxpoint.dev/api/access")
# setting up the windows loop policy according to the operating system
if sys.platform.startswith('win32') or sys.platform.startswith('cygwin'):
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
# getting the image url of AZURLANE image
print(asyncio.run(a.azurlane()))
examples
directory 에서 더 많은 예를 찾을 수 있습니다.
연결
드루바큐브 / 플럭스포인트.py
fluxpoint api용 비동기 파이썬 래퍼
플럭스포인트.py
현대적이고 사용하기 쉬우며 기능이 풍부하고 Python으로 작성된 Fluxpoint용 비동기 지원 API 래퍼입니다.
주요 특징들
async
및 await
를 사용하는 최신 Pythonic API. 설치 중
Python 3.8 이상이 필요합니다.
라이브러리를 설치하려면 다음 명령을 실행하면 됩니다.
# Linux/macOS python3 -m pip install -U fluxpoint.py # Windows py -3 -m pip install -U fluxpoint.py
API 래퍼 속도를 높이려면 다음 명령을 실행해야 합니다.
# Linux/macOS python3 -m pip install -U "fluxpoint.py[speed]" # Windows py -3 -m pip install -U fluxpoint.py[speed]
개발 버전을 설치하려면 다음을 수행하십시오.
$ git clone https://github.com/Dhruvacube/fluxpoint.py
$ cd fluxpoint.py
$ python3 -m pip install -U .[speed]
빠른 예
from fluxpoint import FluxpointClient import asyncio import sys # setting up the fluxpoint client handler a = FluxpointClient(api_token="get api token…
View on GitHub
Reference
이 문제에 관하여(플럭스포인트.py), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/dhruvacube/fluxpointpy-2c22텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)