A Wrapper to access information from Microsoft DevOps
Project description
Goal
This lib is reponsable for retriving data and sending commands to Microsoft DevOps.
Installation
To install tfsx, run this command in your terminal:
pip install tfsx
Usage
To use tfsx in a Python project:
from tfs.tfs import TFS
from pprint import pprint
from datetime import datetime
def main():
tfs = TFS('<userkey>','<serverurl')
work_itens = tfs.get_work_item_query_by_wiql_epic_user_story_product_backlog_item()
pprint (len(work_itens))
work_itens = tfs.get_work_item_query_by_wiql_task()
pprint (len(work_itens))
if __name__ == "__main__":
main()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
tfsx-1.2.14-py3-none-any.whl
(3.0 kB
view hashes)