{"id":15650919,"url":"https://github.com/peetzweg/papr","last_synced_at":"2026-03-12T04:31:59.424Z","repository":{"id":18001605,"uuid":"21016573","full_name":"peetzweg/papr","owner":"peetzweg","description":"Command line tool to generate a PDF Calendars","archived":false,"fork":false,"pushed_at":"2026-01-27T08:13:30.000Z","size":1917,"stargazers_count":38,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-27T20:48:35.976Z","etag":null,"topics":["cairo","calendar","calendaring","manual","pango","paper","pdf","printer"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peetzweg.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2014-06-19T21:39:11.000Z","updated_at":"2026-01-16T00:32:55.000Z","dependencies_parsed_at":"2023-01-11T19:45:00.925Z","dependency_job_id":null,"html_url":"https://github.com/peetzweg/papr","commit_stats":null,"previous_names":["pczek/papr"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/peetzweg/papr","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peetzweg%2Fpapr","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peetzweg%2Fpapr/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peetzweg%2Fpapr/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peetzweg%2Fpapr/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peetzweg","download_url":"https://codeload.github.com/peetzweg/papr/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peetzweg%2Fpapr/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30415505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-12T04:25:42.844Z","status":"ssl_error","status_checked_at":"2026-03-12T04:25:34.624Z","response_time":114,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cairo","calendar","calendaring","manual","pango","paper","pdf","printer"],"created_at":"2024-10-03T12:36:18.300Z","updated_at":"2026-03-12T04:31:59.409Z","avatar_url":"https://github.com/peetzweg.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# `papr` - Generate Calendar Stationeries\n\nCommand line tool to generate a empty calendar templates to print.\n\n![ScreenShot](demo.jpg)\n\n## Info\n\nPapr currently only produces a PDF output. When you are printing the PDF file make sure you have to automated positioning or resizing features of your printer enabled!\n\n## Quick start\n\nExample:\n\n```sh\n\u003e python3 ./papr/papr.py -y 2023 -m 2 -f='Avenir Next' -p A3 oneyear\n```\n\n```sh\nusage: papr.py [-h] [-o OUT] [-A] [-a] [-b BRAND] [-c] [-f FONT [FONT ...]]\n                   [-l LOCALE] [-m MONTH] [-y YEAR]\n                   [-p {A5,A4,A3,A2,A1,A0,USLetter}] [--margin MARGIN] [-v] [-d]\n                   LAYOUT\n\n    Create a Calendar\n\n    positional arguments:\n      LAYOUT                choose calendar layout: ('classic', 'column',\n                            'oneyear')\n\n    optional arguments:\n      -h, --help            show this help message and exit\n      -o OUT, --out OUT     specify output file\n      -A, --abbreviate_all  use abbreviations for weekdays and months\n      -a, --abbreviate      use abbreviations for weekdays\n      -b BRAND, --brand BRAND\n                            assign a brand string\n      -c, --color           color date numbers\n      -f FONT [FONT ...], --fonts FONT [FONT ...]\n                            choose which font to use\n      -l LOCALE, --locale LOCALE\n                            choose locale to use (default en_US.UTF8, check\n                            'locale -a' for available locales)\n      -m MONTH, --month MONTH\n                            specify the starting month as a number (1-12), default\n                            is the current month (3).\n      -y YEAR, --year YEAR  specify the year the calendar should start, default is\n                            the current year (2016).\n      -p {A5,A4,A3,A2,A1,A0,USLetter}, --paper {A5,A4,A3,A2,A1,A0,USLetter}\n                            choose which paper dimensions should be used ('A5',\n                            'A4', 'A3', 'A2', 'A1', 'A0', 'USLetter') default is\n                            A4\n      --margin MARGIN       specify the margin of the calendar in millimeters.\n                            Used to adapt to your printer, default ist 5mm\n      -v, --verbose         print status messages to stdout\n      -d, --debug           print status and debug messages to stdout\n```\n\n## Installation\n\n### Mac OS\n\n1. Install `git` and `python3` run this in your terminal:\n\n```sh\nxcode-select --install\n```\n\n2. Install `pygobject3` for python3 using [homebrew](https://brew.sh/)\n\n```sh\nbrew install pygobject3\n```\n\n3. Clone repository using `git`\n\n```sh\ngit clone https://github.com/peetzweg/papr.git\n```\n\n4. Use `papr` CLI arguments to create your calendar, see [Quick Star Section](https://github.com/peetzweg/papr#quick-start)\n\n## Layouts\n\n### oneyear\n![ScreenShot](oneyear_layout.png)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeetzweg%2Fpapr","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpeetzweg%2Fpapr","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpeetzweg%2Fpapr/lists"}