File: control

package info (click to toggle)
rows 0.2.1-1
  • links: PTS
  • area: main
  • in suites: stretch
  • size: 784 kB
  • ctags: 547
  • sloc: python: 4,621; sh: 59; makefile: 33
file content (68 lines) | stat: -rw-r--r-- 2,585 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
Source: rows
Section: utils
Priority: optional
Maintainer: Paulo Roberto Alves de Oliveira (aka kretcheu) <kretcheu@gmail.com>
Build-Depends: debhelper (>= 9),
               dh-python,
               locales,
               locales-all,
               pylint,
               python,
               python-click,
               python-coverage,
               python-ipdb,
               python-lxml,
               python-mock,
               python-nose,
               python-nose-yanc,
               python-openpyxl,
               python-pip,
               python-requests,
               python-setuptools,
               python-unicodecsv,
               python-xlrd,
               python-xlwt,
               txt2man
Standards-Version: 3.9.8
Homepage: https://github.com/turicas/rows/

Package: rows
Architecture: all
Depends: ${misc:Depends},
         ${python:Depends},
         python-click,
         python-requests,
         python-rows
Recommends: locales, locales-all, python-magic, python-lxml, python-xlrd, python-xlwt
Description: common, beautiful interface to tabular data, no matter the format
 A command-line interface so you can have easy access to the most used
 features: convert between formats, sum, join and sort tables.
 No matter in which format your tabular data is: rows will import it,
 automatically detect types so you can start working with the data instead of
 trying to parse it. It is also locale and unicode aware.

Package: python-rows
Architecture: all
Section: python
Depends: ${misc:Depends},
         ${python:Depends},
         python-unicodecsv
Recommends: locales, locales-all, python-lxml, python-xlrd, python-xlwt, rows
XB-Python-Version: ${python:Versions}
Provides: ${python:Provides}
Description: library to tabular data, no matter the format
 No matter in which format your tabular data is: python-rows will import it,
 automatically detect types and give you high-level Python objects so you can
 start working with the data instead of trying to parse it.
 It is also locale and unicode aware.
 .
 The library is composed by:
 .
  * A common interface to tabular data (the Table class).
  * A set of plugins to populate Table objects CSV, XLS, HTML, TXT.
  * A set of common fields (such as BoolField, IntegerField) which know exactly
    how to serialize and deserialize data for each object type you'll get.
  * A set of utilities (such as field type recognition) to help working with
    tabular data.
  * Access to the most used features: convert between formats, sum, join and
    sort tables. Just import rows and relax.