New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

bitmapmaker

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bitmapmaker - pypi Package Compare versions

Comparing version
0.2.0
to
1.0.1
+9
src/bitmapmaker/bitmap.py
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

@@ -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)