Skip to main content

일러스트(SFW, NSFW) 크롤링 라이브러리

Project description

Nekofun

Github

How to use

Install

pip install nekofun

Example

[async]

from nekofun import client
import asyncio

async def main():
  # 클래스를 정의해줍니다.
  get = client.Get()
  result = await get.cry() # 우는 그림(or gif)를 가져옵니다.
  result = result.content # 링크형태로 반환합니다.
  print(result)

loop = asyncio.get_event_loop()
loop.run_until_complete(main())
loop.close()

[sync]

from nekofun import sync

sync = sync.Get() # 클래스를 정의해줍니다.
result = sync.cry() # 우는 그림(or gif)를 가져옵니다.
print(result.content) # 링크형태로 반환하여 출력합니다.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nekofun-1.0.0.tar.gz (4.3 kB view hashes)

Uploaded Source

Built Distribution

nekofun-1.0.0-py3-none-any.whl (5.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page