Notice
Recent Posts
Recent Comments
Link
160x600
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 예측
- 해석
- 오라클
- sklearn
- 데이터 가공
- 훈련
- Deep Learning
- DB
- 회귀모델
- 정확도
- HeidiSQL
- Database
- tensorflow
- 데이터베이스
- pythone
- 머신러닝
- 딥러닝
- sql
- 시각화
- keras
- python기초
- Oracle
- 데이터 수집
- MariaDB
- 데이터
- python
- 데이터 분석
- pandas
- 데이터전처리
- 파싱 오류
Archives
- Today
- Total
목록mysql (1)
코딩헤딩

conda install -c conda-forge PyMySQL 앱 생성 django-admin startapp mysqlapp mysql app에서 - 함수명 index() - HttpResponse("index 페이지입니다.") 출력 - mysqlapp에 urls.py 생성 url패턴 : 127.0.0.1:8080/msql/ * view.py from django.shortcuts import render from django.http import HttpResponse # Create your views here. def index(request) : return HttpResponse("index 페이지입니다.") * urls.py from django.urls import path from ...
카테고리 없음
2024. 2. 6. 13:54