Skip to content
/ xparser Public
forked from taesko/xparser

Parser for XResources written in python.

License

Notifications You must be signed in to change notification settings

cccra/xparser

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

XParser

A very simple python library for parsing XResources.

Example Usage

import xrp
result = xrp.parse_file('.Xresources')
result.resources['*foreground'] == '#FFFFFF'
result.resources.x_statement('*foreground').value == 'white'
result.definitions['white'] == '#FFFFFF'

Installation

Install stable versions from PyPi

pip install xparser

and development versions by cloning

git clone https://github.com/taesko/xparser.git
cd xparser && pip install .

Documentation

The two main entry points to the API are the parse and parse_file functions in the xrp package

They both return an xrp.views.XFileView object, which has resources and definitions attributes with dict-like interface for accessing the parsed data.

No designated docs are written yet (but are planned to be) - use help() on the xrp.views.XFileView object for more information on usage.

About

Parser for XResources written in python.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%