bitmapmaker
Advanced tools
| import bitmapmaker.bitmapgui as bmg | ||
| class bitmap: | ||
| def __init__(self, bmx: int, bmy: int): | ||
| self.bmx = bmx | ||
| self.bmy = bmy | ||
| def createGridGui(self): | ||
| bmg.bitmapgui(self.bmx, self.bmy) | ||
| return (self.bmx, self.bmy) |
+1
-1
| Metadata-Version: 2.4 | ||
| Name: bitmapmaker | ||
| Version: 0.2.0 | ||
| Version: 1.0.1 | ||
| Summary: A package for creating your own custom bitmaps from a windows GUI. | ||
@@ -5,0 +5,0 @@ Project-URL: Homepage, https://github.com/Ruxton07/bitmapmaker |
+1
-1
@@ -7,3 +7,3 @@ [build-system] | ||
| name = "bitmapmaker" | ||
| version = "0.2.0" | ||
| version = "1.0.1" | ||
| authors = [ | ||
@@ -10,0 +10,0 @@ { name="Ryan Kellar", email="rt.kellar@gmail.com" }, |
| import bitmapmaker.bitmapgui as bmg | ||
| import bitmapmaker.bitmapops as bmo | ||
| import bitmapmaker.bitmap as bmo |
@@ -1,8 +0,7 @@ | ||
| import bitmapmaker.bitmapops as bmo | ||
| def test1(): | ||
| testbm = bmo.bitmapops(10,10) | ||
| testbm.createGrid() | ||
| import bitmapmaker.bitmap as bm | ||
| test1() | ||
| def test_answer(): | ||
| testbm = bm.bitmap(3,3) | ||
| testbm.createGridGui() | ||
| assert (testbm.bmx, testbm.bmy) == (3,3) | ||
| import bitmapmaker.bitmapgui as bmg | ||
| class bitmapops: | ||
| def __init__(self, bmx: int, bmy: int): | ||
| self.bmx = bmx | ||
| self.bmy = bmy | ||
| def createGrid(self): | ||
| bmg.bitmapgui(self.bmx, self.bmy) | ||
| return (self.bmx, self.bmy) |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
6538
0.49%79
1.28%