Diablo 3 API Documentation



Similar documents
Python DNS Failover Documentation

Dry Dock Documentation

Authorize Sauce Documentation

monoseq Documentation

Theorist HT Induc0on Course Lesson 1: Se6ng up your new computer (Mac OS X >= 10.6) As of 9/27/2012

SagePay payment gateway package for django-oscar Documentation

Flask-SSO Documentation

Tuskar UI Documentation

Memopol Documentation

Saruman Documentation

Rebuild Perfume With Python and PyPI

AuShadha Documentation

citools Documentation

Magento OpenERP Integration Documentation

DevKey Documentation. Release 0.1. Colm O Connor

MATLAB & Git Versioning: The Very Basics

depl Documentation Release depl contributors

skosprovider_rdf Documentation

Django Two-Factor Authentication Documentation

Version Control with Git. Dylan Nugent

Source Code Management for Continuous Integration and Deployment. Version 1.0 DO NOT DISTRIBUTE

Introduction to the Git Version Control System

Pyak47 - Performance Test Framework. Release 1.2.1

Version control. with git and GitHub. Karl Broman. Biostatistics & Medical Informatics, UW Madison

VOC Documentation. Release 0.1. Russell Keith-Magee

A Development Analytics Dashboard For Apache CloudStack

CPSC 491. Today: Source code control. Source Code (Version) Control. Exercise: g., no git, subversion, cvs, etc.)

Is This Your Pipe? Hijacking the Build Pipeline

Version Control with. Ben Morgan

Django FTP server Documentation

MOOSE-Based Application Development on GitLab

Version Control using Git and Github. Joseph Rivera

Using GitHub for Rally Apps (Mac Version)

Introducing Xcode Source Control

PKI, Git and SVN. Adam Young. Presented by. Senior Software Engineer, Red Hat. License Licensed under

Continuous Delivery on AWS. Version 1.0 DO NOT DISTRIBUTE

White Label ios Application Installation and Customization Guide

Git, GitHub & Web Hosting Workshop

LAVA Project Update. Paul Larson

Rapid Website Deployment With Django, Heroku & New Relic

Introduction to Version Control with Git

How To Manage Change In Jeepers

Introduction to Version Control with Git

Python and Google App Engine

MEDIABURST: SMS GUIDE 1. SMS Guide

An Introduction to Mercurial Version Control Software

FEEG Applied Programming 3 - Version Control and Git II

OAuthLib Documentation

Continuous integration with Jenkins CI

Trytond Magento Documentation

AWS CodePipeline. User Guide API Version

flask-mail Documentation

Developer Documentation Revamp Proposal. Wayne Lee

Distributed Version Control

Raspberry Pi Kernel-o-Matic

StriderCD Book. Release 1.4. Niall O Higgins

Developer Workshop Marc Dumontier McMaster/OSCAR-EMR

What Does Tequila Have to Do with Managing Macs? Using Open Source Tools to Manage Mac OS in the Enterprise!

Version control with GIT

GitLab as an Alternative Development Platform for Github.com

django-helpdesk Documentation

Analog Documentation. Release Fabian Büchler

Version Control Systems: SVN and GIT. How do VCS support SW development teams?

Lab Exercise Part II: Git: A distributed version control system

Developing tests for the KVM autotest framework

Version Control for Computational Economists: An Introduction

Python MySQL Replication Documentation

python-escpos Documentation

Git Tutorial - How to Create a Full Project

DevShop. Drupal Infrastructure in a Box. Jon Pugh CEO, Founder ThinkDrop Consulting Brooklyn NY

A Pythonic Approach to Continuous Delivery

Advanced Computing Tools for Applied Research Chapter 4. Version control

Platform as a Service and Container Clouds

Putting It All Together. Vagrant Drush Version Control

Version Control! Scenarios, Working with Git!

Build Automation for Mobile. or How to Deliver Quality Apps Continuously. Angelo Rüggeberg

MyMoney Documentation

Annoyances with our current source control Can it get more comfortable? Git Appendix. Git vs Subversion. Andrey Kotlarski 13.XII.

Work. MATLAB Source Control Using Git

Mobile Development with Git, Gerrit & Jenkins

Lab 1 Whatsup Watson Hands-On Lab

Getting Started. UC Santa Barbara Setup public repository (GitHub, Bitbucket) Identify workflow:

Archelon Documentation

Git. A Distributed Version Control System. Carlos García Campos carlosgc@gsyc.es

Mercurial. Why version control (Single users)

White Label Android Application Installation and Customization Guide

latest Release 0.2.6

Double Feature Talk. 1) Intro to SSL 2) Git Basics for Devs & Designers

Writing standalone Qt & Python applications for Android

Mantis Bug Tracker Developers Guide

Transcription:

Diablo 3 API Documentation Release 0.1.0 David Lewis December 27, 2015

Contents 1 Diablo 3 API 3 1.1 Features.................................................. 3 2 Installation 5 3 Usage 7 4 Resources 9 4.1 Career Profile............................................... 9 4.2 Hero Profile............................................... 9 4.3 Item Information............................................. 9 4.4 Follower Information........................................... 10 4.5 Artisan Information........................................... 10 5 Contributing 11 5.1 Types of Contributions.......................................... 11 5.2 Get Started!................................................ 12 5.3 Pull Request Guidelines......................................... 12 5.4 Tips.................................................... 13 6 Credits 15 6.1 Development Lead............................................ 15 6.2 Contributors............................................... 15 7 History 17 8 0.1.0 (2014-12-15) 19 9 Indices and tables 21 i

ii

Diablo 3 API Documentation, Release 0.1.0 Contents: Contents 1

Diablo 3 API Documentation, Release 0.1.0 2 Contents

