Manage your Webfaction settings in a per project basis from an INI style file.
Project description
Overview
inifaction makes possible to write an INI style file and setup a Webfaction project with it through Webfaction’s API.
It has a command line utility but it’s possible to also use the API implementation of inifaction as a module.
Command line utility
Create a template to configure a project:
inifaction template -f config.ini
After making the needed changes, call the API of Webfaction and setup the project:
inifaction setup -f config.ini
If any error happens, it will continue with the setup. Later on, you can setup only the section where the error happened:
inifaction setup -f config.ini -s domains
As a module
The API is created instantiating inifaction.api.API with the URL as parameter. Login requires user, password and the machine:
# Setup the API from inifaction import API_URL from inifaction.api import API api = API(API_URL) api.login('user', 'password', 'Web210')
All the configuration sections of Webfacion’s API are available at inifaction.items as items. Those items hold all the needed information to call the API with certain parameters, depending on the API’s call.
For example, we can create an email address:
from inifaction.items import Email email = Email('example@email.net', ['example_target_mailbox', 'target@emai.net'], autoresponder_on=True, autoresponder_subject='Hi!', autoresponder_message='Hello!', autoresponder_from='dont-answer@email.net', script_machine='', script_path='')
Calling the item’s args function with the API call type (create, update or delete), returns the needed parameters to making that call. This happens automatically on API’s level:
# Create the email api.create(email) # Change the item and update it email = email._replace(email_address='other@emai.net') api.update(email) # Check if it exists api.exists(email) # List all the emails api.list('emails') # Delete the email api.delete(email) # Delete all the emails api.delete_all('emails')
It’s possible to subclass the default items and create customized ones, it only requires to change inifaction.SECTIONS and inifaction.NAMES values to point to the customized item.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file inifaction-0.1.tar.gz
.
File metadata
- Download URL: inifaction-0.1.tar.gz
- Upload date:
- Size: 23.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 34cbf3e16910d7ac938230936b7b3e366f7430d265092609180a28dd459fab6e |
|
MD5 | 0089601e1b117b851b34fc7c826cc02c |
|
BLAKE2b-256 | d461a572da93ca279d59835fd9010c7dbb864f7008b9888242e6429a85ab7ed3 |