项目作者: mk-fg

项目描述 :
Twisted-based python async interface for Box (box.net) API v2.0
高级语言: Python
项目地址: git://github.com/mk-fg/txboxdotnet.git
创建时间: 2013-03-23T15:31:00Z
项目社区:https://github.com/mk-fg/txboxdotnet

开源协议:Do What The F*ck You Want To Public License

下载


txboxdotnet

Twisted-based python async interface for Box (box.net) API (version
2.0)
.

Usage Example

Following script will print listing of the root box.net folder, upload
“test.txt” file there, try to find it in updated folder listing and then remove
it.

  1. from twisted.internet import defer, reactor
  2. from txboxdotnet.api_v2 import txBoxAPI
  3. api = txBoxAPI(
  4. client_id='...',
  5. client_secret='...', ... )
  6. if not api.auth_code:
  7. print '\n'.join([
  8. 'Visit the following URL in any web browser (firefox, chrome, safari, etc),',
  9. ' authorize there, confirm access permissions, and paste URL of an empty page',
  10. ' (starting with "https://success.box.com/") you will get',
  11. ' redirected to into "auth_code" value in "config" dict above.\n',
  12. 'URL to visit:\n {}'.format(api.auth_user_get_url()) ])
  13. exit()
  14. if re.search(r'^https?://', api.auth_code):
  15. api.auth_user_process_url(api.auth_code)
  16. @defer.inlineCallbacks
  17. def do_stuff():
  18. # Print root directory listing
  19. print list(e['name'] for e in (yield api.listdir()))
  20. # Upload "test.txt" file from local current directory
  21. file_info = yield api.put('test.txt')
  22. # Find just-uploaded "test.txt" file by name
  23. file_id = yield api.resolve_path('test.txt')
  24. # Check that id matches uploaded file
  25. assert file_info['id'] == file_id
  26. # Remove the file
  27. yield api.delete(file_id)
  28. do_stuff().addBoth(lambda ignored: reactor.stop())
  29. reactor.run()

Note that parameters passed to txBoxAPI class init above should contain
authentication data, which can/should be derived from “client_id” and
“client_secret”, provided after app registration
on box.net.

Service (at least now) has quite annoying requirement that the “auth_code” it
will provide after authorizing API access request is only valid for 30 seconds.
See API auth docs for more info on the process.

For more complete example (including oauth2 stuff), see
api_v2.py
code after if __name__ == '__main__': (will need better examples in the
future, patches welcome!).

Installation

It’s a regular package for Python 2.7 (not 3.X).

Using pip is the best way:

  1. % pip install txboxdotnet

If you don’t have it, use:

  1. % easy_install pip
  2. % pip install txboxdotnet

Alternatively (see
also
):

  1. % curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | python
  2. % pip install txboxdotnet

Or, if you absolutely must:

  1. % easy_install txboxdotnet

But, you really shouldn’t do that.

Current-git version can be installed like this:

  1. % pip install 'git+https://github.com/mk-fg/txboxdotnet.git#egg=txboxdotnet'

Note that to install stuff in system-wide PATH and site-packages, elevated
privileges are often required.
Use “install —user”,
~/.pydistutils.cfg
or virtualenv to do unprivileged
installs into custom paths.

Requirements

Implemented methods

Matrix of implemented API method wrappers (same order as in the
docs):

  • folders

    • list: listdir
    • create: mkdir
    • get info: info_folder
    • copy
    • delete: delete_folder
    • update info
    • create shared link
    • view discussions
    • view collaborations
    • list from trash
    • info from trash
    • restore from trash
    • delete permanently
  • files

    • upload: put
    • download: get
    • get info: info_file
    • upload overwrite: put
    • upload rename
    • view versions
    • update info
    • delete: delete_file
    • copy
    • create shared link
    • view comments
    • get thumbnail
    • get from trash
    • restore from trash
    • delete permanently
  • comments

  • discussions
  • collaborations

  • users

    • current user info: info_user
    • all the rest ;)
  • search

  • shared items
  • events

Note that these wrappers tend to be very thin, just taking python method
arguments and translating these into appropriate API keys, typically looking
somewhat like this:

  1. def info_file(self, file_id):
  2. return self(join('files', file_id))

Any missing methods can also be replaced by calling api object in the same way
as above, passing all the appropriate (as per docs) parameters.

My purposes are quite narrow - I use service only for file storage - so missing
sharing/collaboration wrappers are unlikely to be implemented here without
patches from someone interested in having these.