ftagger 0.1.2__tar.gz → 0.1.3__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.
- {ftagger-0.1.2 → ftagger-0.1.3}/PKG-INFO +2 -2
- {ftagger-0.1.2 → ftagger-0.1.3}/README.md +1 -1
- {ftagger-0.1.2 → ftagger-0.1.3}/pyproject.toml +1 -1
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ftagger.egg-info/PKG-INFO +2 -2
- {ftagger-0.1.2 → ftagger-0.1.3}/src/utils.py +2 -3
- {ftagger-0.1.2 → ftagger-0.1.3}/LICENSE.txt +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/setup.cfg +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ansi_codes.py +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/commands.py +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ftagger.egg-info/SOURCES.txt +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ftagger.egg-info/dependency_links.txt +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ftagger.egg-info/entry_points.txt +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/ftagger.egg-info/top_level.txt +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/globals.py +0 -0
- {ftagger-0.1.2 → ftagger-0.1.3}/src/main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ftagger
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Simple command-line file tagger
|
|
5
5
|
Author-email: Charlie O'Dwyer <charlieodwyer2289@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -13,7 +13,7 @@ Dynamic: license-file
|
|
|
13
13
|
|
|
14
14
|
# Preface
|
|
15
15
|
|
|
16
|
-
Most of this project was created before I began using GitHub, which is why the first commit is
|
|
16
|
+
Most of this project was created before I began using GitHub, which is why the first commit is already almost finished.
|
|
17
17
|
|
|
18
18
|
I have yet to implement proper error handling, as well as a few commands.
|
|
19
19
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Preface
|
|
2
2
|
|
|
3
|
-
Most of this project was created before I began using GitHub, which is why the first commit is
|
|
3
|
+
Most of this project was created before I began using GitHub, which is why the first commit is already almost finished.
|
|
4
4
|
|
|
5
5
|
I have yet to implement proper error handling, as well as a few commands.
|
|
6
6
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ftagger
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Simple command-line file tagger
|
|
5
5
|
Author-email: Charlie O'Dwyer <charlieodwyer2289@gmail.com>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -13,7 +13,7 @@ Dynamic: license-file
|
|
|
13
13
|
|
|
14
14
|
# Preface
|
|
15
15
|
|
|
16
|
-
Most of this project was created before I began using GitHub, which is why the first commit is
|
|
16
|
+
Most of this project was created before I began using GitHub, which is why the first commit is already almost finished.
|
|
17
17
|
|
|
18
18
|
I have yet to implement proper error handling, as well as a few commands.
|
|
19
19
|
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import ansi_codes as ac
|
|
2
2
|
import json
|
|
3
|
-
|
|
4
|
-
from globals import *
|
|
3
|
+
import globals
|
|
5
4
|
|
|
6
5
|
|
|
7
6
|
def check_for_first_run():
|
|
8
|
-
if not FMDATA.exists():
|
|
7
|
+
if not globals.FMDATA.exists():
|
|
9
8
|
with open(globals.FMALIASLOOKUP, "w") as file:
|
|
10
9
|
json.dump({}, file, indent=4)
|
|
11
10
|
|
|
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
|