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
- Host: GitHub
- URL: https://github.com/akdasa/pycopa
- Owner: akdasa
- License: mit
- Created: 2017-06-09T12:52:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T10:16:37.000Z (almost 9 years ago)
- Last Synced: 2025-03-07T15:07:00.389Z (over 1 year ago)
- Topics: command-line, parser
- Language: Python
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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" }
```