SulthanAbiyyu / mkfol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

MKFOL

Module untuk membuat folder berdasarkan template

Latar Belakang

Lelah membuat folder-folder yang sama berulang kali

Installation

Via git clone

git clone https://github.com/SulthanAbiyyu/mkfol

Via pip

pip install mkfol

Usage

Make semester folder

mkfol -s 3 "DAA,IMK,STAT"

The result will look something like this:

└──  semester 3
    ├── DAA
    │   ├── tugas
    │   ├── materi
    │   ├── quiz
    │   ├── UTS
    │   ├── UAS
    │   └── lain-lain
    ├── IMK
    │   ├── tugas
    │   ├── materi
    │   ├── quiz
    │   ├── UTS
    │   ├── UAS
    │   └── lain-lain
    └── STAT
        ├── tugas
        ├── materi
        ├── quiz
        ├── UTS
        ├── UAS
        └── lain-lain

Make DS/ML project folder

mkfol -ds

The result will look something like this:

├── data 
│   ├── raw
│   └── processed
├── notebook 
│   ├── EDA
│   └── modeling
├── src
│   ├── main.py
│   ├── train.py
│   ├── dataset.py
│   ├── feature_engineering.py
│   └── visualization.py
├── LICENSE
├── .gitignore
├── requirements.txt
└── README.md

Project Plan

  • Semester folder
  • Data science / machine learning project folder

Any suggestion for more template folders? please open a new issue

About


Languages

Language:Python 100.0%