Skip to main content

Common use backend for python done easy.

Project description

mpyez

Common use utilities for python done easy.

GitHub-licence GitHub top language GitHub contributors Github Issues GitHub PRs

What is mpyez

mpyez is a library made specifically to make the daily mundane tasks as easily doable as possible.

  • Want to get a list of all python files in your folder? Use ListOfFilesFromExtensions class.
  • Want to convert a nested list to a 1D list? Use nested_list_to_list().
  • Want to convert a simple list to nested list? Use list_to_nested_list().

This library is intended to lower complexity of daily recurring tasks.

How to install

Use pip: pip install mpyez

Examples

Let's say, you want to convert a nested list

>>> my_nested_list = [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10]]

to a 1D list, with mpyez you can do it using nested_list_to_list function in ez_list module (see, Current implementations for details).

>>> nested_list_to_list(my_nested_list)

>>> [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

Modules

Current Implementations


  1. os_

    1. ListOfFilesFromExtensions: To pick files of specific extensions.
    2. ListOfFilesFromNames: To pick files matching a specific name pattern.
    3. move_directory_contents: To move directory contents to a new location.
  2. list_

    1. difference_between_lists: To get the difference between two lists.
    2. equal_lists: To check if two lists are equal.
    3. get_object_count: To get an object count from the list.
    4. index: To get the index of an element in the list.
    5. is_contained: To check if a list is contained within another list.
    6. join_lists: To join multiple lists into a single one.
    7. list_to_nested_list: To convert a list to a nested list.
    8. move_element_in_list: To move a list element to a new position.
    9. nested_list_to_list: To convert a nested list to a flat list.
    10. remove_: To remove a value from a list.
    11. replace_at_index: To replace values at a specific index in the list.
    12. replace_with_value: To replace values with a given value in the list.
    13. sort_: To sort a list.
    14. string_list_to_numeric: To convert string values in a list to numeric.
  3. read_files

    1. read_txt_file: To read an entire text file.
    2. get_lines_from_txt_file: To read specific lines from a text file.
  4. dict_

    1. get_key_index: To get the index of a key in a dictionary.
    2. merge_dictionaries: To merge dictionaries.
    3. pretty_print: To print a dictionary in a readable format.
    4. sort_dictionary: To sort a dictionary.
  5. array_

    1. moving_average: To calculate the moving average for an array.
    2. reshape_with_padding: To reshape an array with padding.
    3. transpose1d: To transpose a 1D array.
  6. plotting_

    1. plot_two_column_file: To plot data from a two-column file.
    2. plot_xy: To plot x vs. y data.
    3. plot_with_dual_axes: To plot with dual axes for two datasets.

Future Implementations

  1. read_files

    1. Implementation of reading other file formats, especially .csv.
    2. Whole file reading using generators to reduce memory issues.
  2. dict_

    1. Additional dictionary manipulation methods such as updating, retrieval, and comparisons.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mpyez-0.0.7.tar.gz (20.6 kB view details)

Uploaded Source

Built Distribution

mpyez-0.0.7-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file mpyez-0.0.7.tar.gz.

File metadata

  • Download URL: mpyez-0.0.7.tar.gz
  • Upload date:
  • Size: 20.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for mpyez-0.0.7.tar.gz
Algorithm Hash digest
SHA256 15b74bdc01ecf7211f554e12eda108bc180a026196cb79011fc3da5b0fb844ed
MD5 c2740cf89443dfda102ebb5cd2384635
BLAKE2b-256 3b3b91d4a278de2f6598e13625b25b8d3f0916af86dd8b294f7bd02f5fdb6b18

See more details on using hashes here.

File details

Details for the file mpyez-0.0.7-py3-none-any.whl.

File metadata

  • Download URL: mpyez-0.0.7-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for mpyez-0.0.7-py3-none-any.whl
Algorithm Hash digest
SHA256 cbfabdbcbcbcb007a3ece2b495eff013ee1b6e1c44594fa8d5298a787920860f
MD5 aeac5821fec3efea356d42ade9670e28
BLAKE2b-256 7cc5ed9fe8da8dcaa2d942a41b8b848eef7eeb3d8bda946999daa2387b6c5609

See more details on using hashes here.

Supported by

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