added a flask venv

This commit is contained in:
d3m1g0d
2019-01-19 13:23:37 +01:00
parent cbd3a55746
commit a1a8bca34b
961 changed files with 129021 additions and 0 deletions
@@ -0,0 +1,480 @@
::
_______ .__ __. ____ ____
| ____|| \ | | \ \ / /
| |__ | \| | \ \/ /
| __| | . ` | \ /
__ | |____ | |\ | \ /
(__)|_______||__| \__| \__/
python-dotenv \| |Build Status| |Coverage Status| |PyPI version| |Say Thanks!|
==============================================================================
Reads the key,value pair from ``.env`` file and adds them to environment
variable. It is great for managing app settings during development and
in production using `12-factor <http://12factor.net/>`__ principles.
Do one thing, do it well!
- `Usages <#usages>`__
- `Installation <#installation>`__
- `Command-line interface <#command-line-interface>`__
- `iPython Support <#ipython-support>`__
- `Setting config on remote
servers <#setting-config-on-remote-servers>`__
- `Related Projects <#related-projects>`__
- `Contributing <#contributing>`__
- `Changelog <#changelog>`__
..
Hey just wanted to let you know that since Ive started writing
12-factor apps Ive found python-dotenv to be invaluable for all my
projects. Its super useful and “just works.” Daniel Fridkin
Usages
======
The easiest and most common usage consists on calling ``load_dotenv``
when the application starts, which will load environment variables from
a file named ``.env`` in the current directory or any of its parents or
from the path specificied; after that, you can just call the
environment-related method you need as provided by ``os.getenv``.
``.env`` looks like this:
.. code:: shell
# a comment and that will be ignored.
REDIS_ADDRESS=localhost:6379
MEANING_OF_LIFE=42
MULTILINE_VAR="hello\nworld"
You can optionally prefix each line with the word ``export``, which will
conveniently allow you to source the whole file on your shell.
``.env`` can interpolate variables using POSIX variable expansion,
variables are replaced from the environment first or from other values
in the ``.env`` file if the variable is not present in the environment.
(``Note``: Default Value Expansion is not supported as of yet, see
`#30 <https://github.com/theskumar/python-dotenv/pull/30#issuecomment-244036604>`__.)
.. code:: shell
CONFIG_PATH=${HOME}/.config/foo
DOMAIN=example.org
EMAIL=admin@${DOMAIN}
Getting started
===============
Assuming you have created the ``.env`` file along-side your settings
module.
::
.
├── .env
└── settings.py
Add the following code to your ``settings.py``
.. code:: python
# settings.py
from dotenv import load_dotenv
load_dotenv()
# OR, the same with increased verbosity:
load_dotenv(verbose=True)
# OR, explicitly providing path to '.env'
from pathlib import Path # python3 only
env_path = Path('.') / '.env'
load_dotenv(dotenv_path=env_path)
At this point, parsed key/value from the .env file is now present as
system environment variable and they can be conveniently accessed via
``os.getenv()``
.. code:: python
# settings.py
import os
SECRET_KEY = os.getenv("EMAIL")
DATABASE_PASSWORD = os.getenv("DATABASE_PASSWORD")
``load_dotenv`` do not override existing System environment variables.
To override, pass ``override=True`` to ``load_dotenv()``.
You can use ``find_dotenv()`` method that will try to find a ``.env``
file by (a) guessing where to start using ``__file__`` or the working
directory allowing this to work in non-file contexts such as IPython
notebooks and the REPL, and then (b) walking up the directory tree
looking for the specified file called ``.env`` by default.
.. code:: python
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv())
In-memory filelikes
-------------------
It is possible to not rely on the filesystem to parse filelikes from
other sources (e.g. from a network storage). ``load_dotenv`` and
``dotenv_values`` accepts a filelike ``stream``. Just be sure to rewind
it before passing.
.. code:: python
>>> from io import StringIO # Python2: from StringIO import StringIO
>>> from dotenv import dotenv_values
>>> filelike = StringIO('SPAM=EGGS\n')
>>> filelike.seek(0)
>>> parsed = dotenv_values(stream=filelike)
>>> parsed['SPAM']
'EGGS'
The returned value is dictionary with key value pair.
``dotenv_values`` could be useful if you need to *consume* the envfile
but not *apply* it directly into the system environment.
Django
------
If you are using django you should add the above loader script at the
top of ``wsgi.py`` and ``manage.py``.
Installation
============
::
pip install -U python-dotenv
iPython Support
---------------
You can use dotenv with iPython. You can either let the dotenv search
for .env with %dotenv or provide the path to .env file explicitly, see
below for usages.
::
%load_ext dotenv
# Use find_dotenv to locate the file
%dotenv
# Specify a particular file
%dotenv relative/or/absolute/path/to/.env
# Use '-o' to indicate override of existing variables
%dotenv -o
# Use '-v' to turn verbose mode on
%dotenv -v
Command-line interface
======================
For commandline support, use the cli option during installation:
::
pip install -U "python-dotenv[cli]"
A cli interface ``dotenv`` is also included, which helps you manipulate
the ``.env`` file without manually opening it. The same cli installed on
remote machine combined with fabric (discussed later) will enable you to
update your settings on remote server, handy isnt it!
::
Usage: dotenv [OPTIONS] COMMAND [ARGS]...
This script is used to set, get or unset values from a .env file.
Options:
-f, --file PATH Location of the .env file, defaults to .env
file in current working directory.
-q, --quote [always|never|auto]
Whether to quote or not the variable values.
Default mode is always. This does not affect
parsing.
--help Show this message and exit.
Commands:
get Retrive the value for the given key.
list Display all the stored key/value.
run Run command with environment variables from .env file present
set Store the given key/value.
unset Removes the given key.
Setting config on remote servers
--------------------------------
We make use of excellent `Fabric <http://www.fabfile.org/>`__ to
acomplish this. Add a config task to your local fabfile, ``dotenv_path``
is the location of the absolute path of ``.env`` file on the remote
server.
.. code:: python
# fabfile.py
import dotenv
from fabric.api import task, run, env
# absolute path to the location of .env on remote server.
env.dotenv_path = '/opt/myapp/.env'
@task
def config(action=None, key=None, value=None):
'''Manage project configuration via .env
e.g: fab config:set,<key>,<value>
fab config:get,<key>
fab config:unset,<key>
fab config:list
'''
run('touch %(dotenv_path)s' % env)
command = dotenv.get_cli_string(env.dotenv_path, action, key, value)
run(command)
Usage is designed to mirror the heroku config api very closely.
Get all your remote config info with ``fab config``
::
$ fab config
foo="bar"
Set remote config variables with ``fab config:set,<key>,<value>``
::
$ fab config:set,hello,world
Get a single remote config variables with ``fab config:get,<key>``
::
$ fab config:get,hello
Delete a remote config variables with ``fab config:unset,<key>``
::
$ fab config:unset,hello
Thanks entirely to fabric and not one bit to this project, you can chain
commands like so
``fab config:set,<key1>,<value1> config:set,<key2>,<value2>``
::
$ fab config:set,hello,world config:set,foo,bar config:set,fizz=buzz
Related Projects
================
- `Honcho <https://github.com/nickstenning/honcho>`__ - For managing
Procfile-based applications.
- `django-dotenv <https://github.com/jpadilla/django-dotenv>`__
- `django-environ <https://github.com/joke2k/django-environ>`__
- `django-configuration <https://github.com/jezdez/django-configurations>`__
- `dump-env <https://github.com/sobolevn/dump-env>`__
- `environs <https://github.com/sloria/environs>`__
Contributing
============
All the contributions are welcome! Please open `an
issue <https://github.com/theskumar/python-dotenv/issues/new>`__ or send
us a pull request.
This project is currently maintained by `Saurabh
Kumar <https://saurabh-kumar.com>`__ and `Bertrand
Bonnefoy-Claudet <https://github.com/bbc2>`__ and would not have been
possible without the support of these `awesome
people <https://github.com/theskumar/python-dotenv/graphs/contributors>`__.
Executing the tests:
::
$ flake8
$ pytest
Changelog
=========
0.10.1
------
- Fix parsing of variable without a value
([@asyncee])([@bbc2])(\ `#158 <https://github.com/theskumar/python-dotenv/issues/158>`__)
.. _section-1:
0.10.0
------
- Add support for UTF-8 in unquoted values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add support for trailing comments
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add backslashes support in values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add support for newlines in values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Force environment variables to str with Python2 on Windows
([@greyli])
- Drop Python 3.3 support ([@greyli])
- Fix stderr/-out/-in redirection ([@venthur])
.. _section-2:
0.9.0
-----
- Add ``--version`` parameter to cli ([@venthur])
- Enable loading from current directory ([@cjauvin])
- Add dotenv run command for calling arbitrary shell script with .env
([@venthur])
.. _section-3:
0.8.1
-----
- Add tests for docs ([@Flimm])
- Make cli support optional. Use ``pip install python-dotenv[cli]``.
([@theskumar])
.. _section-4:
0.8.0
-----
- ``set_key`` and ``unset_key`` only modified the affected file instead
of parsing and re-writing file, this causes comments and other file
entact as it is.
- Add support for ``export`` prefix in the line.
- Internal refractoring ([@theskumar])
- Allow ``load_dotenv`` and ``dotenv_values`` to work with
``StringIO())``
([@alanjds])([@theskumar])(\ `#78 <https://github.com/theskumar/python-dotenv/issues/78>`__)
.. _section-5:
0.7.1
-----
- Remove hard dependency on iPython ([@theskumar])
.. _section-6:
0.7.0
-----
- Add support to override system environment variable via .env.
([@milonimrod](https://github.com/milonimrod))
(`#63 <https://github.com/theskumar/python-dotenv/issues/63>`__)
- Disable “.env not found” warning by default
([@maxkoryukov](https://github.com/maxkoryukov))
(`#57 <https://github.com/theskumar/python-dotenv/issues/57>`__)
.. _section-7:
0.6.5
-----
- Add support for special characters ``\``.
([@pjona](https://github.com/pjona))
(`#60 <https://github.com/theskumar/python-dotenv/issues/60>`__)
.. _section-8:
0.6.4
-----
- Fix issue with single quotes ([@Flimm])
(`#52 <https://github.com/theskumar/python-dotenv/issues/52>`__)
.. _section-9:
0.6.3
-----
- Handle unicode exception in setup.py
(`#46 <https://github.com/theskumar/python-dotenv/issues/46>`__)
.. _section-10:
0.6.2
-----
- Fix dotenv list command ([@ticosax](https://github.com/ticosax))
- Add iPython Suport
([@tillahoffmann](https://github.com/tillahoffmann))
.. _section-11:
0.6.0
-----
- Drop support for Python 2.6
- Handle escaped charaters and newlines in quoted values. (Thanks
[@iameugenejo](https://github.com/iameugenejo))
- Remove any spaces around unquoted key/value. (Thanks
[@paulochf](https://github.com/paulochf))
- Added POSIX variable expansion. (Thanks
[@hugochinchilla](https://github.com/hugochinchilla))
.. _section-12:
0.5.1
-----
- Fix find_dotenv - it now start search from the file where this
function is called from.
.. _section-13:
0.5.0
-----
- Add ``find_dotenv`` method that will try to find a ``.env`` file.
(Thanks [@isms](https://github.com/isms))
.. _section-14:
0.4.0
-----
- cli: Added ``-q/--quote`` option to control the behaviour of quotes
around values in ``.env``. (Thanks
[@hugochinchilla](https://github.com/hugochinchilla)).
- Improved test coverage.
[@asyncee]: https://github.com/asyncee [@greyli]:
https://github.com/greyli [@venthur]: https://github.com/venthur
[@Flimm]: https://github.com/Flimm [@theskumar]:
https://github.com/theskumar [@alanjds]: https://github.com/alanjds
[@cjauvin]: https://github.com/cjauvin [@bbc2]: https://github.com/bbc2
.. |Build Status| image:: https://travis-ci.org/theskumar/python-dotenv.svg?branch=master
:target: https://travis-ci.org/theskumar/python-dotenv
.. |Coverage Status| image:: https://coveralls.io/repos/theskumar/python-dotenv/badge.svg?branch=master
:target: https://coveralls.io/r/theskumar/python-dotenv?branch=master
.. |PyPI version| image:: https://badge.fury.io/py/python-dotenv.svg
:target: http://badge.fury.io/py/python-dotenv
.. |Say Thanks!| image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
:target: https://saythanks.io/to/theskumar
@@ -0,0 +1,514 @@
Metadata-Version: 2.0
Name: python-dotenv
Version: 0.10.1
Summary: Add .env support to your django/flask apps in development and deployments
Home-page: http://github.com/theskumar/python-dotenv
Author: Saurabh Kumar
Author-email: me+github@saurabh-kumar.com
License: UNKNOWN
Description-Content-Type: UNKNOWN
Keywords: environment variables,deployments,settings,env,dotenv,configurations,python
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.0
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Classifier: Environment :: Web Environment
Provides-Extra: cli
Requires-Dist: click (>=5.0); extra == 'cli'
::
_______ .__ __. ____ ____
| ____|| \ | | \ \ / /
| |__ | \| | \ \/ /
| __| | . ` | \ /
__ | |____ | |\ | \ /
(__)|_______||__| \__| \__/
python-dotenv \| |Build Status| |Coverage Status| |PyPI version| |Say Thanks!|
==============================================================================
Reads the key,value pair from ``.env`` file and adds them to environment
variable. It is great for managing app settings during development and
in production using `12-factor <http://12factor.net/>`__ principles.
Do one thing, do it well!
- `Usages <#usages>`__
- `Installation <#installation>`__
- `Command-line interface <#command-line-interface>`__
- `iPython Support <#ipython-support>`__
- `Setting config on remote
servers <#setting-config-on-remote-servers>`__
- `Related Projects <#related-projects>`__
- `Contributing <#contributing>`__
- `Changelog <#changelog>`__
..
Hey just wanted to let you know that since Ive started writing
12-factor apps Ive found python-dotenv to be invaluable for all my
projects. Its super useful and “just works.” Daniel Fridkin
Usages
======
The easiest and most common usage consists on calling ``load_dotenv``
when the application starts, which will load environment variables from
a file named ``.env`` in the current directory or any of its parents or
from the path specificied; after that, you can just call the
environment-related method you need as provided by ``os.getenv``.
``.env`` looks like this:
.. code:: shell
# a comment and that will be ignored.
REDIS_ADDRESS=localhost:6379
MEANING_OF_LIFE=42
MULTILINE_VAR="hello\nworld"
You can optionally prefix each line with the word ``export``, which will
conveniently allow you to source the whole file on your shell.
``.env`` can interpolate variables using POSIX variable expansion,
variables are replaced from the environment first or from other values
in the ``.env`` file if the variable is not present in the environment.
(``Note``: Default Value Expansion is not supported as of yet, see
`#30 <https://github.com/theskumar/python-dotenv/pull/30#issuecomment-244036604>`__.)
.. code:: shell
CONFIG_PATH=${HOME}/.config/foo
DOMAIN=example.org
EMAIL=admin@${DOMAIN}
Getting started
===============
Assuming you have created the ``.env`` file along-side your settings
module.
::
.
├── .env
└── settings.py
Add the following code to your ``settings.py``
.. code:: python
# settings.py
from dotenv import load_dotenv
load_dotenv()
# OR, the same with increased verbosity:
load_dotenv(verbose=True)
# OR, explicitly providing path to '.env'
from pathlib import Path # python3 only
env_path = Path('.') / '.env'
load_dotenv(dotenv_path=env_path)
At this point, parsed key/value from the .env file is now present as
system environment variable and they can be conveniently accessed via
``os.getenv()``
.. code:: python
# settings.py
import os
SECRET_KEY = os.getenv("EMAIL")
DATABASE_PASSWORD = os.getenv("DATABASE_PASSWORD")
``load_dotenv`` do not override existing System environment variables.
To override, pass ``override=True`` to ``load_dotenv()``.
You can use ``find_dotenv()`` method that will try to find a ``.env``
file by (a) guessing where to start using ``__file__`` or the working
directory allowing this to work in non-file contexts such as IPython
notebooks and the REPL, and then (b) walking up the directory tree
looking for the specified file called ``.env`` by default.
.. code:: python
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv())
In-memory filelikes
-------------------
It is possible to not rely on the filesystem to parse filelikes from
other sources (e.g. from a network storage). ``load_dotenv`` and
``dotenv_values`` accepts a filelike ``stream``. Just be sure to rewind
it before passing.
.. code:: python
>>> from io import StringIO # Python2: from StringIO import StringIO
>>> from dotenv import dotenv_values
>>> filelike = StringIO('SPAM=EGGS\n')
>>> filelike.seek(0)
>>> parsed = dotenv_values(stream=filelike)
>>> parsed['SPAM']
'EGGS'
The returned value is dictionary with key value pair.
``dotenv_values`` could be useful if you need to *consume* the envfile
but not *apply* it directly into the system environment.
Django
------
If you are using django you should add the above loader script at the
top of ``wsgi.py`` and ``manage.py``.
Installation
============
::
pip install -U python-dotenv
iPython Support
---------------
You can use dotenv with iPython. You can either let the dotenv search
for .env with %dotenv or provide the path to .env file explicitly, see
below for usages.
::
%load_ext dotenv
# Use find_dotenv to locate the file
%dotenv
# Specify a particular file
%dotenv relative/or/absolute/path/to/.env
# Use '-o' to indicate override of existing variables
%dotenv -o
# Use '-v' to turn verbose mode on
%dotenv -v
Command-line interface
======================
For commandline support, use the cli option during installation:
::
pip install -U "python-dotenv[cli]"
A cli interface ``dotenv`` is also included, which helps you manipulate
the ``.env`` file without manually opening it. The same cli installed on
remote machine combined with fabric (discussed later) will enable you to
update your settings on remote server, handy isnt it!
::
Usage: dotenv [OPTIONS] COMMAND [ARGS]...
This script is used to set, get or unset values from a .env file.
Options:
-f, --file PATH Location of the .env file, defaults to .env
file in current working directory.
-q, --quote [always|never|auto]
Whether to quote or not the variable values.
Default mode is always. This does not affect
parsing.
--help Show this message and exit.
Commands:
get Retrive the value for the given key.
list Display all the stored key/value.
run Run command with environment variables from .env file present
set Store the given key/value.
unset Removes the given key.
Setting config on remote servers
--------------------------------
We make use of excellent `Fabric <http://www.fabfile.org/>`__ to
acomplish this. Add a config task to your local fabfile, ``dotenv_path``
is the location of the absolute path of ``.env`` file on the remote
server.
.. code:: python
# fabfile.py
import dotenv
from fabric.api import task, run, env
# absolute path to the location of .env on remote server.
env.dotenv_path = '/opt/myapp/.env'
@task
def config(action=None, key=None, value=None):
'''Manage project configuration via .env
e.g: fab config:set,<key>,<value>
fab config:get,<key>
fab config:unset,<key>
fab config:list
'''
run('touch %(dotenv_path)s' % env)
command = dotenv.get_cli_string(env.dotenv_path, action, key, value)
run(command)
Usage is designed to mirror the heroku config api very closely.
Get all your remote config info with ``fab config``
::
$ fab config
foo="bar"
Set remote config variables with ``fab config:set,<key>,<value>``
::
$ fab config:set,hello,world
Get a single remote config variables with ``fab config:get,<key>``
::
$ fab config:get,hello
Delete a remote config variables with ``fab config:unset,<key>``
::
$ fab config:unset,hello
Thanks entirely to fabric and not one bit to this project, you can chain
commands like so
``fab config:set,<key1>,<value1> config:set,<key2>,<value2>``
::
$ fab config:set,hello,world config:set,foo,bar config:set,fizz=buzz
Related Projects
================
- `Honcho <https://github.com/nickstenning/honcho>`__ - For managing
Procfile-based applications.
- `django-dotenv <https://github.com/jpadilla/django-dotenv>`__
- `django-environ <https://github.com/joke2k/django-environ>`__
- `django-configuration <https://github.com/jezdez/django-configurations>`__
- `dump-env <https://github.com/sobolevn/dump-env>`__
- `environs <https://github.com/sloria/environs>`__
Contributing
============
All the contributions are welcome! Please open `an
issue <https://github.com/theskumar/python-dotenv/issues/new>`__ or send
us a pull request.
This project is currently maintained by `Saurabh
Kumar <https://saurabh-kumar.com>`__ and `Bertrand
Bonnefoy-Claudet <https://github.com/bbc2>`__ and would not have been
possible without the support of these `awesome
people <https://github.com/theskumar/python-dotenv/graphs/contributors>`__.
Executing the tests:
::
$ flake8
$ pytest
Changelog
=========
0.10.1
------
- Fix parsing of variable without a value
([@asyncee])([@bbc2])(\ `#158 <https://github.com/theskumar/python-dotenv/issues/158>`__)
.. _section-1:
0.10.0
------
- Add support for UTF-8 in unquoted values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add support for trailing comments
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add backslashes support in values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Add support for newlines in values
([@bbc2])(\ `#148 <https://github.com/theskumar/python-dotenv/issues/148>`__)
- Force environment variables to str with Python2 on Windows
([@greyli])
- Drop Python 3.3 support ([@greyli])
- Fix stderr/-out/-in redirection ([@venthur])
.. _section-2:
0.9.0
-----
- Add ``--version`` parameter to cli ([@venthur])
- Enable loading from current directory ([@cjauvin])
- Add dotenv run command for calling arbitrary shell script with .env
([@venthur])
.. _section-3:
0.8.1
-----
- Add tests for docs ([@Flimm])
- Make cli support optional. Use ``pip install python-dotenv[cli]``.
([@theskumar])
.. _section-4:
0.8.0
-----
- ``set_key`` and ``unset_key`` only modified the affected file instead
of parsing and re-writing file, this causes comments and other file
entact as it is.
- Add support for ``export`` prefix in the line.
- Internal refractoring ([@theskumar])
- Allow ``load_dotenv`` and ``dotenv_values`` to work with
``StringIO())``
([@alanjds])([@theskumar])(\ `#78 <https://github.com/theskumar/python-dotenv/issues/78>`__)
.. _section-5:
0.7.1
-----
- Remove hard dependency on iPython ([@theskumar])
.. _section-6:
0.7.0
-----
- Add support to override system environment variable via .env.
([@milonimrod](https://github.com/milonimrod))
(`#63 <https://github.com/theskumar/python-dotenv/issues/63>`__)
- Disable “.env not found” warning by default
([@maxkoryukov](https://github.com/maxkoryukov))
(`#57 <https://github.com/theskumar/python-dotenv/issues/57>`__)
.. _section-7:
0.6.5
-----
- Add support for special characters ``\``.
([@pjona](https://github.com/pjona))
(`#60 <https://github.com/theskumar/python-dotenv/issues/60>`__)
.. _section-8:
0.6.4
-----
- Fix issue with single quotes ([@Flimm])
(`#52 <https://github.com/theskumar/python-dotenv/issues/52>`__)
.. _section-9:
0.6.3
-----
- Handle unicode exception in setup.py
(`#46 <https://github.com/theskumar/python-dotenv/issues/46>`__)
.. _section-10:
0.6.2
-----
- Fix dotenv list command ([@ticosax](https://github.com/ticosax))
- Add iPython Suport
([@tillahoffmann](https://github.com/tillahoffmann))
.. _section-11:
0.6.0
-----
- Drop support for Python 2.6
- Handle escaped charaters and newlines in quoted values. (Thanks
[@iameugenejo](https://github.com/iameugenejo))
- Remove any spaces around unquoted key/value. (Thanks
[@paulochf](https://github.com/paulochf))
- Added POSIX variable expansion. (Thanks
[@hugochinchilla](https://github.com/hugochinchilla))
.. _section-12:
0.5.1
-----
- Fix find_dotenv - it now start search from the file where this
function is called from.
.. _section-13:
0.5.0
-----
- Add ``find_dotenv`` method that will try to find a ``.env`` file.
(Thanks [@isms](https://github.com/isms))
.. _section-14:
0.4.0
-----
- cli: Added ``-q/--quote`` option to control the behaviour of quotes
around values in ``.env``. (Thanks
[@hugochinchilla](https://github.com/hugochinchilla)).
- Improved test coverage.
[@asyncee]: https://github.com/asyncee [@greyli]:
https://github.com/greyli [@venthur]: https://github.com/venthur
[@Flimm]: https://github.com/Flimm [@theskumar]:
https://github.com/theskumar [@alanjds]: https://github.com/alanjds
[@cjauvin]: https://github.com/cjauvin [@bbc2]: https://github.com/bbc2
.. |Build Status| image:: https://travis-ci.org/theskumar/python-dotenv.svg?branch=master
:target: https://travis-ci.org/theskumar/python-dotenv
.. |Coverage Status| image:: https://coveralls.io/repos/theskumar/python-dotenv/badge.svg?branch=master
:target: https://coveralls.io/r/theskumar/python-dotenv?branch=master
.. |PyPI version| image:: https://badge.fury.io/py/python-dotenv.svg
:target: http://badge.fury.io/py/python-dotenv
.. |Say Thanks!| image:: https://img.shields.io/badge/Say%20Thanks-!-1EAEDB.svg
:target: https://saythanks.io/to/theskumar
@@ -0,0 +1,23 @@
../../../bin/dotenv,sha256=xRDS3g81qPfYCvH3-oEQLvmwbkMlRWIx2czC5bmhK-o,238
dotenv/__init__.py,sha256=Zi36HdC3K5c1L45q7_13kTyUYFdoGDNl1WfHLI5vPLg,1122
dotenv/__pycache__/__init__.cpython-36.pyc,,
dotenv/__pycache__/cli.cpython-36.pyc,,
dotenv/__pycache__/compat.cpython-36.pyc,,
dotenv/__pycache__/environ.cpython-36.pyc,,
dotenv/__pycache__/ipython.cpython-36.pyc,,
dotenv/__pycache__/main.cpython-36.pyc,,
dotenv/__pycache__/version.cpython-36.pyc,,
dotenv/cli.py,sha256=tMZKWwtQ3FZWy5S2v2dfYfRQAt8mrcEm35hkIapJTMc,2788
dotenv/compat.py,sha256=hU_u4i5IP3HRafowJLj53YCi7Z6FP7MRs7LyDgk1emY,227
dotenv/environ.py,sha256=COda-vYQ4rxNgg6S3fTs0QgD3Au_pAy0AuMpNhHljEE,1330
dotenv/ipython.py,sha256=3oQALTasbDNd9KPgB4baOFLwUqqEds6nv2elPQncxkI,1294
dotenv/main.py,sha256=6rpKmYYMLhmHx7kmNdwkALZkGug673LiIMDSaYPLptA,10009
dotenv/version.py,sha256=v7Gyp89umFzDtY45tTjCdXqZnQ2RN01AibdYNxEvxYo,23
python_dotenv-0.10.1.dist-info/DESCRIPTION.rst,sha256=acIUjHNkh6jLs8Q4xknGcgG_F5CKfD9wjQPlAzXPi0E,13504
python_dotenv-0.10.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
python_dotenv-0.10.1.dist-info/METADATA,sha256=eLyGz3WADyN7dvPClobNP6f3z2KnmRcmsEZx9utID8E,14972
python_dotenv-0.10.1.dist-info/RECORD,,
python_dotenv-0.10.1.dist-info/WHEEL,sha256=kdsN-5OJAZIiHN-iO4Rhl82KyS0bDWf4uBwMbkNafr8,110
python_dotenv-0.10.1.dist-info/entry_points.txt,sha256=c80zWSdgWj260RWtcIS4k0kmahyXf4elttqHYusYwdk,61
python_dotenv-0.10.1.dist-info/metadata.json,sha256=dtOyd4txRRBc0B30iXieIMGWO8lgqsVBN2AXQpCo_qM,1659
python_dotenv-0.10.1.dist-info/top_level.txt,sha256=eyqUH4SHJNr6ahOYlxIunTr4XinE8Z5ajWLdrK3r0D8,7
@@ -0,0 +1,6 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.30.0)
Root-Is-Purelib: true
Tag: py2-none-any
Tag: py3-none-any
@@ -0,0 +1,4 @@
[console_scripts]
dotenv=dotenv.cli:cli
@@ -0,0 +1 @@
{"classifiers": ["Development Status :: 5 - Production/Stable", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.0", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: PyPy", "Intended Audience :: Developers", "Intended Audience :: System Administrators", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Topic :: System :: Systems Administration", "Topic :: Utilities", "Environment :: Web Environment"], "description_content_type": "UNKNOWN", "extensions": {"python.commands": {"wrap_console": {"dotenv": "dotenv.cli:cli"}}, "python.details": {"contacts": [{"email": "me+github@saurabh-kumar.com", "name": "Saurabh Kumar", "role": "author"}], "document_names": {"description": "DESCRIPTION.rst"}, "project_urls": {"Home": "http://github.com/theskumar/python-dotenv"}}, "python.exports": {"console_scripts": {"dotenv": "dotenv.cli:cli"}}}, "extras": ["cli"], "generator": "bdist_wheel (0.30.0)", "keywords": ["environment", "variables", "deployments", "settings", "env", "dotenv", "configurations", "python"], "metadata_version": "2.0", "name": "python-dotenv", "run_requires": [{"extra": "cli", "requires": ["click (>=5.0)"]}], "summary": "Add .env support to your django/flask apps in development and deployments", "version": "0.10.1"}