René's URL Explorer Experiment


Title: Error in DataLoggerFiles and DataLoggerFileColumns · Issue #132 · ODM2/ODM2PythonAPI · GitHub

Open Graph Title: Error in DataLoggerFiles and DataLoggerFileColumns · Issue #132 · ODM2/ODM2PythonAPI

X Title: Error in DataLoggerFiles and DataLoggerFileColumns · Issue #132 · ODM2/ODM2PythonAPI

Description: @lsetiawan I'm trying to run a JupyterNotebook with ODM2 PythonAPI and I'm getting errors acessing DataLoggerFiles and DataLoggerFileColumns When I run: from odm2api.ODMconnection import dbconnection import odm2api.ODM2.services.readServ...

Open Graph Description: @lsetiawan I'm trying to run a JupyterNotebook with ODM2 PythonAPI and I'm getting errors acessing DataLoggerFiles and DataLoggerFileColumns When I run: from odm2api.ODMconnection import dbconnecti...

X Description: @lsetiawan I'm trying to run a JupyterNotebook with ODM2 PythonAPI and I'm getting errors acessing DataLoggerFiles and DataLoggerFileColumns When I run: from odm2api.ODMconnection import db...

Opengraph URL: https://github.com/ODM2/ODM2PythonAPI/issues/132

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Error in DataLoggerFiles and DataLoggerFileColumns","articleBody":"@lsetiawan \r\n\r\nI'm trying to run a JupyterNotebook with ODM2 PythonAPI and I'm getting errors acessing DataLoggerFiles and DataLoggerFileColumns\r\nWhen I run:\r\n```\r\nfrom odm2api.ODMconnection import dbconnection\r\nimport odm2api.ODM2.services.readService as odm2\r\nfrom odm2api.ODM2.models import *\r\nsession_factory = dbconnection.createConnection('postgresql', 'x.x.x.x', 'db', \r\n                                                'user', 'pwd')\r\nDBSession = session_factory.getSession()\r\n\r\ntemplate_dataloggerfile =  DBSession.query(DataLoggerFiles).filter_by(DataLoggerFileID=9).one()\r\nprint(template_dataloggerfile)\r\n```\r\nI get:\r\n\r\n\r\n```\r\nProgrammingErrorTraceback (most recent call last)\r\n\u003cipython-input-5-3dd04b4287d7\u003e in \u003cmodule\u003e()\r\n----\u003e 1 template_dataloggerfile =  DBSession.query(DataLoggerFiles).filter_by(DataLoggerFileID=9).one()\r\n      2 print(template_dataloggerfile)\r\n      3 # dlfcs = DBSession.query(DataLoggerFileColumns).filter_by(DataLoggerFileID=9)\r\n      4 # for dlfc in dlfcs:\r\n      5 #    print(dlfc)\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in one(self)\r\n   2812         \"\"\"\r\n   2813         try:\r\n-\u003e 2814             ret = self.one_or_none()\r\n   2815         except orm_exc.MultipleResultsFound:\r\n   2816             raise orm_exc.MultipleResultsFound(\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in one_or_none(self)\r\n   2782 \r\n   2783         \"\"\"\r\n-\u003e 2784         ret = list(self)\r\n   2785 \r\n   2786         l = len(ret)\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in __iter__(self)\r\n   2853         if self._autoflush and not self._populate_existing:\r\n   2854             self.session._autoflush()\r\n-\u003e 2855         return self._execute_and_instances(context)\r\n   2856 \r\n   2857     def __str__(self):\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in _execute_and_instances(self, querycontext)\r\n   2876             close_with_result=True)\r\n   2877 \r\n-\u003e 2878         result = conn.execute(querycontext.statement, self._params)\r\n   2879         return loading.instances(querycontext.query, result, querycontext)\r\n   2880 \r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in execute(self, object, *multiparams, **params)\r\n    943             raise exc.ObjectNotExecutableError(object)\r\n    944         else:\r\n--\u003e 945             return meth(self, multiparams, params)\r\n    946 \r\n    947     def _execute_function(self, func, multiparams, params):\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/sql/elements.pyc in _execute_on_connection(self, connection, multiparams, params)\r\n    261     def _execute_on_connection(self, connection, multiparams, params):\r\n    262         if self.supports_execution:\r\n--\u003e 263             return connection._execute_clauseelement(self, multiparams, params)\r\n    264         else:\r\n    265             raise exc.ObjectNotExecutableError(self)\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_clauseelement(self, elem, multiparams, params)\r\n   1051             compiled_sql,\r\n   1052             distilled_params,\r\n-\u003e 1053             compiled_sql, distilled_params\r\n   1054         )\r\n   1055         if self._has_events or self.engine._has_events:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_context(self, dialect, constructor, statement, parameters, *args)\r\n   1187                 parameters,\r\n   1188                 cursor,\r\n-\u003e 1189                 context)\r\n   1190 \r\n   1191         if self._has_events or self.engine._has_events:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _handle_dbapi_exception(self, e, statement, parameters, cursor, context)\r\n   1392                 util.raise_from_cause(\r\n   1393                     sqlalchemy_exception,\r\n-\u003e 1394                     exc_info\r\n   1395                 )\r\n   1396             else:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/util/compat.pyc in raise_from_cause(exception, exc_info)\r\n    201     exc_type, exc_value, exc_tb = exc_info\r\n    202     cause = exc_value if exc_value is not exception else None\r\n--\u003e 203     reraise(type(exception), exception, tb=exc_tb, cause=cause)\r\n    204 \r\n    205 if py3k:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_context(self, dialect, constructor, statement, parameters, *args)\r\n   1180                         statement,\r\n   1181                         parameters,\r\n-\u003e 1182                         context)\r\n   1183         except BaseException as e:\r\n   1184             self._handle_dbapi_exception(\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/default.pyc in do_execute(self, cursor, statement, parameters, context)\r\n    468 \r\n    469     def do_execute(self, cursor, statement, parameters, context=None):\r\n--\u003e 470         cursor.execute(statement, parameters)\r\n    471 \r\n    472     def do_execute_no_params(self, cursor, statement, context=None):\r\n\r\nProgrammingError: (psycopg2.ProgrammingError) column dataloggerfiles.actionid does not exist\r\nLINE 1: ...rfileid AS odm2_dataloggerfiles_dataloggerfileid, odm2.datal...\r\n                                                             ^\r\n [SQL: 'SELECT odm2.dataloggerfiles.dataloggerfileid AS odm2_dataloggerfiles_dataloggerfileid, odm2.dataloggerfiles.actionid AS odm2_dataloggerfiles_actionid, odm2.dataloggerfiles.dataloggerfilename AS odm2_dataloggerfiles_dataloggerfilename, odm2.dataloggerfiles.dataloggeroutputfiledescription AS odm2_dataloggerfiles_dataloggeroutputfiledescription, odm2.dataloggerfiles.dataloggeroutputfilelink AS odm2_dataloggerfiles_dataloggeroutputfilelink \\nFROM odm2.dataloggerfiles \\nWHERE odm2.dataloggerfiles.dataloggerfileid = %(dataloggerfileid_1)s'] [parameters: {'dataloggerfileid_1': 9}]\r\n\r\n```\r\n\r\nWhen I then run:\r\n```\r\ndlfcs = DBSession.query(DataLoggerFileColumns).filter_by(DataLoggerFileID=9)\r\nfor dlfc in dlfcs:\r\n    print(dlfc)\r\n```\r\nI get: \r\n```\r\n\r\nProgrammingErrorTraceback (most recent call last)\r\n\u003cipython-input-12-27db1134ef98\u003e in \u003cmodule\u003e()\r\n      2 #print(template_dataloggerfile)\r\n      3 dlfcs = DBSession.query(DataLoggerFileColumns).filter_by(DataLoggerFileID=9)\r\n----\u003e 4 for dlfc in dlfcs:\r\n      5     print(dlfc)\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in __iter__(self)\r\n   2853         if self._autoflush and not self._populate_existing:\r\n   2854             self.session._autoflush()\r\n-\u003e 2855         return self._execute_and_instances(context)\r\n   2856 \r\n   2857     def __str__(self):\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/orm/query.pyc in _execute_and_instances(self, querycontext)\r\n   2876             close_with_result=True)\r\n   2877 \r\n-\u003e 2878         result = conn.execute(querycontext.statement, self._params)\r\n   2879         return loading.instances(querycontext.query, result, querycontext)\r\n   2880 \r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in execute(self, object, *multiparams, **params)\r\n    943             raise exc.ObjectNotExecutableError(object)\r\n    944         else:\r\n--\u003e 945             return meth(self, multiparams, params)\r\n    946 \r\n    947     def _execute_function(self, func, multiparams, params):\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/sql/elements.pyc in _execute_on_connection(self, connection, multiparams, params)\r\n    261     def _execute_on_connection(self, connection, multiparams, params):\r\n    262         if self.supports_execution:\r\n--\u003e 263             return connection._execute_clauseelement(self, multiparams, params)\r\n    264         else:\r\n    265             raise exc.ObjectNotExecutableError(self)\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_clauseelement(self, elem, multiparams, params)\r\n   1051             compiled_sql,\r\n   1052             distilled_params,\r\n-\u003e 1053             compiled_sql, distilled_params\r\n   1054         )\r\n   1055         if self._has_events or self.engine._has_events:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_context(self, dialect, constructor, statement, parameters, *args)\r\n   1187                 parameters,\r\n   1188                 cursor,\r\n-\u003e 1189                 context)\r\n   1190 \r\n   1191         if self._has_events or self.engine._has_events:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _handle_dbapi_exception(self, e, statement, parameters, cursor, context)\r\n   1392                 util.raise_from_cause(\r\n   1393                     sqlalchemy_exception,\r\n-\u003e 1394                     exc_info\r\n   1395                 )\r\n   1396             else:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/util/compat.pyc in raise_from_cause(exception, exc_info)\r\n    201     exc_type, exc_value, exc_tb = exc_info\r\n    202     cause = exc_value if exc_value is not exception else None\r\n--\u003e 203     reraise(type(exception), exception, tb=exc_tb, cause=cause)\r\n    204 \r\n    205 if py3k:\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/base.pyc in _execute_context(self, dialect, constructor, statement, parameters, *args)\r\n   1180                         statement,\r\n   1181                         parameters,\r\n-\u003e 1182                         context)\r\n   1183         except BaseException as e:\r\n   1184             self._handle_dbapi_exception(\r\n\r\n/opt/conda/envs/python2/lib/python2.7/site-packages/sqlalchemy/engine/default.pyc in do_execute(self, cursor, statement, parameters, context)\r\n    468 \r\n    469     def do_execute(self, cursor, statement, parameters, context=None):\r\n--\u003e 470         cursor.execute(statement, parameters)\r\n    471 \r\n    472     def do_execute_no_params(self, cursor, statement, context=None):\r\n\r\nProgrammingError: (psycopg2.ProgrammingError) column dataloggerfilecolumns.measurmentequation does not exist\r\nLINE 1: ... AS odm2_dataloggerfilecolumns_columndescription, odm2.datal...\r\n                                                             ^\r\nHINT:  Perhaps you meant to reference the column \"dataloggerfilecolumns.measurementequation\".\r\n [SQL: 'SELECT odm2.dataloggerfilecolumns.dataloggerfilecolumnid AS odm2_dataloggerfilecolumns_dataloggerfilecolumnid, odm2.dataloggerfilecolumns.resultid AS odm2_dataloggerfilecolumns_resultid, odm2.dataloggerfilecolumns.dataloggerfileid AS odm2_dataloggerfilecolumns_dataloggerfileid, odm2.dataloggerfilecolumns.instrumentoutputvariableid AS odm2_dataloggerfilecolumns_instrumentoutputvariableid, odm2.dataloggerfilecolumns.columnlabel AS odm2_dataloggerfilecolumns_columnlabel, odm2.dataloggerfilecolumns.columndescription AS odm2_dataloggerfilecolumns_columndescription, odm2.dataloggerfilecolumns.measurmentequation AS odm2_dataloggerfilecolumns_measurmentequation, odm2.dataloggerfilecolumns.scaninterval AS odm2_dataloggerfilecolumns_scaninterval, odm2.dataloggerfilecolumns.scanintervalunitsid AS odm2_dataloggerfilecolumns_scanintervalunitsid, odm2.dataloggerfilecolumns.recordinginterval AS odm2_dataloggerfilecolumns_recordinginterval, odm2.dataloggerfilecolumns.recordingintervalunitsid AS odm2_dataloggerfilecolumns_recordingintervalunitsid, odm2.dataloggerfilecolumns.aggregationstatisticcv AS odm2_dataloggerfilecolumns_aggregationstatisticcv \\nFROM odm2.dataloggerfilecolumns \\nWHERE odm2.dataloggerfilecolumns.dataloggerfileid = %(dataloggerfileid_1)s'] [parameters: {'dataloggerfileid_1': 9}]\r\n\r\n```\r\n\r\nIt looks like in the first one odm2.dataloggerfiles.actionid is not a column.\r\n\r\nIn the second one dataloggerfilecolumns.measurementequation is misspelled I'm trying to run this on jupyter.cuahsi.org it has odm2api v0.6.0.a0 that appears to be the latest release. I also tried setting up a new conda environment but I got the same result.  \r\n\r\n ","author":{"url":"https://github.com/miguelcleon","@type":"Person","name":"miguelcleon"},"datePublished":"2017-12-18T18:35:23.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":5},"url":"https://github.com/132/ODM2PythonAPI/issues/132"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:a274cb91-8cad-218c-9cfd-44da14f680da
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-id8E62:84D9B:13D6DC6:1C3BCE0:6A5A2335
html-safe-nonce9081dfe579dce96ebcddefc573c765d4c6de9ee96a897573f71b1194d4210b6e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI4RTYyOjg0RDlCOjEzRDZEQzY6MUMzQkNFMDo2QTVBMjMzNSIsInZpc2l0b3JfaWQiOiI2MzEwNjQzMTYyNTg4NzgzNDEzIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac399a17c018e3216643acfa1d14839dab1f94a5fd8ea93821847691a1262dcd65
hovercard-subject-tagissue:282979591
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/ODM2/ODM2PythonAPI/132/issue_layout
twitter:imagehttps://opengraph.githubassets.com/380407bc4e27968bb2a5658faa38be272b1fb030129c721496fdfbdbe1ddd564/ODM2/ODM2PythonAPI/issues/132
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/380407bc4e27968bb2a5658faa38be272b1fb030129c721496fdfbdbe1ddd564/ODM2/ODM2PythonAPI/issues/132
og:image:alt@lsetiawan I'm trying to run a JupyterNotebook with ODM2 PythonAPI and I'm getting errors acessing DataLoggerFiles and DataLoggerFileColumns When I run: from odm2api.ODMconnection import dbconnecti...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemiguelcleon
hostnamegithub.com
expected-hostnamegithub.com
Nonee31742e80bbd077fd5679c13ed870ce4e0c13803a2fa5beaae557b6769de2c8a
turbo-cache-controlno-preview
go-importgithub.com/ODM2/ODM2PythonAPI git https://github.com/ODM2/ODM2PythonAPI.git
octolytics-dimension-user_id12091612
octolytics-dimension-user_loginODM2
octolytics-dimension-repository_id34542098
octolytics-dimension-repository_nwoODM2/ODM2PythonAPI
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id34542098
octolytics-dimension-repository_network_root_nwoODM2/ODM2PythonAPI
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasec9fcdbf98c619d1561ed843fa01d9766a32b5cd9
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/ODM2/ODM2PythonAPI/issues/132#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FODM2%2FODM2PythonAPI%2Fissues%2F132
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub Copilot appDirect agents from issue to mergehttps://github.com/features/ai/github-app
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
View all resourceshttps://github.com/resources
GitHub SponsorsFund open source developershttps://github.com/open-source/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/open-source/accelerator
GitHub Starshttps://stars.github.com
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/enterprise/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2FODM2%2FODM2PythonAPI%2Fissues%2F132
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=ODM2%2FODM2PythonAPI
Reloadhttps://github.com/ODM2/ODM2PythonAPI/issues/132
Reloadhttps://github.com/ODM2/ODM2PythonAPI/issues/132
Reloadhttps://github.com/ODM2/ODM2PythonAPI/issues/132
Please reload this pagehttps://github.com/ODM2/ODM2PythonAPI/issues/132
ODM2 https://github.com/ODM2
ODM2PythonAPIhttps://github.com/ODM2/ODM2PythonAPI
Notifications https://github.com/login?return_to=%2FODM2%2FODM2PythonAPI
Fork 13 https://github.com/login?return_to=%2FODM2%2FODM2PythonAPI
Star 5 https://github.com/login?return_to=%2FODM2%2FODM2PythonAPI
Code https://github.com/ODM2/ODM2PythonAPI
Issues 29 https://github.com/ODM2/ODM2PythonAPI/issues
Pull requests 1 https://github.com/ODM2/ODM2PythonAPI/pulls
Actions https://github.com/ODM2/ODM2PythonAPI/actions
Projects https://github.com/ODM2/ODM2PythonAPI/projects
Wiki https://github.com/ODM2/ODM2PythonAPI/wiki
Security and quality 0 https://github.com/ODM2/ODM2PythonAPI/security
Insights https://github.com/ODM2/ODM2PythonAPI/pulse
Code https://github.com/ODM2/ODM2PythonAPI
Issues https://github.com/ODM2/ODM2PythonAPI/issues
Pull requests https://github.com/ODM2/ODM2PythonAPI/pulls
Actions https://github.com/ODM2/ODM2PythonAPI/actions
Projects https://github.com/ODM2/ODM2PythonAPI/projects
Wiki https://github.com/ODM2/ODM2PythonAPI/wiki
Security and quality https://github.com/ODM2/ODM2PythonAPI/security
Insights https://github.com/ODM2/ODM2PythonAPI/pulse
Error in DataLoggerFiles and DataLoggerFileColumnshttps://github.com/ODM2/ODM2PythonAPI/issues/132#top
https://github.com/miguelcleon
miguelcleonhttps://github.com/miguelcleon
on Dec 18, 2017https://github.com/ODM2/ODM2PythonAPI/issues/132#issue-282979591
@lsetiawanhttps://github.com/lsetiawan
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.