You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

ai2thor-colab

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ai2thor-colab - pypi Package Compare versions

Comparing version
0.1.1
to
0.1.2
+1
-1
ai2thor_colab.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: ai2thor-colab
Version: 0.1.1
Version: 0.1.2
Summary: Utility functions for using AI2-THOR with Google Colab.

@@ -5,0 +5,0 @@ Home-page: https://github.com/allenai/ai2thor-colab

numpy
moviepy
moviepy>=1.0.3
pandas
ai2thor
Pillow
from IPython.display import HTML, display
import sys
import imageio
# this has no cost when ffmpeg is already downloaded, but
# it prevents moviepy from displaying an annoying message
saved_stdout = sys.stdout
with open("/dev/null", "w") as f:
sys.stdout = f
imageio.plugins.ffmpeg.download()
sys.stdout = saved_stdout
from moviepy.editor import ImageSequenceClip

@@ -25,3 +15,3 @@ from typing import Sequence

__version__ = "0.1.1"
__version__ = "0.1.2"
__all__ = ["plot_frames", "show_video", "start_xserver", "overlay", "side_by_side"]

@@ -28,0 +18,0 @@

Metadata-Version: 2.1
Name: ai2thor_colab
Version: 0.1.1
Version: 0.1.2
Summary: Utility functions for using AI2-THOR with Google Colab.

@@ -5,0 +5,0 @@ Home-page: https://github.com/allenai/ai2thor-colab

from setuptools import setup
version = "0.1.1"
version = "0.1.2"

@@ -18,3 +18,3 @@ with open("README.md", encoding="utf-8") as f:

author="Allen Institute for AI",
install_requires=["numpy", "moviepy", "pandas", "ai2thor", "Pillow"],
install_requires=["numpy", "moviepy>=1.0.3", "pandas", "ai2thor", "Pillow"],
url="https://github.com/allenai/ai2thor-colab",

@@ -21,0 +21,0 @@ classifiers=[