Metadata-Version: 2.1
Name: pdf2redmine
Version: 1.1
Summary: A software tool to automatically read a pdf docuument for annotations (comments) and upload those to a redmine server using a personal API access token
Home-page: https://github.com/TobiasGlaubach/pdf2redmine
Author: Tobias Glaubach
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/TobiasGlaubach/pdf2redmine/issues
Platform: UNKNOWN
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: OS Independent
Classifier: Environment :: Console
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE


pdf2redmine
===============
A software tool to automatically read a pdf docuument for annotations (comments)
and upload those to a redmine server using a personal API access token

Installing
============

.. code-block:: bash

    pip install pdf2redmine

Usage
=====

.. code-block:: python

    from pdf2redmine.main import read_and_upload
    redmine_url = '<your-redmine-server-url>'
    redmine_key = '<your-redmine-api-access-key>'
    redmine_project_id = '<your-remine-project-id>'
    file_link = '<some-link-to-the-local-file-for-online-access>'
    file_path = 'C:/temp/dummy_document_with_comments.pdf'
    ids = read_and_upload(file_path, redmine_url, redmine_key, redmine_project_id, link=file_link)
    print('Generated the following issues:')
    print(ids)





