본문 바로가기
728x90

사용법4

selenium 사용하기 - 파이썬 from selenium import webdriverfrom selenium.webdriver.chrome.options import Optionsimport subprocessfrom webdriver_manager.chrome import ChromeDriverManagerfrom selenium.webdriver.chrome.service import Servicefrom selenium.webdriver.common.by import By​subprocess.Popen(r'C:\Program Files (x86)\Google\Chrome\Application\chrome.exe --remote-debugging-port=9222 --user-data-dir="C:\chromeCookie"')​o.. 2024. 7. 18.
깃허브 사용법 - github 로컬에 git 을 설치했다면 이제 깃허브에 가입해서 원격저장을 해보자 * https://github.com 회원가입 * 가입 완료 후 "create repository" 로 저장소를 생성  . 이름에 본인 프로젝트명을 넣는다  . 생성이 완료되면 저장소 URL 이 나오는데 이를 GIT 과 연동한다 * git 과 연결하기  . c:\projects\mysite>git remote add origin https://github.com/myid/mysite.git . git push -u origin main 후 로그인까지 진행  . 이후 비밀번호를 묻지 않도록 설정하려면 "git config credential.helper store" 해주면 된다.  * 원격 저장소에 저장하는 순서  . 소스변경  . gi.. 2024. 7. 11.
Git 설치 및 사용방법 윈도우에서 git 을 설치해서 사용하는 방법에 대해서 다뤄보자 일단 다운로드하여 설치 - https://git-scm.com설치가 완료되었다면 git 으로 관리할 프로젝트 폴더로 이동하여 아래와 같이 진행한다.   . c:\projects\mysite>git init    Initialized empty Git repository in C:/projects/mysite/.git/ 그러면 .git 디렉토리가 생성된다. 이후 깃의 관리는 이 디렉토리에서 이뤄진다.  * git status   . c:\projects\mysite 폴더에서 'git satus'를 실행하면 현재 저장소의 상태를 출력해준다  * gitignore  . git 으로 관리자하지 않을 (.idea, jquery.min.js 등) 파일을.. 2024. 7. 10.
for문 사용법 - 파이썬 * 모델이 있는 for문 for object in object_list:    print(object.title) * 모델이 없는 for문 for i in range(1,11): #1~10까지 출력    print(i) 2024. 7. 8.
반응형