@@ -113,7 +113,9 @@ save_webpage(
113
113
)
114
114
```
115
115
116
- ### 1.3.2 ` core.setup_config ` Method
116
+ ### 1.3.2 ` config.setup_config ` Method
117
+
118
+ > ** This function is changed from ` core.setup_config ` **
117
119
118
120
You can manually configure every configuration by using a
119
121
` core.setup_config ` call.
@@ -125,7 +127,7 @@ import pywebcopy
125
127
url = ' http://example-site.com/index.html'
126
128
download_loc = ' path/to/downloads/'
127
129
128
- pywebcopy.core .setup_config(url, download_loc)
130
+ pywebcopy.config .setup_config(url, download_loc)
129
131
130
132
# done!
131
133
@@ -142,7 +144,7 @@ pywebcopy.core.setup_config(url, download_loc)
142
144
# # You can also change any of these by just adding param to
143
145
# # `setup_config` call
144
146
145
- >> > pywebcopy.core .setup_config(url,
147
+ >> > pywebcopy.config .setup_config(url,
146
148
download_loc,project_name = ' Your-Project' , ... )
147
149
148
150
# # You can also change any config even after
@@ -273,6 +275,10 @@ if you want, you can help in generating suitable `documentation` for these undoc
273
275
274
276
### [ version 2.0.0]
275
277
278
+ #### [ changed]
279
+
280
+ - ` core.setup_config ` function is changed to ` config.setup_config ` .
281
+
276
282
#### [ added]
277
283
278
284
- added ` utils.trace ` decorator, which will ** print** * function_name* , * args* , * kwargs* and * return value* when debug config key is True.
0 commit comments