├── .gitignore ├── README.md ├── __init__.py ├── atem.py ├── config.py.dist └── roadmap.md /.gitignore: -------------------------------------------------------------------------------- 1 | config.py 2 | *.pyc 3 | .idea -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxpert/PyATEM/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /atem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxpert/PyATEM/HEAD/atem.py -------------------------------------------------------------------------------- /config.py.dist: -------------------------------------------------------------------------------- 1 | address='127.0.0.1' 2 | -------------------------------------------------------------------------------- /roadmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sxpert/PyATEM/HEAD/roadmap.md --------------------------------------------------------------------------------