You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -135,6 +135,21 @@ update your settings on remote server, handy isn't it!
135
135
set Store the given key/value.
136
136
unset Removes the given key.
137
137
138
+
iPython Support
139
+
---------------
140
+
141
+
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 usuages.
142
+
143
+
```
144
+
%load_ext dotenv
145
+
146
+
# Use find_dotenv to locate the file
147
+
%dotenv
148
+
149
+
# Specify a particular file
150
+
%dotenv relative/or/absolute/path/to/.env
151
+
```
152
+
138
153
Setting config on remote servers
139
154
--------------------------------
140
155
@@ -231,7 +246,7 @@ Changelog
231
246
232
247
dev
233
248
----------
234
-
- ...
249
+
- Add iPython Suport (@tillahoffmann)
235
250
236
251
0.6.0
237
252
----------
@@ -253,6 +268,7 @@ dev
253
268
- cli: Added ``-q/--quote`` option to control the behaviour of quotes around values in ``.env``. (Thanks `@hugochinchilla`_).
0 commit comments