Skip to content

letolab/pyworksnaps

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 

Worksnaps API

Example:

from datetime import date
from pyworksnaps import Worksnaps

w = Worksnaps('yourtoken')

for project in w.projects():
    print project.name

    for entry in project.entries(start=date(2012, 3, 1), end=date(2012, 3, 8)):
        print '\t', entry.user.first_name, entry.user.last_name
        if entry.user_comment:
            print '\t\tcomment:',entry.user_comment

About

Python module for Worksnaps API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages