-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3081142
commit 35fbd2a
Showing
1 changed file
with
26 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,43 @@ | ||
## Resume maker | ||
# Resume maker | ||
|
||
Python 3+ | ||
A basic command-line resume generator to Python 3 | ||
|
||
usage: | ||
### usage | ||
``` | ||
cd app | ||
Usage: resume-maker.py [OPTIONS] COMMAND [ARGS]... | ||
make.py <command> | ||
``` | ||
Resume maker. | ||
#### Commands: | ||
create - Create a resume | ||
Options: | ||
--help Show this message and exit. | ||
list - List templates | ||
Commands: | ||
list List templates | ||
make Create a resume | ||
``` | ||
|
||
|
||
#### how to use create? | ||
#### how to make your resume? | ||
``` | ||
resume-maker make <lang> <template> <data_json> <output_path> | ||
python resume-maker make [LANG] [TEMPLATE] [JSON_FILE] [OUTPUT] | ||
``` | ||
|
||
#### langs | ||
pt = portuguese | ||
#### Supported languages | ||
en = English (default) | ||
|
||
pt = Portuguese | ||
|
||
es = Spanish | ||
|
||
en = english | ||
|
||
es = spanish | ||
#### templates examples | ||
- [basic](examples/basic.pdf) - A very basic resume | ||
|
||
- [red](examples/red.pdf) - A red resume - by:[magnvmOpvs](https://github.com/magnvmopvs) | ||
|
||
#### templates | ||
[basic](examples/basic.pdf) - A very basic resume | ||
- [simple](examples/simple.pdf) - A simple template - by:[magnvmOpvs](https://github.com/magnvmopvs) | ||
|
||
[red](examples/red.pdf) - A red resume - by:magnvmOpvs | ||
|
||
[simple](examples/simple.pdf) - A simple template - by:magnvmOpvs | ||
### Json templates | ||
- [simple json](examples/info.json) | ||
- [complex json](examples/complex_info.json) |