Metadata-Version: 2.1
Name: NaverService
Version: 0.0.1
Summary: innovata-NaverService
Home-page: https://github.com/innovata/NaverService
Author: innovata sambong
Author-email: iinnovata@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE


# Naver Services


##### ============================================================
## Overview
##### ============================================================


##### ============================================================
## IDE :: Platform Layer
##### ============================================================

mkdir project_name
mkdir package_name
git init
python3 -m venv env
source env/bin/activate
pip install --upgrade pip
pip install -r requirements.txt

##### ============================================================
## IDE :: Application Layer
##### ============================================================

### Terminal

python ide.py

### Jupyter

import os
import sys
sys.path.append(f"{os.environ['HOME']}/pjts/PROJECT_NAME")
import ide
ide.main(ide='jupyter')
ide.setup_logpath(modulepath='jupyter.MODULE_NAME')


