Trace.moe python wrapper
Project description
tracemoepy
trace.moe python wrapper, does not support all api methods yet. Work in progress.
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)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tracemoepy-0.6.tar.gz
(3.0 kB
view details)
File details
Details for the file tracemoepy-0.6.tar.gz
.
File metadata
- Download URL: tracemoepy-0.6.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.46.1 CPython/3.7.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bbb8ffdc4d59f679e37a030f0c5a7ba59eaed52e4145c9795350517221b0dd10 |
|
MD5 | 1ba31b15689dcc4c0b75e1fbf1e5d06e |
|
BLAKE2b-256 | 484b5aa64fd5bb1593327bd092ea433e6e09697811afa5412c0b07a08e8b6424 |