python-dwca-reader 0.16.3__tar.gz → 0.16.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/CHANGES.txt +5 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/PKG-INFO +1 -1
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/read.py +1 -2
- python-dwca-reader-0.16.4/dwca/version.py +1 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/PKG-INFO +1 -1
- python-dwca-reader-0.16.3/dwca/version.py +0 -1
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/AUTHORS +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/LICENSE.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/MANIFEST.in +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/README.rst +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/code_of_conduct.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/__init__.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/darwincore/__init__.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/darwincore/build_dc_terms_list.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/darwincore/terms.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/darwincore/utils.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/descriptors.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/exceptions.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/files.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/helpers.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/minibench.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/rows.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/star_record.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/__init__.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/helpers.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/test_datafile.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/test_descriptors.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/test_dwcareader.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/test_rows.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/test/test_star_record.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/vendor.py +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/SOURCES.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/dependency_links.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/top_level.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/requirements-dev.txt +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/setup.cfg +0 -0
- {python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/setup.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-dwca-reader
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.4
|
|
4
4
|
Summary: A simple Python package to read Darwin Core Archive (DwC-A) files.
|
|
5
5
|
Home-page: https://github.com/BelgianBiodiversityPlatform/python-dwca-reader
|
|
6
6
|
Author: Nicolas Noé - Belgian Biodiversity Platform
|
|
@@ -10,8 +10,6 @@ from tempfile import mkdtemp
|
|
|
10
10
|
from typing import List, Optional, Dict, Any, IO, Tuple
|
|
11
11
|
from xml.etree.ElementTree import Element
|
|
12
12
|
|
|
13
|
-
from pandas.io.parsers import TextFileReader
|
|
14
|
-
|
|
15
13
|
import dwca.vendor
|
|
16
14
|
from dwca.descriptors import ArchiveDescriptor, DataFileDescriptor, shorten_term
|
|
17
15
|
from dwca.exceptions import (
|
|
@@ -229,6 +227,7 @@ class DwCAReader(object):
|
|
|
229
227
|
raise ImportError("Pandas is missing.")
|
|
230
228
|
|
|
231
229
|
from pandas import read_csv
|
|
230
|
+
from pandas.io.parsers import TextFileReader
|
|
232
231
|
|
|
233
232
|
kwargs["delimiter"] = datafile_descriptor.fields_terminated_by
|
|
234
233
|
kwargs["skiprows"] = datafile_descriptor.lines_to_ignore
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.16.4"
|
{python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-dwca-reader
|
|
3
|
-
Version: 0.16.
|
|
3
|
+
Version: 0.16.4
|
|
4
4
|
Summary: A simple Python package to read Darwin Core Archive (DwC-A) files.
|
|
5
5
|
Home-page: https://github.com/BelgianBiodiversityPlatform/python-dwca-reader
|
|
6
6
|
Author: Nicolas Noé - Belgian Biodiversity Platform
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.16.3"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/dwca/darwincore/build_dc_terms_list.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python-dwca-reader-0.16.3 → python-dwca-reader-0.16.4}/python_dwca_reader.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|