{"id":15482511,"url":"https://github.com/btr1975/persistentdatatools","last_synced_at":"2025-04-22T15:41:29.327Z","repository":{"id":62577929,"uuid":"58758148","full_name":"btr1975/persistentdatatools","owner":"btr1975","description":"A Module to Help Make Persistent Data a Little Easier","archived":false,"fork":false,"pushed_at":"2021-08-31T21:22:09.000Z","size":113,"stargazers_count":2,"open_issues_count":1,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2024-04-26T17:23:29.591Z","etag":null,"topics":["library","persistence","python","python3"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/btr1975.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-05-13T17:03:32.000Z","updated_at":"2021-08-31T21:21:37.000Z","dependencies_parsed_at":"2022-11-03T19:31:33.416Z","dependency_job_id":null,"html_url":"https://github.com/btr1975/persistentdatatools","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btr1975%2Fpersistentdatatools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btr1975%2Fpersistentdatatools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btr1975%2Fpersistentdatatools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/btr1975%2Fpersistentdatatools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/btr1975","download_url":"https://codeload.github.com/btr1975/persistentdatatools/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250269951,"owners_count":21402968,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["library","persistence","python","python3"],"created_at":"2024-10-02T05:09:20.532Z","updated_at":"2025-04-22T15:41:29.295Z","avatar_url":"https://github.com/btr1975.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"| BRANCH | STATUS |\n|---|---|\n| master | [![Unit-Testing, Coverage, Linting](https://github.com/btr1975/persistentdatatools/actions/workflows/test-coverage-lint.yml/badge.svg?branch=master)](https://github.com/btr1975/persistentdatatools/actions/workflows/test-coverage-lint.yml) |\n| develop | [![Unit-Testing, Coverage, Linting](https://github.com/btr1975/persistentdatatools/actions/workflows/test-coverage-lint.yml/badge.svg?branch=develop)](https://github.com/btr1975/persistentdatatools/actions/workflows/test-coverage-lint.yml) |\n\n[![Downloads](https://pepy.tech/badge/persistentdatatools)](https://pepy.tech/project/persistentdatatools)\n[![Supported Versions](https://img.shields.io/pypi/pyversions/persistentdatatools.svg)](https://pypi.org/project/persistentdatatools)\n\n# Python Script: persistentdatatools\n\n### [Documentation](https://persistentdatatools.readthedocs.io/)\n\n### Written By: Benjamin P. Trachtenberg \n### If you have any questions e-mail me\n\n### Contact Information: e_ben_75-python@yahoo.com\n\n### LinkedIn: [Ben Trachtenberg](https://www.linkedin.com/in/ben-trachtenberg-3a78496)\n### Docker Hub: [Docker Hub](https://hub.docker.com/r/btr1975)\n### PyPi Page for [persistentdatatools](https://pypi.python.org/pypi/persistentdatatools)\n\n### Requirements\n\n* Nothing Specific besides Python 3\n\n### Installation\n\n* From source \"setup.py install\"\n* From pip \"pip install persistentdatatools\"\n\n### Languages\n\n* Python\n\n### About\n\nThis is a library used to manipulate, and save data quickly.  It is just a bunch of shortcuts I use quite a bit to manipulate saved data.\n\n### Functions included in v2.0.0\n* list_to_file(orig_list, file_name, file_location)\n* file_to_list(file_name, file_location)\n* csv_to_dict(file_name, file_location)\n* store_object(file_name, save_key, file_location, object_to_store=None)\n* retrieve_object_from_file(file_name, save_key, file_location)\n* delete_object_from_file(file_name, save_key, file_location)\n* verify_key_in_shelve(file_name, save_key, file_location)\n* remove_spaces(string_item)\n* remove_spaces_add_hyphen(string_item)\n* remove_extra_spaces(string_item)\n* verify_file_exists(file_name, file_location)\n* verify_directory(directory_name, directory_location, directory_create=False)\n* file_name_increase(file_name, file_location)\n* dict_to_csv(orig_dict, file_name, field_names_tuple, file_location)\n* remove_symbol_add_symbol(string_item, remove_symbol, add_symbol)\n* list_files_in_directory(full_directory_path)\n\n### Functions added in v2.2.2\n* get_keys_from_shelve(file_name, file_location)\n\n### Update to Functions in v2.2.5\n* retrieve_object_from_file: \nUses get to retrieve key now, will not throw exception if it doesn't exist\n\n* verify_key_in_shelve: \nUses get to retreive key now, will still return True, or False\n\n### Functions added in v2.2.5\n* split_string_retain_spaces(string)\n* split_strings_in_list_retain_spaces(orig_list)\n* join_split_string(split_string)\n\n### Functions added in v2.2.6\n* random_line_data(chars_per_line=80)\n* random_data(line_count=1, chars_per_line=80)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtr1975%2Fpersistentdatatools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbtr1975%2Fpersistentdatatools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbtr1975%2Fpersistentdatatools/lists"}