본문 바로가기

전체 글

(177)
[파이썬으로 영화 예매 오픈 알리미 만들기] 2. 텔레그램 봇 텔레그램 봇 구축하기 우선, 텔레그램 어플에 들어가서 다음과 같은 단계를 따른다. 그렇게 되면 다음과 같은 메세지가 뜨는데, 여기 있는 Token을 통해 HTTP API에 접근할 수 있다. 그럼 movieAlarmBot을 검색해서 들어가보자. 그리고 'hi' 라는 메세지를 보내면 Bot은 나의 고유의 ID값을 알 수 있게 되고, 이를 통해 Bot이 나에게 메세지를 보낼 수 있게 되는 것이다. 자, 그럼 이제 파이썬으로 텔레그램 봇을 구축해보자. 그 전에, python-telegram-bot 모듈을 설치해보자. >pip install python-telegram-bot telegram_bot.py 파일을 하나 새로 생성한 후 다음과 같은 코드를 넣어서 확인하면 그러면 메세지를 보낸 사용자의 ID를 가져올 ..
[파이썬으로 영화 예매 오픈 알리미 만들기] 1. 웹 크롤링 인프런 강좌 - 파이썬으로 영화 예매 오픈 알리미 만들기 / 한승우 https://www.inflearn.com/course/%EC%98%81%ED%99%94%EC%98%88%EB%A7%A4-%ED%8C%8C%EC%9D%B4%EC%8D%AC# 파이썬으로 영화 예매 오픈 알리미 만들기 - 인프런 파이썬을 통해 웹 크롤링, 텔레그램 봇, AWS EC2를 이용하여 CGV 용산아이파크몰의 IMAX 영화 예매 오픈 알리미를 만들어보는 강좌입니다. 이 강좌를 통해, 웹 크롤링에 대한 기본적인 이해부터, 텔레그램 봇을 만들어서 서버로 구축하는 과정까지 학습하실 수 있습니다! 입문 초급 웹 개발 서버 프로그래밍 언어 서비스 개발 파이썬 온라인 강의 파이썬, 영화예매, 오픈알리미 www.inflearn.com 실습시 작..
[c++] sort 함수 / 내림차순 / 커스텀 정렬 http://www.cplusplus.com/reference/algorithm/sort/ sort - C++ Reference custom (2)template void sort (RandomAccessIterator first, RandomAccessIterator last, Compare comp); www.cplusplus.com 기본 사용법 #include #include #include using namespace std; int main(){ int myints[] = {32,71,12,45,26,80,53,33}; vector myvector (myints, myints+8); // using default comparison (operator
Django 예제 / Writing your first Django app, part 4 / Froms and generic views Django 공식 문서 v3.0 Tutorial https://docs.djangoproject.com/en/3.0/intro/tutorial04/ Writing your first Django app, part 4 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com https://github.com/JisunParkRea/django-tutorial-mypractice JisunParkRea/django-tutorial-..
Django 예제 / Writing your first Django app, part 3 / Views and templates Django 공식 문서 v3.0 Tutorial https://docs.djangoproject.com/en/3.0/intro/tutorial03/ Writing your first Django app, part 3 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com https://github.com/JisunParkRea/django-tutorial-mypractice JisunParkRea/django-tutorial-..
Django 예제 / Writing your first Django app, part 2 / Models and the admin site Django 공식 문서 v3.0 Tutorial https://docs.djangoproject.com/en/3.0/intro/tutorial02/ Writing your first Django app, part 2 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com https://github.com/JisunParkRea/django-tutorial-mypractice JisunParkRea/django-tutorial-..
Django 예제 / Writing your first Django app, part 1 / Requests and responses Django 공식 문서 v3.0 Tutorial https://docs.djangoproject.com/en/3.0/intro/tutorial01/ Writing your first Django app, part 1 | Django documentation | Django Django The web framework for perfectionists with deadlines. Overview Download Documentation News Community Code Issues About ♥ Donate docs.djangoproject.com 내가 연습하며 작성한 소스코드는 아래 깃허브에 올려두었다. https://github.com/JisunParkRea/django-tutorial-mypract..
Django(장고) 란? / 개발환경 세팅 django 공식 문서 v3.0 Overview https://docs.djangoproject.com/en/3.0/intro/overview/ django란? The web framework for perfectionists with deadlines 장고 공식 웹사이트에서 장고를 설명하는 한문장을 보면 알 수 있다시피 빠르고 쉽게 웹 어플리케이션을 만들 수 있게 하는 프레임워크이다. Installation: 개발 환경 세팅 Windows 10 Home Windows powershell Python 3.8.1 sqlite3 (python안에 내장) 가상환경(Virtual environment) 세팅 #가상환경을 세팅하는 이유는 python의 패키지들간의 충돌을 피하고 깔끔하게 프로젝트를 관리하기 위해 ..