Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Optimize websites for both traditional search engines (Google, Bing) and AI engines (ChatGPT, Perplexity, Gemini)
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
scripts/credential.py
1#!/usr/bin/env python32"""3Credential helper for DataForSEO API4"""5import os678def get_dataforseo_credentials() -> tuple:9"""Get DataForSEO login and password from environment"""10login = os.environ.get("DATAFORSEO_LOGIN")11password = os.environ.get("DATAFORSEO_PASSWORD")12return login, password13