!pip install kaggle

#구글 코랩을 활용할때 터미널을 사용하려면 !를 붙여야 한다.

#위와 같은 태그로 라이브러리를 설치해준다.

 

!kaggle competitions list -s health

#health와 관련된 competitons 모아서 보여줌

 

!kaggle competitions files -c health

#헬스와 관련된 competiton 안에 있는 파일 보여줌

 

!kaggle competitions list -h

#경진대회 API의 도움말 보기

 

!kaggle competitions list -s health

#health에 해당되는 경진대회 찾아보기

 

!kaggle competitions list -s nlp

#nlp와 관련된 경진대회 찾아보기

 

!kaggle competitions files -c titanic

#타이타닉 경진대회의 데이터셋 보기

 

!kaggle competitions download -c titanic

#타이타닉 경진대회 파일을 다운로드 받기

 

!kaggle competitions submit -c titanic -f ./titanic/data/tutorial.csv -m'API submit msg'

#경진대회의 약관에 동의 했다면 서브미션 가능

 

!kaggle datasets list -s survey
!kaggel datasets files -d stackoverflow/so-survey-2019

#설문조사와 관련된 데이터 셋 찾기

#2019년 스택오버플로우의 설문조사 관련한 데이터 셋 찾기

+ Recent posts