├── .gitignore ├── README.md ├── __init__.py └── autoFormer.py /.gitignore: -------------------------------------------------------------------------------- 1 | .venv 2 | .DS_store 3 | chromedriver 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanboe/autoFormer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autoFormer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seanboe/autoFormer/HEAD/autoFormer.py --------------------------------------------------------------------------------