├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── Huxleyfile ├── toggle.huxley │ ├── record.json │ ├── screenshot0.png │ ├── screenshot1.png │ └── screenshot2.png ├── type.huxley │ ├── record.json │ ├── screenshot0.png │ └── screenshot1.png └── webroot │ ├── toggle.html │ └── type.html ├── huxley ├── __init__.py ├── cmdline.py ├── consts.py ├── errors.py ├── images.py ├── integration.py ├── main.py ├── run.py ├── steps.py ├── threadpool.py └── version.py ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | Huxley.egg-info 3 | *.pyc 4 | build/ 5 | dist/ 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/README.md -------------------------------------------------------------------------------- /examples/Huxleyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/Huxleyfile -------------------------------------------------------------------------------- /examples/toggle.huxley/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/toggle.huxley/record.json -------------------------------------------------------------------------------- /examples/toggle.huxley/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/toggle.huxley/screenshot0.png -------------------------------------------------------------------------------- /examples/toggle.huxley/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/toggle.huxley/screenshot1.png -------------------------------------------------------------------------------- /examples/toggle.huxley/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/toggle.huxley/screenshot2.png -------------------------------------------------------------------------------- /examples/type.huxley/record.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/type.huxley/record.json -------------------------------------------------------------------------------- /examples/type.huxley/screenshot0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/type.huxley/screenshot0.png -------------------------------------------------------------------------------- /examples/type.huxley/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/type.huxley/screenshot1.png -------------------------------------------------------------------------------- /examples/webroot/toggle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/webroot/toggle.html -------------------------------------------------------------------------------- /examples/webroot/type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/examples/webroot/type.html -------------------------------------------------------------------------------- /huxley/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/__init__.py -------------------------------------------------------------------------------- /huxley/cmdline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/cmdline.py -------------------------------------------------------------------------------- /huxley/consts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/consts.py -------------------------------------------------------------------------------- /huxley/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/errors.py -------------------------------------------------------------------------------- /huxley/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/images.py -------------------------------------------------------------------------------- /huxley/integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/integration.py -------------------------------------------------------------------------------- /huxley/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/main.py -------------------------------------------------------------------------------- /huxley/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/run.py -------------------------------------------------------------------------------- /huxley/steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/steps.py -------------------------------------------------------------------------------- /huxley/threadpool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/threadpool.py -------------------------------------------------------------------------------- /huxley/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/huxley/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/huxley/HEAD/setup.py --------------------------------------------------------------------------------