spotigen-chat-gpt-plugin
A ChatGPT Plugin that generates Spotify playlists π΅ based on your prompts β¨.
File Explorer
- index.py
- api.py
- __init__.py
- spotify.py
- __main__.py
- index.py
- utils.py
- ai-plugin-dev.json
- ai-plugin.json
- logo.png
- openapi.yaml
- .gitignore
- CONTRIBUTING.md
- LICENSE
- main.py
- README.md
- requirements.txt
- vercel.json
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
ngrok
View Details βΌ
ngrok
Reverse proxy that creates a secure tunnel from a public endpoint to a locally running web service.
ngrok http {{80}}
Expose a local HTTP service on a given port:
ngrok http {{example.com}}:{{80}}
Expose a local HTTP service on a specific host:
ngrok http https://localhost
Expose a local HTTPS server:
pip install
View Details βΌ
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
uvicorn
View Details βΌ
uvicorn
Python ASGI HTTP Server, for asynchronous projects.
uvicorn {{import.path:app_object}}
Run Python web app:
uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}
Listen on port 8080 on localhost:
uvicorn --reload {{import.path:app_object}}
Turn on live reload:
