Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Braq document with 3 sections
Section-based human-readable data format
Braq (pronounced /ˈbɹæk/
) is a human-readable customizable data format whose reference parser is an eponymous lightweight Python library available on PyPI.
A Braq document is made up of sections, each defined by a header surrounded by square brackets (hence the name Braq) and a body which is just lines of text.
Here are the specs and recommended practices for a valid and neat Braq document:
A Braq document, when not empty, can be divided into sections.
A section is made up of two parts: a header and a body.
The header is defined on its own line, surrounded by two single square brackets (opening and closing brackets respectively).
The body is what is between two consecutive headers or between a header and the end of the document.
A section can be defined multiple times in the same document. In this case, the parser will concatenate its bodies from top to bottom.
A section with an empty header is called an unnamed section.
It is recommended to define no more than a single occurrence of a section in a document.
When a document contains a single unnamed section, it is recommended to place this section at the top of the document.
When an unnamed document starts a document, it is recommended to omit its header.
A dictionary data structure encoded with the human-readable Paradict data format can be safely embedded into a section. This section should then be referenced as a dict section.
It is recommended to put 1 empty line as spacing between two consecutive sections.
Example:
This is the unnamed section
that starts this document.
[section 1]
Lorem ipsum dolor sit amet,
consectetur adipiscing elit.
[section 2]
# dictionary data structure encoded with Paradict
id = 42
user = "alex"
books = (dict)
sci-fi = (list)
"book 1"
"book 2"
thriller = (set)
"book 3"
[section 1]
it is not recommended to multiply the occurrences
of a section, however the parser will append this
occurrence of 'section 1' to the previous one.
This section outlines three notable use cases for Braq, namely config files, AI prompts, and code documentation.
Being able to embed a dictionary data structure in a section makes Braq de facto suitable for config files.
Example of a KvF config file:
# This is the unnamed section of 'my_config.kvf' file.
# This section will serve as HELP text.
[user]
id = 42
name = 'alex'
[gui]
theme = 'dark'
window-size = '1024x420'
Check out the config file format KvF
The flexibility of Braq gives the possibility to define custom data formats for specific use cases. Source code documentation is one of those use cases that need Braq with a custom format on top of it.
This is how Braq can be used to document a function:
def add(a, b):
"""
This function adds together the values of
the provided arguments.
[params]
- a: first integer
- b: second integer
[returns]
Returns the sum of `a` and `b`
"""
return a + b
MikeDoc is a docstring format for generating API references. The library uses Braq to parse docstrings.
The capability to seamlessly interweave human-readable structured data with prose within a single document is a fundamental capability that a language designed to interact with AI must possess.
Additionally, the fact that Braq natively supports indentation removes the need for input sanitization, thereby eliminating an entire class of injection attacks.
Following are specs for building structured AI prompts with Braq:
That's it ! The specification is deliberately short to avoid unnecessary complexity and also to leave room for creativity.
You are an AI assistant, your name is Jarvis.
You will access the websites defined in the WEB section
to answer the question that will be submitted to you.
The question is stored in the 'input' key of the USER
dict section.
Be kind and consider the conversation history stored
in the 'data' key of the HISTORY dict section.
[USER]
timestamp = 2024-12-25T16:20:59Z
input = (raw)
Today, I want you to teach me prompt engineering.
Please be concise.
---
[WEB]
https://github.com
https://www.xanadu.net
https://www.wikipedia.org
https://news.ycombinator.com
[HISTORY]
0 = (dict)
timestamp = 2024-12-20T13:10:51Z
input = (raw)
What is the name of the planet
closest to the sun ?
---
output = (raw)
Mercury is the planet closest
to the sun !
---
1 = (dict)
timestamp = 2024-12-22T14:15:54Z
input = (raw)
What is the largest planet in
the solar system?
---
output = (raw)
Jupiter is the largest planet
in the solar system !
---
The Section
class is an abstraction representing a Braq section. It exposes the header
and body
properties and renders itself when its __str__
method is called implicitly.
import braq
# create a Section object
header, body = "my header", ("line a", "line b")
section = braq.Section(header, body)
# test the properties
assert section.header == "my header"
assert section.body == "line a\nline b"
# test the rendering
assert str(section) == """\
[my header]
line a
line b"""
Base functions allow you to parse and render documents.
The library exposes the parse
function which takes as input the text stream to be parsed, then returns a dictionary whose keys and values are strings representing headers and bodies respectively.
Sections sharing the same header are concatenated ! The header of an unnamed section is an empty string.
import braq
text = """\
this is the unnamed section at
the top of this document...
[section 1]
this is section 1"""
d = braq.decode(text)
# check headers
assert tuple(d.keys()) == ("", "section 1")
# check the body of 'section 1'
assert d["section 1"] == "this is section 1"
Check out the API reference for
braq.parse
here.
A document can be parsed line by line as following:
import braq
text = """\
this is the unnamed section
[section 1]
this is section 1"""
for header, body in braq.parse(text):
if header:
print("[" + header + "]")
for line in body:
print(line)
Output:
this is the unnamed section
[section 1]
this is section 1
Check out the API reference for
braq.parse_iter
here.
Rendering a document involves transforming Python objects representing sections into Braq text which is a string that can be displayed on the screen or stored in a file.
The library exposes the render
function which accepts as input a sequence of sections (either header-body tuples or Section
objects) and returns a Braq document.
import braq
# sections
section_1 = braq.Section("section 1", "line a\nline b")
section_2 = "section 2", "line c\nline d"
section_3 = "section 3", ("line e", "line f")
# rendering
r = braq.render(section_1, section_2, section_3)
print(r)
Output:
[section 1]
line a
line b
[section 2]
line c
line d
[section 3]
line e
line f
The
render
function also accepts thespacing
argument which defaults to 1 and represents the number of lines of spacing between two adjacent sections.
Check out the API reference for
braq.render
here.
The is_header
function accepts a line of text as input and then returns a boolean to indicate whether this line is a header or not.
import braq
line_1 = "[my header]"
line_2 = "[this isn't a header] at all"
assert braq.is_header(line_1) is True
assert braq.is_header(line_2) is False
The get_header
function accepts a line of text as input and returns a string if the line is a header. Otherwise, None
is returned.
import braq
line_1 = "[my header]"
line_2 = "[this isn't a header] at all"
assert braq.get_header(line_1) == "my header"
assert braq.get_header(line_2) is None
Check out the API reference for
braq.check_header
andbraq.get_header
here.
Collection of miscellaneous notes.
The beautiful cover image is generated with Carbon.
Feel free to open an issue to report a bug, suggest some changes, show some useful code snippets, or discuss anything related to this project. You can also directly email me.
Following are instructions to setup your development environment
# create and activate a virtual environment
python -m venv venv
source venv/bin/activate
# clone the project then change into its directory
git clone https://github.com/pyrustic/braq.git
cd braq
# install the package locally (editable mode)
pip install -e .
# run tests
python -m tests
# deactivate the virtual environment
deactivate
Braq is cross-platform. It is built on Ubuntu and should work on Python 3.5 or newer.
python -m venv venv
source venv/bin/activate
pip install braq
pip install braq --upgrade --upgrade-strategy eager
deactivate
Hello world, I'm Alex, a tech enthusiast ! Feel free to get in touch with me !
FAQs
Structured text format with sections
We found that braq demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.