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 |
Tags
- 데이터
- 데이터 수집
- 머신러닝
- pandas
- 데이터 분석
- keras
- DB
- HeidiSQL
- 훈련
- Database
- 데이터베이스
- SQL예제
- Oracle
- 데이터 가공
- 회귀모델
- 오라클
- 딥러닝
- 해석
- 정확도
- Deep Learning
- sql
- 예측
- sklearn
- python
- tensorflow
- MariaDB
- 시각화
- python기초
- pythone
- 데이터전처리
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