d4rktg 0.1.0__py3-none-any.whl → 0.1.1__py3-none-any.whl

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.
@@ -1,26 +1,26 @@
1
1
  # src/models/_movie_title.py
2
2
 
3
- from rapidfuzz import process
3
+ # from rapidfuzz import process
4
4
 
5
5
  class FindMovie:
6
6
  def __init__(self):
7
7
  self.movie_titles = []
8
8
  self.movie_docs = []
9
9
 
10
- def load_movie_titles(self, titles :list):
11
- self.movie_docs = titles
12
- self.movie_titles = [doc["title"] for doc in self.movie_docs]
10
+ # def load_movie_titles(self, titles :list):
11
+ # self.movie_docs = titles
12
+ # self.movie_titles = [doc["title"] for doc in self.movie_docs]
13
13
 
14
- def get_match_one(self,user_input):
15
- match, _, _ = process.extractOne(user_input, self.movie_titles)
16
- return match
14
+ # def get_match_one(self,user_input):
15
+ # match, _, _ = process.extractOne(user_input, self.movie_titles)
16
+ # return match
17
17
 
18
- def get_match_doc(self,match):
19
- return next((doc for doc in self.movie_docs if doc["title"] == match), None)
18
+ # def get_match_doc(self,match):
19
+ # return next((doc for doc in self.movie_docs if doc["title"] == match), None)
20
20
 
21
- def get_match(self, user_input :str,limit :int=3):
22
- matches = process.extract(user_input, self.movie_titles, limit=limit)
23
- return matches
21
+ # def get_match(self, user_input :str,limit :int=3):
22
+ # matches = process.extract(user_input, self.movie_titles, limit=limit)
23
+ # return matches
24
24
 
25
25
  movie_finder = FindMovie()
26
26
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: d4rktg
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: A module for create with easy and fast
5
5
  Author: D4rkShell
6
6
  Author-email: premiumqtrst@gmail.com
@@ -8,7 +8,7 @@ d4rk/Logs/__init__.py,sha256=mXWD5jXnyH3_AvS7K_ki3iw5BpoEAvrDFbmr-iEFNnY,22
8
8
  d4rk/Logs/_logger.py,sha256=C09OA5wUpl5oLp7oAs5P2CrpBKkcHxjUYetCtHJ1Kqk,2379
9
9
  d4rk/Models/__init__.py,sha256=7bYM2c5Uk_VEg7NxIGH2EcEXGcAguwxvH23-Gy1orMM,100
10
10
  d4rk/Models/_commands.py,sha256=o7uO_NvTG3DYjucjII0MPniGIq2MzLkLCK5I5kOzuTw,2355
11
- d4rk/Models/_movie_title.py,sha256=s4nUjMTe7th7gNkLy1wDiEZV-OcBvx3ZoV7gVeP9428,788
11
+ d4rk/Models/_movie_title.py,sha256=Xp8eafBP-kD3MxAdeNcb7EyiAojn5fDQ18la7vxrg10,812
12
12
  d4rk/Utils/__init__.py,sha256=rLJgLDUQqt8e0o1FdXu0RKmkYpV8sd8mfEzYewBXIy4,242
13
13
  d4rk/Utils/_decorators.py,sha256=G5gGayvcpZRRVo6ondbRqQYDN4yVczlEdSHwaOQ_TLI,4145
14
14
  d4rk/Utils/_delete.py,sha256=gSmQAENGmM5XCCJfPuJ4vRMSxtixYG0vYdocU-2TSFg,581
@@ -17,7 +17,7 @@ d4rk/Utils/_ip.py,sha256=KJJW2QSngshIVWCO5YPXF1wj4IPQzVN5oFofpfzlU5w,559
17
17
  d4rk/Utils/_movie_parser.py,sha256=eiy1YVSu9fgk9pIXnMojJkWhW6SbdewKGF0ATk2qZoA,3440
18
18
  d4rk/Utils/_ractions.py,sha256=wOVPyoFnbDuMgoP6NF_gLO1DYcfhERC0trdAK1jWSE8,2170
19
19
  d4rk/Utils/_terminal.py,sha256=Anu4OcffY3v6LMOrCskP1cHrJIliomo1Hjownbhh2sQ,125
20
- d4rktg-0.1.0.dist-info/METADATA,sha256=O2g9wuDMckEXSyCsohe_p9FRBEiFcfHLcyOIrAgNCqU,923
21
- d4rktg-0.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
- d4rktg-0.1.0.dist-info/top_level.txt,sha256=qs1qTnKWImmGi7E0FoJS0OAEOHoVZA9vHRS3Pm6ncAo,5
23
- d4rktg-0.1.0.dist-info/RECORD,,
20
+ d4rktg-0.1.1.dist-info/METADATA,sha256=DEBuotRYPPK4XkTWUwdXX9z8xBc94U6luSw34pc9eMY,923
21
+ d4rktg-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
22
+ d4rktg-0.1.1.dist-info/top_level.txt,sha256=qs1qTnKWImmGi7E0FoJS0OAEOHoVZA9vHRS3Pm6ncAo,5
23
+ d4rktg-0.1.1.dist-info/RECORD,,
File without changes