CHAPTER 1 Diablo 3 API A Python API Wrapper for the Diablo 3 API Free software: BSD license Documentation: https://diablo3api.readthedocs.org. 1.1 Features Provides an API wrapper for the current Diablo 3 API Resources. Works with Python 2.6, 2.7, 3.3, 3.4. 3

Diablo 3 API Documentation, Release 0.1.0 4 Chapter 1. Diablo 3 API

CHAPTER 2 Installation At the command line: $ easy_install diablo3api Or, if you have virtualenvwrapper installed: $ mkvirtualenv diablo3api $ pip install diablo3api 5

Diablo 3 API Documentation, Release 0.1.0 6 Chapter 2. Installation

CHAPTER 3 Usage To use Diablo 3 API in a project: from diablo3api import Diablo3API api = Diablo3API() api.profile.get("battletag-1234") 7

Diablo 3 API Documentation, Release 0.1.0 8 Chapter 3. Usage

CHAPTER 4 Resources The following Resources are supported by the Diablo3API wrapper 4.1 Career Profile The Profile resource takes one argument, the Battletag of the user in the form of Battletag-1234 from diablo3api import Diablo3API api = Diablo3API() api.profile.get("battletag-1234") 4.2 Hero Profile The Hero Profile resource takes 2 arguments, the Battletag and the Hero ID. The Career Profile resource will list all of the heroes for a given profile. from diablo3api import Diablo3API api = Diablo3API() api.profile.hero.get("battletag-1234", 5678) 4.3 Item Information The Item Information resource takes 1 argument, the Item ID. The Hero Profile will list all of the items equipped by a Hero. from diablo3api import Diablo3API api = Diablo3API() api.item.get("item-id") 9

Diablo 3 API Documentation, Release 0.1.0 4.4 Follower Information The Follower Information resource takes 1 argument, the Follower Type. The only valid Follower types are templar, scoundrel, and enchantress. from diablo3api import Diablo3API api = Diablo3API() api.follower.get("templar") Alternatively there are specific methods for each of the followers. api.follower.templar() api.follower.scoundrel() api.follower.enchantress() 4.5 Artisan Information The Artisan Information resource takes 1 argument, the Artisan Type. The only valid Artisan types are blacksmith, jeweler, and mystic. from diablo3api import Diablo3API api = Diablo3API() api.artisan.get("blacksmith") Alternatively there are specific methods for each of the artisans. api.artisan.blacksmith() api.artisan.jeweler() api.artisan.mystic() 10 Chapter 4. Resources

CHAPTER 5 Contributing Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. You can contribute in many ways: 5.1 Types of Contributions 5.1.1 Report Bugs Report bugs at https://github.com/menglewis/diablo3api/issues. If you are reporting a bug, please include: Your operating system name and version. Any details about your local setup that might be helpful in troubleshooting. Detailed steps to reproduce the bug. 5.1.2 Fix Bugs Look through the GitHub issues for bugs. Anything tagged with bug is open to whoever wants to implement it. 5.1.3 Implement Features Look through the GitHub issues for features. Anything tagged with feature is open to whoever wants to implement it. 5.1.4 Write Documentation Diablo 3 API could always use more documentation, whether as part of the official Diablo 3 API docs, in docstrings, or even on the web in blog posts, articles, and such. 5.1.5 Submit Feedback The best way to send feedback is to file an issue at https://github.com/menglewis/diablo3api/issues. If you are proposing a feature: 11

Diablo 3 API Documentation, Release 0.1.0 Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) 5.2 Get Started! Ready to contribute? Here s how to set up diablo3api for local development. 1. Fork the diablo3api repo on GitHub. 2. Clone your fork locally: $ git clone git@github.com:your_name_here/diablo3api.git 3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development: $ mkvirtualenv diablo3api $ cd diablo3api/ $ python setup.py develop 4. Create a branch for local development: $ git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. 5. When you re done making changes, check that your changes pass flake8 and the tests, including testing other Python versions with tox: $ flake8 diablo3api tests $ python setup.py test $ tox To get flake8 and tox, just pip install them into your virtualenv. 6. Commit your changes and push your branch to GitHub: $ git add. $ git commit -m "Your detailed description of your changes." $ git push origin name-of-your-bugfix-or-feature 7. Submit a pull request through the GitHub website. 5.3 Pull Request Guidelines Before you submit a pull request, check that it meets these guidelines: 1. The pull request should include tests. 2. If the pull request adds functionality, the docs should be updated. Put your new functionality into a function with a docstring, and add the feature to the list in README.rst. 3. The pull request should work for Python 2.6, 2.7, 3.3, and 3.4, and for PyPy. Check https://travisci.org/menglewis/diablo3api/pull_requests and make sure that the tests pass for all supported Python versions. 12 Chapter 5. Contributing

Diablo 3 API Documentation, Release 0.1.0 5.4 Tips To run a subset of tests: $ python -m unittest tests.test_diablo3api 5.4. Tips 13

Diablo 3 API Documentation, Release 0.1.0 14 Chapter 5. Contributing

CHAPTER 6 Credits 6.1 Development Lead David Lewis <meng.lewis@gmail.com> 6.2 Contributors None yet. Why not be the first? 15

Diablo 3 API Documentation, Release 0.1.0 16 Chapter 6. Credits

CHAPTER 7 History 17

Diablo 3 API Documentation, Release 0.1.0 18 Chapter 7. History

CHAPTER 8 0.1.0 (2014-12-15) First release on PyPI. 19

Diablo 3 API Documentation, Release 0.1.0 20 Chapter 8. 0.1.0 (2014-12-15)

CHAPTER 9 Indices and tables genindex modindex search 21