Skip to content

Instantly share code, notes, and snippets.

View nomadekr's full-sized avatar

Chinseok Lee nomadekr

View GitHub Profile
@nomadekr
nomadekr / README.md
Last active January 28, 2020 15:02
AWS chalice 에서 jinja2 템플릿 활용하기

AWS chalice 에서 jinja2 템플릿 활용하기

디렉토리 구조

  • app.py
  • requirements.txt
  • chalicelib/
    • tempaltes/
      • index.html
@nomadekr
nomadekr / my.zshrc
Created December 10, 2017 04:58
My Zshrc 설정
export PS1="
%{$GREEN_BOLD%}%n@%m%{$WHITE%}:%{$YELLOW%}%~%u$(parse_git_dirty)$(git_prompt_ahead)%{$RESET_COLOR%}
%{$BLUE%}>%{$RESET_COLOR%} "
@nomadekr
nomadekr / README.md
Last active December 8, 2017 10:11
Python Korea 2017년 12월 세미나 - Azure Functions을 활용한 파이썬 크롤링 스케줄링
  • nuget 에서 지원하는 파이썬 3.6을 설치해봅시다.
  • 함수 앱 > 플랫폼 기능 > 고급도구 (KUDU) > Debug Console > CMD
  • tools 디렉토리에 파이썬3 설치
CMD> nuget.exe install -Source https://www.siteextensions.net/api/v2/ -OutputDirectory D:\home\site\tools python361x64
  • Azure Function에서 접근가능한 경로에 Python3 이동

Goorm IDE

쉘> rm -rf manage.py 프로젝트명
쉘> pip3 install --upgrade django requests beautifulsoup4
쉘> django-admin --version
쉘> django-admin startproject 프로젝트명 .    # 끝에 . 을 꼭 쓰세요.
@nomadekr
nomadekr / README.md
Last active November 29, 2017 15:19
Azure Function 샘플 / 네이버 웹툰 크롤링 샘플

Azure Function을 활용해서, 네이버 웹툰 웹데이트 현황 크롤링해서 HTML로 보여주기

  • 새 함수 앱
    • Http Trigger/Output으로 생성
    • 권한수준은 Anonymous로 지정
  • 생성된 함수앱의 통합 메뉴
    • 선택한 HTTP 메서드에 GET추가

동작 페이지 : https://snu2017.azurewebsites.net/api/HttpTriggerPython31

@nomadekr
nomadekr / README.md
Last active November 29, 2017 01:42
Install Python 3.6.1 (x64) on Azure AppService Windows

Extension을 통한 설치에서는 종종 Timeout이 발생합니다.

본 설치를 통해 Azure Function에서 파이썬3를 활용하고 있습니다.

  • 함수 앱 > 플랫폼 기능 > 고급도구 (KUDU) > Debug Console > CMD