Manage and maintain your user's scripts and tools
Project description
Manage and maintain your user’s scripts and tools
Installation
From pypi:
$ pip install commodore
… or from the project root directory:
$ python setup.py install
Then run commodore from the command line to create the required configuration and binary directory, and define your desired editor.
Usage
Create a new script:
$ commodore create helloworld
Edit your script, including the shebang line:
#!/usr/bin/env python print('Hello world!')
Then run it!:
$ helloworld Hello world!
List your scripts:
$ commodore list helloworld
Edit an existing script:
$ commodore edit helloworld
And finally, delete it:
$ commodore delete helloworld
Use –help/-h to view info on the arguments:
$ commodore --help usage: commodore [-h] {create,list,edit,delete} ... positional arguments: {create,list,edit,delete} optional arguments: -h, --help show this help message and exit
You can manually check the history of created, edited and deleted scripts by navigating to the commodore binary directory (default ~/.commodore/bin) and using git commands to see changelogs. Every create, edit and delete will be tracked as a git commit.
You can also run git commands via commodore:
$ commodore git 'log -p' ... $ commodore git 'remote add origin ssh://git@bitbucket.org/me/my_commodore_bin_dir' $ commodore git 'push -u origin master'
Release Notes
- 0.1.4:
Fix bug where file might disappear while editing causing a crash. Alerts user.
Now works with gvim if --nofork is passed
- 0.1.3:
Support EDITOR command line args (eg. emacs -t)
- 0.1.2:
Add git command
- 0.1.1:
Updated README and notes on usage
- 0.1.0:
commodore create, edit, delete works
- 0.0.1:
Project created
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file commodore-0.1.5.tar.gz
.
File metadata
- Download URL: commodore-0.1.5.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf82e84e0456a4411fbcc1d744f82541e7ccff44afb2f942303d0b5f672aa97d |
|
MD5 | 4aa0556110571ad05d05e2fb7955afdd |
|
BLAKE2b-256 | 3487ba61d2176c2b275d46de58e8d97c4670d24723cb9d5d09449f498fac72f0 |