Skip to main content

generate jsfiddle files

Project description

Installation

$ [sudo] pip install jsfiddle-generator

How it works

jsfiddle github repo files:

.
├── demo.html
├── demo.css
├── demo.js
├── demo.details

jsfiddle github gist files:

.
├── fiddle.html
├── fiddle.css
├── fiddle.js
├── fiddle.manifest

Examples

create demo.css, demo.js, demo.details in every dir with demo.html:

$ find . -name "demo.html" -exec python -m jsfiddle_generator.repo {} \;

create jsfiddle repo files in every empty dir:

find . -not -path '*/\.*' -type d -links 2 -exec python -m jsfiddle_generator.repo {} \;


paths with spaces:

OS speed command
any slow find ... -exec python -m jsfiddle_generator.repo {} \;
Linux fast find ... -print0 | xargs -d '\n' python -m jsfiddle_generator.repo
macOS fast find ... -print0 | xargs -0 python -m jsfiddle_generator.repo

Related

Links

readme42.com

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

jsfiddle-generator-2020.7.1.tar.gz (2.7 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