Gumo Core Library
Project description
gumo-core
Configuration
from gumo.core import configure as core_configure core_configure( google_cloud_project='<Google Cloud Platform Project Name>', google_cloud_location='<Project Main Location (Region)>', )
If you need to load environment variables of app.yaml:
import os import flask from gumo.core import MockAppEngineEnvironment # from gumo.core import configure as core_configure # The call to MockAppEngineEnvironment must precede any other initialization code. if __name__ == '__main__': app_yaml_path = os.path.join( os.path.dirname(os.path.abspath(__file__)), 'app.yaml' ) MockAppEngineEnvironment.load_app_yaml(app_yaml_path=app_yaml_path) # core_configure() # Application Configurations ... app = flask.Flask(__name__) if __name__ == '__main__': app.run(host='0.0.0.0', port=8080, debug=True)
Setup Development Environment
$ git clone https://github.com/gumo-py/gumo-core.git
$ cd gumo-core
$ make setup
Build and Test
$ make build
$ make test
EntityKey
from gumo.core import EntityKey from gumo.core import EntityKeyFactory key = EntityKeyFactory().build(kind='Book', name='978-1-4028-9462-6') assert isinstance(key, EntityKey) assert key.key_literal() == "Key('Book', '978-1-4028-9462-6')" assert key.key_path() == 'Book:978-1-4028-9462-6' assert key.key_url() == 'Book/978-1-4028-9462-6'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size gumo_core-0.1.4-py3-none-any.whl (12.2 kB) | File type Wheel | Python version py3 | Upload date | Hashes View |
Filename, size gumo-core-0.1.4.tar.gz (8.6 kB) | File type Source | Python version None | Upload date | Hashes View |
Close
Hashes for gumo_core-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2154b51c20025ca2b39dae46b6b97eb427d7c80599e21f5dbdcd1b4d01fba652 |
|
MD5 | 201359b84a5fed3b28aa26e6f2f9dcbc |
|
BLAKE2-256 | 800079b620854e51116c99988dd8f276efe14dcbfcb37c621c4eaec004f8a143 |