Metadata-Version: 2.1
Name: cube3d
Version: 0.0.1
Summary: 3-Dimention Rubic cube activities
Home-page: https://github.com/alias1978/cube3d
Author: ALIASGAR - ALI
Author-email: aholo2000@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

Three-Dimention Rubic cube activities.

Excel input can be in below format
						Back = TOP + TOP					
											
						O222	O221	O220			
						O212	O211	O210			
						O202	O201	O200			
						G220	G221	G222			
						G120	G121	G122			
						G020	G021	G022			
Y220	Y120	Y020	R020	R021	R022	W022	W122	W222
Y210	Y110	Y010	R010	R011	R012	W012	W112	W212
Y200	Y100	Y000	R000	R001	R002	W002	W102	W202
						B000	B001	B002			
						B100	B101	B102			
						B200	B201	B202			


all faces should be input in excel in each separate sheet named
( front, back, left, right, top, bottom )
refer  input sample excel file for the same.

===============================
SAMPLE EXECUTIONS:
===============================
from cube3d import get_cube

CB = get_cube("cube.xlsx")
pprint(CB.show(front))
print (CB.is_solved())
... and so on 
===============================



