Skip to main content

Data retrieval, template manager and delivery all in one!

Project description

Quipus, data retrieval, template manager and delivery all in one!

Package version Supported Python versions GitHub issues GitHub pull requests

Pytest Check Pylint

GitHub stars


Documentation: TBD

Source Code: https://github.com/Monkey-Market/quipus


Quipus is a Python package that allows you to retrieve data from different sources, manage templates and deliver them in a single package. It is designed to be simple and easy to use, with a focus on performance and reliability.

Key features:

  • Data retrieval: Retrieve data from different sources such as databases, APIs, and files.
  • Template manager: Manage templates for different types of documents.
  • Delivery: Deliver the generated documents to different destinations such as email, file system, cloud storage and more.
  • Easy to use: Simple and easy to use package with a focus on developer experience.

Requirements & Dependencies

Quipus is empowered by the foundational work of industry giants. The following are the key dependencies:

Installation

You can install Quipus using pip:

pip install quipus

Or with poetry:

poetry add quipus

Usage Example

Import the package
import quipus as qp
Fetch data from CSV and generate PDFs
template_manager = (
    qp.TemplateManager()
    .from_csv("data/data_source.csv")
    .with_template(qp.Template("templates/pdf_template.html"))
    .decide_filename_with(lambda data: f"{data['name']}")
    .to_pdf(output_path="output", create_dir=True)
)
Set up SMTP configuration

Note: These can be set up as environment variables for security reasons.

smtp_config = qp.SMTPConfig(
    server="smtp.server.com",
    port=587,
    username="username",
    password="password",
    use_tls=True,
)
email_sender = qp.EmailSender(smtp_config)
Send emails with attachments
for item in template_manager.data:
    smtp_message = (
        qp.EmailMessageBuilder(
            from_address="example@sender.com", 
            to_addresses=[item["email"], "another_email@example.com"]
        )
        .with_body_path("templates/email_body_template.html", "html", item)
        .with_subject("Your email subject")
        .add_attachment_from_path(f"output/{item['name']}.pdf")
        .build()
    )
    email_sender.send(smtp_message)

This is a simple example of how you can use Quipus to fetch data from a CSV file, generate PDFs using a template, and send emails with the generated PDFs as attachments.

Contributing

Contributions are welcome! Please read our contributing guidelines for more information.

You can always open an issue or submit a pull request if you have any suggestions or improvements.

Contributors


Jorge U. Alarcón


Fernando Nicolás

Trivia 🪢

The name "Quipus" comes from the Quechua word "khipu" which refers to a method used by the Incas to keep records and communicate information through a system of knots and strings.

We thought it was a fitting name for a package that helps you manage and deliver data in a structured and organized way.

You can read more about it in this wikipedia page.


License

This project is licensed under the terms of the GNU General Public License v3.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

quipus-0.2.4.tar.gz (31.7 kB view details)

Uploaded Source

Built Distribution

quipus-0.2.4-py3-none-any.whl (35.5 kB view details)

Uploaded Python 3

File details

Details for the file quipus-0.2.4.tar.gz.

File metadata

  • Download URL: quipus-0.2.4.tar.gz
  • Upload date:
  • Size: 31.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for quipus-0.2.4.tar.gz
Algorithm Hash digest
SHA256 4bfc6de3d07c3971a4050c88c7d8571c267857d2ef2ae46ca2f590d2ad720bdc
MD5 aba247501c79b9f74d55496f3706cfc8
BLAKE2b-256 387f2f0e9c20bc3625976b983976e6cb2ea3bf1c5465087c5139759baa321687

See more details on using hashes here.

File details

Details for the file quipus-0.2.4-py3-none-any.whl.

File metadata

  • Download URL: quipus-0.2.4-py3-none-any.whl
  • Upload date:
  • Size: 35.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.4 CPython/3.12.7 Linux/6.5.0-1025-azure

File hashes

Hashes for quipus-0.2.4-py3-none-any.whl
Algorithm Hash digest
SHA256 39ecd0099ff9bc9c6c4b4698e77ab82229fbec607adb5c6b63ad9449e2b46fbd
MD5 ee5856d0c52f1040ecdfa080104c0130
BLAKE2b-256 954a3ca611457e3bd54b5ce64e901010fbd8d1bde6eac288694bdcb0e19f33d1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page