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

https://github.com/akdasa/pycopa

A dead simple python module to parse command line arguments
https://github.com/akdasa/pycopa

command-line parser

Last synced: over 1 year ago
JSON representation

A dead simple python module to parse command line arguments

Awesome Lists containing this project

README

          

# pycopa
A dead simple python module to parse command line arguments

```py
from pycopa import parse
parse("/say This is a test number:one done:true")

# result
{ "command": "say",
"arg": "This is a test",
"number": "one", "done": "true" }
```