radboy 0.0.751__py3-none-any.whl → 0.0.753__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.
Potentially problematic release.
This version of radboy might be problematic. Click here for more details.
- radboy/DB/OrderedAndRxd.py +7 -7
- radboy/HowDoYouDefineMe/CoreEmotions.py +14 -0
- radboy/HowDoYouDefineMe/__init__.py +26 -0
- radboy/__init__.py +1 -1
- radboy/__pycache__/__init__.cpython-313.pyc +0 -0
- {radboy-0.0.751.dist-info → radboy-0.0.753.dist-info}/METADATA +2 -1
- {radboy-0.0.751.dist-info → radboy-0.0.753.dist-info}/RECORD +9 -7
- {radboy-0.0.751.dist-info → radboy-0.0.753.dist-info}/WHEEL +0 -0
- {radboy-0.0.751.dist-info → radboy-0.0.753.dist-info}/top_level.txt +0 -0
radboy/DB/OrderedAndRxd.py
CHANGED
|
@@ -147,7 +147,7 @@ class OrderedAndRecieved(BASE,Template):
|
|
|
147
147
|
#dmv error processing unit
|
|
148
148
|
#let them know that i filled out my application on sept. 9.
|
|
149
149
|
How_are_wages_being_dispensed=Column(String,default=None)
|
|
150
|
-
|
|
150
|
+
|
|
151
151
|
RateOfPay=Column(Float,default=None)
|
|
152
152
|
RateOfPayComment=Column(Float,default=None)
|
|
153
153
|
RateOfPayBy=Column(String,default=None)
|
|
@@ -158,15 +158,15 @@ class OrderedAndRecieved(BASE,Template):
|
|
|
158
158
|
|
|
159
159
|
Paid_When_DT=Column(DateTime,default=None)
|
|
160
160
|
Shift_Started_DT=Column(DateTime,default=None)
|
|
161
|
-
Shift_Lunch_Start=Column(DateTime,default=
|
|
162
|
-
Shift_Lunch_End=Column(DateTime,default=
|
|
161
|
+
Shift_Lunch_Start=Column(DateTime,default=None)
|
|
162
|
+
Shift_Lunch_End=Column(DateTime,default=None)
|
|
163
163
|
Shift_Ended_DT=Column(DateTime,default=None)
|
|
164
164
|
Shift_Labor_Breaks=Column(Text,default=None)
|
|
165
|
-
is_lunch_paid=Column(Boolean,default=
|
|
166
|
-
is_break_paid=Column(Boolean,default=
|
|
165
|
+
is_lunch_paid=Column(Boolean,default=None)
|
|
166
|
+
is_break_paid=Column(Boolean,default=None)
|
|
167
167
|
|
|
168
168
|
#schedule
|
|
169
|
-
Was_This_A_Scheduled_Shift=Column(Boolean,default=
|
|
169
|
+
Was_This_A_Scheduled_Shift=Column(Boolean,default=None)
|
|
170
170
|
ScheduledShiftDTOE=Column(DateTime,default=None)
|
|
171
171
|
ScheduledDays=Column(String,default=None)
|
|
172
172
|
ScheduledShiftNotes=Column(String,default=None)
|
|
@@ -188,7 +188,7 @@ class OrderedAndRecieved(BASE,Template):
|
|
|
188
188
|
SupervisorName=Column(String,default=None)
|
|
189
189
|
SupervisorNotes=Column(Text,default=None)
|
|
190
190
|
|
|
191
|
-
PersonInChargePresent=Column(Boolean,default=
|
|
191
|
+
PersonInChargePresent=Column(Boolean,default=None)
|
|
192
192
|
PersonInChargeName=Column(String,default=None)
|
|
193
193
|
PersonInChargeNotes=Column(Text,default=None)
|
|
194
194
|
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from radboy.DB.db import *
|
|
2
|
+
from radboy.DB.RandomStringUtil import *
|
|
3
|
+
import radboy.possibleCode as pc
|
|
4
|
+
from radboy.DB.Prompt import *
|
|
5
|
+
from radboy.DB.Prompt import prefix_text
|
|
6
|
+
from radboy.FB.FormBuilder import *
|
|
7
|
+
from radboy.FB.FBMTXT import *
|
|
8
|
+
from radboy.RNE.RNE import *
|
|
9
|
+
from radboy.Lookup2.Lookup2 import Lookup as Lookup2
|
|
10
|
+
from radboy.DayLog.DayLogger import *
|
|
11
|
+
from collections import namedtuple,OrderedDict
|
|
12
|
+
import nanoid,qrcode,io
|
|
13
|
+
from password_generator import PasswordGenerator
|
|
14
|
+
import random
|
|
15
|
+
from pint import UnitRegistry
|
|
16
|
+
import pandas as pd
|
|
17
|
+
import numpy as np
|
|
18
|
+
from datetime import *
|
|
19
|
+
from colored import Style,Fore
|
|
20
|
+
import json,sys,math,re,calendar,hashlib,haversine
|
|
21
|
+
from time import sleep
|
|
22
|
+
import itertools
|
|
23
|
+
from dataclasses import dataclass
|
|
24
|
+
import math
|
|
25
|
+
|
|
26
|
+
from . import *
|
radboy/__init__.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
VERSION='0.0.
|
|
1
|
+
VERSION='0.0.753'
|
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: radboy
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.753
|
|
4
4
|
Summary: A Retail Calculator for Android/Linux
|
|
5
5
|
Author: Carl Joseph Hirner III
|
|
6
6
|
Author-email: Carl Hirner III <k.j.hirner.wisdom@gmail.com>
|
|
@@ -50,6 +50,7 @@ Requires-Dist: chemlib
|
|
|
50
50
|
Requires-Dist: chemicals
|
|
51
51
|
Requires-Dist: chempy
|
|
52
52
|
Requires-Dist: magpylib
|
|
53
|
+
Requires-Dist: humanfriendly
|
|
53
54
|
Provides-Extra: linux
|
|
54
55
|
Requires-Dist: gnureadline; extra == "linux"
|
|
55
56
|
Provides-Extra: android
|
|
@@ -5,7 +5,7 @@ radboy/Holidays.txt,sha256=y-JZPihh5iaWKxMIHNXD39yVuVmf1vMs4FdNDcg0f1Y,3114
|
|
|
5
5
|
radboy/InventoryGlossary.txt,sha256=018-Yqca6DFb10jPdkUY-5qhkRlQN1k3rxoTaERQ-LA,91008
|
|
6
6
|
radboy/RecordMyCodes.py,sha256=h30zoTqt-XLt_afDPlxMxBiKKwmKi3N-yAuldNCqXUo,41476
|
|
7
7
|
radboy/Run.py,sha256=JUoCTHnzQBv7n8PB2_i93ANdAC_iW__RkAge8esCnk4,76
|
|
8
|
-
radboy/__init__.py,sha256=
|
|
8
|
+
radboy/__init__.py,sha256=5rFBIurTR96rU4RMKXBsM2HikzhznDqoSrKzuuEnAkw,17
|
|
9
9
|
radboy/api_key,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
10
|
radboy/case-export-2024-05-14-13-10-00.672971.xlsx,sha256=Wd592d_VLFmfUI9KKKSVjNwjV91euc1T7ATyvwvUhlg,5431
|
|
11
11
|
radboy/case-export-2024-05-14-13-13-22.540614.xlsx,sha256=OnGrhmScHfGp_mVaWW-LNMsqrQgyZDpiU3wV-2s3U5Q,5556
|
|
@@ -84,7 +84,7 @@ radboy/DB/DisplayItemDb.py,sha256=uVvrNyFyBuKvrw-BEPXKYvfa-QWyFN5ahESi2l6vUUA,52
|
|
|
84
84
|
radboy/DB/EstimatedPayCalendarWorkSheet.txt,sha256=GOjRSmGxFoNTdAnpPe2kGv7CkXDrh0Mee01HslamGbo,17173
|
|
85
85
|
radboy/DB/ExerciseTracker.py,sha256=OS9i8jGIZPj-6m1bB0-eKNHQ6vf2iv_AYPEc0s4bkBM,27809
|
|
86
86
|
radboy/DB/LetterWriter.py,sha256=0B14GB-hJK2Xf_TFASriOELFygiI1LwkSb__R3tUiU0,2631
|
|
87
|
-
radboy/DB/OrderedAndRxd.py,sha256=
|
|
87
|
+
radboy/DB/OrderedAndRxd.py,sha256=v_vrTOiTDhKqT5KErK6MOG_u4Nt7ug2MoLTHvAnm88M,19450
|
|
88
88
|
radboy/DB/PayDay.py,sha256=H2kPGvBCDkMOz7lbxQhYtUt_oAInpxi37Q6MFrah98I,8710
|
|
89
89
|
radboy/DB/PayModels.py,sha256=hjwWxP7PL33hmfzQl5YTf0HqzaMxXJxFknPdxFJXJc8,3499
|
|
90
90
|
radboy/DB/PrintLogging.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -224,6 +224,8 @@ radboy/HealthLog/__pycache__/HealthLog.cpython-312.pyc,sha256=hTo4o7jo9L2yqPZgzu
|
|
|
224
224
|
radboy/HealthLog/__pycache__/HealthLog.cpython-313.pyc,sha256=efratl-5_nmAASdwo_h9hexnCjZ4RF4kUdNuDhK-2i0,81647
|
|
225
225
|
radboy/HealthLog/__pycache__/__init__.cpython-312.pyc,sha256=yZrYKBk31pGSjCRqmqzpX409iw-muC1zsNO2ObqkGlY,272
|
|
226
226
|
radboy/HealthLog/__pycache__/__init__.cpython-313.pyc,sha256=cqdZbEJKq9XVoVqDAwsW0pwwBBGSerJNWGlST3YVR3g,151
|
|
227
|
+
radboy/HowDoYouDefineMe/CoreEmotions.py,sha256=cfdmFhGjf7I74Nl1McSivtYcz6k4i3TxV46qam_5RPI,178
|
|
228
|
+
radboy/HowDoYouDefineMe/__init__.py,sha256=EoeneTf_YruvZqpEULT7cZwgZhgLXccXLtDEbdiqrIE,770
|
|
227
229
|
radboy/InListRestore/ILR.py,sha256=s8fbbHLKQSVJX1VaeyGE-vdIUGBEbOPX29kRIG2j2WY,16847
|
|
228
230
|
radboy/InListRestore/__init__.py,sha256=DajhhWD-xrWDSpdsNGu_yeuVd721u3Spp77VgdGrEe8,899
|
|
229
231
|
radboy/InListRestore/__pycache__/ILR.cpython-312.pyc,sha256=xQ_aaccNCI3g5ZrqkY0g564ITADNeBtazNuaNVh5wLU,21888
|
|
@@ -406,7 +408,7 @@ radboy/__pycache__/Run.cpython-311.pyc,sha256=G_UEfMtkLRjR6ZpGA_BJzGenuaCcP469Y9
|
|
|
406
408
|
radboy/__pycache__/Run.cpython-312.pyc,sha256=v4xolc3mHyla991XhpYBUbBHYT0bnJ1gE-lkFoQ4GFA,241
|
|
407
409
|
radboy/__pycache__/__init__.cpython-311.pyc,sha256=R-DVbUioMOW-Fnaq7FpT5F1a5p0q3b_RW-HpLRArCAY,242
|
|
408
410
|
radboy/__pycache__/__init__.cpython-312.pyc,sha256=FsFzLXOlTK8_7ixoPZzakkR8Wibt-DvXLFh-oG2QlPw,164
|
|
409
|
-
radboy/__pycache__/__init__.cpython-313.pyc,sha256=
|
|
411
|
+
radboy/__pycache__/__init__.cpython-313.pyc,sha256=mxgsH4btBDzKXlvu182CJIUqORR_yrvLb4HUgj_8kgQ,165
|
|
410
412
|
radboy/__pycache__/__init__.cpython-39.pyc,sha256=D48T6x6FUeKPfubo0sdS_ZUut3FmBvPMP7qT6rYBZzU,275
|
|
411
413
|
radboy/__pycache__/possibleCode.cpython-311.pyc,sha256=zFiHyzqD8gUnIWu4vtyMYIBposiRQqaRXfcT_fOl4rU,20882
|
|
412
414
|
radboy/__pycache__/possibleCode.cpython-312.pyc,sha256=tk_CO-AcsO3YZj5j6vEsw3g37UmEzWc5YgeWEoJEUg4,27922
|
|
@@ -434,7 +436,7 @@ radboy/tkGui/Images/__pycache__/__init__.cpython-311.pyc,sha256=tXBYpqbOlZ24B1BI
|
|
|
434
436
|
radboy/tkGui/__pycache__/BeginnersLuck.cpython-311.pyc,sha256=xLQOnV1wuqHGaub16mPX0dDMGU9ryCeLtNz5e517_GE,3004
|
|
435
437
|
radboy/tkGui/__pycache__/Review.cpython-311.pyc,sha256=wKq24iM6Xe2OampgZ7-8U6Nvmgs2y-qWOrGwtWhc75k,4047
|
|
436
438
|
radboy/tkGui/__pycache__/__init__.cpython-311.pyc,sha256=BX7DBn5qbvKTvlrKOP5gzTBPBTeTgSMjBW6EMl7N8e0,230
|
|
437
|
-
radboy-0.0.
|
|
438
|
-
radboy-0.0.
|
|
439
|
-
radboy-0.0.
|
|
440
|
-
radboy-0.0.
|
|
439
|
+
radboy-0.0.753.dist-info/METADATA,sha256=13fOAM5ZXwQRZ6SgtuyhYTtFSNLGre6FfLWsbYqUDaM,1920
|
|
440
|
+
radboy-0.0.753.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
441
|
+
radboy-0.0.753.dist-info/top_level.txt,sha256=mlM0RWMUxGo1YHnlLmYrHOgGdK4XNRpr7nMFD5lR56c,7
|
|
442
|
+
radboy-0.0.753.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|