New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

pelican-resume

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pelican-resume

Easily generate customizable PDF resumes from Pelican pages

  • 0.1.0
  • PyPI
  • Socket score

Maintainers
1

Introduction

Build Status

This is pelican_resume, a Pelican plugin enabling automatic PDF resume generation for one of your Pelican pages. The main benefit is that you only need to maintain a single Markdown version of your resume - the corresponding HTML and generated PDF are completely automated so you can showoff your awesome resume both online and physically.

It allows you write your own resume style, or use one of the styles provided by this plugin.

Installation

Installing is easy, simply run:

pip install pelican-resume

Alternatively, you can also clone this repository and install it manually:

git clone git@github.com:cmenguy/pelican-resume.git
python setup.py install

In pelicanconf.py you need to update your plugins to inclue pelican_resume:

PLUGINS = [
    # ...
    "pelican_resume",
    # ...
]

Settings

You can customize the behavior of the plugin by adding the variables below to your pelicanconf.py. For simple usage, the default values should work but will look for a specific input file and produce a specific PDF name.

Setting nameDefault valueUsage
RESUME_SRCpages/resume.mdPath to your Markdown resume page (relative to your PATH variable).
RESUME_PDFpdfs/resume.pdfPath to the generated PDF output (relative to your OUTPUT_PATH variable).
RESUME_CSS_DIR/static/cssPath to the directory containing your resume CSS files.
RESUME_TYPEmoderncvType of resume to use. Has to match one of the CSS filenames under RESUME_CSS_DIR.
RESUME_PANDOCpandocPath to your pandoc command. If pandoc is in your PATH, then it can be left as default.
RESUME_WKHTMLTOPDFwkhtmltopdfPath to your wkhtmltopdf command. If wkhtmltopdf is in your PATH, then it can be left as default.

Usage

Once you have the plugin properly configured, it will generate a PDF version of your resume automatically under the RESUME_PDF location everytime you run pelican content.

It can then easily be embedded into your Pelican website by referencing that location - thus ensuring your visitors can download the latest version of your resume which is consistent with your Markdown file.

Contributing

Contributing Guidelines

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc