├── .gitignore ├── LICENSE ├── README.md ├── download.py └── flounder.py /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | 3 | !.gitignore 4 | !flounder.py 5 | !download.md 6 | 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamozolabs/flounder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamozolabs/flounder/HEAD/README.md -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamozolabs/flounder/HEAD/download.py -------------------------------------------------------------------------------- /flounder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gamozolabs/flounder/HEAD/flounder.py --------------------------------------------------------------------------------