Posted in HTML,PHP,JavaScript

rss 디스코드 새글 보내기 파이썬

import requests
import feedparser

webhook_url = ‘https://’
# 디스코드 웹훅주소
rss_url = ‘https://’
# rss주소

def send_to_discord(message):
payload = {‘content’: message}
requests.post(webhook_url, json=payload)

def get_last_entry():
try:
with open(‘last_posted.txt’, ‘r’) as file:
return file.read().strip()
except FileNotFoundError:
return None

def update_last_entry(link):
with open(‘last_posted.txt’, ‘w’) as file:
file.write(link)

def check_rss_feed():
feed = feedparser.parse(rss_url)
latest_entry = feed.entries[0] #글순서 rss 첫번째 글1개 전송
last_posted_entry = get_last_entry()

if latest_entry.link != last_posted_entry:
send_to_discord(f”💬: {latest_entry.title} – {latest_entry.link}”)
update_last_entry(latest_entry.link)

check_rss_feed()

Posted in HTML,PHP,JavaScript

상대방 아이피 보기 예제 소스

Posted in HTML,PHP,JavaScript

JavaScript 이벤트 핸들러 객체

이벤트 핸들러와 이벤트 객체를 사용하여 다음과 같은 작업을 수행할 수 있습니다.
사용자의 상호 작용을 감지하고 이에 따라 응답을 제공합니다.
시스템의 상태 변화를 감지하고 이에 따라 UI를 업데이트합니다.
이벤트의 기본 동작을 변경하거나 취소합니다.
이벤트 핸들러와 이벤트 객체는 JavaScript에서 이벤트를 처리하는 데 필수적인 요소입니다

Posted in HTML,PHP,JavaScript

json api 호출 자바스크립트

Posted in HTML,PHP,JavaScript

메타태그 사용방법 설명정리

메타태그는 웹페이지에 대한 정보를 제공하는 HTML 태그입니다. 웹사이트 방문자에게는 보이지 않지만, 검색엔진이 웹페이지를 수집하고 이해하는 데 중요한 역할을 합니다. 메타태그는…

Posted in HTML,PHP,JavaScript

HTML 문자참조표 아스키 코드표

Latin 1 Character (ISO 8859-1) 문자 실제 참조 수치 문자 참조 설 명         행바꿈 금지 스페이스…

Posted in HTML,PHP,JavaScript

phpMyAdmin은 MySQL 및 MariaDB 데이터베이스 관리

phpMyAdmin은 MySQL 및 MariaDB 데이터베이스를 관리하기 위한 무료 오픈 소스 웹 기반 관리 도구입니다. 사용자 친화적인 인터페이스를 사용하여 웹을 통해 데이터베이스를 관리할 수 있습니다. phpMyAdmin은 PHP로 작성되었으며 90개 이상의 언어로 제공됩니다.

Posted in HTML,PHP,JavaScript

Nginx Apache 무엇이 다를까 차이점 다른점

Nginx와 Apache는 모두 무료 오픈 소스 HTTP 서버이지만, 몇 가지 중요한 차이점이 있습니다.

Posted in HTML,PHP,JavaScript

html 자바스크립트 php 차이점

html 자바스크립트 php 차이점