Code Monkey home page Code Monkey logo

monday_library's Introduction

Monday.com (formerly DaPulse) library for Python

Api is described here: https://developers.monday.com

Api key can be obtained based on instructions there.

I have created this in order to process data from Redmine (where my developers track their stuff) and Monday/DaPulse (where management/customer manages their wishes)

This is not 1:1 implementation of Monday API (they have it universal), this is more client focused (as you do not want to iterate over columns, boards and look for correct board_id and column_id and follow with update to it, you want to update column for that pulse)

Code may be ugly (and probably is, but is working for me).

Typical usage:

from monday_library import Monday as M
api_key = "...."
dapulse = M(api_key)
pulse = dapulse.GetPulse(123)
try:
	dapulse.PutColumnValue(pulse,"something",1)
except ColumnNotFound:
	print("scary, missing column")

For more information of available Methods, see source-code (sorry, later will be replaced with documentation)

Do not forget to check for exception(s):

AccessErrorException - Your api key or your rights are not good enough
NotImplemented - Method not implemented yet (contributions will help)
ColumnNotFound - Column for given pulse not found
PulseNotFound - Pulse not found

Status:

  • Get Pulse
  • Get Pulse columns
  • Update column for given pulse
  • Make better library
  • Write documentation
  • Write tests

monday_library's People

Contributors

klepek avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.