A simple, Pythonic file format. Same interface as the
Project description
perky
A friendly, easy, Pythonic text file format
Copyright 2018-2020 by Larry Hastings
Overview
Perky is a new, simple "rcfile" text file format for Python programs.
The following are Perky features:
Perky syntax
Perky configuration files look something like JSON without the quoting.
example name = value
example dict = {
name = 3
another name = 5.0
}
example list = [
a
b
c
]
nested dict = {
name = value
nesting level 2 = {
nesting level 3 = {
and = so on!
}
}
list inside the dict = [
value in the list
[
and this is in a nested list!
this is another value.
you see?
]
]
}
# lines starting with hash are comments and are ignored!
# blank lines are ignored too!
" quoted name " = " quoted value "
triple quoted string = """
indenting
is preserved
the string is automatically outdented
to the leftmost character of the ending
triple-quote
<-- aka here
"""
=pragma argument
Explicit transformation is better than implicit
One possibly-surprising design choice of Perky: the only natively supported values for the Perky parser are dicts, lists, and strings. Other commonly-used types (ints, floats, etc) are handled using a different mechanism: transformation.
A Perky transformation takes a dict as input, and transforms
the contents of the dict based on a schema. A Perky schema
is a dict with the same general shape as the dict produced
by the Perky parse, but it contains dicts, lists,
and transformation functions.
If you want myvalue in {'myvalue':'3'}
to be a real integer,
transform it with the schema {'myvalue': int}
.
Note that Perky doesn't care how or if you transform your data. You can use it as-is, or transform it, or transform it with multiple passes, or use an external transformation technology like Marshmallow.
Pragmas
A pragma is a metadata directive for the Perky parser. It's a way of sending instructions to the Perky parser from inside a bit of Perky text.
Here's an example pragma directive:
=foo bar bat
The first word after the equals sign is the name of the pragma, in this case "foo"
.
Everything after the name of the pragma is an argument, with all leading
and trailing whitespace removed, in this case "bar bat"
.
By default, Perky doesn't have any pragma handlers. And invoking a pragma
when Perky doesn't have a handler for it is a runtime error.
But you can define your own pragma handlers when you call perky.load()
or perky.loads()
, using a named parameter called pragmas
.
If you pass in a value for pragmas
, it must be a mapping
of strings to functions.
The string name should be the name of the pragma and must be lowercase.
The function it maps to will "handle" that pragma, and should match this
prototype:
def pragma_fn(parser, argument)
parser
is the internal Perky Parser
object. argument
is the
rest of the relevant line, with leading & trailing whitespace stripped.
(If the rest of the line was empty, argument
will be None
).
The return value of the pragma function is ignored.
There's currently only one predefined pragma handler, a function called
perky.pragma_include()
. This adds "include statement" functionality
to Perky. If you call this:
perky.load(filename, pragmas={'include': perky.pragma_include()})
then Perky will interpret lines inside filename
starting with =include
as include statements, using the rest of the line as the name of a file.
For more information, see pragma_include()
below.
The rules of pragmas:
- To invoke a pragma, use
=
as the first non-whitespace character on a line. - The names of pragmas must always be lowercase.
- You can't invoke a pragma inside a triple-quoted string.
- Pragmas can be "context-sensitive": they can be aware of where
they are run inside a file, and e.g. modify the current dict
or list. The pragma function can see the entire current nested
list of dicts and lists being parsed (via
parser.breadcrumbs
). - The rest of the line after the name of the pragma is the pragma argument value, if any. This is always a string. It can be a quoted string.
Parsing Errors
There are only a few errors possible when parsing a Perky text:
- Obviously, syntax errors, for example:
- A line in a dict that doesn't have an unquoted equals sign
- A line in a list that looks like a dict line (
name = value
). - A triple-quoted string where any line is outdented past the ending triple quotes line.
- Defining the same value twice in the same dict. This is flagged as an error, because it could easily be a mistake, and in Python we don't want to let errors pass silently.
- Using an undefined pragma.
- Using one of Perky's special tokens as a pragma argument, like
{
,[
,'''
, or"""
.
API
perky.loads(s, *, pragmas=None) -> d
Parses a string containing Perky-file-format settings. Returns a dict.
perky.load(filename, *, pragmas=None, encoding="utf-8") -> d
Parses a file containing Perky-file-format settings. Returns a dict.
perky.dumps(d) -> s
Converts a dictionary to a Perky-file-format string. Keys in the dictionary must all be strings. Values that are not dicts, lists, or strings will be converted to strings using str. Returns a string.
perky.dump(filename, d, *, encoding="utf-8")
Converts a dictionary to a Perky-file-format string
using perky.dump
, then writes it to filename.
perky.pragma_include(include_path=(".",))
This function generates a pragma handler that adds "include" functionality. "Including" means lexically inserting one Perky file inside another, contextually at the spot where the pragma exists.
For example:
d = perky.loads("a=3\n" "=include data.pky\n" "c=5\n",
pragmas={"include": perky.pragma_include()},
)
If data.pky contained the following:
b=4
then d
would be set to the dictionary:
{'a': '3', 'b': '4', 'c': '5'}
perky.pragma_include()
is not the pragma handler itself;
it returns a function (a closure) which remembers the include_path
you pass in. This allows you to use it for multiple pragmas that
include from different paths, e.g.:
include_dirs = [appdirs.user_data_dir(myapp_name)]
config_dirs = [appdirs.user_config_dir(myapp_name)]
pragmas = {
'include': perky.pragma_include(include_dirs),
'config': perky.pragma_include(config_dirs),
}
Notes:
-
The pragma handler is context-sensitive; the included file will be included as if it was copied-and-pasted replacing the pragma line. Among other things, this means that if the pragma is invoked inside a list context, the included file must start in a list context.
-
When loading the file, the pragma handler will pass in the current pragma handlers into
perky.load()
. Among other things, this allows for recursive includes. -
When including inside a dict context, you're explicitly permitted to re-define existing keys if they were previously defined in another file.
-
The default value for
include_path
only searches the current directory ("."
). If you override the default and pass in your own include path, the pragma handler won't search the current directory unless you add"."
to the include path yourself.
perky.map(d, fn) -> o
Iterates over a dictionary. Returns a new dictionary where, for every value:
- if it is a dict, replace with a new dict.
- if it is a list, replace with a new list.
- if it is neither a dict nor a list, replace with
fn(value)
.
The function passed in is called a conversion function.
perky.transform(d, schema, default=None) -> o
Recursively transforms a Perky dict into some other object (usually a dict) using the provided schema. Returns a new dict.
A schema is a data structure matching the general expected
shape of d, where the values are dicts, lists, and
callables. The transformation is similar to perky.map()
except that individual values will have individual conversion
functions. Also, a schema conversion function can be specified
for any value in d, even dicts or lists.
default is a default conversion function. If there is a
value v in d that doesn't have an equivalent entry in schema,
and v is neither a list nor a dict, and if default is
a callable, v will be replaced with default(v)
in the
output.
perky.Required
Experimental.
perky.nullable(fn) -> fn
Experimental.
perky.const(fn) -> o
Experimental.
TODO
- Backslash quoting currently does "whatever your version of Python does". Perhaps this should be explicit, and parsed by Perky itself?
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
Built Distribution
File details
Details for the file perky-0.2.3.tar.gz
.
File metadata
- Download URL: perky-0.2.3.tar.gz
- Upload date:
- Size: 16.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.24.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5908282399c522591cbf04579259f199ae22b4516953a00e4870da2bb113310e |
|
MD5 | 33e9ee06efcb47a4c7a45c0872d5c29c |
|
BLAKE2b-256 | e1e114d82ad05158f6008f4b5ce8e852d566129206c4297f0f27c0e06eca1080 |
File details
Details for the file perky-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: perky-0.2.3-py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.24.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d55d8f9c987af0ba5f5064f553682dff3418736abf762244a0377296e6b4f592 |
|
MD5 | a60927df90315edb2bcef4c006d7819c |
|
BLAKE2b-256 | 6c827ea814189989eebe4f2877f5749f3f7770b437caef0f9e7a8309c79cc46e |