https://github.com/stanwood/stanwood_python
https://github.com/stanwood/stanwood_python
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stanwood/stanwood_python
- Owner: stanwood
- License: mit
- Created: 2018-11-30T08:22:34.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2021-06-18T18:32:49.000Z (over 4 years ago)
- Last Synced: 2025-01-09T08:15:13.561Z (9 months ago)
- Language: Python
- Size: 80.1 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Stanwood Python Utils
## Description
This project contains Python code snippets for Google App Engine projects.
Supported services:
* firebase
* cloud messaging
* firestore
* authorization
* slack
* github
* contentful
* toggl## Installation
1. Add this package as git submodule:
`git submodule add git@github.com:stanwood/Stanwood_Python_Utils.git lib/stanwood_python_utils`
2. Add package to `appengine_config.py` file:
```
import os
from google.appengine.ext import vendorvendor.add(os.path.join(os.path.dirname(__file__), 'stanwood'))
```