View All
-
MySQL 계정생성 & 삭제Database/MySQL 2012. 4. 16. 16:44
생성 use mysql; insert into user (Host, User, Password) values ('localhost', 'j4ckp4rd', password('1234')); flush privileges; 데이터베이스 생성 & 권한추가 create database mydb; grant all privileges on mydb.* to j4ckp4rd@localhost identified by '1234'; 삭제 use mysql; drop database mydb; delete from user where user = 'j4ckp4rd'; delete from db where user = 'j4ckp4rd'; 루트권한 부여 GRANT ALL PRIVILEGES ON *.* to j4ckp..
-
APM SetupLinux 2012. 4. 16. 16:42
전체 설치 명령 : yum install -y httpd mysql-server mysql php php-devel php-gd php-mbstring php-mysql php-pear php-pecl-mailparse php-devel php-gd php-mbstring php-mysql php-pear php-pecl-mailparse 라이브러리 : yum install -y zlib libpng freetype gd libxml lib iconv APM 관련 프로그램 yum install -y httpd mysql-server mysql php php-devel php-gd php-mbstring php-mysql php-pear php-pecl-mailparse 1. apache setup -설치..
-
requests 기본문법Programing/Python 2012. 4. 16. 09:43
- GETr = requests.get("http://b10s.org")print r.text - POST url = "http://b10s.org"data = {"no":"10||1"}r = requests.post(url, data=data} - 헤더투가(쿠키 등등 get, post 동일)url = "http://b10s.org"header = {"Cookie":"PHPSESSID=ahfg1rq9ku7v20so4etnboo4t7"}r = requests.get(url,headers=header)print r.text - 파일 업로드url = "http://b10s.org"upload = {"mypic.png":open("mypic.png","rb")}r = requests.post(url, files..
-
pip installPrograming/Python 2012. 4. 16. 09:29
Python으로 작성된 소프트웨어 패키지를 설치하고 관리하는데는 pip를 사용하면 유용하다.예를들어 웹페이지에 있는 데이터를 긁어올때 BeautifulSoup라는 라이브러리를 사용하면 상당히 유용한데,이를 사용하기 위해선 설치를 해야한다. 이럴때 pip를 이용하자. 설치법Window1) http://pypi.python.org/pypi/setuptools 에서 easy_install 설치 (python 경로에서 Scripts 디렉토리에 설치 됨) (64bit는 ez_setup.py를 다운받아 실행하면 설치가 된다.)2) easy_install 을 이용해 pip 설치 C:\Python27\Scripts\easy_install.exe pip3) pip 사용법 C:\Python27\Scripts\pip.exe..