Skip to main content

work in progress

Project description

gif

Installation
pip install gif
Usage
import random
from matplotlib import pyplot as plt

import gif

Decorate your plotting function with gif.frame:

@gif.frame
def plot(x, y):
    plt.figure(figsize=(5, 5))
    plt.scatter(x, y)
    plt.xlim((0, 100))
    plt.ylim((0, 100))

Build a bunch of frames:

frames = []
for _ in range(50):
    n = 10
    x = [random.randint(0, 100) for _ in range(10)]
    y = [random.randint(0, 100) for _ in range(10)]
    frame = plot(x, y)
    frames.append(frame)

Finally, save the gif:

gif.save(frames, 'yay.gif')

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

gif-0.1.tar.gz (148.8 kB view hashes)

Uploaded Source

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