File: index.md

package info (click to toggle)
cmd2 3.2.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 2,664 kB
  • sloc: python: 17,488; makefile: 114; sh: 39; javascript: 7
file content (13 lines) | stat: -rw-r--r-- 794 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# Migrating From cmd

If you're thinking of migrating your [cmd](https://docs.python.org/3/library/cmd.html) app to
`cmd2`, this section will help you decide if it's right for your app, and show you how to do it.

- [Why cmd2](why.md) - we try and convince you to use `cmd2` instead of
  [cmd](https://docs.python.org/3/library/cmd.html)
- [Incompatibilities](incompatibilities.md) - `cmd2` is not quite 100% compatible with
  [cmd](https://docs.python.org/3/library/cmd.html).
- [Minimum Required Changes](minimum.md) - the minimum changes required to move from
  [cmd](https://docs.python.org/3/library/cmd.html) to `cmd2`. Start your migration here.
- [Next Steps](next_steps.md) - Once you've migrated, here is a list of things you can do next to
  add even more functionality to your app.