Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/byteotter/nester

Create project structures for your Python, C, C++, C#, Java and Ruby projects
https://github.com/byteotter/nester

automation cli-app project project-structure python3 tui-app

Last synced: about 14 hours ago
JSON representation

Create project structures for your Python, C, C++, C#, Java and Ruby projects

Awesome Lists containing this project

README

        


Our logo


Building the nest for you

[![Documentation Status](https://readthedocs.org/projects/nester/badge/?version=latest)](https://nester.readthedocs.io/en/latest/?badge=latest)
![Tests](https://img.shields.io/github/actions/workflow/status/ByteOtter/nester/tests.yml?label=tests)

[![PyPI - Version](https://img.shields.io/pypi/v/nester-struct?color=green&label=PyPi%20Version&logo=PyPi&logoColor=green)](https://pypi.org/project/nester-struct/)
![PyPI - Downloads](https://img.shields.io/pypi/dm/nester-struct?label=PyPi%20Downloads&logo=pypi&logoColor=green)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/nester-struct?color=green&label=Python%20Version&logo=Python&logoColor=green)
![PyPI - License](https://img.shields.io/pypi/l/nester-struct?color=green&label=License)

Welcome to Nester!


A small command line tool to set up the basic structure for your Python, C#, C++, Java or Ruby project.

**Index**
- [Introduction](#introduction)
- [Our Goal](#our-goal)
- [Installation](#installation)
- [Get it from PyPi!](#get-it-from-pypi)
- [Get it as an `.rpm` package (wip)](#get-it-as-an-rpm-package-wip)
- [Build it from source](#build-it-from-source)
- [Usage](#usage)
- [CLI Mode](#cli-mode)
- [Interactive / GUI - Mode](#interactive--gui---mode)
- [Supported Languages](#supported-languages)
- [Documentation](#documentation)
- [Read the Docs](#read-the-docs)
- [Towncrier (wip)](#towncrier-wip)
- [Contributing](#contributing)

## Introduction

When you are reading this, you are probably thinking "what?", "how?" and "why?".

**Nester** was born out of the desire to have an easier way to set up new projects without having to check what file or folder goes where.

Just run a command, select a language and everything will be set up for you ready to go.

Now, you might say "but \ can do this all on its own!", yes I realize that many modern IDEs will set up a new project perfectly fine for you. And some languages, such as GoLang, have their own CLI utilites to set everything up where it belongs.

Let me tell you though, who cares?

## Our Goal

Our goal with **Nester** is to provide developers a quick and easy way to set up and manage new projects adhearing to the given language's standard giving you more time to actually build your application without having to deal with mkdir-hell.

One simple cli-Command and Nester will do the rest for you, optionally even initializing a new git-repository for you.

Nester, by default, also logs all projects you create with it which allows you to easily view and clean up your projects and avoid creating duplicate projects. Never loose your overview over your projects again!

## Installation

### Get it from PyPi!

`Nester` is released on [PyPi](https://pypi.org)!

To do so, make sure you have at least `Python 3.10` and `pip` installed.

To get `Nester` simply run:

```bash
pip install nester-struct
```
Your done! Have fun with `Nester`!

Note: At least on openSUSE, `pip` does no longer allow packages to be installed system-wide. At least not without using the `--break-system-packages` flag.

To install the most recent Nester version from PyPi, you can use [`pipx`](https://github.com/pypa/pipx).

Simply download `pipx` using your distribution's package manager and install Nester just like you would with `pip`.

```bash
pipx install nester-struct
```

### Get it as an `.rpm` package (wip)

We can now offer a `.rpm` package!

To do so follow these steps (on openSUSE):

1. Add the repository
```bash
sudo zypper addrepo https://download.opensuse.org/repositories/home:kodymo/openSUSE_Tumbleweed/home:kodymo.repo
```
2. Refresh your repositories
```bash
sudo zypper ref
```
3. Install Nester
```bash
sudo zypper install python3-nester
```
Note: The repository contains three builds for nester for Python 3.9, 3.10 and 3.11. `zypper` will automatically decide which version to use when running the command above.

You can visit the repository on the [package maintainer's OBS account](https://build.opensuse.org/package/show/home:kodymo/python-nester).

### Build it from source

If you want to contribute to `Nester` or just prefer building it yoursef, refer to the [Contributing Guide](docs/CONTRIBUTING.md) to find out how.

## Usage

**Nester** strives to be easy to use and will have to modes of operation:

### CLI Mode

This mode will be the default and how **Nester** is supposed to be used.

Simply call `nester`, hand it the operation and the language you want and whether you want to initialize a git repository alongside it. Done!

```
nester
```
The following operations will be available:
|`Operation`|Flags|Argument|Argument|Effect|
|-|-|-|-|-|
|`create`|`-g/--git`, `--no-log`|`Language`|`Project_Name`|Creates the project structure for the selected lanugage in *the current directory*. IF `-git` is set it will also call `git init` in this directory. `--no-log` Will prevent Nester from creating a log entry for this project. You can find the log in your home directory at `~/nester.log`|
|`validate`|n/A|`Language`|`Project_Name`|Checks the current directory and its sub-directories if it corresponds to the schema provided for the language|
|`rename`|n/A|`Old_Project_Name`|`New_Project_Name`|Renames your chosen project and its corresponding log entry. **Only works for logged projects.**|
|`log`|`--clean`|n/A|n/A|Prints out all *logged* projects that have been created previously
If the `--clean` flag is set, orphaned log entries (projects which had their directory deleted) will be purged from the log|
|`clean`|`-y/--yes`|`Project_Name`|n/A|Deletes the content of the specified project|

### Interactive / GUI - Mode

This is considered to be the fallback mode. If **Nester** is called without any arguments you will be asked to enter all parameters manually.

The parameters themselves will stay the same though.

```
nester
```

### Supported Languages

Currently planned support for the following languages is planned.

|Language|Parameter|Supported yet?|
|-|-|-|
|Python|`py`|:heavy_check_mark:|
|C|`c`|:heavy_check_mark:|
|C++|`cpp`|:heavy_check_mark:|
|C#|`cs`|:heavy_check_mark:|
|Ruby|`rb`|:heavy_check_mark:|
|Java|`java`|:heavy_check_mark:|

*Note:* Python will be set up with the `src-Layout` which currently seems to be the standard for Python projects and was the stone that started it all.

For the future we are also looking into supporting languages with built-in set up features simply by calling them aswell as other languages with standardized structure layouts, but for now this list is all which will be supported.

## Documentation

Good documentation is very important to us, even with such a small project like Nester. To this end we have two methods in place to build documentation for us:

#### Read the Docs

On our [Read the Docs](https://nester.readthedocs.io/en/latest/index.html#) we build the documentation for the project. You can find the installation and usage guides there, aswell as an overview over the languages we support or want to support.

Also there is the automatically build documentation of functions and modules that make Nester go.

#### Towncrier (wip)

Towncrier is used to build changelogs for us. It is required that Pull Requests, which change Nesters behaviour, include a changelog file.

## Contributing

We are happy to welcome you to the group of Nester contributors. Please check the [Contributing Guide](docs/CONTRIBUTING.md) to find out how you can help achieve our goal.

If you are curious on what we next need help with, [check the issues page](https://github.com/ByteOtter/nester/issues).

![GitHub issues](https://img.shields.io/github/issues/ByteOtter/nester)
![GitHub milestone](https://img.shields.io/github/milestones/progress/ByteOtter/nester/3)