Output of inspect.is* for all members of
class Example:
@property
def _property(self):
pass
async def _coroutine(self):
pass
async def _coroutinegen(self):
| /** | |
| * Generates a WebM video from an array of WebP images by making all | |
| * of them key frames. | |
| * For references, see: | |
| * * WebP container format: https://developers.google.com/speed/webp/docs/riff_container | |
| * * VP8 spec: https://datatracker.ietf.org/doc/rfc6386/?include_text=1 | |
| * * EBML guide: https://matroska-org.github.io/libebml/specs.html | |
| * | |
| * To use in the browser, compile and pass to Blob constructor: | |
| * blob = new Blob(video.compile(), { type: "video/webm" }); |
| const {ArgumentParser} = require('argparse'); | |
| const glob = require('glob'); | |
| const fs = require('fs'); | |
| const {round10} = require('round10'); | |
| function main() { | |
| let parser = new ArgumentParser({ description: "minify replay files."}); | |
| parser.addArgument('glob'); | |
| let args = parser.parseArgs(); | |
| let stats = []; |
| import asyncio | |
| import functools | |
| import inspect | |
| import os | |
| import re | |
| import subprocess | |
| import sys | |
| import threading | |
Output of inspect.is* for all members of
class Example:
@property
def _property(self):
pass
async def _coroutine(self):
pass
async def _coroutinegen(self):
states.yml lists some possible states we can consider for installable candidates and how we
can create new artifacts that give us more information during the installation process.
Conventions:
One possible implementation may look like: