├── .gitignore ├── DESCRIPTION.txt ├── LICENSE ├── LICENSE.txt ├── Pipfile ├── Pipfile.lock ├── README.md ├── bin └── phatgpt ├── release.sh └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/DESCRIPTION.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Pipfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/Pipfile -------------------------------------------------------------------------------- /Pipfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/Pipfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/README.md -------------------------------------------------------------------------------- /bin/phatgpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/bin/phatgpt -------------------------------------------------------------------------------- /release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/release.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/th3r00t/phatgpt/HEAD/setup.py --------------------------------------------------------------------------------