datachain 0.2.6__py3-none-any.whl → 0.2.7__py3-none-any.whl

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.

Potentially problematic release.


This version of datachain might be problematic. Click here for more details.

datachain/__init__.py CHANGED
@@ -2,8 +2,6 @@ from datachain.lib.dc import C, DataChain
2
2
  from datachain.lib.feature import Feature
3
3
  from datachain.lib.feature_utils import pydantic_to_feature
4
4
  from datachain.lib.file import File, FileError, FileFeature, IndexedFile, TarVFile
5
- from datachain.lib.image import ImageFile, convert_images
6
- from datachain.lib.text import convert_text
7
5
  from datachain.lib.udf import Aggregator, Generator, Mapper
8
6
  from datachain.lib.utils import AbstractUDF, DataChainError
9
7
  from datachain.query.dataset import UDF as BaseUDF # noqa: N811
@@ -23,12 +21,9 @@ __all__ = [
23
21
  "FileError",
24
22
  "FileFeature",
25
23
  "Generator",
26
- "ImageFile",
27
24
  "IndexedFile",
28
25
  "Mapper",
29
26
  "Session",
30
27
  "TarVFile",
31
- "convert_images",
32
- "convert_text",
33
28
  "pydantic_to_feature",
34
29
  ]
@@ -0,0 +1,3 @@
1
+ from datachain.lib.image import ImageFile, convert_images
2
+
3
+ __all__ = ["ImageFile", "convert_images"]
@@ -0,0 +1,3 @@
1
+ from datachain.lib.text import convert_text
2
+
3
+ __all__ = ["convert_text"]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: datachain
3
- Version: 0.2.6
3
+ Version: 0.2.7
4
4
  Summary: Wrangle unstructured AI data at scale
5
5
  Author-email: Dmitry Petrov <support@dvc.org>
6
6
  License: Apache-2.0
@@ -1,4 +1,4 @@
1
- datachain/__init__.py,sha256=wvf70BnoqaeYdxZYyZIw_wkykA7ZbFwvOZ2gRk-ZY5o,959
1
+ datachain/__init__.py,sha256=WTZQycUOpP1b-Ry_Qje5HH0EE14ptne-ZiQQ5070UMA,798
2
2
  datachain/__main__.py,sha256=hG3Y4ARGEqe1AWwNMd259rBlqtphx1Wk39YbueQ0yV8,91
3
3
  datachain/asyn.py,sha256=CKCFQJ0CbB3r04S7mUTXxriKzPnOvdUaVPXjM8vCtJw,7644
4
4
  datachain/cache.py,sha256=FaPWrqWznPffmskTb1pdPkt2jAMMf__9FC2zEnP0vDU,4022
@@ -36,6 +36,7 @@ datachain/data_storage/schema.py,sha256=bY3q2OUaUraos0s5BnwWkhgce8YpeNmIl7M1ifsh
36
36
  datachain/data_storage/serializer.py,sha256=6G2YtOFqqDzJf1KbvZraKGXl2XHZyVml2krunWUum5o,927
37
37
  datachain/data_storage/sqlite.py,sha256=F68Q_AIqNAObZ5kJ0GnBqRC6e2D2sRehkQo8UzrHgtI,25079
38
38
  datachain/data_storage/warehouse.py,sha256=h35JiJoCGtwkMctis_x3NHxkwEejX5sIWvJOluZxrOI,33132
39
+ datachain/image/__init__.py,sha256=g3l7vJFzg0-s5OAmBtGargsxt12TuKU4Ex6S0fOmEeY,101
39
40
  datachain/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
41
  datachain/lib/arrow.py,sha256=FF3WWUOjB6Prw8ygfiLsrVfrdob0S01lPzEazuGqoO8,2556
41
42
  datachain/lib/cached_stream.py,sha256=t2ifK0hZVZiVn0MQ8D3FaFK1-qK84TwJW2Dw1SRsw9g,1066
@@ -92,9 +93,10 @@ datachain/sql/sqlite/__init__.py,sha256=TAdJX0Bg28XdqPO-QwUVKy8rg78cgMileHvMNot7
92
93
  datachain/sql/sqlite/base.py,sha256=nPMF6_FF04hclDNZev_YfxMgbJAsWEdF-rU2pUhqBtc,12048
93
94
  datachain/sql/sqlite/types.py,sha256=oP93nLfTBaYnN0z_4Dsv-HZm8j9rrUf1esMM-z3JLbg,1754
94
95
  datachain/sql/sqlite/vector.py,sha256=ncW4eu2FlJhrP_CIpsvtkUabZlQdl2D5Lgwy_cbfqR0,469
95
- datachain-0.2.6.dist-info/LICENSE,sha256=8DnqK5yoPI_E50bEg_zsHKZHY2HqPy4rYN338BHQaRA,11344
96
- datachain-0.2.6.dist-info/METADATA,sha256=j3Pq4f0toq25yDr9FAQhJaygkE7St8BTZVcigAw47t4,16475
97
- datachain-0.2.6.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
98
- datachain-0.2.6.dist-info/entry_points.txt,sha256=0GMJS6B_KWq0m3VT98vQI2YZodAMkn4uReZ_okga9R4,49
99
- datachain-0.2.6.dist-info/top_level.txt,sha256=lZPpdU_2jJABLNIg2kvEOBi8PtsYikbN1OdMLHk8bTg,10
100
- datachain-0.2.6.dist-info/RECORD,,
96
+ datachain/text/__init__.py,sha256=-yxHL2gVl3H0Zxam6iWUO6F1Mc4QAFHX6z-5fjHND74,72
97
+ datachain-0.2.7.dist-info/LICENSE,sha256=8DnqK5yoPI_E50bEg_zsHKZHY2HqPy4rYN338BHQaRA,11344
98
+ datachain-0.2.7.dist-info/METADATA,sha256=wCM5xqbN0jL3rMZscamMVXYzPRyobgZouv98pQzPK5U,16475
99
+ datachain-0.2.7.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
100
+ datachain-0.2.7.dist-info/entry_points.txt,sha256=0GMJS6B_KWq0m3VT98vQI2YZodAMkn4uReZ_okga9R4,49
101
+ datachain-0.2.7.dist-info/top_level.txt,sha256=lZPpdU_2jJABLNIg2kvEOBi8PtsYikbN1OdMLHk8bTg,10
102
+ datachain-0.2.7.dist-info/RECORD,,