A hosts file manager library written in python
Project description
python-hosts
========
[](https://travis-ci.org/jonhadfield/python-hosts) [](https://coveralls.io/github/jonhadfield/python-hosts?branch=master) [](http://python-hosts.readthedocs.org/en/latest/)
This is a python library for managing a hosts file.
It enables you to add and remove entries, or import them from a file or URL.
Documentation
-------------
The docs are hosted on RTD (Read The Docs) here:
<http://python-hosts.readthedocs.org/en/latest/index.html>.
Installation
------------
pip install python-hosts
Example usage
------------
Adding an entry to a hosts file
from python_hosts import Hosts, HostsEntry
hosts = Hosts(path='hosts_test')
new_entry = HostsEntry(entry_type='ipv4', address='1.2.3.4', names=['www.example.com', 'example'])
hosts.add([new_entry])
hosts.write()
Importing a list of host entries by URL
from python_hosts import Hosts, HostsEntry
hosts = Hosts(path='hosts_test')
hosts.import_url(url='https://dl.dropboxusercontent.com/u/167103/hosts')
hosts.write()
Requirements
------------
Tested on python 2.6, 2.7, 3.4, 3.5, pypy and pypy3
License
-------
MIT
========
[](https://travis-ci.org/jonhadfield/python-hosts) [](https://coveralls.io/github/jonhadfield/python-hosts?branch=master) [](http://python-hosts.readthedocs.org/en/latest/)
This is a python library for managing a hosts file.
It enables you to add and remove entries, or import them from a file or URL.
Documentation
-------------
The docs are hosted on RTD (Read The Docs) here:
<http://python-hosts.readthedocs.org/en/latest/index.html>.
Installation
------------
pip install python-hosts
Example usage
------------
Adding an entry to a hosts file
from python_hosts import Hosts, HostsEntry
hosts = Hosts(path='hosts_test')
new_entry = HostsEntry(entry_type='ipv4', address='1.2.3.4', names=['www.example.com', 'example'])
hosts.add([new_entry])
hosts.write()
Importing a list of host entries by URL
from python_hosts import Hosts, HostsEntry
hosts = Hosts(path='hosts_test')
hosts.import_url(url='https://dl.dropboxusercontent.com/u/167103/hosts')
hosts.write()
Requirements
------------
Tested on python 2.6, 2.7, 3.4, 3.5, pypy and pypy3
License
-------
MIT
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
python-hosts-0.3.9.tar.gz
(20.4 kB
view details)
File details
Details for the file python-hosts-0.3.9.tar.gz.
File metadata
- Download URL: python-hosts-0.3.9.tar.gz
- Upload date:
- Size: 20.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ed7b749bf5fb7cfd29b88c52ac0f186445ac56d00563992cca1ade1025bd0dae
|
|
| MD5 |
9a0c312fd4307feeebb7155110a94fcf
|
|
| BLAKE2b-256 |
70826b08817a1dabc1d7c3731689ca8a20d946504f2f3d4dca744484df9bfd91
|