├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── automagica ├── __init__.py ├── activities.py ├── bin │ ├── linux64 │ │ └── chromedriver │ ├── mac64 │ │ └── chromedriver │ └── win32 │ │ └── chromedriver.exe └── command_line.py ├── docs ├── Makefile ├── _build │ └── doctrees │ │ ├── environment.pickle │ │ ├── images │ │ ├── 6787a6ecc801e2112074827fc474cac013314d82 │ │ │ └── logo.png │ │ └── https │ │ │ └── i.imgur.com │ │ │ ├── 7gSv7gc.png │ │ │ └── 7gSv7gc.png │ │ │ ├── A2xdvUP.png │ │ │ └── A2xdvUP.png │ │ │ ├── V3p8spl.jpg │ │ │ └── V3p8spl.jpg │ │ │ ├── WRD46Xi.png │ │ │ └── WRD46Xi.png │ │ │ ├── jMj2ypX.png │ │ │ └── jMj2ypX.png │ │ │ └── rh3OUdh.jpg │ │ │ └── rh3OUdh.jpg │ │ └── index.doctree ├── index.md └── make.bat ├── examples ├── browser │ ├── app.py │ └── google_search_links.py ├── excel │ ├── app.py │ └── example.xlsx ├── multiprogram │ ├── USPresidents.py │ ├── USPresidents.xlsx │ ├── app.py │ └── data.xlsx ├── november_training │ ├── excercise.py │ └── solution.py ├── ocr │ ├── app.py │ └── example.jpg ├── paint │ ├── app.py │ └── example.jpg ├── sap │ └── app.py ├── word │ ├── app.py │ └── example.docx └── workshop │ ├── workshop_demo.py │ └── workshop_demo_oslo.py ├── images ├── USPresidents.gif ├── automagica_drawing.gif ├── browser_excel.gif ├── logo.png ├── logo_thumbnail.png └── sap.gif ├── portal └── activities.json └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/README.md -------------------------------------------------------------------------------- /automagica/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/__init__.py -------------------------------------------------------------------------------- /automagica/activities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/activities.py -------------------------------------------------------------------------------- /automagica/bin/linux64/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/bin/linux64/chromedriver -------------------------------------------------------------------------------- /automagica/bin/mac64/chromedriver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/bin/mac64/chromedriver -------------------------------------------------------------------------------- /automagica/bin/win32/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/bin/win32/chromedriver.exe -------------------------------------------------------------------------------- /automagica/command_line.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/automagica/command_line.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_build/doctrees/environment.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/environment.pickle -------------------------------------------------------------------------------- /docs/_build/doctrees/images/6787a6ecc801e2112074827fc474cac013314d82/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/6787a6ecc801e2112074827fc474cac013314d82/logo.png -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/7gSv7gc.png/7gSv7gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/7gSv7gc.png/7gSv7gc.png -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/A2xdvUP.png/A2xdvUP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/A2xdvUP.png/A2xdvUP.png -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/V3p8spl.jpg/V3p8spl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/V3p8spl.jpg/V3p8spl.jpg -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/WRD46Xi.png/WRD46Xi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/WRD46Xi.png/WRD46Xi.png -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/jMj2ypX.png/jMj2ypX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/jMj2ypX.png/jMj2ypX.png -------------------------------------------------------------------------------- /docs/_build/doctrees/images/https/i.imgur.com/rh3OUdh.jpg/rh3OUdh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/images/https/i.imgur.com/rh3OUdh.jpg/rh3OUdh.jpg -------------------------------------------------------------------------------- /docs/_build/doctrees/index.doctree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/_build/doctrees/index.doctree -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/docs/make.bat -------------------------------------------------------------------------------- /examples/browser/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/browser/app.py -------------------------------------------------------------------------------- /examples/browser/google_search_links.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/browser/google_search_links.py -------------------------------------------------------------------------------- /examples/excel/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/excel/app.py -------------------------------------------------------------------------------- /examples/excel/example.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/excel/example.xlsx -------------------------------------------------------------------------------- /examples/multiprogram/USPresidents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/multiprogram/USPresidents.py -------------------------------------------------------------------------------- /examples/multiprogram/USPresidents.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/multiprogram/USPresidents.xlsx -------------------------------------------------------------------------------- /examples/multiprogram/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/multiprogram/app.py -------------------------------------------------------------------------------- /examples/multiprogram/data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/multiprogram/data.xlsx -------------------------------------------------------------------------------- /examples/november_training/excercise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/november_training/excercise.py -------------------------------------------------------------------------------- /examples/november_training/solution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/november_training/solution.py -------------------------------------------------------------------------------- /examples/ocr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/ocr/app.py -------------------------------------------------------------------------------- /examples/ocr/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/ocr/example.jpg -------------------------------------------------------------------------------- /examples/paint/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/paint/app.py -------------------------------------------------------------------------------- /examples/paint/example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/paint/example.jpg -------------------------------------------------------------------------------- /examples/sap/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/sap/app.py -------------------------------------------------------------------------------- /examples/word/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/word/app.py -------------------------------------------------------------------------------- /examples/word/example.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/word/example.docx -------------------------------------------------------------------------------- /examples/workshop/workshop_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/workshop/workshop_demo.py -------------------------------------------------------------------------------- /examples/workshop/workshop_demo_oslo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/examples/workshop/workshop_demo_oslo.py -------------------------------------------------------------------------------- /images/USPresidents.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/USPresidents.gif -------------------------------------------------------------------------------- /images/automagica_drawing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/automagica_drawing.gif -------------------------------------------------------------------------------- /images/browser_excel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/browser_excel.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/logo_thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/logo_thumbnail.png -------------------------------------------------------------------------------- /images/sap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/images/sap.gif -------------------------------------------------------------------------------- /portal/activities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/portal/activities.json -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/awesome-python/Automagica/HEAD/setup.py --------------------------------------------------------------------------------