agate-remote 0.2.1#
agate-remote adds read support for remote files to agate.
Important links:
agate http://agate.rtfd.org
Documentation: http://agate-remote.rtfd.org
Repository: https://github.com/wireservice/agate-remote
Install#
To install:
pip install agate-remote
For details on development or supported platforms see the agate documentation.
Usage#
agate-remote uses a monkey patching pattern to add read support for remote files to all agate.Table
instances.
import agate
import agateremote
Importing agate-remote adds methods to agate.Table
.
table = agate.Table.from_url('https://raw.githubusercontent.com/onyxfish/agate/master/examples/test.csv')
print(table)
agate-remote also let’s you create an Archive
, which is a reference to a group of tables with a known path structure.
archive = agateremote.Archive('https://github.com/vincentarelbundock/Rdatasets/raw/master/csv/')
table = archive.get_table('sandwich/PublicSchools.csv')
print(table)
API#
- agateremote.table_remote.from_url(cls, url, callback=<bound method from_csv of <class 'agate.table.Table'>>, binary=False, requests_encoding=None, **kwargs)#
Download a remote file and pass it to a
Table
parser.- Parameters:
url – URL to a file to load.
callback – The method to invoke to create the table. Typically either
agate.Table.from_csv()
oragate.Table.from_json()
, but it could also be a method provided by an extension.requests_encoding – An encoding to pass to requests for use when decoding the response content. (e.g. force use of ‘utf-8-sig’ when CSV has a BOM).
binary – If
False
the downloaded data will be processed as a string, otherwise it will be treated as binary data. (e.g. for Excel files)
- class agateremote.archive.Archive(root, url_func=<function default_url_func>, callback=<bound method from_csv of <class 'agate.table.Table'>>)#
Allows for fast access to respository of remote datasets with a known path structure.
- get_table(key)#
Download a remote file relative to the archive’s root and return it as a table.
Changelog#
0.2.1 - July 13, 2021#
Add
requests_encoding
keyword argument tofrom_url
.
0.2.0 - December 19, 2016#
Remove deprecated monkeypatching pattern.
Upgrade agate requirement to version
1.5.0
.Fix docstring for binary argument. (#8)
0.1.1 - February 28, 2016#
Fixes to documentation.
Update agate requirement to 1.3.0.
0.1.0 - February 5, 2016#
Initial version.
License#
The MIT License
Copyright (c) 2016 Christopher Groskopf and contributors
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.