Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
SaQC
Manage
Activity
Members
Labels
Plan
Issues
36
Issue boards
Milestones
Wiki
Code
Merge requests
8
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rdm-software
SaQC
Merge requests
!717
rewrote config reading and parsing
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
rewrote config reading and parsing
more_input_options
into
develop
Overview
43
Commits
8
Pipelines
8
Changes
7
Merged
Bert Palm
requested to merge
more_input_options
into
develop
1 year ago
Overview
43
Commits
8
Pipelines
8
Changes
2
Expand
addresses
#437 (closed)
,
#296
and
#378 (closed)
Edited
1 year ago
by
Bert Palm
👍
0
👎
0
Merge request reports
Compare
version 3
version 7
3a3ba2fe
1 year ago
version 6
95577a22
1 year ago
version 5
bc0314e3
1 year ago
version 4
86120828
1 year ago
version 3
2699aba7
1 year ago
version 2
281ce9c6
1 year ago
version 1
6b47494a
1 year ago
develop (base)
and
version 4
latest version
dd325b8a
8 commits,
1 year ago
version 7
3a3ba2fe
7 commits,
1 year ago
version 6
95577a22
5 commits,
1 year ago
version 5
bc0314e3
4 commits,
1 year ago
version 4
86120828
3 commits,
1 year ago
version 3
2699aba7
3 commits,
1 year ago
version 2
281ce9c6
2 commits,
1 year ago
version 1
6b47494a
1 commit,
1 year ago
Show latest version
2 files
+
3
−
8
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
saqc/parsing/reader.py
+
2
−
7
Options
@@ -14,16 +14,16 @@ import json
import
logging
import
warnings
from
pathlib
import
Path
from
typing
import
TextIO
,
Iterable
,
Any
,
Tuple
,
List
,
Dict
,
Callab
le
from
typing
import
Any
,
Callable
,
Dict
,
Iterable
,
List
,
TextIO
,
Tup
le
from
urllib.error
import
URLError
from
urllib.request
import
urlopen
import
pandas
as
pd
from
saqc
import
SaQC
from
saqc.exceptions
import
ParsingError
from
saqc.lib.tools
import
isQuoted
from
saqc.parsing.visitor
import
ConfigFunctionParser
from
saqc.exceptions
import
ParsingError
def
_readLines
(
@@ -79,11 +79,6 @@ def readFile(fname, skip=1) -> pd.DataFrame:
def
fromConfig
(
fname
,
*
args
,
**
func_kwargs
):
warnings
.
warn
(
"
fromConfig is deprecated, use
"
"
`ConfigReader(*args, **func_kwargs).readCsv(fname)` instead.
"
,
DeprecationWarning
,
)
return
ConfigReader
(
*
args
,
**
func_kwargs
).
readCsv
(
fname
).
run
()
Loading