Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

kanbanflow2wekan

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kanbanflow2wekan

This is a library to perform kanban migration from Kanbanflow to Wekan in an automated way.

  • 0.2.3
  • PyPI
  • Socket score

Maintainers
1

Kanbanflow2Wekan

Donate to help keep this project maintained

Donate with PayPal button

Summary

This is a library to perform kanban migration from Kanbanflow to Wekan in an automated way.

Requirements

  • requests

Quick Start Guide

Install kanbanflow2wekan

pip install kanbanflow2wekan

Initialize kanbanflow2wekan

import os
from dotenv import load_dotenv
from kanbanflow2wekan import k2w

load_dotenv()

print('kanbanflow2wekan | by: @mdiniz97\n\n')

migration = k2w(
    os.getenv('WEKAN_URL'),
    os.getenv('WEKAN_USER'),
    os.getenv('WEKAN_PASSWORD'),
    os.path.join(os.getcwd(), 'kanbanflow'), # path to kanbanflow dump's folder
    os.getenv('KANBANFLOW_USER'),
    os.getenv('KANBANFLOW_PASSWORD'),
    kf_download_attachments=True,
)

migration.migrate()

Keywords

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc