일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 이력서
- (깃)git bash
- jsp 파일 설정
- 크롤링
- Gmarket
- RESFUL
- lda
- tomoto
- test
- java
- Topics
- Python
- word2vec
- 幼稚园杀手(유치원킬러)
- 지마켓
- 코사인 유사도
- mysql
- db
- Websocket
- oracle
- 자바
- r
- pytorch
- 게시판 만들기
- 파이썬
- 토픽추출
- 과학백과사전
- spring MVC(모델2)방식
- 네이버뉴스
- 방식으로 텍스트
- Today
- Total
목록Python (125)
무회 Blog
conda list
import re import pandas as pd import os, time from html2text import html2text from datetime import date from selenium.webdriver.common.service import _HAS_NATIVE_DEVNULL today = date.today() today = str(today) # str = "I am 12 years old , but he is 5 월 years old." # # p = re.compile(r'\d+') # p = re.compile(r'원|세') # ss = p.findall(str) # print(len(ss)) # print(today) # # 경로 체크 하기 patt = 'D:\Src..
readWrite_Zb001.py(텍스트 내리기) import re import time import pandas as pd from bs4 import BeautifulSoup import selenium as se from selenium import webdriver from selenium.webdriver.common.keys import Keys from selenium.webdriver.common.action_chains import ActionChains import pyautogui as pa from datetime import date # Out[51]: Point(x=1914, y=1029) today = date.today() today = str(today) print(type..
python:리스트를 단위별(7개씩) 자르고 리스트에 담게 aal 은 리스트임 unit = 7 aals = [aal[i : i + unit] for i in range(0,len(aal), unit)] print(aals[0])
드래그 # -*- coding: utf-8 -*- from selenium import webdriver from selenium.webdriver.common.action_chains import ActionChains from time import sleep driver = webdriver.Chrome() driver.implicitly_wait(10) driver.maximize_window() driver.get('http://sahitest.com/demo/dragDropMooTools.htm') dragger = driver.find_element_by_id('dragger') # 被拖拽元素 # item1 = driver.find_element_by_xpath('//div[text()="It..