-
<PYTHON> requestsFlower in my dev/Python 2021. 2. 15. 09:44
1. Call import requests url = 'http://www.google.com' payload = {'param1':'value1'} headers = {'Content-Type': 'application/json; charset=utf-8'} cookies = {'session_id': 'flower'} response = requests.get(url) # response = requests.get(url, params=payload) # response = requests.get(URL, headers=headers, cookies=cookies) response = requests.post(url, data=payload) response = requests.put(url, dat..
-
<PYTHON> Slack webhookFlower in my dev/Python 2021. 2. 15. 09:10
1. python 내부함수사용 import json import requests URL = "Slack webhook url" TEXT = "Message" HEADER = {'Content-Type':'application/json'} payload= {"text": TEXT} requests.post( URL, data=json.dumps(payload), headers=HEADER ) 2. slack-webhook 사용 pypi.org/project/slack-webhook/ slack-webhook slack-webhook is a python client library for slack api Incoming Webhooks on Python 3.6 and above. pypi.org $ pip..
-
[Keychron k8 & parm rest] 개봉기Flower in my LIFE/JOY 2021. 1. 27. 17:41
해피해킹과 리얼포스만 사용하다가 기계식을 구입해봤습니다. 집에서도 업무 환경을 꾸미기위해... temp_working_place = home... white led / 옵티컬 핫스왑 / 적축 평가할 감각이 될지 모르지만.. 극도로 개인적인 평가 1. 무접점을 따라가지는 못한다. 2. 기계식은 재밌다. 3. 가성비가 좋다. 4. 가볍길 바라서 옵티컬 핫스왑을 선택했는데 가볍고 좋다. 5. 오래 사용하면 키캡이 반질반질 맨들맨들해지겠다. 6. 팜레스트는 왜 전용인지 모르겠다.. (낮다... 길이 안맞는다... 알면 안샀다...) 7. 역시 해피해킹과 리얼포스 최고!
-
-
<EC2> Amazon Linux root 로그인Flower in my ops/AWS 2021. 1. 22. 12:25
Please login as the user "ec2-user" rather than the user "root". 1. ec2-user로 로그인 2. sudo vim /etc/ssh/sshd_config -> PermitRootLogin Yes 주석해제 3. sudo cp /home/ec2-user/.ssh/authorized_keys /root/.ssh/authorized_keys 4. sudo service sshd restart
-
<PYTHON3> jupyter notebook 설치Flower in my dev/Python 2021. 1. 19. 18:07
jupyter notebook 설치 $ pip3 install jupyter Login 설정 $ jupyter notebook --generate-config $ jupyter notebook password jupyter notebook 도움말 $ jupyter notebook --h usage: jupyter-notebook [-h] [--debug] [--generate-config] [-y] [--no-browser] [--no-mathjax] [--allow-root] [--autoreload] [--script] [--no-script] [--log-level NotebookApp.log_level] [--config NotebookApp.config_file] [--ip NotebookApp..
-
<CentOS> pyenv 설치Flower in my ops/Linux 2021. 1. 19. 17:43
패키지 설치 $ yum install -y bzip2 bzip2-devel curl gcc gcc-c++ git libffi-devel make openssl-devel readline-devel sqlite sqlite-devel xz xz-devel zlib-devel pyenv 설치 $ curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash 환경변수 설정 export PATH="/home/ec2-user/.pyenv/bin:$PATH" eval "$(pyenv init -)" eval "$(pyenv virtualenv-init -)" 업데이트 확인 $ pyenv update 명령..
-
AWS CLI 설정Flower in my ops/AWS 2020. 12. 7. 15:09
참고 : docs.aws.amazon.com/ko_kr/cli/latest/userguide/cli-chap-welcome.html 1. access key & secret key - 계정정보를 클릭하여 드롭다운메뉴에서 [Security Credentials] 를 선택 - [Create access key] 를 선택하여 .csv 파일을 다운 받거나 key 정보를 복사 2.aws configure profile - 다운받은 Access key와 Secret key를 설정 - aws configure : default 설정 - aws configure --profile {PROFILE_NAME} : 계정별 제어를 할 경우 설정 더보기 $ aws configure AWS Access Key ID [None]:..