Anything World API wrapper library and CLI
Project description
Anything World Python Client
Python library and CLI for Anything World API.
To use this package you'll need to obtain a valid Anything World API key. Please, create an account in our website and then visit your profile page to get access to your API key.
Before sending your 3D models to be animated, please make sure to follow our guidelines on preparing your 3D model for success.
To understand better the underlying web requests called by this Python package, please check our API documentation.
For more information of what changed between versions, please check the CHANGELOG file.
Installing
pip install anything-world
Using
First of all, create a new .env file with your Anything World API key:
AW_API_KEY=<YOUR API KEY>
From Python
This library provides both synchronous and asynchronous implementations.
The sync implementation is based on requests and tries to keep dependencies
at minimum (i.e. no need to install asyncio nor aiohttp). However,
if you use-case requires async calls, please follow the next section for its
implementation.
Sync
Animating an existing model
from anything_world.sync_api import AWClient
from dotenv import load_dotenv
load_dotenv()
# Create a client to be able to query Anything World's API
client = AWClient()
# Search for 3D models of `cats`:
response = client.find('cats')
# Upload files from ./examples/cat folder to be animated
response = client.animate(
files_dir='./examples/cat',
model_name='some_cat',
model_type='cat',
auto_rotate=True,
is_symmetric=True
)
# If the `model_type` is not given, the AI pipeline will try to find it automatically!
response = client.animate(
files_dir='./examples/cat',
model_name='some_cat',
auto_rotate=True,
is_symmetric=True
)
# Response has the model_id of the 3D model that our AI pipeline is currently animating
model_id = response["model_id"]
# Runs a long-polling loop, starting it only after 10 seconds and after that,
# checking every 5 secs if the API is done animating the model
model_data = client.get_animated_model(
model_id=model_id,
waiting_time=5,
warmup_time=10,
verbose=True
)
# Check if our AI pipeline is done animating the model
is_finished = client.is_animation_done(model_id)
assert is_finished == True
# Gets all model data
model_data = client.get_model(model_id)
Generating 3D models from text or image prompts
You can also generate 3D models by providing a text prompt:
response = client.generate_from_text(
prompt="cow using a helmet",
)
model_data = client.get_generated_model(
model_id = response["model_id"]
)
Or by providing an image:
response = client.generate_from_image(
file_path = "./examples/cowboy.jpg",
)
model_data = client.get_generated_model(
model_id = response["model_id"]
)
Generating AND ANIMATING 3D models from text or image prompts
Anything World is the only place where you can not only generate, but animate 3D models giving only a single text prompt:
response = client.generate_animated_from_text(
prompt="cow using a helmet",
)
model_data = client.get_generated_model(
model_id = response["model_id"]
)
Or by providing a single image:
response = client.generate_animated_from_image(
file_path = "./examples/cowboy.jpg",
)
model_data = client.get_generated_model(
model_id = response["model_id"]
)
From CLI
All AWClient methods are exposed as commands of the anything CLI tool.
Just call the anything tool and it will display a manual page of the
available commands:
anything
You can do exactly the same we did in Python before through the CLI:
anything find "cat"
anything animate ./examples/cat "some cat" --is_symmetric --auto_rotate
anything get_animated_model <MODEL_ID> --verbose
anything get_model <MODEL_ID>
anything generate_from_text "cow with a helmet"
anything generate_from_image ./examples/cowboy.jpg "a cowboy"
anything get_generated_model <MODEL_ID>
anything generate_animated_from_text "soldier"
anything generate_animated_from_image ./examples/cowboy.jpg "a cowboy"
To know more about the parameters of a specific command, just run the command with no arguments to get a help message:
anything find
For more information about a command, please run the command with the --help
suffix:
anything find --help
Developing
Installing from source
git clone git@github.com:anythingworld/anything-world-python.git
cd anything-world-python
python3 -m venv venv
source venv/bin/activate
pip install -e .
Testing
pytest -v -s
Releasing a new pip package
First bump the version in pyproject.toml and then:
rm -rf dist/*
python3 -m build
python3 -m twine upload dist/* --username __token__ --password <password>
License
This Python module has a MIT-style license, as found in the LICENSE file.
The cat model in examples/cat folder is from Google Poly (CC-BY 4.0) license.
The ASCII logo was generated by https://patorjk.com/software/taag/ using the original font fuzzy.flf by Juan Car (jc@juguete.quim.ucm.es).
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file anything_world-0.2.0.tar.gz.
File metadata
- Download URL: anything_world-0.2.0.tar.gz
- Upload date:
- Size: 15.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
338bf8d2d00771bb88b600e0f5bb7fad5f835671381d2d5c4ea04419ee8762d1
|
|
| MD5 |
3db5e5eb70c950ea40aef41ec29b1071
|
|
| BLAKE2b-256 |
a0583c837f1b57547aa05d303c70dcf547c09849d3a8a569a2041c62649784f0
|
File details
Details for the file anything_world-0.2.0-py3-none-any.whl.
File metadata
- Download URL: anything_world-0.2.0-py3-none-any.whl
- Upload date:
- Size: 16.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
195567e890a16bbb02bb935d5574f4f08294a855446dd970a623bcce870bf368
|
|
| MD5 |
f682c7195a4236dc688895178412a1e1
|
|
| BLAKE2b-256 |
b81dfbe5e1ed9d7290e6f1925d2d3ee450b1637182b444b390a272eb70dc181c
|