Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sukhbinder/winzy-create-gif

Create gifs from files in a folder.
https://github.com/sukhbinder/winzy-create-gif

Last synced: about 2 months ago
JSON representation

Create gifs from files in a folder.

Awesome Lists containing this project

README

        

# winzy-create-gif

[![PyPI](https://img.shields.io/pypi/v/winzy-create-gif.svg)](https://pypi.org/project/winzy-create-gif/)
[![Changelog](https://img.shields.io/github/v/release/sukhbinder/winzy-create-gif?include_prereleases&label=changelog)](https://github.com/sukhbinder/winzy-create-gif/releases)
[![Tests](https://github.com/sukhbinder/winzy-create-gif/workflows/Test/badge.svg)](https://github.com/sukhbinder/winzy-create-gif/actions?query=workflow%3ATest)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/sukhbinder/winzy-create-gif/blob/main/LICENSE)

Create gifs from files in a folder.

## Installation

First configure your Winzy project [to use Winzy](https://github.com/sukhbinder/winzy).

Then install this plugin in the same environment as your Winzy application.
```bash
winzy install winzy-create-gif
```
## Usage

Usage instructions go here.

## Development

To set up this plugin locally, first checkout the code. Then create a new virtual environment:
```bash
cd winzy-create-gif
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```