Skip to content
Open
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
sudo: false
dist: trusty
language: python
addons:
apt:
update: true
virtualenv:
system_site_packages: true
python:
- "2.7"
- "3.4"
- "pypy2.7"
- "pypy3.5"
install:
- sudo apt-get update
- pip install --upgrade pip setuptools
- pip install --upgrade pip virtualenv
- pip install coverage -U
- pip install pyflakes -U
- pip install nose -U
- pip install tox-travis
- pip install codecov -U
- pip install --upgrade pytest
script:
- pip install .
- pip install -r requirements.txt
- sh run_travis.sh
after_success:
- codecov
notifications:
- email: false
7 changes: 0 additions & 7 deletions README

This file was deleted.

33 changes: 33 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
Webfaction-Python-API
---------------------

[![Build Status](https://travis-ci.org/bieli/Webfaction-Python-API.svg?branch=master)](http://travis-ci.org/bieli/google_rank_checker)

[![codecov](https://codecov.io/gh/bieli/Webfaction-Python-API/branch/master/graph/badge.svg)](https://codecov.io/gh/bieli/Webfaction-Python-API)


Webfaction API client with command line tool for calling API methods.
Python 2 and 3 API is supported.




TODO
-----
- [X] support for Pytohn 3
- [X] implement support for list usage disks and bandwidth
- [X] adding Travis CI build in multiple Python versions
- [_] unit tests
- [_] verify compatibility for Python 2 and Python 3



Original README description
--------------
This is a port of https://pypi.python.org/pypi/webf/ -- the repo exists because

A. There doesn't seem to be a good source listing anymore (original site is dead)
B. I wanted to modify it to accept passed-in credentials instead of having one config file

Original post: http://forum.webfaction.com/viewtopic.php?id=1513 [dead]
WebFaction API Docs: https://docs.webfaction.com/xmlrpc-api/
Loading