Python(7)
-
Selenium
How to Setup Selenium with Firefox on Ubuntu https://tecadmin.net/setup-selenium-with-firefox-on-ubuntu/ How to Setup Selenium with Firefox on Ubuntu Selenium is an automated web testing framework. Using this we can automate the browser functioning for testing any web application. Using selenium you can run predefined code to navigate between multiple pages and test application with predefined r..
2021.10.15 -
python mariadb
https://stackoverflow.com/questions/63027020/problem-with-pip-install-mariadb-mariadb-config-not-found Problem with pip install mariadb - mariadb_config not found I have been trying to run pip3 install mariadb on my raspberry pi running ubuntu 18.04 and I was unsuccessful. I have tried installing following packages as suggested in other answers: sudo apt-get stackoverflow.com https://mariadb.com..
2021.09.11 -
파이썬 selenium을 이용한 웹페이지 조작을 통한 정보 추출
성신여대 학생임을 확인하는 기능을 구현 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 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 import sys from selenium import webdriver from selenium.common.exceptions import ElementNotInteractableException # 인증 정보 (개인정보라서 내용은 비워둠) NAME = BIRTH_YEAR = BIRTH_MONTH = BIRTH_DAT..
2021.08.31 -
conda 에서 robobrowser, selenium 설치하기
conda install -c conda-forge robobrowser https://anaconda.org/conda-forge/robobrowser Robobrowser :: Anaconda.org Description RoboBrowser is a simple, Pythonic library for browsing the web without a standalone web browser. RoboBrowser can fetch a page, click on links and buttons, and fill out and submit forms. If you need to interact with web services that don't have anaconda.org conda install -..
2021.08.28 -
python 2 설치
https://http2.tistory.com/19 python 2, 3 동시에 사용하기 (Windows) 글쓴이는 python 3.5를 매우매우 잘 사용하는중에 python 2.7버전도 사용할 필요성을 느껴서 (글 작성일 기준 OpenCV는 python 2.7까지만 지원) python 2.7과 python 3.5버전을 둘 다 사용하는 방법에 대해서 포 http2.tistory.com
2021.08.21 -
바이트 형 (bytes)
컴퓨터의 데이터는 0, 1로 표현된다. 이러한 바이너리 데이터를 8비트씩 구분하여 나타내는 것이 바이트(bytes)이다. 바이트열 객체의 타입은 bytes 타입이며, 각 요소가 1바이트인(10진수로 0-255) 불변 균일 시퀀스이다. 바이트열 리터럴은 b" " b' ' B" " b' ' 로 표현 가능하며, 각 요소가 1바이트이기 때문에 따옴표 안의 문자는 ASCII 문자(0-255)만 가능하다. https://www.ascii-code.com/ ASCII Code - The extended ASCII table The following ASCII table with hex, octal, html, binary and decimal chart conversion contains both the ASCII ..
2021.07.23