https://github.com/devinit/python-utilities
A home for useful python functions with cross-cutting potential across projects
https://github.com/devinit/python-utilities
Last synced: 7 months ago
JSON representation
A home for useful python functions with cross-cutting potential across projects
- Host: GitHub
- URL: https://github.com/devinit/python-utilities
- Owner: devinit
- Created: 2022-04-04T09:23:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-04T13:10:57.000Z (almost 4 years ago)
- Last Synced: 2025-02-25T07:29:17.922Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Utility Functions
A home for useful python functions with cross-cutting potential across projects
## Modules
### 'google-docs.py'
A function to extract data from both google sheets and google docs. Here you can find a function for sheets - pull_sheet_data_values - and docs - pull_doc_values.
In the code, you can see a brief explanation on how to create your own credentials to allow these functions to work.
Requirements (google-auth==2.6.0 and google-api-python-client==2.40.0) are specified in 'requirements.txt'.
## Contribution
Before adding a new function, please check to make sure there isn't an existing module in which the function could belong.
If there is none, create a new module with as generic a name as possible e.g. if you're adding a function that splits strings,
create a module called `strings.py` and add the function there.
Document your utility functions, clearly explaining their parameters and usage - do this both in the code and this read me under `modules`