Giter Site home page Giter Site logo

Comments (3)

tombreit avatar tombreit commented on May 29, 2024

Perhaps related: I'm trying to store the Django ADMINS [1] setting via environs and did not manage to find a representation of the desired setting (a list of two-tuples):

[('John', '[email protected]'), ('Mary', '[email protected]')]

What I've tried:

# .env
ADMINS="(Doe,doe@fqdn),(Joe,joe@fqdn)"

...but this translates to

 ['(Doe', 'doe@fqdn)', '(Joe', 'joe@fqdn)']

My workaround

(stolen from https://django-environ.readthedocs.io/en/latest/tips.html#nested-lists)

# .env
DJANGO_ADMINS=Blake:[email protected],Alice:[email protected]
# django settings.py
ADMINS = [x.split(':') for x in env.list('DJANGO_ADMINS')]

[1] https://docs.djangoproject.com/en/3.2/ref/settings/#admins

from environs.

kethan1 avatar kethan1 commented on May 29, 2024

This is a workaround:

from environs import Env
import ast

env = Env()
env.read_env()

print(ast.literal_eval(f"[{env.str('SOME_CONFIG_LIST')}]"))

With the .env file:

SOME_CONFIG_LIST=(1,2,3),(2,3,1)

from environs.

sloria avatar sloria commented on May 29, 2024

closing this, since #241 provides a solution

from environs.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.