일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MEAN Stack
- 크롤링
- 파이썬
- 티스토리 초대장
- oracle
- 장고
- vscode
- rs485
- 오라클
- 자본주의
- Python
- Visual Studio Code
- MSSQL
- 딥러닝
- windows10
- django
- PYTHON MSSQL
- scrapy
- Serial
- matplot
- MX Component
- rs422
- tensorflow
- pymssql
- M2M
- MSSQL PYTHON
- 윈도우10
- 텐서플로우
- c#
- sql developer
- Today
- Total
목록vscode (11)
안까먹을라고 쓰는 블로그
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 기본 템플릿을 확장하는 여러 템플릿 만들기 대부분의 웹 앱에는 둘 이상의 페이지가 있고 해당 페이지는 일반적으로 많은 공통 요소를 공유하기 때문에 개발자는 이러한 공통 요소를 다른 페이지 템플릿이 확장하는 ..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com collectstatic 명령 사용 프로덕션 배포의 경우 일반적으로 python manage.py collectstatic 명령을 사용하여 앱의 모든 정적 파일을 단일 폴더로 수집합니다. 그런 다음 전용 정..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 정적 파일 제공 정적 파일은 CSS 파일과 같은 특정 요청에 대해 웹 앱이 있는 그대로 반환하는 콘텐츠 조각입니다. 정적 파일을 제공하려면 기본적으로 포함되는 settings.py의 INSTALLED_APP..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 템플릿을 사용하여 페이지 렌더링 지금까지 이 자습서에서 만든 앱은 Python 코드에서 일반 텍스트 웹 페이지만 생성합니다. 코드에서 직접 HTML을 생성하는 것이 가능하지만 개발자는 앱이 XSS(교차 사이..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 디버거 탐색 디버깅은 특정 코드 줄에서 실행 중인 프로그램을 일시 중지할 수 있는 기회를 제공합니다. 프로그램이 일시 중지되면 변수를 검사하고 디버그 콘솔 패널에서 코드를 실행하거나 디버깅 에 설명된 기능을..
Django 앱 만들기 1. 가상 환경이 활성화된 VS Code 터미널에서 프로젝트 폴더(manage.py 가 있는 위치)에서 관리 유틸리티의 startap 명령을 실행합니다. python manage.py startapp hello 아래와 같이 hello 폴더가 생성되었습니다. 이 명령은 여러 코드 파일과 하나의 하위 폴더가 포함된 hello 라는 폴더를 만듭니다. . views.py : 웹 앱에서 페이지를 정의하는 함수 포함 . models.py : 데이터 개체를 정의하는 클래스 포함 . migrations 폴더 : Django의 관리 유틸리티에서 이 튜토리얼의 뒷부분에서 설명하는 데이터베이스 버전을 관리하는 데 사용됩니다 . apps.py : 앱 구성 . admin.py : 관리 인터페이스 생성용 ..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com 최소한의 Django 앱 생성 및 실행 Django 용어에서 "Django 프로젝트"는 전체 웹 응용 프로그램을 만들기 위해 웹 호스트에 배포하는 하나 이상의 "앱"과 함께 여러 사이트 수준 구성 파일로 구..
https://code.visualstudio.com/docs/python/tutorial-django Python and Django tutorial in Visual Studio Code Python Django tutorial demonstrating IntelliSense, code navigation, and debugging for both code and templates in Visual Studio Code, the best Python IDE. code.visualstudio.com Django 튜토리얼을 위한 프로젝트 환경 만들기 - 이 섹션에서는 Django가 설치된 가상환경을 만듭니다. 가상환경을 사용하면 Django를 전역 Python에 설치하지 않아도 되며, 애플리케이션에서 사..
1. 아래의 사이트에 접속합니다. https://code.visualstudio.com/download Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. Download Visual Studio Code to experience a redefined code editor, optimized for building and debugging modern web and cloud applications. code.visualstudio.com 2. 운영체제에 맞는 버전을 선택하여 다운로드 해줍니다. -..
1991년에 발표된 인터프리터 방식의 프로그래밍 언어다. 영어와 비슷해서 읽고 쓰기 쉬운 특유의 문법과 그로 인해 전 세계의 개발자들로부터 만들어진 수많은 패키지들 덕분에 사용할 수 있는 용도가 무궁무진해져 2010년대 중반부터 주류 프로그래밍 언어로 당당히 올라서게 되었다. 문법이 매우 쉬워서 작성하기에 간단하기 때문에 초보자들이 처음 프로그래밍을 배울 때 추천되는 언어이다. 오죽하면 파이썬의 별명이 "실행할 수 있는 의사 코드(Executable pseudocode)"일 정도. 실제로도 미국 공과 대학교에서 컴퓨터 프로그래밍 입문 수업으로 파이썬을 많이 사용하기도 한다. 학습용으로 좋은 언어인 동시에 실사용률과 생산성도 높은 강력한 언어인 셈. 창시자는 네덜란드의 프로그래머 귀도 반 로섬(Guido ..