Skip to content

Commit

Permalink
DR update
Browse files Browse the repository at this point in the history
  • Loading branch information
lpozo committed Oct 19, 2021
1 parent 48c1e52 commit 73a239f
Show file tree
Hide file tree
Showing 40 changed files with 46 additions and 46 deletions.
8 changes: 4 additions & 4 deletions typer-cli-python/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# RP to-do
# RP To-Do

**RP to-do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
**RP To-Do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.

## Installation

To run **RP to-do**, you need to run the following steps:
To run **RP To-Do**, you need to run the following steps:

1. Download the application's source code to a `rptodo_project/` directory
2. Create a Python virtual environment and activate it
Expand Down Expand Up @@ -75,7 +75,7 @@ Calling `--help` on each command provides specific and useful information about
## Features
**RP to-do** has the following features:
**RP To-Do** has the following features:
| Command | Description |
| ------------------ | ------------------------------------------------------------ |
Expand Down
8 changes: 4 additions & 4 deletions typer-cli-python/source_code_final/README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# RP to-do
# RP To-Do

**RP to-do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.
**RP To-Do** is a command-line interface application built with [Typer](https://typer.tiangolo.com/) to help you manage your to-do list.

## Installation

To run **RP to-do**, you need to run the following steps:
To run **RP To-Do**, you need to run the following steps:

1. Download the application's source code to a `rptodo_project/` directory
2. Create a Python virtual environment and activate it
Expand Down Expand Up @@ -75,7 +75,7 @@ Calling `--help` on each command provides specific and useful information about
## Features
**RP to-do** has the following features:
**RP To-Do** has the following features:
| Command | Description |
| ------------------ | ------------------------------------------------------------ |
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import List, Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
import json
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_final/rptodo/rptodo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do model-controller."""
"""This module provides the RP To-Do model-controller."""

from pathlib import Path
from typing import Any, Dict, List, NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_2/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_2/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_2/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from typing import Optional

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_3/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_3/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_3/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_3/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_3/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
import json
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_4/rptodo/rptodo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do model-controller."""
"""This module provides the RP To-Do model-controller."""

from pathlib import Path
from typing import Any, Dict, NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import List, Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
import json
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_5/rptodo/rptodo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do model-controller."""
"""This module provides the RP To-Do model-controller."""

from pathlib import Path
from typing import Any, Dict, List, NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import List, Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
import json
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_6/rptodo/rptodo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do model-controller."""
"""This module provides the RP To-Do model-controller."""

from pathlib import Path
from typing import Any, Dict, List, NamedTuple
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Top-level package for RP to-do."""
"""Top-level package for RP To-Do."""

__app_name__ = "rptodo"
__version__ = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/__main__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""RP to-do entry point script."""
"""RP To-Do entry point script."""

from rptodo import cli, __app_name__

Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/cli.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do CLI."""
"""This module provides the RP To-Do CLI."""

from pathlib import Path
from typing import List, Optional
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do config functionality."""
"""This module provides the RP To-Do config functionality."""

import configparser
from pathlib import Path
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/database.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do database functionality."""
"""This module provides the RP To-Do database functionality."""

import configparser
import json
Expand Down
2 changes: 1 addition & 1 deletion typer-cli-python/source_code_step_7/rptodo/rptodo.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""This module provides the RP to-do model-controller."""
"""This module provides the RP To-Do model-controller."""

from pathlib import Path
from typing import Any, Dict, List, NamedTuple
Expand Down

0 comments on commit 73a239f

Please sign in to comment.