├── .env.example ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── cache.py ├── deps.py ├── docker-compose.yml ├── main.py ├── requirements.txt ├── schemas.py └── utils.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | fmt: 2 | find . -name "*.py" -exec /usr/local/bin/python3.9 -m black {} \; 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/README.md -------------------------------------------------------------------------------- /cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/cache.py -------------------------------------------------------------------------------- /deps.py: -------------------------------------------------------------------------------- 1 | def get_token(): 2 | pass 3 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/requirements.txt -------------------------------------------------------------------------------- /schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/schemas.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gochendong/suno-api/HEAD/utils.py --------------------------------------------------------------------------------