A utility package influenced by java, coded in python
Project description
Influence - The Python Extender You Asked For
With influence you can extend python with things like two-dimensional lists, fractions, string
subtractors, etc. You can also upgrade python with things it doesn’t have like arrays!
Overview
The influence python library was created with one sole purpose, helping you do things that can’t be
done in standard python with ease
Extender Library: Sub-package of influence that extends things that are already in python, such
as lists, strings, and doing math
Upgrader Library: Sub-package of influence that adds things to python that it doesn’t have
already, like arrays
Usage
Below is how to install and use the influence library in your own programs!
Installation
$ pip install influence
or
$ python3 -m pip install -U influence
The influence package has two package dependencies, numpy and matplotlib (used for grapher and
agrapher classes)
Extender Library
The influence subpackage that extends python’s built-in features
Cout
Cout (common output) has only one module, printer, that helps print tuples, lists, dicts, etc.
nicely
Importing:
from influence.extender.cout import printer
#or
from influence.extender.cout.printer import Printer
Printer Class
Methods:
Printer.print_list(list) #prints a list nicely
Printer.print_tuple(tuple) #prints a tuple nicely
Printer.print_dictionary(dict) #prints a dict nicely
Printer.print_all(ender, *items)
#prints all of items, if ender is False, prints each item on new line
#else all items are printed on the same line
List
List extends python’s built-in lists by adding multidimensional lists and other list extenders
List2D Class
Creates a 2D list of a square size
Importing:
from influence.extender.list import multilist
#or
from influence.extender.list.multilist import List2D
Initializing:
l = List2D(rows, cols)
#creates the list to have rows number of rows and cols number of cols
Methods:
l.set(r_index, c_index, item)
#sets value at r_index and c_index to item
#returns true if able to set, false if index out of bounds
l.get(r_index, c_index)
#returns value at r_index and c_index
#returns None if index out of bounds
l.print()
#prints the list
l.remove(r_index, c_index)
#removes the value at r_index and c_index
#returns true if removed, false if index out of bounds
item in l
#returns true if item in l, false otherwise
l.find(item)
#returns indices of item if found in list
#returns [-1] otherwise
RaggedList Class
Creates a 2D list, but doesn’t need to be of n x n size, inherits from List2D, and therefore has a
dependency to influence.extender.list.multilist
Importing:
from influence.extender.list import ragged
#or
from influence.extender.list.ragged import RaggedList
Initializing:
r = RaggedList(rows=1, cols=1)
#creates a ragged list starting with rows rows and cols cols
#defaults to one for both if no arguments are given
Methods:
r.print()
#prints the ragged list
r.in_bounds(r_index, c_index)
#returns true if r_index and c_index are in bounds of the list
#returns false otherwise
r.set(r_index, c_index, item)
#sets value at r_index and c_index to item if in bounds
#else extends the ragged list so r_index and c_index are in bounds
r.get(r_index, c_index)
#returns value at r_index and c_index if in bounds
#else returns None
item in r
#returns true if item is in r, else returns false
r.find(item)
#returns the indices of item if in r
#else returns [-1]
AsList Class
Used to turn strings into lists, duplicate class found in string subpackage
Importing:
from influence.extender.list import aslist
#or
from influence.extneder.list.aslist import AsList
Methods:
AsList.character_list(string)
#returns string as a list of characters
AsList.word_list(string)
#returns string as a list with each word
#a word is found when a space is reached in the string
#spaces are not included in the list
AsList.word_list_with_spaces(string)
#same as AsList.word_list(string) except spaces are part of the list
String
Allows for a couple new things to be done with strings
AsList Class
Used to turn strings into lists, duplicate class found in list subpackage
Importing:
from influence.extender.string import aslist
#or
from influence.extneder.string.aslist import AsList
Methods:
AsList.character_list(string)
#returns string as a list of characters
AsList.word_list(string)
#returns string as a list with each word
#a word is found when a space is reached in the string
#spaces are not included in the list
AsList.word_list_with_spaces(string)
#same as AsList.word_list(string) except spaces are part of the list
Subtract Class
Allows for subtracting of strings, but does not change the input string, instead returns a new
string
Importing:
from influence.extender.string import subtract
#or
from influence.extender.string.subtract import Subtract
Methods:
Subtract.subtract(initial, remove)
#removes the first instance of remove from initial
#returns a new string
#remove can be multiple letters, but must be a string
Subtract.subtract_all(initial, remove)
#removes all instances of remove from initial
#returns a new string
#remove can be multiple letters, but must be a string
Math
#Const Class
Gives the user access to constants in math
Importing:
from influence.extender.math import const
#or
from influence.extender.math.const import MathConstants
Fields:
MathConstants.pi #returns the value of pi
MathConstants.e #returns the value of e
MathConstants.tau #returns the value of tau
MathConstants.phi #returns the value of phi
Stats Class
Allows for statistics with int or float datasets
Importing:
from influence.extender.math import stats
#or
from influence.extender.math.stats import Stats
Methods:
Stats.min(dataset)
#returns the lowest value in dataset
Stats.max(dataset)
#returns the highest value in dataset
Stats.range(dataset)
#returns the range of the dataset (max - min)
Stats.mean(dataset)
#returns the mean of the dataset
Stats.variance(dataset)
#returns the variance of the dataset
Stats.standard_deviation(dataset)
#returns the standard deviation of the dataset
Stats.median(dataset)
#returns the median of the dataset
Stats.mode(dataset)
#returns the mode of the dataset as a list
Cos Class
Does permutations and combinations equations, inherits from Stats, and therefore has a dependency to
influence.extender.math.stats
Importing:
from influence.extender.math import cos
#or
from influence.extender.math.cos import Combinatorics
Methods:
Combinatorics.factorial(num)
#returns the factorial of num
Combinatorics.P(n, r)
#returns the permutations equation (n! / (n-r)!)
Combinatorics.C(n, r)
#returns the combinations equation (n! / [(n-r)! * r!])
Frac Class
Represents a fraction
Importing:
from influence.extender.math import frac
#or
from influence.extender.math.frac import Fraction
Initializing:
f = Fraction(num, denom)
#initializes a fraction to numerator num and denominator denom
Methods:
f.simplify()
#simplifies this fraction, if possible
f.__float__() / float(f)
#returns the float value of the fraction
f.__int__() / int(f)
#returns the int value of the fractions
f.__str__() / str(f)
#returns the fraction as a string
f.to_mixed_number(self)
#returns f as a mixed number
Compare:
f1 = Fraction(1, 2)
f2 = Fraction(3, 4)
#fraction allows for
f1 < f2
f1 <= f2
f1 == f2
f1 > f2
f1 >= f2
MixedNum Class
Represents a mixed number
Importing:
from influence.extender.math import mixednum
#or
from influence.extender.math.mixednum import MixedNumber
Initializing:
m = MixedNumber(coeff, num, denom)
#creates a mixed number with a coefficient coeff, numerator num
#and denominator denom
Methods:
m.simplify()
#simplifies this mixed number, if possible
m.__float__() / float(m)
#returns the float value of the mixed number
m.__int__() / int(m)
#returns the int value of the mixed number
m.__str__() / str(m)
#returns the mixed number as a str
m.to_fraction()
#returns the mixed number as a new improper fraction
Compare:
m1 = MixedNumber(1, 2, 3)
m2 = MixedNumber(4, 5, 6)
#fraction allows for
m1 < m2
m1 <= m2
m1 == m2
m1 > m2
m1 >= m2
Grapher Subpackage
Allows for graphing equations
Importing:
from influence.extender.math.grapher.grapher import Equation
from influence.extender.math.grapher.grapher import GraphingError
from influence.extender.math.grapher.grapher import Grapher
Equation Class:
Represents an equation
Initializing:
e = Equation(eq)
#eq cannot be inferred
#ie 4x+3 needs to be 4*x+3
#ie 4x^2+2 needs to be 4*(x**2)+3
GraphingError Class:
GraphingError.HostileAttackError is thrown when a hostile attack is detected with eval
GraphingError.InstanceError is thrown when graphing, the parameter is not an instance of Equation
Grapher Class:
Grapher.graph(eq)
#graphs eq, if and only if isinstance(eq, Equation) returns True
Agrapher Subpackage
Asynchronous graphing is currently a WIP but are still able to be used
Importing:
from influence.extender.math.agrapher.asyncgrapher import Equation
from influence.extender.math.agrapher.asyncgrapher import GraphingError
from influence.extender.math.agrapher.asyncgrapher import Grapher
Agrapher works in the same exact way except Grapher.graph(eq, timetoclose=None), can have a given
timeout
Upgrader Library
Array
Creates an array An array is like a list, except it has a definite, unchangeable size, but elements
can be changed inside of it (unlike a tuple)
Array Class
Makes an array
Importing:
from influence.upgrader.array import arrays
#or
from influence.upgrader.array.arrays import Array
Initializing:
arr = Array(capacity)
#initializes the array to its definite length
Methods:
arr.get(index)
#gets the value at index
#raises IndexError if index out of bounds
arr.set(index, item)
#sets the value at index to item
#raises IndexError if index out of bounds
arr.__iter__() / iter(arr)
#returns an iterator for the array
arr.print()
#prints the array
item in arr
#returns true if item is in arr, false otherwise
arr.find(item)
#returns the index of item if in arr
#returns -1 if not found
Array2D Class
Creates a 2D Array, inherits from Array, and therefore has a dependency to
influence.upgrader.array.arrays
Importing:
from influence.upgrader.array import multiarray
#or
from influence.upgrader.array.multiarray import Array2D
Initializing:
arr = Array2D(r, c)
#creates a 2D array to a fixed amount of rows (r) and columns (c)
Methods:
arr.get(r_index, c_index)
#returns the value at r_index and c_index
#raises IndexError if index out of bounds
arr.set(r_index, c_index, item)
#sets value at r_index and c_index to item
#raises IndexError if index out of bounds
arr.print()
#prints the 2D array
item in arr
#returns true if item is in arr, false otherwise
arr.find(item)
#returns the indices of item in arr, if found
#returns [-1] otherwise
License
MIT License
Copyright (c) 2020 RandomKiddo
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the “Software”), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute,
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES
OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
File details
Details for the file influence-1.1a1.tar.gz
.
File metadata
- Download URL: influence-1.1a1.tar.gz
- Upload date:
- Size: 17.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2273c0801a66300c3634fca0cb9f2e564fcd6b0aa8ee951b8a98f3c3cc066c85 |
|
MD5 | 1ea2e63bdcb9292422a77b85464d1e30 |
|
BLAKE2b-256 | 6b8f6ce0347698bbb875745551b123fe7f11bc72abbad40f4bc75f17efc1d8b0 |
File details
Details for the file influence-1.1a1-py3.8.egg
.
File metadata
- Download URL: influence-1.1a1-py3.8.egg
- Upload date:
- Size: 37.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ddf5d982ecc3b73011288855c291359ae2e1521b74383d4dbf7cdf89fbed0224 |
|
MD5 | 4cc87fd5f53e0d7bb2d4f7a3656e8611 |
|
BLAKE2b-256 | 0a12f8769e709ab59e63f71f9c74080b0cd7747c0c097a46ae1e86835ab6611a |
File details
Details for the file influence-1.1a1-py3-none-any.whl
.
File metadata
- Download URL: influence-1.1a1-py3-none-any.whl
- Upload date:
- Size: 17.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/49.2.0 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e307319e02838a2c3b3ac12f5d95f7fbdfa452d0ba10e9402877d599341a6541 |
|
MD5 | 8aaa431afa5ec64e49dc02e8a0171e48 |
|
BLAKE2b-256 | ea0ba9c3952a9a7f1afb40a761a0c9174bb1e7f5ad4d914684be2cad0e19ba19 |