Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/drproteus/resumaker
html/pdf resume generator
https://github.com/drproteus/resumaker
Last synced: 6 days ago
JSON representation
html/pdf resume generator
- Host: GitHub
- URL: https://github.com/drproteus/resumaker
- Owner: drproteus
- License: mit
- Created: 2024-10-08T17:51:00.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-16T18:50:18.000Z (3 months ago)
- Last Synced: 2025-01-11T17:28:15.629Z (9 days ago)
- Language: HTML
- Homepage: https://drproteus.github.io/resumaker/
- Size: 372 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Resumaker
Resumaker is a simple alternative to WYSIWYG editing that uses Jinja2 templates to render a resume in HTML and PDF formats from JSON.# Quickstart
```bash
pip install -r requirements.txt
# TODO: copy example JSON and update with personal info.
make
```
The generated `resume.html` can be found in `build/`.# Example
![Screenshot 2024-10-16 at 11-36-11 ](https://github.com/user-attachments/assets/4b8450b7-0691-4f11-9139-6a6166d98289)```json
{
"fullname": "Cool Guy",
"email": "[email protected]",
"telephone": "973-808-1337",
"website": "https://github.com/coolguy",
"experience": [
{
"title": "Assistant Warlock",
"company": "Inner Eye Subsystems",
"location": "Neo New Amsterdam",
"start_date": "Mar. 1A92",
"end_date": "Tomorrow",
"highlights": [
"Fought back eldritch terror.",
"Repaired routine paper jams."
]
}
],
"education": [
{
"school": "Gizmonics Institute",
"degree": "MSc. N-Dimensional Mathematics",
"highlights": [
"Brought forth the end of days.",
"Averted the end of days."
]
}
],
"skills": [
"Black magic",
"Blood magic",
"Orb pondering"
]
}
```