nbdevAuto 0.0.112__tar.gz → 0.0.119__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nbdevAuto-0.0.112/nbdevAuto.egg-info → nbdevAuto-0.0.119}/PKG-INFO +2 -2
- nbdevAuto-0.0.119/nbdevAuto/__init__.py +1 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto/_modidx.py +2 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto/functions.py +43 -1
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119/nbdevAuto.egg-info}/PKG-INFO +2 -2
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/settings.ini +1 -1
- nbdevAuto-0.0.112/nbdevAuto/__init__.py +0 -1
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/LICENSE +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/MANIFEST.in +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/README.md +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto/automate.py +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto/core.py +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto/pdf.py +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/SOURCES.txt +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/dependency_links.txt +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/entry_points.txt +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/not-zip-safe +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/requires.txt +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/nbdevAuto.egg-info/top_level.txt +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/setup.cfg +0 -0
- {nbdevAuto-0.0.112 → nbdevAuto-0.0.119}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nbdevAuto
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.119
|
|
4
4
|
Summary: automating nbdev
|
|
5
5
|
Home-page: https://github.com/bthek1/nbdevAuto
|
|
6
6
|
Author: Benedict Thekkel
|
|
@@ -17,8 +17,8 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
17
17
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
|
-
Provides-Extra: dev
|
|
21
20
|
License-File: LICENSE
|
|
21
|
+
Provides-Extra: dev
|
|
22
22
|
|
|
23
23
|
# Nbdev Automation Library
|
|
24
24
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.119"
|
|
@@ -27,6 +27,8 @@ d = { 'settings': { 'branch': 'main',
|
|
|
27
27
|
'nbdevAuto/functions.py'),
|
|
28
28
|
'nbdevAuto.functions.download_search_images': ( 'functions.html#download_search_images',
|
|
29
29
|
'nbdevAuto/functions.py'),
|
|
30
|
+
'nbdevAuto.functions.graph': ('functions.html#graph', 'nbdevAuto/functions.py'),
|
|
31
|
+
'nbdevAuto.functions.graph.__init__': ('functions.html#graph.__init__', 'nbdevAuto/functions.py'),
|
|
30
32
|
'nbdevAuto.functions.kaggle_competition_download': ( 'functions.html#kaggle_competition_download',
|
|
31
33
|
'nbdevAuto/functions.py'),
|
|
32
34
|
'nbdevAuto.functions.kaggle_dataset_download': ( 'functions.html#kaggle_dataset_download',
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
# %% auto 0
|
|
4
4
|
__all__ = ['read_from_file', 'download_pic', 'create_searches_folder', 'download_search_image', 'download_search_images',
|
|
5
5
|
'verify_pics', 'resize_pics', 'create_data_folder', 'classify_images', 'kaggle_competition_download',
|
|
6
|
-
'kaggle_dataset_download']
|
|
6
|
+
'kaggle_dataset_download', 'graph']
|
|
7
7
|
|
|
8
8
|
# %% ../nbs/00_Functions.ipynb 5
|
|
9
9
|
#|code-fold: true
|
|
@@ -257,3 +257,45 @@ def kaggle_dataset_download(user:str,
|
|
|
257
257
|
import zipfile,kaggle
|
|
258
258
|
kaggle.api.dataset_download_files(dataset = f'{user}/{name}', path = path)
|
|
259
259
|
zipfile.ZipFile(f'{path}/{name}.zip').extractall(path)
|
|
260
|
+
|
|
261
|
+
# %% ../nbs/00_Functions.ipynb 23
|
|
262
|
+
#|code-fold: true
|
|
263
|
+
from graphviz import Digraph
|
|
264
|
+
|
|
265
|
+
# %% ../nbs/00_Functions.ipynb 24
|
|
266
|
+
#|code-fold: true
|
|
267
|
+
class graph(Digraph):
|
|
268
|
+
def __init__(self, *args, **kwargs):
|
|
269
|
+
# Call the superclass's __init__ method using super() and pass all arguments
|
|
270
|
+
super().__init__(*args, **kwargs)
|
|
271
|
+
self.primary = '#fdfcdc'
|
|
272
|
+
self.secondary = '#fcbf49'
|
|
273
|
+
self.third = '#f77f00'
|
|
274
|
+
self.fourth = '#d62828'
|
|
275
|
+
self.fifth = '#003049'
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
self.graph_attr.update(style='rounded,filled',
|
|
279
|
+
rankdir='LR',
|
|
280
|
+
compound='true',
|
|
281
|
+
fillcolor=self.fourth,
|
|
282
|
+
fontcolor=self.fifth,
|
|
283
|
+
penwidth = '0',
|
|
284
|
+
fontname = "Helvetica,Arial,sans-serif")
|
|
285
|
+
|
|
286
|
+
self.node_attr.update(style='rounded,filled',
|
|
287
|
+
size='8,5', shape='box',
|
|
288
|
+
width='1.5',
|
|
289
|
+
fillcolor=self.secondary,
|
|
290
|
+
fontcolor=self.fifth,
|
|
291
|
+
penwidth = '0',
|
|
292
|
+
fontname = "Helvetica,Arial,sans-serif")
|
|
293
|
+
|
|
294
|
+
self.edge_attr.update(arrowhead='vee',
|
|
295
|
+
arrowsize='1',
|
|
296
|
+
color=self.fifth,
|
|
297
|
+
len='1.00',
|
|
298
|
+
fontname = "Helvetica,Arial,sans-serif",
|
|
299
|
+
penwidth='1')
|
|
300
|
+
self.graph_attr.update()
|
|
301
|
+
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: nbdevAuto
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.119
|
|
4
4
|
Summary: automating nbdev
|
|
5
5
|
Home-page: https://github.com/bthek1/nbdevAuto
|
|
6
6
|
Author: Benedict Thekkel
|
|
@@ -17,8 +17,8 @@ Classifier: Programming Language :: Python :: 3.10
|
|
|
17
17
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
|
-
Provides-Extra: dev
|
|
21
20
|
License-File: LICENSE
|
|
21
|
+
Provides-Extra: dev
|
|
22
22
|
|
|
23
23
|
# Nbdev Automation Library
|
|
24
24
|
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.0.112"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|