Metadata-Version: 2.1
Name: pyquilted
Version: 0.7.4
Summary: convert a yaml file to a pdf resume
Home-page: https://github.com/cocoroutine/pyquilted
Author: Hong Tuyen
Author-email: hong@coroutine.co
License: MIT
Description: # pyquilted
        
        Generate Quilted™ resumes from Yaml in python. Find out more about [Quilted](https://github.com/cocoroutine/quilted)
        
        `$ pip install pyquilted`
        
        
        
        
        ## Requirements
        
        Pyquilted uses [Wkhtmltopdf](https://wkhtmltopdf.org/) to convert html to pdf via [python-pdfkit](https://github.com/JazzCore/python-pdfkit).
        
        
        #### Install wkhtmltopdf
        
        
        Debian/Ubuntu
        
        `$ sudo apt-get install wkhtmltopdf`
        
        
        MacOs HomeBrew
        
        `$ brew install caskroom/cask/wkhtmltopdf`
        
        
        Windows and other platforms:
        
        [link to wkhtmltopdf binaries](https://wkhtmltopdf.org/downloads.html)
        
        
        
        
        ## Sample
        
        Generate a sample yaml file so that you can use it as a template for your resume
        
        `$ pyquilted --sample mysample.yml`
        
        
        
        
        ## Pdf
        
        Convert your yaml file to a quilted resume pdf
        
        `$ pyquilted --pdf mysample.yml myresume.pdf`
        
        
        
        
        ## Custom Formatting
        
        ```bash
        
        section formatting:
        
        --heading-compact     use a compact heading format defaults to auto
        --heading-expanded    use an expanded heading format defaults to auto
        --skills-table        use a skills table to show many skills
        --no-sorting          disable skills sorting
        --no-grouping         disable grouping of compact sections
        
        
        style: css styles to apply to resume content
        
        --color         "color|#rgb"    css color code for your name
        --font          "font"          css font for resume content
        --font-other    "font"          css font override for heading/contacts
        --font-size     "size"          css font size for resume content
        
        ```
        
        
        
        ## Html
        
        If you prefer to customize the html and then print using your browser
        
        `$ pyquilted --html mysample.yml myresume.html`
        
        
Keywords: quilted resume
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Description-Content-Type: text/markdown
