8000 GitHub - DragSama/tracemoepy at v3.1
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

DragSama/tracemoepy

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

92 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tracemoepy

trace.moe python wrapper, does not support all api methods yet. Work in progress.

Codacy Badge

PyPI version Downloads

Install

  • Install using pip: pip install tracemoepy

Examples

  • All the examples below are after this piece of code:
import tracemoepy
tracemoe = tracemoepy.tracemoe.TraceMoe()
  • You can search image like:
print(tracemoe.search('https://trace.moe/img/flipped-good.jpg', is_url = True))
  • Or if you provide base64 encoded image:
print(tracemoe.search(image, encode=False))
  • Or if you want to just provide the image, The wrapper will encode image using base64:
print(tracemoe.search('a.jpg', encode=True))
  • Video Preview (Gives content):
output = tracemoe.search('https://trace.moe/img/flipped-good.jpg', is_url = True)
tracemoe.video_preview(output)
  • Save video preview
output = tracemoe.search('https://trace.moe/img/flipped-good.jpg', is_url = True)
video = tracemoe.video_preview(output)
with open('preview.mp4', 'wb') as f:
  f.write(video)

Asyncio

import tracemoepy
import asyncio
tracemoe = tracemoe.asynctrace.Async_Trace()
async def anything():
   #return await + Anything from the above examples
   #like:
   return await tracemoe.search('https://trace.moe/img/flipped-good.jpg', is_url = True)
loop = asyncio.get_event_loop()
loop.run_until_complete(anything())

Errors

  • TooManyRequests: Raised when API Limit is reached or Too many requests in short period of time.
  • EntityTooLarge: Raised when image size is greater than max size of 10MB.
  • ServerError: Raised when Something wrong with the trace.moe server or Image provided was malformed.
  • InvalidToken: Raised when Invalid token was provided.
  • EmptyImage: Raised when Image provided was empty.
  • All these errors are located at tracemoepy.errors, Example of handling Exception:
from tracemoepy.errors import TooManyRequests

try:
  # Do something
except TooManyRequests as t:
  print(t)
  # Do something if error

About

trace.moe python3 wrapper

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages

0