Python wrapper for the USA Today Census API.
Project description
USA Today Python API Wrapper
============================
This is a Python wrapper for [USA Today's Census
API](http://developer.usatoday.com/docs/read/Census).
Note that usage of the USA Today Census API requires a developer key,
and that usage is contingent upon agreement with USA Today's [Terms of
Use](http://developer.usatoday.com/API_Terms_of_Use).
Also, note that this library is in no way associated or endorsed by [USA
Today](http://www.usatoday.com/).
Usage
-----
It's recommended that you save your USA Today Census API Key to the
`usa_today_api_key.py` file.
Without your API Key saved:
>>> from usa_today import Census
>>> Census('my_api_key').population()
With your API Key saved:
>>> from usa_today import Census
>>> Census().population()
### Methods ###
* `locations` -- Returns all available ethnicity, housing, population and race information for specified area.
<pre><code>
>>> Census().locations()
>>> Census().locations('NY')
</code></pre>
* `ethnicity` -- Returns an area's ethnic data. Information includes how much of the population identifies as Hispanic or non-Hispanic white, and the USA TODAY Diversity Index.
<pre><code>
>>> Census().ethnicity()
>>> # California ethnicity by county
... Census().ethnicity('CA', sumlevid=3)
</code></pre>
* `housing` -- Returns an area's housing data. Information includes the number of housing units, and the percentage of those that are vacant.
<pre><code>
>>> c = Census()
>>> c.housing()
>>> c.housing('TX')
>>> # Lookup Texas housing by FIPS for counties
... c.housing('48~', keyname='FIPS', sumlevid=3)
</code></pre>
* `population` -- Returns an area's population data. Information includes the total population of an area, average population per square mile, and the percent by which that population has changed since the last census.
<pre><code>
>>> c = Census()
>>> c.population()
>>> # Texas population by town level.
... c.population('TX', sumlevid=6)
</code></pre>
* `race` -- Returns an area's racial data. Information includes the percentage of an area's population that identifies as White, Black, American Indian, Asian, native Hawaiian/Pacific Islander, or mixed race.
<pre><code>
>>> c = Census()
>>> c.race()
>>> c.race('RI')
>>> # Race data for Rhode Island by county.
... c.race('RI', sumlevid=3)
</code></pre>
Copyright
---------
Copyright (c) 2011 Code for America Laboratories
See LICENSE for details.
============================
This is a Python wrapper for [USA Today's Census
API](http://developer.usatoday.com/docs/read/Census).
Note that usage of the USA Today Census API requires a developer key,
and that usage is contingent upon agreement with USA Today's [Terms of
Use](http://developer.usatoday.com/API_Terms_of_Use).
Also, note that this library is in no way associated or endorsed by [USA
Today](http://www.usatoday.com/).
Usage
-----
It's recommended that you save your USA Today Census API Key to the
`usa_today_api_key.py` file.
Without your API Key saved:
>>> from usa_today import Census
>>> Census('my_api_key').population()
With your API Key saved:
>>> from usa_today import Census
>>> Census().population()
### Methods ###
* `locations` -- Returns all available ethnicity, housing, population and race information for specified area.
<pre><code>
>>> Census().locations()
>>> Census().locations('NY')
</code></pre>
* `ethnicity` -- Returns an area's ethnic data. Information includes how much of the population identifies as Hispanic or non-Hispanic white, and the USA TODAY Diversity Index.
<pre><code>
>>> Census().ethnicity()
>>> # California ethnicity by county
... Census().ethnicity('CA', sumlevid=3)
</code></pre>
* `housing` -- Returns an area's housing data. Information includes the number of housing units, and the percentage of those that are vacant.
<pre><code>
>>> c = Census()
>>> c.housing()
>>> c.housing('TX')
>>> # Lookup Texas housing by FIPS for counties
... c.housing('48~', keyname='FIPS', sumlevid=3)
</code></pre>
* `population` -- Returns an area's population data. Information includes the total population of an area, average population per square mile, and the percent by which that population has changed since the last census.
<pre><code>
>>> c = Census()
>>> c.population()
>>> # Texas population by town level.
... c.population('TX', sumlevid=6)
</code></pre>
* `race` -- Returns an area's racial data. Information includes the percentage of an area's population that identifies as White, Black, American Indian, Asian, native Hawaiian/Pacific Islander, or mixed race.
<pre><code>
>>> c = Census()
>>> c.race()
>>> c.race('RI')
>>> # Race data for Rhode Island by county.
... c.race('RI', sumlevid=3)
</code></pre>
Copyright
---------
Copyright (c) 2011 Code for America Laboratories
See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
usa_today-1.0.tar.gz
(3.7 kB
view details)
File details
Details for the file usa_today-1.0.tar.gz
.
File metadata
- Download URL: usa_today-1.0.tar.gz
- Upload date:
- Size: 3.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8b83d0197315862b6d1b51e38ceecf817ccb8f717b11f9be9fef7193c3ae4aa1 |
|
MD5 | 215b9acea6126f20767d948fcb1b6b17 |
|
BLAKE2b-256 | 6e72f6e7e1300226aca7cedf68c1cab825c3568cb400e234af053b0b5f52884c |