Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
9 changes: 7 additions & 2 deletions README.mdown
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,15 @@ alp's primary features include:
* A class to send notifications and information over e-mail.
* Several bundled modules for working with HTTP requests.

However, you can pick and choose from among these by deleting any of the files in the module (except for `core.py` and the folder `core_dependencies`); if something is missing, alp will silently ignore it.

To get started, simply download or clone this repository and copy the `alp` folder into your workflow directory, then `import alp`. A list of everything alp can do, with appropriate documentation, is below.

## Installation

Install Alp with PIP:

pip install https://github.com/phyllisstein/alp/tarball/master


## Core Functions
These are intended to make some basic rote tasks easier and faster to code. alp defines the following functions:

Expand Down
2 changes: 1 addition & 1 deletion alp/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
pass

try:
from alp.request.request import *
from request import *
except ImportError:
pass

Expand Down
4 changes: 2 additions & 2 deletions alp/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import plistlib
import unicodedata
import codecs
from .core_dependencies import six
from .core_dependencies import biplist
import six
import biplist


gBundleID = None
Expand Down
Empty file removed alp/core_dependencies/__init__.py
Empty file.
Loading