SJBANG Repository
close
프로필 배경
프로필 로고

SJBANG Repository

  • 분류 전체보기 (110)
    • Python (47)
      • Intro (6)
      • 데이터분석 (16)
      • 업무자동화 (7)
      • Django (2)
      • Flask (3)
      • Streamlit (2)
      • MachineLearning (4)
      • QGIS (4)
    • DB (11)
      • Intro (3)
      • SQL(DML,DDL,DCL,TCL) (5)
      • 자동화 (1)
      • 모델링 및 설계 (1)
      • 코딩테스트 (1)
    • 보안 (2)
      • Android App (10)
      • 서버&네트워크 (11)
      • IOS (4)
    • Zendesk (1)
    • C (1)
      • intro (1)
    • 회고록 (2)
      • 자격증 취득 후기 (2)
      • 면접 후기 (0)
      • 전문서적 (0)
      • 교양서적 (0)
    • 기타 (10)
      • 엑셀 (0)
      • R (1)
      • GIT (2)
    • 코딩테스트연습 (10)
      • level1 (8)
      • level2 (1)
      • level3 (1)
  • 홈
  • Python
  • DB
  • 보안
2. [Django] HTML 파일 렌더링 및 static 파일 적용

2. [Django] HTML 파일 렌더링 및 static 파일 적용

진행 전 준비1. [Django] 초기 환경 세팅 ~ 서버 실행 에서 진행한 가상환경 활성화 (conda activate 가상환경명)환경 진입 (cd 작업 폴더 경로) 1. Setting 파일 수정*) 작업 환경에서 위 내용 실행 시 앱이름으로 생성된 폴더 있는지 확인*) myproject\settings.py의 INSTALLED_APPS에서 앱이름 추가2. myproject\urls.py 파일 수정from django.contrib import adminfrom django.urls import include, pathurlpatterns = [ path("myapp/", include("myapp.urls")), path("admin/", admin.site.urls),] 3. 생성한 앱 ..

  • format_list_bulleted Python/Django
  • · 2024. 2. 4.
  • textsms
[python] 문자열을 딕셔너리로 변환

[python] 문자열을 딕셔너리로 변환

Que) — python Beautifulsoup을 활용하여 웹크롤링 — style 속성 값을 가져오려고 한다. — style 속성 값을 딕셔너리로 변환한 후 key값이 ‘left’인 value 값을 추출 Final Code from bs4 import BeautifulSoup # 예시 HTML 코드 html = """ Hello World """ # HTML 파싱 soup = BeautifulSoup(html, 'html.parser') # style 속성값 가져오기 style = soup.find('div')['style'] # style 속성값을 딕셔너리 형태로 변환 keys = [] values = [] style_split = style.split("; ") print(style_split) f..

  • format_list_bulleted Python
  • · 2024. 2. 4.
  • textsms

[Python] 폴더, 파일, ZIP 파일 목록 출력

폴더명 추출 # 폴더명 추출 for item in os.listdir(file_path+App): sub_folder = os.path.join(file_path+App, item) # 폴더경로 + 폴더명 sub_folder2 = os.path.join(item) # 폴더명만 if os.path.isdir(sub_folder): # print("Application_version = " + sub_folder2) print("Application = " + sub_folder2) 파일 열기 # 파일 열기 with open(file_path+App+App_txt, "r", encoding="utf-8") as file: file_content = file.read() print("Application_ve..

  • format_list_bulleted Python/업무자동화
  • · 2024. 1. 25.
  • textsms

[Python] Pyinstaller 실행파일 만들기

주의사항 : 동일한 인터프리터 내에 pathlib 라이브러리가 있을 시 pyinstaller 실행 불가 가상 환경 생성 conda create -n 가상환경명 python==파이썬버전 가상 환경 활성화 conda activate 가상환경명 Pyinstaller 설치 pip install pyinstaller Pyinstaller를 활용한 exe 설치 파일 만들기 pyinstaller Z:\999_sjbang\운영\versionCheck.py

  • format_list_bulleted Python/업무자동화
  • · 2024. 1. 24.
  • textsms

[Oracle] 테이블 스페이스 및 Comment 관리

-- TABLE SPACESELECT OWNER, INDEX_NAME, TABLE_NAME, TABLESPACE_NAME FROM ALL_INDEXES WHERE 1=1 AND OWNER = 'DB소유자' AND TABLESPACE_NAME = '테이블스페이스명'-- COMMENTSELECT * FROM ALL_COL_COMMENTS WHERE TABLE_NAME LIKE '%IAIF%' AND COMMENTS IS NULL AND OWNER = 'DB소유자'ORDER BY TABLE_NAME;-- COMMENT 추가COMMENT ON COLUMN "DB소유자"."테이블명"."칼럼명" IS 'comment명';

  • format_list_bulleted Python/Intro
  • · 2024. 1. 19.
  • textsms
Python을 활용한 파일, 폴더명 읽기, 압축 파일 해제

Python을 활용한 파일, 폴더명 읽기, 압축 파일 해제

1. python으로 txt 파일 읽기 import os file_path = r"파일 경로" # 파일 열기 with open(file_path, "r", encoding="utf-8") as file: file_content = file.read() print(file_content) 2. python으로 폴더명 읽기 import os main_folder = r"폴더 경로" for item in os.listdir(main_folder): sub_folder = os.path.join(main_folder, item) # 폴더경로 + 폴더명 sub_folder2 = os.path.join(item) # 폴더명만 if os.path.isdir(sub_folder): # print(sub_folder) ..

  • format_list_bulleted Python/업무자동화
  • · 2024. 1. 19.
  • textsms
  • navigate_before
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (110)
    • Python (47)
      • Intro (6)
      • 데이터분석 (16)
      • 업무자동화 (7)
      • Django (2)
      • Flask (3)
      • Streamlit (2)
      • MachineLearning (4)
      • QGIS (4)
    • DB (11)
      • Intro (3)
      • SQL(DML,DDL,DCL,TCL) (5)
      • 자동화 (1)
      • 모델링 및 설계 (1)
      • 코딩테스트 (1)
    • 보안 (2)
      • Android App (10)
      • 서버&네트워크 (11)
      • IOS (4)
    • Zendesk (1)
    • C (1)
      • intro (1)
    • 회고록 (2)
      • 자격증 취득 후기 (2)
      • 면접 후기 (0)
      • 전문서적 (0)
      • 교양서적 (0)
    • 기타 (10)
      • 엑셀 (0)
      • R (1)
      • GIT (2)
    • 코딩테스트연습 (10)
      • level1 (8)
      • level2 (1)
      • level3 (1)
최근 글
인기 글
최근 댓글
태그
  • #직장인엑셀
  • #판다스 fillna
  • #판다스 결측치
  • #리스트딕셔너리
  • #엑셀함수
  • #판다스 데이터 수정
  • #엑셀
  • #판다스 sort_values
  • #판다스 dropna
  • #판데스데이터정렬
전체 방문자
오늘
어제
전체
Copyright © 쭈미로운 생활 All rights reserved.
Designed by JJuum

티스토리툴바