> For the complete documentation index, see [llms.txt](https://docs.macilib.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.macilib.org/docs/ini/functions/maci.inibuildmanual.md).

# maci.inibuildmanual

Calling this function will simply return an empty [ConfigParser](https://docs.python.org/3/library/configparser.html) object to build out ini data manually. This function currently has no parameters.

{% hint style="info" %}
maci.inibuildmanual  ->  [ConfigParser](https://docs.python.org/3/library/configparser.html)
{% endhint %}

*Example getting configparser object and building out ini data*

```python
data = maci.inibuildmanual()

data['section1'] = {'key1': 1}
data['section2'] = {'key2': 2}
```

In this example, we created a new empty [ConfigParser](https://docs.python.org/3/library/configparser.html) object and assigned it to a variable, then created new sections names with key/value pair data.

Values can be anything, but when they are [dumped](/docs/ini/functions/maci.inidump.md) to a file and loaded back in, they will be loaded as a string type in their string representation (See [iniload](/docs/ini/functions/maci.iniload.md))

Note: If your sub-value contains a NoneType, the underlying library does not support None. See [inibuildauto](/docs/ini/functions/maci.inibuildauto.md) if you want any NoneTypes to be auto-converted to strings, or simply remove or replace the None values with default values.

*This function uses the native configparser library shipped with the python standard library for its underlying functionality. For more information on the configparser library, visit:*[ *https://docs.python.org/3/library/configparser.html*](https://docs.python.org/3/library/configparser.html)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.macilib.org/docs/ini/functions/maci.inibuildmanual.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
