Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/themrinalsinha/tmsutils
https://github.com/themrinalsinha/tmsutils
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/themrinalsinha/tmsutils
- Owner: themrinalsinha
- Created: 2019-09-18T04:05:28.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-23T13:40:55.000Z (over 3 years ago)
- Last Synced: 2024-09-28T09:12:32.486Z (about 2 months ago)
- Language: Python
- Size: 55.7 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# tmsutils [![PyPI version](https://badge.fury.io/py/tmsutils.svg)](https://badge.fury.io/py/tmsutils) [![Maintenance](https://img.shields.io/badge/Maintained%3F-yes-green.svg)](https://github.com/themrinalsinha/tmsutils/graphs/commit-activity) [![Build Status](https://travis-ci.org/TheMrinalSinha/tmsutils.svg?branch=master)](https://travis-ci.org/TheMrinalSinha/tmsutils)
collection of utility functions to make task easy
Function list:
- `csv_to_linear_tsv` - function to convert given csv file into linear tsv file
- `file_split` - function to split text or csv file into given chunks
- `merge_sqlite_db` - function to merge sqlite database file of same schema
- `get_string_product` - function to generate product of the given string of given length
- `get_string_combinations` - function to generate combination of the given string of given length
- `dict_to_object` - function to convert dictionary or json dump into objectClasses:
- `S3` (wrapper for S3 data storages)
- `file_exists` - check if given key exists or not
- `get_temporary_link` - get temporary download link for a given key
- `upload` - upload your file or directory to s3 storage
- `download` - download given key or entire folder from s3 storage- `DictManager` (wrapper to operate on nested dictionaries)
- DictManager takes `dict` as an input and a separator (default = `.`) and gives you the flexibility to manage your nested dictionary taking key as string.
- Example:
```python
>>> data = {"a": {"b": {"c": 123}}}
>>> manager = DictManager(data)Accessing value
>>> manager["a.b.c"]
>>> 123Setting value
>>> manager["a.b.c"] = 1234
>>> data
{"a": {"b": {"c": 1234}}}
```- `FileIO` (wrapper for https://file.io 'snapchat' of file sharing)
- NOTE: it requires 'curl' command line tool to be installed
- `upload` - upload file to 'https://file.io' and returns file download link
- `download` - download file from the given file.io url to given locationCLI (Command line Utilities):
- `gi` (designed to help you create .gitignore files for your git repositories)
- It is used to generate gitignore for `operating systems`, `IDEs`, or `Programming Languages`
- The below command will generate .gitignore for python (PL) and code (IDE) in same place.
```
$ tms gi python,code
```
- In case of any such type which is not valid then
```
$ tms gi python3,abcdx"python3" is invalid, try from "python"
"abcdx" is invalid.
```
- `mdb` (merging sqlite database command)
- It is used to merge sqlite3 database files
```
Options:
--path = default current directory from where command runs
--extension = default is set to sqlite, can also use 'db'It returns db file path if which all other are merged or return No file found.
```
- `sf` (splitting files (eg: txt, csv, tsv etc..) into equal chunks of given size)
- takes file path as an argument, it splits the file by default into 10 chunks
```
Options:
FILEPATH - path to the file
--chunk, -c number of chunks (default=10)
```Another Installation method:
```shell
$ pip install tmsutils --extra-index-url=https://dl.mrinal.xyz/pypi/
```