Skip to main content

Enable end-user Configuration generation for development.

Project description

# figgy

Are you sick and tired of writing packages or apps that are super great but don't work unless your end-user scours your README for instructions on how to structure config files and how and where to instantiate them?

figgy is the app and package configuration generator package developed for developers who develop apps and/or packages for use by other developers.

figgy allows you to ship code and have the end-user developer install and configure it just by running your app or package. You can call it from setup.py or bind it to whatever you like in your code so the results of the new configuration are made immediately available to whatever context the app or package will be used in.

---

## Warning

This software is in beta development. That said, this package should work. Please report bugs.

Key caveats:
* Outputs your configuration data to the screen in some cases.
* Only supports json
* Only available for python 3.
* You want this module to prompt from TTY.
* You're on a 'NIX system.
* You're okay figuring out how to make forcing a configuration regeneration for the user on your own.

These are intended to guide feature development for future versions, but in this state it should be useful nonetheless.

## Installation

pip install figgy

## Usage

To prompt and generate a configuration but not load it into the package/app context use:

import figgy

template = {
'username': 'default',
'password': 'anotherdefault'
}

figgy.make(template)

To prompt and generate a configuration then load the new configuration data into the package/app context use:

config = figgy.make(template, get=True)

and the end user will be prompted with:

Enter value for "username"
(return for default "default")': ▋userinput
Enter value for "username"
(return for default "default")':
Set "username" to "userinput" in ./config.json
Enter value for "password"
(return for default "anotherdefault")': ▋anotheruserinput
Enter value for "password"
(return for default "anotherdefault")':
Set "password" to "anotheruserinput" in ./config.json

and generate a `config.json` file:

{"username": "userinput", "password": "anotheruserinput"}

By default figgy assumes a few things:

* You want the file to be named `config.json`
* You want the file generated at the path the python code that executes it runs from
* You don't want to return the configuration data itself to the application context
* The user interface is TTY.

But you can change most of that:


```
template = {
'PORT': '3000',
'DEBUG': 'True'
}
figgy.make(data=template, filename='appconfig')
Enter value for "PORT"
(return for default "3000")': ▋8080
Set "PORT" to "8080" in ./appconfig.json
Enter value for "DEBUG"
(return for default "True")': ▋False
Set "DEBUG" to "False" in ./appconfig.json
```
```
figgy.make(data=template, path='../configs/')
Enter value for "username"
(return for default "default")': ▋userinput
Enter value for "username"
(return for default "default")':
Set "username" to "userinput" in ../configs/config.json
Enter value for "password"
(return for default "anotherdefault")': ▋anotheruserinput
Enter value for "password"
(return for default "anotherdefault")':
Set "password" to "anotheruserinput" in ../configs/config.json
```
```
figgy.make(data=template, get=True)
Enter value for "username"
(return for default "default")': ▋userinput
Enter value for "username"
(return for default "default")':
Set "username" to "userinput" in ./config.json
Enter value for "password"
(return for default "anotherdefault")': ▋anotheruserinput
Enter value for "password"
(return for default "anotherdefault")':
Set "password" to "anotheruserinput" in ./config.json
{'./config.json': {'username': 'userinput', password: 'otheruserinput'}}
```

## Contributing

1. Fork the source repository https://github.com/dyspop/figgy
2. Make a new branch
3. Write the feature code
4. Make sure you add some tests
5. Submit a pull request with helpful notes about your feature and test

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

figgy-0.1.2.dev1.tar.gz (6.2 kB view details)

Uploaded Source

Built Distribution

figgy-0.1.2.dev1-py3-none-any.whl (8.9 kB view details)

Uploaded Python 3

File details

Details for the file figgy-0.1.2.dev1.tar.gz.

File metadata

  • Download URL: figgy-0.1.2.dev1.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for figgy-0.1.2.dev1.tar.gz
Algorithm Hash digest
SHA256 97d5e1dd910dd2da1266c2e8381b22ef78cc364f20c11b8160637d463c428f12
MD5 f0f20ce5e58caf82add01de8bff106d7
BLAKE2b-256 06afface1d2e1fe99fc1604926be0c4cd69803c521f7f275b6d1effb62b2a2de

See more details on using hashes here.

File details

Details for the file figgy-0.1.2.dev1-py3-none-any.whl.

File metadata

File hashes

Hashes for figgy-0.1.2.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 cdf56a05275b745537cfef5376ed9534f984f080c1eff6bba9c1d8edebe8c082
MD5 8a93bcba04cb86dd5a4ed8888dd305c8
BLAKE2b-256 896e7d50129906977d4be178295a7d7c728a9fa7ef73c67677d781ec18377d7b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page