Metadata-Version: 2.1
Name: monday
Version: 1.1.4
Summary: A Python client library for Monday.com
Home-page: https://github.com/ProdPerfect/monday
Author: Christina D'Astolfo
Author-email: christina@prodperfect.com
License: MIT
Description: # monday
        A monday.com Python Client Library
        
        
        For an overview of the Monday API, [click here](https://monday.com/developers/v2#introduction-section).
        
        
        #### Requirements
        - Python >= 3.6
        
        #### Getting started
        `pip install monday`
        
        `monday` is very simple to use -- take a look at the below example:
        ```python
        from monday import MondayClient
        
        
        monday = MondayClient('your token')
        
        monday.items.create_item(board='12345678', group='today',  item_name='Do a thing')
        
        ```
        
        **Available methods:**
        #### Items Resource (monday.items)
        - `create_item(board, group, item_name, column_values=None)` - Create an item on a board in the given group with name item_name.
        
        - `create_subitem(parent_item_id, subitem_name, column_values=None)` - Create a subitem underneath a given parent item. Monday API will return an error if the board you're trying to add to does not have a subitems column/at least one subitem created.
        
        - `fetch_items_by_column_value(board_id, column, value)` - Fetch items on a board by column value.
        
        - `fetch_items_by_id(board_id, [ids])` - Fetch items from any board by ids, passed in as an array of integers.
        
        - `change_item_value(board_id, item_id, column, value)` - Change column values for item on a board. Check Monday's API for which columns are supported.
        
        - `change_multiple_column_values(board_id, item_id, column_values)` - Change multiple column values for item on a board. Column values should be passed in as JSON. Check Monday's API for which columns are supported.
        
        
        #### Updates Resource (monday.updates)
        - `create_update(item_id, update_body)` - Create an update attached to a given item.
        
        - `fetch_updates(limit, page=None)` - Fetch a certain number of updates, starting from the given page. Default is 1
        
        
        #### Tags Resource (monday.tags)
        - `fetch_tags(tag_ids=None)` - Fetch all tags associated with an account. Optionally takes a list containing tag ids (if you know them). Returns IDs, names, and colors.
        
        
        #### Boards Resource (monday.boards)
        - `fetch_boards(**kwargs)` - Fetch boards associated with an account. Returns boards and their groups, tags, and columns. Accepts keyword arguments. See Monday API docs for a list of accepted keyword arguments.
        
        - `fetch_boards_by_id([board_ids])` - Since Monday does not allow querying boards by name, you can use `fetch_boards` to get a list of boards, and then `fetch_boards_by_id` to get more detailed info about the groups and columns on that board. Accepts a comma separated list of board ids.
        
        - `fetch_columns_by_board_id([board_ids])` - Get all columns, as well as their ids, types, and settings. Accepts a comma separated list of board ids.
        
        - `fetch_items_by_board_id([board_ids])` - Get all items on a board(s). Accepts a comma separated list of board ids.
        
        
        #### Users Resource (monday.users)
        - `fetch_users(**kwargs)` - Fetch user information associated with an account. See Monday API docs for a list of accepted keyword arguments.
        
        #### Contributions
        TBD
        
        #### Bug Reports
        TBD 
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown; charset=UTF-8
