Pyfoo

Wufoo REST API 的 Python 封装程序。「A Python Wrapper for the Wufoo REST API」

Github星跟蹤圖

Pyfoo is a Python wrapper for the Wufoo API.

You can use the wrapper with either an API Key or an email address, password, and integration key.

Example usage:

api = PyfooAPI('your_account', 'your_api_key_here')
or
api = PyfooAPI(email='email@email.com', password='password', integration_key='your_integration_key')

Once you have created an instance of the PyfooAPI you can access forms, reports, fields, and entries.
The Entry class is a dictionary of field values, all other classes have fields corrosponding with the fields returned
by the Wufoo api, for example the Form class has Name, Description, Url, and RedirectMessage properties,
along with all of the other properties returned by the API. This allows you to reference the Wufoo API
documentation directly when accessing class properties, or a simple dir(form) will also give you a list
of all of the available properties.

Here are some examples:

api = PyfooAPI('your_account', 'your_api_key_here')
for form in api.forms:
    print( '%s (%s)' % (form.Name, form.entry_count) )

for report in api.reports:
    print( '%s (%s)' % (report.Name, report.entry_count) )

for user in api.users:
    print( '%s (%s)' % (report.Name, report.entry_count) )

contact_form = api.forms[0]
email_field = contact_form.get_field('Email')    
entries = contact_form.get_entries() # By default this returns 100 entries sorted by DateCreated descending
for entry in entries: 
    print( entry[email_field.ID] )

entry = entries[0]
for field in contact_form.fields:
    if field.SubFields:
        for subfield in field.SubFields:
            print( '%s: %s' % (subfield.Label, entry[subfield.ID]) )
    else:
        print( '%s: %s' % (field.Title, entry[field.ID]) )

Run tests from the root of this repo:

python -m unittest discover

PyfooAPI Class Documentation:

class PyfooAPI(account, api_key) or
class PyfooAPI(email=None, password=None, integration_key=None)
    Propreties:
        forms
        reports
        users


class Form()
    Methods:
        add_entry(Entry())
        add_web_hook(hook_url, handshake_key=None, send_metadata=True)
        delete_web_hook(self, webhook_hash)
        get_entries(page_start=0, page_size=100, sort_field='DateCreated', sort_direction='DESC')
        get_iframe_embed_url()
        get_javascript_embed_url()
        get_link_url()
        search_entries([SearchParameter(), SearchParameter(), ...])
        get_field(title)
    
    Properties:
        comments
        entry_count
        fields


class Entry()
    Properties:    
        comments


class Report()
    Methods:
        get_entries(page_start=0, page_size=100)
        get_link()

    Propreties:
        entries
        entry_count
        fields
        widgets


class User()
    Methods:
        get_big_image_url(self)
        get_small_image_url(self)
 
 
class Widget()
    Methods:
        get_embed_code(self)

class SearchParameter(field, operator, value)
class Comment()
class Field()

主要指標

概覽
名稱與所有者wufoo/pyfoo
主編程語言Python
編程語言Python (語言數: 2)
平台
許可證MIT License
所有者活动
創建於2010-09-17 02:17:53
推送於2017-04-07 14:59:25
最后一次提交2017-04-07 07:59:25
發布數0
用户参与
星數20
關注者數2
派生數21
提交數3
已啟用問題?
問題數2
打開的問題數2
拉請求數1
打開的拉請求數0
關閉的拉請求數3
项目设置
已啟用Wiki?
已存檔?
是復刻?
已鎖定?
是鏡像?
是私有?