본문 바로가기
728x90

프로그래밍/파이썬28

텔레그램 봇 메세지 발송 및 발송 오류 해결법 텔레그램 봇 메세지 발송 및 발송 오류 해결법 최근 버전에서 발송하려면 아래처럼 에러가 나옵니다. RuntimeWarning: coroutine 'Bot.send_message' was never awaited RuntimeWarning: Enable tracemalloc to get the object allocation traceback 아래는 이전에 쓰던 코드 import telegram token = '텔레그램 봇 API' bot = telegram.Bot(token=token) bot.send_message(chat_id,'보낼메세지') 최신 버전에 따른 변경된 코드 import asyncio import telegram async def main(): #실행시킬 함수명 임의지정 token = .. 2023. 3. 19.
파이썬 python 괄호 안의 내용 모두 삭제 파이썬 python 괄호안의 내용 모두 삭제 아래는 대괄호 [ ] 안에 있는 import re pattern = r'\[[^]]*\]' x = '이건 [괄호 안의 불필요한 정보를] 삭제하는 코드' text = re.sub(pattern=pattern, repl='', string= x) print(text) ==> 이건 삭제하는 코드 이렇게 나온다 아래는 소괄호 ( ) 안에 있는 import re pattern = r'\([^)]*\)' x = '이건 (괄호 안의 불필요한 정보를) 삭제하는 코드' text = re.sub(pattern=pattern, repl='', string= x) print(text) ==> 이건 삭제하는 코드 2023. 2. 10.
파이썬 운영체제(os) 확인하기 파이썬에서 실행하는 운영체제를 확인할수있다 아래코드를 이용하면 된다. import platform print(platform.system()) 윈도우 일 경우 => Windows 리눅스 일 경우 => Linux 로 확인 할 수 있다. 2023. 2. 4.
파이썬 오라클 연결 코드 Python oracle example 파이썬 오라클 연결 코드 입니다 import cx_Oracle # Connect to the database connection = cx_Oracle.connect("username", "password", "host:port/sid") # Create a cursor cursor = connection.cursor() # Execute a query cursor.execute("SELECT * FROM employees") # Fetch all the rows rows = cursor.fetchall() # Loop through the rows for row in rows: print(row) # Close the cursor and connection cursor.close() connection... 2023. 1. 22.
728x90