Skip to content

Latest commit

 

History

History
48 lines (38 loc) · 855 Bytes

File metadata and controls

48 lines (38 loc) · 855 Bytes

Django-PyPDF-Kit

This is an PDF processing website project, developed using Python's web framework Django.

pypdf Gif

Current Features

Current PDF Tools:

  • Merging
  • Single Page Extract
  • Page Range Extract
  • Replacing

1. Clone this repository

git clone https://github.com/superkd37/Django-PyPDF-Kit.git

2. Install the virtual environment pipenv

pip install pipenv

3. Create the virtualenv

## run following command from `Django-PyPDF-Kit` directory
pipenv shell
cd Django-PyPDF-Kit

4. Install python packages

pip install -r requirements.txt
##or
pip install django djangorestframework

5. Run database migrations

python manage.py makemigrations
python manage.py migrate

6. Run development server

python manage.py runserver