Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
dist
colorconverters.egg-info
build
*.egg-info
venv
.venv
.idea/
.vs/slnx.sqlite
env/
test.py
.env
30 changes: 30 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# Changelog

Based on KeepAChangelog.
Generated by **Documatic.**

## Unreleased

## 0.2.1 - 2022-01-19

## 0.1.3 - 2022-01-19

## 0.1.1 - 2022-01-19

## 0.1.0 - 2022-01-19

## show - 2022-01-19

### Added

* Business card generator and resume generator script.

### Fixed

* Bug in readme.rst.
* Some bugs
* Path bug and changed resume generator a bit

### Removed

* .env
71 changes: 0 additions & 71 deletions README.md

This file was deleted.

69 changes: 69 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
businesstemplates
=================

.. image:: https://img.shields.io/pypi/v/businesstemplates.svg
:target: https://pypi.python.org/pypi/businesstemplates
:alt: PyPI version info
.. image:: https://img.shields.io/pypi/pyversions/businesstemplates.svg
:target: https://pypi.python.org/pypi/businesstemplates
:alt: PyPI supported Python versions

An efficient command line tool to create resumes and business cards on the go!

Notable Features
----------------

- Modern pythonic syntax.
- Easy to run scripts.
- Covers all important information.
- Lightweight module.

Installing
----------

**"Python 3.7" or higher is required to install this module.**

Installing this module is quite simple,

.. code:: sh

# Linux/macOS
python3 -m pip install -U businesstemplates

# Windows
py -3 -m pip install -U businesstemplates

Other Required Packages
~~~~~~~~~~~~~~~~~~~~~~~~

* `python-docx <https://github.com/python-openxml/python-docx>`__
* `pathlib`

How to run?
-----------

Resume Generator
~~~~~~~~~~~~~~~~

Now you can design your own impressive resume

Open your favourite terminal and enter this

.. code:: sh

resume_generator

Enter the information through the inputs and you're done!

Business Card Generator
~~~~~~~~~~~~~~~~~~~~~~~

Design your sparkling business card in just under a minute.

Open your favourite terminal and enter this

.. code:: sh

business_card_generator

Enter the information through the inputs and you're done!
Loading