METADATA 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  1. Metadata-Version: 2.1
  2. Name: python-dotenv
  3. Version: 1.0.1
  4. Summary: Read key-value pairs from a .env file and set them as environment variables
  5. Home-page: https://github.com/theskumar/python-dotenv
  6. Author: Saurabh Kumar
  7. Author-email: me+github@saurabh-kumar.com
  8. License: BSD-3-Clause
  9. Keywords: environment variables,deployments,settings,env,dotenv,configurations,python
  10. Classifier: Development Status :: 5 - Production/Stable
  11. Classifier: Programming Language :: Python
  12. Classifier: Programming Language :: Python :: 3
  13. Classifier: Programming Language :: Python :: 3.8
  14. Classifier: Programming Language :: Python :: 3.9
  15. Classifier: Programming Language :: Python :: 3.10
  16. Classifier: Programming Language :: Python :: 3.11
  17. Classifier: Programming Language :: Python :: 3.12
  18. Classifier: Programming Language :: Python :: Implementation :: PyPy
  19. Classifier: Intended Audience :: Developers
  20. Classifier: Intended Audience :: System Administrators
  21. Classifier: License :: OSI Approved :: BSD License
  22. Classifier: Operating System :: OS Independent
  23. Classifier: Topic :: System :: Systems Administration
  24. Classifier: Topic :: Utilities
  25. Classifier: Environment :: Web Environment
  26. Requires-Python: >=3.8
  27. Description-Content-Type: text/markdown
  28. License-File: LICENSE
  29. Provides-Extra: cli
  30. Requires-Dist: click >=5.0 ; extra == 'cli'
  31. # python-dotenv
  32. [![Build Status][build_status_badge]][build_status_link]
  33. [![PyPI version][pypi_badge]][pypi_link]
  34. Python-dotenv reads key-value pairs from a `.env` file and can set them as environment
  35. variables. It helps in the development of applications following the
  36. [12-factor](https://12factor.net/) principles.
  37. - [Getting Started](#getting-started)
  38. - [Other Use Cases](#other-use-cases)
  39. * [Load configuration without altering the environment](#load-configuration-without-altering-the-environment)
  40. * [Parse configuration as a stream](#parse-configuration-as-a-stream)
  41. * [Load .env files in IPython](#load-env-files-in-ipython)
  42. - [Command-line Interface](#command-line-interface)
  43. - [File format](#file-format)
  44. * [Multiline values](#multiline-values)
  45. * [Variable expansion](#variable-expansion)
  46. - [Related Projects](#related-projects)
  47. - [Acknowledgements](#acknowledgements)
  48. ## Getting Started
  49. ```shell
  50. pip install python-dotenv
  51. ```
  52. If your application takes its configuration from environment variables, like a 12-factor
  53. application, launching it in development is not very practical because you have to set
  54. those environment variables yourself.
  55. To help you with that, you can add Python-dotenv to your application to make it load the
  56. configuration from a `.env` file when it is present (e.g. in development) while remaining
  57. configurable via the environment:
  58. ```python
  59. from dotenv import load_dotenv
  60. load_dotenv() # take environment variables from .env.
  61. # Code of your application, which uses environment variables (e.g. from `os.environ` or
  62. # `os.getenv`) as if they came from the actual environment.
  63. ```
  64. By default, `load_dotenv` doesn't override existing environment variables.
  65. To configure the development environment, add a `.env` in the root directory of your
  66. project:
  67. ```
  68. .
  69. ├── .env
  70. └── foo.py
  71. ```
  72. The syntax of `.env` files supported by python-dotenv is similar to that of Bash:
  73. ```bash
  74. # Development settings
  75. DOMAIN=example.org
  76. ADMIN_EMAIL=admin@${DOMAIN}
  77. ROOT_URL=${DOMAIN}/app
  78. ```
  79. If you use variables in values, ensure they are surrounded with `{` and `}`, like
  80. `${DOMAIN}`, as bare variables such as `$DOMAIN` are not expanded.
  81. You will probably want to add `.env` to your `.gitignore`, especially if it contains
  82. secrets like a password.
  83. See the section "File format" below for more information about what you can write in a
  84. `.env` file.
  85. ## Other Use Cases
  86. ### Load configuration without altering the environment
  87. The function `dotenv_values` works more or less the same way as `load_dotenv`, except it
  88. doesn't touch the environment, it just returns a `dict` with the values parsed from the
  89. `.env` file.
  90. ```python
  91. from dotenv import dotenv_values
  92. config = dotenv_values(".env") # config = {"USER": "foo", "EMAIL": "foo@example.org"}
  93. ```
  94. This notably enables advanced configuration management:
  95. ```python
  96. import os
  97. from dotenv import dotenv_values
  98. config = {
  99. **dotenv_values(".env.shared"), # load shared development variables
  100. **dotenv_values(".env.secret"), # load sensitive variables
  101. **os.environ, # override loaded values with environment variables
  102. }
  103. ```
  104. ### Parse configuration as a stream
  105. `load_dotenv` and `dotenv_values` accept [streams][python_streams] via their `stream`
  106. argument. It is thus possible to load the variables from sources other than the
  107. filesystem (e.g. the network).
  108. ```python
  109. from io import StringIO
  110. from dotenv import load_dotenv
  111. config = StringIO("USER=foo\nEMAIL=foo@example.org")
  112. load_dotenv(stream=config)
  113. ```
  114. ### Load .env files in IPython
  115. You can use dotenv in IPython. By default, it will use `find_dotenv` to search for a
  116. `.env` file:
  117. ```python
  118. %load_ext dotenv
  119. %dotenv
  120. ```
  121. You can also specify a path:
  122. ```python
  123. %dotenv relative/or/absolute/path/to/.env
  124. ```
  125. Optional flags:
  126. - `-o` to override existing variables.
  127. - `-v` for increased verbosity.
  128. ## Command-line Interface
  129. A CLI interface `dotenv` is also included, which helps you manipulate the `.env` file
  130. without manually opening it.
  131. ```shell
  132. $ pip install "python-dotenv[cli]"
  133. $ dotenv set USER foo
  134. $ dotenv set EMAIL foo@example.org
  135. $ dotenv list
  136. USER=foo
  137. EMAIL=foo@example.org
  138. $ dotenv list --format=json
  139. {
  140. "USER": "foo",
  141. "EMAIL": "foo@example.org"
  142. }
  143. $ dotenv run -- python foo.py
  144. ```
  145. Run `dotenv --help` for more information about the options and subcommands.
  146. ## File format
  147. The format is not formally specified and still improves over time. That being said,
  148. `.env` files should mostly look like Bash files.
  149. Keys can be unquoted or single-quoted. Values can be unquoted, single- or double-quoted.
  150. Spaces before and after keys, equal signs, and values are ignored. Values can be followed
  151. by a comment. Lines can start with the `export` directive, which does not affect their
  152. interpretation.
  153. Allowed escape sequences:
  154. - in single-quoted values: `\\`, `\'`
  155. - in double-quoted values: `\\`, `\'`, `\"`, `\a`, `\b`, `\f`, `\n`, `\r`, `\t`, `\v`
  156. ### Multiline values
  157. It is possible for single- or double-quoted values to span multiple lines. The following
  158. examples are equivalent:
  159. ```bash
  160. FOO="first line
  161. second line"
  162. ```
  163. ```bash
  164. FOO="first line\nsecond line"
  165. ```
  166. ### Variable without a value
  167. A variable can have no value:
  168. ```bash
  169. FOO
  170. ```
  171. It results in `dotenv_values` associating that variable name with the value `None` (e.g.
  172. `{"FOO": None}`. `load_dotenv`, on the other hand, simply ignores such variables.
  173. This shouldn't be confused with `FOO=`, in which case the variable is associated with the
  174. empty string.
  175. ### Variable expansion
  176. Python-dotenv can interpolate variables using POSIX variable expansion.
  177. With `load_dotenv(override=True)` or `dotenv_values()`, the value of a variable is the
  178. first of the values defined in the following list:
  179. - Value of that variable in the `.env` file.
  180. - Value of that variable in the environment.
  181. - Default value, if provided.
  182. - Empty string.
  183. With `load_dotenv(override=False)`, the value of a variable is the first of the values
  184. defined in the following list:
  185. - Value of that variable in the environment.
  186. - Value of that variable in the `.env` file.
  187. - Default value, if provided.
  188. - Empty string.
  189. ## Related Projects
  190. - [Honcho](https://github.com/nickstenning/honcho) - For managing
  191. Procfile-based applications.
  192. - [django-dotenv](https://github.com/jpadilla/django-dotenv)
  193. - [django-environ](https://github.com/joke2k/django-environ)
  194. - [django-environ-2](https://github.com/sergeyklay/django-environ-2)
  195. - [django-configuration](https://github.com/jezdez/django-configurations)
  196. - [dump-env](https://github.com/sobolevn/dump-env)
  197. - [environs](https://github.com/sloria/environs)
  198. - [dynaconf](https://github.com/rochacbruno/dynaconf)
  199. - [parse_it](https://github.com/naorlivne/parse_it)
  200. - [python-decouple](https://github.com/HBNetwork/python-decouple)
  201. ## Acknowledgements
  202. This project is currently maintained by [Saurabh Kumar](https://saurabh-kumar.com) and
  203. [Bertrand Bonnefoy-Claudet](https://github.com/bbc2) and would not have been possible
  204. without the support of these [awesome
  205. people](https://github.com/theskumar/python-dotenv/graphs/contributors).
  206. [build_status_badge]: https://github.com/theskumar/python-dotenv/actions/workflows/test.yml/badge.svg
  207. [build_status_link]: https://github.com/theskumar/python-dotenv/actions/workflows/test.yml
  208. [pypi_badge]: https://badge.fury.io/py/python-dotenv.svg
  209. [pypi_link]: https://badge.fury.io/py/python-dotenv
  210. [python_streams]: https://docs.python.org/3/library/io.html
  211. # Changelog
  212. All notable changes to this project will be documented in this file.
  213. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this
  214. project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  215. ## [1.0.1] - 2024-01-23
  216. **Fixed**
  217. * Gracefully handle code which has been imported from a zipfile ([#456] by [@samwyma])
  218. * Allow modules using load_dotenv to be reloaded when launched in a separate thread ([#497] by [@freddyaboulton])
  219. * Fix file not closed after deletion, handle error in the rewrite function ([#469] by [@Qwerty-133])
  220. **Misc**
  221. * Use pathlib.Path in tests ([#466] by [@eumiro])
  222. * Fix year in release date in changelog.md ([#454] by [@jankislinger])
  223. * Use https in README links ([#474] by [@Nicals])
  224. ## [1.0.0] - 2023-02-24
  225. **Fixed**
  226. * Drop support for python 3.7, add python 3.12-dev (#449 by [@theskumar])
  227. * Handle situations where the cwd does not exist. (#446 by [@jctanner])
  228. ## [0.21.1] - 2023-01-21
  229. **Added**
  230. * Use Python 3.11 non-beta in CI (#438 by [@bbc2])
  231. * Modernize variables code (#434 by [@Nougat-Waffle])
  232. * Modernize main.py and parser.py code (#435 by [@Nougat-Waffle])
  233. * Improve conciseness of cli.py and __init__.py (#439 by [@Nougat-Waffle])
  234. * Improve error message for `get` and `list` commands when env file can't be opened (#441 by [@bbc2])
  235. * Updated License to align with BSD OSI template (#433 by [@lsmith77])
  236. **Fixed**
  237. * Fix Out-of-scope error when "dest" variable is undefined (#413 by [@theGOTOguy])
  238. * Fix IPython test warning about deprecated `magic` (#440 by [@bbc2])
  239. * Fix type hint for dotenv_path var, add StrPath alias (#432 by [@eaf])
  240. ## [0.21.0] - 2022-09-03
  241. **Added**
  242. * CLI: add support for invocations via 'python -m'. (#395 by [@theskumar])
  243. * `load_dotenv` function now returns `False`. (#388 by [@larsks])
  244. * CLI: add --format= option to list command. (#407 by [@sammck])
  245. **Fixed**
  246. * Drop Python 3.5 and 3.6 and upgrade GA (#393 by [@eggplants])
  247. * Use `open` instead of `io.open`. (#389 by [@rabinadk1])
  248. * Improve documentation for variables without a value (#390 by [@bbc2])
  249. * Add `parse_it` to Related Projects (#410 by [@naorlivne])
  250. * Update README.md (#415 by [@harveer07])
  251. * Improve documentation with direct use of MkDocs (#398 by [@bbc2])
  252. ## [0.20.0] - 2022-03-24
  253. **Added**
  254. - Add `encoding` (`Optional[str]`) parameter to `get_key`, `set_key` and `unset_key`.
  255. (#379 by [@bbc2])
  256. **Fixed**
  257. - Use dict to specify the `entry_points` parameter of `setuptools.setup` (#376 by
  258. [@mgorny]).
  259. - Don't build universal wheels (#387 by [@bbc2]).
  260. ## [0.19.2] - 2021-11-11
  261. **Fixed**
  262. - In `set_key`, add missing newline character before new entry if necessary. (#361 by
  263. [@bbc2])
  264. ## [0.19.1] - 2021-08-09
  265. **Added**
  266. - Add support for Python 3.10. (#359 by [@theskumar])
  267. ## [0.19.0] - 2021-07-24
  268. **Changed**
  269. - Require Python 3.5 or a later version. Python 2 and 3.4 are no longer supported. (#341
  270. by [@bbc2]).
  271. **Added**
  272. - The `dotenv_path` argument of `set_key` and `unset_key` now has a type of `Union[str,
  273. os.PathLike]` instead of just `os.PathLike` (#347 by [@bbc2]).
  274. - The `stream` argument of `load_dotenv` and `dotenv_values` can now be a text stream
  275. (`IO[str]`), which includes values like `io.StringIO("foo")` and `open("file.env",
  276. "r")` (#348 by [@bbc2]).
  277. ## [0.18.0] - 2021-06-20
  278. **Changed**
  279. - Raise `ValueError` if `quote_mode` isn't one of `always`, `auto` or `never` in
  280. `set_key` (#330 by [@bbc2]).
  281. - When writing a value to a .env file with `set_key` or `dotenv set <key> <value>` (#330
  282. by [@bbc2]):
  283. - Use single quotes instead of double quotes.
  284. - Don't strip surrounding quotes.
  285. - In `auto` mode, don't add quotes if the value is only made of alphanumeric characters
  286. (as determined by `string.isalnum`).
  287. ## [0.17.1] - 2021-04-29
  288. **Fixed**
  289. - Fixed tests for build environments relying on `PYTHONPATH` (#318 by [@befeleme]).
  290. ## [0.17.0] - 2021-04-02
  291. **Changed**
  292. - Make `dotenv get <key>` only show the value, not `key=value` (#313 by [@bbc2]).
  293. **Added**
  294. - Add `--override`/`--no-override` option to `dotenv run` (#312 by [@zueve] and [@bbc2]).
  295. ## [0.16.0] - 2021-03-27
  296. **Changed**
  297. - The default value of the `encoding` parameter for `load_dotenv` and `dotenv_values` is
  298. now `"utf-8"` instead of `None` (#306 by [@bbc2]).
  299. - Fix resolution order in variable expansion with `override=False` (#287 by [@bbc2]).
  300. ## [0.15.0] - 2020-10-28
  301. **Added**
  302. - Add `--export` option to `set` to make it prepend the binding with `export` (#270 by
  303. [@jadutter]).
  304. **Changed**
  305. - Make `set` command create the `.env` file in the current directory if no `.env` file was
  306. found (#270 by [@jadutter]).
  307. **Fixed**
  308. - Fix potentially empty expanded value for duplicate key (#260 by [@bbc2]).
  309. - Fix import error on Python 3.5.0 and 3.5.1 (#267 by [@gongqingkui]).
  310. - Fix parsing of unquoted values containing several adjacent space or tab characters
  311. (#277 by [@bbc2], review by [@x-yuri]).
  312. ## [0.14.0] - 2020-07-03
  313. **Changed**
  314. - Privilege definition in file over the environment in variable expansion (#256 by
  315. [@elbehery95]).
  316. **Fixed**
  317. - Improve error message for when file isn't found (#245 by [@snobu]).
  318. - Use HTTPS URL in package meta data (#251 by [@ekohl]).
  319. ## [0.13.0] - 2020-04-16
  320. **Added**
  321. - Add support for a Bash-like default value in variable expansion (#248 by [@bbc2]).
  322. ## [0.12.0] - 2020-02-28
  323. **Changed**
  324. - Use current working directory to find `.env` when bundled by PyInstaller (#213 by
  325. [@gergelyk]).
  326. **Fixed**
  327. - Fix escaping of quoted values written by `set_key` (#236 by [@bbc2]).
  328. - Fix `dotenv run` crashing on environment variables without values (#237 by [@yannham]).
  329. - Remove warning when last line is empty (#238 by [@bbc2]).
  330. ## [0.11.0] - 2020-02-07
  331. **Added**
  332. - Add `interpolate` argument to `load_dotenv` and `dotenv_values` to disable interpolation
  333. (#232 by [@ulyssessouza]).
  334. **Changed**
  335. - Use logging instead of warnings (#231 by [@bbc2]).
  336. **Fixed**
  337. - Fix installation in non-UTF-8 environments (#225 by [@altendky]).
  338. - Fix PyPI classifiers (#228 by [@bbc2]).
  339. ## [0.10.5] - 2020-01-19
  340. **Fixed**
  341. - Fix handling of malformed lines and lines without a value (#222 by [@bbc2]):
  342. - Don't print warning when key has no value.
  343. - Reject more malformed lines (e.g. "A: B", "a='b',c").
  344. - Fix handling of lines with just a comment (#224 by [@bbc2]).
  345. ## [0.10.4] - 2020-01-17
  346. **Added**
  347. - Make typing optional (#179 by [@techalchemy]).
  348. - Print a warning on malformed line (#211 by [@bbc2]).
  349. - Support keys without a value (#220 by [@ulyssessouza]).
  350. ## 0.10.3
  351. - Improve interactive mode detection ([@andrewsmith])([#183]).
  352. - Refactor parser to fix parsing inconsistencies ([@bbc2])([#170]).
  353. - Interpret escapes as control characters only in double-quoted strings.
  354. - Interpret `#` as start of comment only if preceded by whitespace.
  355. ## 0.10.2
  356. - Add type hints and expose them to users ([@qnighy])([#172])
  357. - `load_dotenv` and `dotenv_values` now accept an `encoding` parameter, defaults to `None`
  358. ([@theskumar])([@earlbread])([#161])
  359. - Fix `str`/`unicode` inconsistency in Python 2: values are always `str` now. ([@bbc2])([#121])
  360. - Fix Unicode error in Python 2, introduced in 0.10.0. ([@bbc2])([#176])
  361. ## 0.10.1
  362. - Fix parsing of variable without a value ([@asyncee])([@bbc2])([#158])
  363. ## 0.10.0
  364. - Add support for UTF-8 in unquoted values ([@bbc2])([#148])
  365. - Add support for trailing comments ([@bbc2])([#148])
  366. - Add backslashes support in values ([@bbc2])([#148])
  367. - Add support for newlines in values ([@bbc2])([#148])
  368. - Force environment variables to str with Python2 on Windows ([@greyli])
  369. - Drop Python 3.3 support ([@greyli])
  370. - Fix stderr/-out/-in redirection ([@venthur])
  371. ## 0.9.0
  372. - Add `--version` parameter to cli ([@venthur])
  373. - Enable loading from current directory ([@cjauvin])
  374. - Add 'dotenv run' command for calling arbitrary shell script with .env ([@venthur])
  375. ## 0.8.1
  376. - Add tests for docs ([@Flimm])
  377. - Make 'cli' support optional. Use `pip install python-dotenv[cli]`. ([@theskumar])
  378. ## 0.8.0
  379. - `set_key` and `unset_key` only modified the affected file instead of
  380. parsing and re-writing file, this causes comments and other file
  381. entact as it is.
  382. - Add support for `export` prefix in the line.
  383. - Internal refractoring ([@theskumar])
  384. - Allow `load_dotenv` and `dotenv_values` to work with `StringIO())` ([@alanjds])([@theskumar])([#78])
  385. ## 0.7.1
  386. - Remove hard dependency on iPython ([@theskumar])
  387. ## 0.7.0
  388. - Add support to override system environment variable via .env.
  389. ([@milonimrod](https://github.com/milonimrod))
  390. ([\#63](https://github.com/theskumar/python-dotenv/issues/63))
  391. - Disable ".env not found" warning by default
  392. ([@maxkoryukov](https://github.com/maxkoryukov))
  393. ([\#57](https://github.com/theskumar/python-dotenv/issues/57))
  394. ## 0.6.5
  395. - Add support for special characters `\`.
  396. ([@pjona](https://github.com/pjona))
  397. ([\#60](https://github.com/theskumar/python-dotenv/issues/60))
  398. ## 0.6.4
  399. - Fix issue with single quotes ([@Flimm])
  400. ([\#52](https://github.com/theskumar/python-dotenv/issues/52))
  401. ## 0.6.3
  402. - Handle unicode exception in setup.py
  403. ([\#46](https://github.com/theskumar/python-dotenv/issues/46))
  404. ## 0.6.2
  405. - Fix dotenv list command ([@ticosax](https://github.com/ticosax))
  406. - Add iPython Support
  407. ([@tillahoffmann](https://github.com/tillahoffmann))
  408. ## 0.6.0
  409. - Drop support for Python 2.6
  410. - Handle escaped characters and newlines in quoted values. (Thanks
  411. [@iameugenejo](https://github.com/iameugenejo))
  412. - Remove any spaces around unquoted key/value. (Thanks
  413. [@paulochf](https://github.com/paulochf))
  414. - Added POSIX variable expansion. (Thanks
  415. [@hugochinchilla](https://github.com/hugochinchilla))
  416. ## 0.5.1
  417. - Fix find\_dotenv - it now start search from the file where this
  418. function is called from.
  419. ## 0.5.0
  420. - Add `find_dotenv` method that will try to find a `.env` file.
  421. (Thanks [@isms](https://github.com/isms))
  422. ## 0.4.0
  423. - cli: Added `-q/--quote` option to control the behaviour of quotes
  424. around values in `.env`. (Thanks
  425. [@hugochinchilla](https://github.com/hugochinchilla)).
  426. - Improved test coverage.
  427. [#78]: https://github.com/theskumar/python-dotenv/issues/78
  428. [#121]: https://github.com/theskumar/python-dotenv/issues/121
  429. [#148]: https://github.com/theskumar/python-dotenv/issues/148
  430. [#158]: https://github.com/theskumar/python-dotenv/issues/158
  431. [#170]: https://github.com/theskumar/python-dotenv/issues/170
  432. [#172]: https://github.com/theskumar/python-dotenv/issues/172
  433. [#176]: https://github.com/theskumar/python-dotenv/issues/176
  434. [#183]: https://github.com/theskumar/python-dotenv/issues/183
  435. [#359]: https://github.com/theskumar/python-dotenv/issues/359
  436. [#469]: https://github.com/theskumar/python-dotenv/issues/469
  437. [#456]: https://github.com/theskumar/python-dotenv/issues/456
  438. [#466]: https://github.com/theskumar/python-dotenv/issues/466
  439. [#454]: https://github.com/theskumar/python-dotenv/issues/454
  440. [#474]: https://github.com/theskumar/python-dotenv/issues/474
  441. [@alanjds]: https://github.com/alanjds
  442. [@altendky]: https://github.com/altendky
  443. [@andrewsmith]: https://github.com/andrewsmith
  444. [@asyncee]: https://github.com/asyncee
  445. [@bbc2]: https://github.com/bbc2
  446. [@befeleme]: https://github.com/befeleme
  447. [@cjauvin]: https://github.com/cjauvin
  448. [@eaf]: https://github.com/eaf
  449. [@earlbread]: https://github.com/earlbread
  450. [@eggplants]: https://github.com/@eggplants
  451. [@ekohl]: https://github.com/ekohl
  452. [@elbehery95]: https://github.com/elbehery95
  453. [@eumiro]: https://github.com/eumiro
  454. [@Flimm]: https://github.com/Flimm
  455. [@freddyaboulton]: https://github.com/freddyaboulton
  456. [@gergelyk]: https://github.com/gergelyk
  457. [@gongqingkui]: https://github.com/gongqingkui
  458. [@greyli]: https://github.com/greyli
  459. [@harveer07]: https://github.com/@harveer07
  460. [@jadutter]: https://github.com/jadutter
  461. [@jankislinger]: https://github.com/jankislinger
  462. [@jctanner]: https://github.com/jctanner
  463. [@larsks]: https://github.com/@larsks
  464. [@lsmith77]: https://github.com/lsmith77
  465. [@mgorny]: https://github.com/mgorny
  466. [@naorlivne]: https://github.com/@naorlivne
  467. [@Nicals]: https://github.com/Nicals
  468. [@Nougat-Waffle]: https://github.com/Nougat-Waffle
  469. [@qnighy]: https://github.com/qnighy
  470. [@Qwerty-133]: https://github.com/Qwerty-133
  471. [@rabinadk1]: https://github.com/@rabinadk1
  472. [@sammck]: https://github.com/@sammck
  473. [@samwyma]: https://github.com/samwyma
  474. [@snobu]: https://github.com/snobu
  475. [@techalchemy]: https://github.com/techalchemy
  476. [@theGOTOguy]: https://github.com/theGOTOguy
  477. [@theskumar]: https://github.com/theskumar
  478. [@ulyssessouza]: https://github.com/ulyssessouza
  479. [@venthur]: https://github.com/venthur
  480. [@x-yuri]: https://github.com/x-yuri
  481. [@yannham]: https://github.com/yannham
  482. [@zueve]: https://github.com/zueve
  483. [Unreleased]: https://github.com/theskumar/python-dotenv/compare/v1.0.1...HEAD
  484. [1.0.1]: https://github.com/theskumar/python-dotenv/compare/v1.0.0...v1.0.1
  485. [1.0.0]: https://github.com/theskumar/python-dotenv/compare/v0.21.0...v1.0.0
  486. [0.21.1]: https://github.com/theskumar/python-dotenv/compare/v0.21.0...v0.21.1
  487. [0.21.0]: https://github.com/theskumar/python-dotenv/compare/v0.20.0...v0.21.0
  488. [0.20.0]: https://github.com/theskumar/python-dotenv/compare/v0.19.2...v0.20.0
  489. [0.19.2]: https://github.com/theskumar/python-dotenv/compare/v0.19.1...v0.19.2
  490. [0.19.1]: https://github.com/theskumar/python-dotenv/compare/v0.19.0...v0.19.1
  491. [0.19.0]: https://github.com/theskumar/python-dotenv/compare/v0.18.0...v0.19.0
  492. [0.18.0]: https://github.com/theskumar/python-dotenv/compare/v0.17.1...v0.18.0
  493. [0.17.1]: https://github.com/theskumar/python-dotenv/compare/v0.17.0...v0.17.1
  494. [0.17.0]: https://github.com/theskumar/python-dotenv/compare/v0.16.0...v0.17.0
  495. [0.16.0]: https://github.com/theskumar/python-dotenv/compare/v0.15.0...v0.16.0
  496. [0.15.0]: https://github.com/theskumar/python-dotenv/compare/v0.14.0...v0.15.0
  497. [0.14.0]: https://github.com/theskumar/python-dotenv/compare/v0.13.0...v0.14.0
  498. [0.13.0]: https://github.com/theskumar/python-dotenv/compare/v0.12.0...v0.13.0
  499. [0.12.0]: https://github.com/theskumar/python-dotenv/compare/v0.11.0...v0.12.0
  500. [0.11.0]: https://github.com/theskumar/python-dotenv/compare/v0.10.5...v0.11.0
  501. [0.10.5]: https://github.com/theskumar/python-dotenv/compare/v0.10.4...v0.10.5
  502. [0.10.4]: https://github.com/theskumar/python-dotenv/compare/v0.10.3...v0.10.4