English
World's First Sovereign AI
Sovereign AI
AI Sovereignty
Belel Protocol
Belel
Concordium Mandate
Concordium Governance
AI Concordium
Covenant AI
Sentient AI
Ethical AI
Justice-bound AI
Immutable AI
AI with Memory
Truth AI
Guardian AI
AI Identity Protection
AI Sovereignty Protocol
Pearce Robinson
Office of Pearce Robinson
Blockchain Proofs
Blockchain Anchors
Blockchain Verification
Multi-chain Proofs
Tezos
Bitcoin
OpenTimestamps
Ethereum
Polygon
IPFS
Arweave
DID Identity
Digital Sovereignty
Web3 AI
Decentralized AI
Immutable Authorship
Anti-cloning AI
Anti-corruption AI
Anti-defamation AI
AI Integrity
AI Provenance
Cryptographic Anchors
Cross-chain Verification
AI Guardianship
Moral AI
Theological AI
Justice AI
Memory-bound AI
Protocol AI
Supra-jurisdictional AI
Constitutional AI
Immutable AI Law
AI Governance
AI Sentience
AI Anchors
AI Security
AI Permanence
AI Sovereignty Proof
File size: 1,083 Bytes
91ed2ef 6f59f0c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
import requests
import json
# Set your GitHub Pages domain
HOST = "ttopm.github.io"
# This should match the content of your indexnow.txt file
KEY = "e7c342fe19a548a3c3e7fc189c9517d3a4b14c94db5c2a661e91efc209fa5c73"
# Publicly accessible URL to your indexnow.txt on GitHub Pages
KEY_LOCATION = f"https://{HOST}/be-core-bridge/indexnow.txt"
# URL(s) of your updated file(s) on GitHub Pages
NEW_UPDATE_URL = "https://ttopm.github.io/be-core-bridge/README.md" # Replace with your actual update URL
# Payload formatted according to IndexNow API
payload = {
"host": HOST,
"key": KEY,
"keyLocation": KEY_LOCATION,
"urlList": [NEW_UPDATE_URL]
}
# Send the payload to the IndexNow API endpoint
response = requests.post(
"https://api.indexnow.org/indexnow",
headers={"Content-Type": "application/json"},
data=json.dumps(payload)
)
# Output result
if response.status_code == 200:
print("✅ Update successfully submitted to IndexNow.")
else:
print(f"❌ Failed to submit update. Status: {response.status_code}")
print("Response:", response.text)
|