Home
last modified time | relevance | path

Searched refs:agate (Results 1 – 25 of 595) sorted by relevance

12345678910>>...24

/dports/textproc/py-agate/agate-1.6.3/docs/api/
H A Daggregations.rst12 agate.Summary
20 agate.All
21 agate.Any
22 agate.Count
24 agate.Min
25 agate.Max
35 agate.IQR
36 agate.MAD
37 agate.Mean
39 agate.Mode
[all …]
H A Dtable.rst5 .. automodule:: agate.table
11 agate.Table
19 agate.Table.columns
22 agate.Table.rows
42 agate.Table.to_csv
53 agate.Table.find
54 agate.Table.limit
57 agate.Table.where
74 agate.Table.bins
78 agate.Table.join
[all …]
H A Dtableset.rst5 .. automodule:: agate.tableset
11 agate.TableSet
19 agate.TableSet.key_name
20 agate.TableSet.key_type
39 agate.TableSet.to_csv
40 agate.TableSet.to_json
49 agate.TableSet.having
50 agate.TableSet.merge
77 agate.TableSet.bins
82 agate.TableSet.find
[all …]
H A Dcsv.rst11 from agate import csv
21 agate.csv_py3.reader
22 agate.csv_py3.writer
23 agate.csv_py3.Reader
24 agate.csv_py3.Writer
25 agate.csv_py3.DictReader
26 agate.csv_py3.DictWriter
34 agate.csv_py2.reader
35 agate.csv_py2.writer
36 agate.csv_py2.Reader
[all …]
H A Dcomputations.rst5 .. automodule:: agate.computations
11 agate.Computation
12 agate.Formula
20 agate.Change
21 agate.Percent
22 agate.PercentChange
23 agate.PercentileRank
24 agate.Rank
29 .. autoclass:: agate.Change
35 .. autoclass:: agate.Rank
[all …]
H A Ddata_types.rst5 .. automodule:: agate.data_types
11 agate.DataType
19 agate.Text
20 agate.Number
21 agate.Boolean
22 agate.Date
23 agate.DateTime
24 agate.TimeDelta
30 .. autoclass:: agate.Text
31 .. autoclass:: agate.Number
[all …]
/dports/textproc/py-agate-excel/agate-excel-0.2.5/tests/
H A Dtest_table_xls.py6 import agate
28 agate.Number(), agate.Text(), agate.Boolean(),
39 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
46 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
54 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
61 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
68 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
83 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
90 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
145 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
[all …]
H A Dtest_table_xlsx.py6 import agate
29 agate.Number(), agate.Text(), agate.Boolean(),
40 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
47 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
55 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
62 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
69 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
84 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
91 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
141 …self.assertColumnTypes(table, [agate.Number, agate.Text, agate.Boolean, agate.Date, agate.DateTime…
[all …]
/dports/textproc/py-agate/agate-1.6.3/agate/aggregations/
H A D__init__.py18 from agate.aggregations.all import All
19 from agate.aggregations.any import Any
21 from agate.aggregations.count import Count
23 from agate.aggregations.first import First
25 from agate.aggregations.iqr import IQR
26 from agate.aggregations.mad import MAD
27 from agate.aggregations.max import Max
30 from agate.aggregations.mean import Mean
32 from agate.aggregations.min import Min
33 from agate.aggregations.mode import Mode
[all …]
/dports/textproc/py-agate/agate-1.6.3/agate/
H A D__init__.py5 from agate.aggregations import *
6 from agate.columns import Column
7 from agate.computations import *
9 from agate.data_types import *
10 from agate.exceptions import *
13 from agate.rows import Row
14 from agate.table import Table
15 from agate.tableset import TableSet
18 from agate.utils import *
22 import agate.csv_py2 as csv
[all …]
/dports/databases/py-agate-sql/agate-sql-0.5.8/tests/
H A Dtest_agatesql.py7 import agate
14 class TestSQL(agate.AgateTestCase):
28 agate.Number(), agate.Text(), agate.Boolean(),
29 agate.Date(), agate.DateTime(),
55 column_types = [agate.Number(), agate.Text()]
178 column_types = [agate.Number(), agate.Text()]
192 column_types = [agate.Number(), agate.Text()]
206 column_types = [agate.Number(), agate.Text()]
217 column_types = [agate.Number(), agate.Text()]
241 self.assertColumnTypes(results, [agate.Number, agate.Boolean])
[all …]
/dports/textproc/py-agate/agate-1.6.3/tests/
H A Dtest_agate.py10 import agate
16 self.assertIs(agate.csv.reader, agate.csv_py2.reader)
17 self.assertIs(agate.csv.writer, agate.csv_py2.writer)
18 self.assertIs(agate.csv.DictReader, agate.csv_py2.DictReader)
19 self.assertIs(agate.csv.DictWriter, agate.csv_py2.DictWriter)
21 self.assertIs(agate.csv.reader, agate.csv_py3.reader)
22 self.assertIs(agate.csv.writer, agate.csv_py3.writer)
23 self.assertIs(agate.csv.DictReader, agate.csv_py3.DictReader)
24 self.assertIs(agate.csv.DictWriter, agate.csv_py3.DictWriter)
/dports/textproc/py-agate/agate-1.6.3/agate/table/
H A D__init__.py29 from agate import utils
30 from agate.columns import Column
31 from agate.data_types import DataType
32 from agate.exceptions import CastError
34 from agate.rows import Row
302 from agate.table.bins import bins
308 from agate.table.find import find
315 from agate.table.join import join
316 from agate.table.limit import limit
318 from agate.table.merge import merge
[all …]
/dports/databases/py-agate-sql/agate-sql-0.5.8/
H A DREADME.rst2 :target: https://github.com/wireservice/agate-sql/actions
5 .. image:: https://img.shields.io/pypi/dm/agate-sql.svg
6 :target: https://pypi.python.org/pypi/agate-sql
9 .. image:: https://img.shields.io/pypi/v/agate-sql.svg
10 :target: https://pypi.python.org/pypi/agate-sql
13 .. image:: https://img.shields.io/pypi/l/agate-sql.svg
14 :target: https://pypi.python.org/pypi/agate-sql
18 :target: https://pypi.python.org/pypi/agate-sql
21 agate-sql adds SQL read/write support to `agate <https://github.com/wireservice/agate>`_.
25 * agate http://agate.rtfd.org
[all …]
H A DPKG-INFO2 Name: agate-sql
4 Summary: agate-sql adds SQL read/write support to agate.
5 Home-page: http://agate-sql.readthedocs.org/
13 .. image:: https://img.shields.io/pypi/dm/agate-sql.svg
14 :target: https://pypi.python.org/pypi/agate-sql
18 :target: https://pypi.python.org/pypi/agate-sql
22 :target: https://pypi.python.org/pypi/agate-sql
26 :target: https://pypi.python.org/pypi/agate-sql
29 agate-sql adds SQL read/write support to `agate <https://github.com/wireservice/agate>`_.
33 * agate http://agate.rtfd.org
[all …]
/dports/textproc/py-agate-dbf/agate-dbf-0.2.2/
H A DREADME.rst1 .. image:: https://travis-ci.org/wireservice/agate-dbf.png
2 :target: https://travis-ci.org/wireservice/agate-dbf
5 .. image:: https://img.shields.io/pypi/dw/agate-dbf.svg
6 :target: https://pypi.python.org/pypi/agate-dbf
9 .. image:: https://img.shields.io/pypi/v/agate-dbf.svg
10 :target: https://pypi.python.org/pypi/agate-dbf
14 :target: https://pypi.python.org/pypi/agate-dbf
18 :target: https://pypi.python.org/pypi/agate-dbf
21 agate-dbf adds read support for dbf files to `agate <https://github.com/wireservice/agate>`_.
25 * agate http://agate.rtfd.org
[all …]
H A DPKG-INFO2 Name: agate-dbf
4 Summary: agate-dbf adds read support for dbf files to agate.
5 Home-page: http://agate-dbf.readthedocs.org/
10 :target: https://travis-ci.org/wireservice/agate-dbf
14 :target: https://pypi.python.org/pypi/agate-dbf
18 :target: https://pypi.python.org/pypi/agate-dbf
22 :target: https://pypi.python.org/pypi/agate-dbf
26 :target: https://pypi.python.org/pypi/agate-dbf
29agate-dbf adds read support for dbf files to `agate <https://github.com/wireservice/agate>`_.
33 * agate http://agate.rtfd.org
[all …]
/dports/textproc/py-agate-excel/agate-excel-0.2.5/
H A DREADME.rst2 :target: https://github.com/wireservice/agate-excel/actions
5 .. image:: https://img.shields.io/pypi/dm/agate-excel.svg
6 :target: https://pypi.python.org/pypi/agate-excel
9 .. image:: https://img.shields.io/pypi/v/agate-excel.svg
10 :target: https://pypi.python.org/pypi/agate-excel
13 .. image:: https://img.shields.io/pypi/l/agate-excel.svg
14 :target: https://pypi.python.org/pypi/agate-excel
18 :target: https://pypi.python.org/pypi/agate-excel
21 agate-excel adds read support for Excel files (xls and xlsx) to `agate <https://github.com/wireserv…
25 * agate http://agate.rtfd.org
[all …]
H A DPKG-INFO2 Name: agate-excel
4 Summary: agate-excel adds read support for Excel files (xls and xlsx) to agate.
5 Home-page: http://agate-excel.readthedocs.org/
13 .. image:: https://img.shields.io/pypi/dm/agate-excel.svg
14 :target: https://pypi.python.org/pypi/agate-excel
18 :target: https://pypi.python.org/pypi/agate-excel
22 :target: https://pypi.python.org/pypi/agate-excel
26 :target: https://pypi.python.org/pypi/agate-excel
29agate-excel adds read support for Excel files (xls and xlsx) to `agate <https://github.com/wireser…
33 * agate http://agate.rtfd.org
[all …]
/dports/textproc/py-agate/agate-1.6.3/docs/cookbook/
H A Dcreate.rst13 column_types = [agate.Text(), agate.Number()]
33 table = agate.Table.from_object(rows)
53 'column_name_one': agate.Text(),
54 'column_name_two': agate.Number()
68 tester = agate.TypeTester(limit=100)
79 text_type = agate.Text()
80 number_type = agate.Number()
142 Use the `agate-sql <http://agate-sql.readthedocs.org/>`_ extension.
155 Use the `agate-excel <http://agate-excel.readthedocs.org/>`_ extension. It supports both .xls and .…
183 Use the `agate-remote <http://agate-remote.readthedocs.org/>`_ extension.
[all …]
/dports/databases/py-agate-sql/agate-sql-0.5.8/agate_sql.egg-info/
H A DPKG-INFO2 Name: agate-sql
4 Summary: agate-sql adds SQL read/write support to agate.
5 Home-page: http://agate-sql.readthedocs.org/
13 .. image:: https://img.shields.io/pypi/dm/agate-sql.svg
14 :target: https://pypi.python.org/pypi/agate-sql
18 :target: https://pypi.python.org/pypi/agate-sql
22 :target: https://pypi.python.org/pypi/agate-sql
26 :target: https://pypi.python.org/pypi/agate-sql
29 agate-sql adds SQL read/write support to `agate <https://github.com/wireservice/agate>`_.
33 * agate http://agate.rtfd.org
[all …]
/dports/textproc/py-agate-dbf/agate-dbf-0.2.2/agate_dbf.egg-info/
H A DPKG-INFO2 Name: agate-dbf
4 Summary: agate-dbf adds read support for dbf files to agate.
5 Home-page: http://agate-dbf.readthedocs.org/
10 :target: https://travis-ci.org/wireservice/agate-dbf
14 :target: https://pypi.python.org/pypi/agate-dbf
18 :target: https://pypi.python.org/pypi/agate-dbf
22 :target: https://pypi.python.org/pypi/agate-dbf
26 :target: https://pypi.python.org/pypi/agate-dbf
29agate-dbf adds read support for dbf files to `agate <https://github.com/wireservice/agate>`_.
33 * agate http://agate.rtfd.org
[all …]
/dports/textproc/py-agate/agate-1.6.3/docs/
H A Dextensions.rst14 import agate
26 * `agate-sql <http://agate-sql.rtfd.org/>`_: Read and write tables in SQL databases
27 * `agate-stats <http://agate-stats.rtfd.org/>`_: Additional statistical methods
28 * `agate-excel <http://agate-excel.rtfd.org/>`_: Read excel tables (xls and xlsx)
29 * `agate-dbf <http://agate-dbf.rtfd.org/>`_: Read dbf tables (from shapefiles)
30 * `agate-remote <http://agate-remote.rtfd.org/>`_: Read from remote files
31 * `agate-lookup <http://agate-lookup.rtfd.org/>`_: Instantly join to hosted `lookup <https://github…
40 import agate
45 agate.Table.new_method = new_method
60 >>> import agate
[all …]
/dports/textproc/py-agate-excel/agate-excel-0.2.5/agate_excel.egg-info/
H A DPKG-INFO2 Name: agate-excel
4 Summary: agate-excel adds read support for Excel files (xls and xlsx) to agate.
5 Home-page: http://agate-excel.readthedocs.org/
13 .. image:: https://img.shields.io/pypi/dm/agate-excel.svg
14 :target: https://pypi.python.org/pypi/agate-excel
18 :target: https://pypi.python.org/pypi/agate-excel
22 :target: https://pypi.python.org/pypi/agate-excel
26 :target: https://pypi.python.org/pypi/agate-excel
29agate-excel adds read support for Excel files (xls and xlsx) to `agate <https://github.com/wireser…
33 * agate http://agate.rtfd.org
[all …]
/dports/databases/py-agate-sql/agate-sql-0.5.8/agatesql/
H A Dtable.py11 import agate
23 agate.Boolean: None, # See below
24 agate.Number: None, # See below
25 agate.Date: DATE,
26 agate.DateTime: None, # See below
27 agate.TimeDelta: None, # See below
28 agate.Text: VARCHAR,
104 column_types.append(agate.Text())
106 column_types.append(agate.Date())
364 agate.Table.to_sql = to_sql
[all …]

12345678910>>...24