Skip to main content

An open source library containing multiple known STEM equations in a functional form.

Project description

simple-equ

An open source library containing multiple known STEM equations in a functional form.

Installation

pip install simple-equ

(For versions 3.8 or newer)

Optional: Use a venv (virtual environment).

Usage

simple-equ is simple, yet practical. That is the problem is solves. Sure, someone with some knowledge in their field can implement this library's functionality. But, let us look on how that would realistically look like:

` a = 3 b = 4 c = 4

""" Here is an example of implementing a basic quadratic equation """ import math

delta = b**2 - 4 * a * c solution1 = (-b + math.sqrt(delta)) / 2a solution2 = (-b - math.sqrt(delta)) / 2a

""" Here, just an import and a function call is needed! """

import simple_equ.math_general.algebra as sa

result = sa.basic_quadratic(a,b,c) `

sin linearreg

You just import the field of your liking, and then boom!

Structure

The library is structured into fields. These fields have their own folder aka modules. However, a field can have multiple subsets. These subsets are usually present in the form of python files. For example: algebra.py and geometry.py, are examples of subfields of the general math field called math_general.

To import something in a practical sense in simple_equ, the structure looks like this:

import simple_equ.field.subfield as ...

Practical examples include: import simple_equ.math_general.geometry as sg import simple_equ.economics.statistics as se

Contributing

Contributions are always welcome!

The project encourages a community-driven approach. Everyone can contribute. Be sure to be kind and respectful. Do not assume that something is known to the contributor you are talking to just because you know it and do not be rude or even made comments about their skill. This behaviour is not welcome here.

See contributing.md for ways to get started.

Features

  • Community driven and open
  • Functions from different fields
  • Reusable
  • Highly accurate
  • Simple yet practical

Do not forget to star the repo if you like it! It means a lot! Thank you for reading this document and getting involved with our community :)

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

simple_equ-1.2.5.tar.gz (23.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simple_equ-1.2.5-py3-none-any.whl (26.8 kB view details)

Uploaded Python 3

File details

Details for the file simple_equ-1.2.5.tar.gz.

File metadata

  • Download URL: simple_equ-1.2.5.tar.gz
  • Upload date:
  • Size: 23.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_equ-1.2.5.tar.gz
Algorithm Hash digest
SHA256 50ad1db7030826aba28bf1772ecdaa7d00f2d4ad50c538cfd939f6efde507539
MD5 34dd55808579f73e604e0a39a5f5614c
BLAKE2b-256 69cc659cecda4f71fc124231b057580bab85c3f8231832a970ae6c9141a9a2eb

See more details on using hashes here.

File details

Details for the file simple_equ-1.2.5-py3-none-any.whl.

File metadata

  • Download URL: simple_equ-1.2.5-py3-none-any.whl
  • Upload date:
  • Size: 26.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for simple_equ-1.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 5431c9f7362bf14d57b8fb61d1f33d5ac925c32d03c57f10ec16adbb1fb8309a
MD5 3b1f9de25c2a8a9617c4d01e86343ce1
BLAKE2b-256 f906dc014d9868248bf0ba67111c3a633b75f3837b747d01f2cb01831546b00d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page