Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
common-package
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GSHS Utilities
common-package
Merge requests
!29
Develop
Code
Review changes
Check out branch
Download
Patches
Plain diff
Closed
Develop
develop
into
main
Overview
0
Commits
153
Pipelines
0
Changes
7
Closed
Huihui, Jonathan
requested to merge
develop
into
main
1 year ago
Overview
0
Commits
153
Pipelines
0
Changes
7
Expand
0
0
Merge request reports
Viewing commit
2829e190
Prev
Next
Show latest version
7 files
+
42
−
16
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
7
Search (e.g. *.vue) (Ctrl+P)
2829e190
Merge branch 'feature/pandas-mixin-extra' into 'develop'
· 2829e190
Grant, Josh
authored
8 months ago
Feature/pandas mixin extra See merge request
!38
src/common/mixins/influx.py
+
12
−
1
Options
"""
Scratch file for showing how the mixins get used.
"""
from
influxdb
import
InfluxDBClient
try
:
from
influxdb
import
InfluxDBClient
except
ImportError
:
import
sys
from
common.logz
import
create_logger
logger
=
create_logger
()
logger
.
warn
(
"
Influx extra must be installed to use influx mixin.
"
)
sys
.
exit
(
1
)
from
common.env
import
check_environment
as
ce
Loading