Skip to main content

Automate taking notes

Project description

autonote

Description

Automate creating daily, weekly, monthly, and quarterly manual repetitive documents:

  1. Daily: daily journal, habit tracker
  2. Weekly: weekly report
  3. Monthly: monthly report
  4. Quarterly: quarterly review

Prerequisite

  1. Confluence API Token
  2. Notion Integration Token

Installation

pip install autonote

Usage

Create Confluence Page

Currently only support pre-defined page. TODO: make it configurable

  1. Set environment variables:

    export CONFLUENCE_URL=https://xxx.atlassian.net
    export CONFLUENCE_USERNAME=<yourname>@domain.com
    export CONFLUENCE_PASSWORD=<TOKEN>
    
  2. Run

    from autonote.confluence import ConfluenceClient
    from autonote.html import generate
    
    content = generate()
    client = ConfluenceClient()
    client.create_page(
        <confluence_parent_page_id>,
        title="title",
        body=content,
    )
    

    Generated Page:

Create Notion Page

Currently only support hardcoded page. TODO: make it configurable

  1. Set environemnt variable

    export NOTION_INTEGRATION_TOKEN=xxx
    
  2. Run

    from autonote.notion import NotionClient
    from autonote.html import generate
    
    content = generate()
    client = ConfluenceClient()
    client.create_page(
        <notion_parent_page_id>,
        title="title",
        body=content,
    )
    

Credits

autonote was created with cookiecutter and the py-pkgs-cookiecutter template.

Contributing

Interested in contributing? Check out the contributing guidelines. Please note that this project is released with a Code of Conduct. By contributing to this project, you agree to abide by its terms.

License

autonote was created by Masato Naka. It is licensed under the terms of the MIT license.

References

  1. How to package a Python
  2. py-pkgs-cookiecutter
  3. package
  4. Atlassian Python API Confluence module
  5. notion-client

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

autonote-0.2.3.tar.gz (5.6 kB view hashes)

Uploaded Source

Built Distribution

autonote-0.2.3-py3-none-any.whl (6.5 kB view hashes)

Uploaded Python 3

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