Week 4 class demo

import pathlib
out = pathlib.Path('deleteme.txt')

out.write_text('hello, this will go away')
24
print(out.exists())
True
if out.exists():
    out.unlink()
print(out.exists())
False
import shutil
shutil.unpack_archive('records.zip')
shutil.rmtree('records')
import sqlite3
conn = sqlite3.connect('pettigrew.db')
c = conn.cursor()
results = c.execute('SELECT name from sqlite_master where type= "table"')
print(list(results))
[('letters',)]
results = c.execute('SELECT * FROM letters;')
type(results)
sqlite3.Cursor
# results.fetchone()
# results.fetchmany(5)
data = results.fetchall()
type(data)
list
data
[(1, 1, '[Provenance documents and biographical sources]', 'n.d.'),
 (1, 2, '[Provenance documents and biographical sources]', 'n.d.'),
 (1, 3, '[Provenance documents and biographical sources]', 'n.d.'),
 (1,
  4,
  'Aberdeen, George Hamilton-Gordon, 4th Earl of, 1784-1860. 1 ALS, 1 LS, 1 AL to T. J. Pettigrew',
  '1846 Aug'),
 (1,
  5,
  'Abingdon, Montagu Bertie, 6th Earl of, 1808-1884. 2 ALS to T. J. Pettigrew',
  '1859, 1860'),
 (1,
  6,
  'Acland, Sir Thomas Dyke, bart., 1787-1871. ALS to T. J. Pettigrew',
  'n.d.'),
 (1, 7, 'Aikin, Arthur, 1773-1854. 3 ALS to T. J. Pettigrew', '1823-30'),
 (1,
  8,
  'Ailesbury, George William Frederick Brudnell-Bruce, 2d Marquess of, 1804-1878. 5 ALS to T. J. Pettigrew',
  '1858-59'),
 (1,
  9,
  'Ainslie, Sir Whitelaw, 1767-1837. 1 ALS and 2 AL to T. J. Pettigrew',
  '1828 Jun'),
 (1,
  10,
  'Ainsworth, William Francis, 1807-1896. 5 ALS to T. J. Pettigrew',
  '1843-56'),
 (1,
  11,
  'Ainsworth, William Harrison, 1805-1882. 5 ALS to T. J. Pettigrew',
  '1854-60'),
 (1,
  12,
  'Akerman, John Yonge, 1806-1873. 9 ALS and 2 LS to T. J. Pettigrew',
  '1849-56'),
 (1,
  13,
  'Albemarle, Charlotte (Hunloke) Keppel, Countess of, d. 1862. AL to Mr. Stephenson',
  '1822 Mar 8'),
 (1,
  14,
  'Albemarle, George Thomas Keppel, 6th Earl of, 1799-1891. 4 ALS to T. J. Pettigrew',
  '1857 Jul-Aug'),
 (1, 15, 'Alcock, Thomas, 1784-1833. 3 AL to T. J. Pettigrew', '1830-33'),
 (1,
  16,
  'Amyot, Thomas, 1775-1850. 6 ALS to T. J. Pettigrew',
  '1827 and later'),
 (1, 17, 'Anderson, Joseph, 1789-1877. 3 ALS to T. J. Pettigrew', '1843-47'),
 (1,
  18,
  'Anglo-Biblical Institute. ALS (signed W. H. Clarke) to T. J. Pettigrew',
  '1859 Nov 28'),
 (1,
  19,
  'Arran, Mary (Tyrrell), Countess, 1767?-1832. AL to Augustus Frederick, Duke of Sussex',
  '[1824 or later]'),
 (1, 20, 'Arundale, Francis, 1807-1853. ALS to T. J. Pettigrew', 'n.d.'),
 (1,
  21,
  'Arundell, Henry Benedict Arundell, 11th Baron, 1804-1862. 2 ALS to T. J. Pettigrew',
  '1852 Jun-Sep'),
 (1,
  22,
  'Arundell, John Francis Arundell, 12th Baron, 1831-1906. 2 ALS to T. J. Pettigrew',
  '1860 Mar'),
 (1,
  23,
  'Ashburton, Alexander Baring, 1st Baron, 1774-1848. 2 ALS to T.J. Pettigrew.',
  '[1839 or later]'),
 (1,
  24,
  'Ashburton, William Bingham Baring, 2d Baron, 1799-1864. ALS to T. J. Pettigrew',
  'n.d.'),
 (1, 25, 'Ashpitel, Arthur, 1807-1869. 3 ALS to T. J. Pettigrew', '1850 Aug'),
 (1,
  26,
  'Auckland, George Eden, 1st Earl of, 1784-1849. ALS to T. J. Pettigrew',
  '1828 Dec 7'),
 (1,
  27,
  'Auckland, Robert John Eden, 3d Baron, Bp. of Bath and Wells, 1799-1870. 6 ALS to T. J. Pettigrew',
  '1856-59'),
 (1, 28, 'Ayrton, William, 1777-1858. ALS to T. J. Pettigrew', '1827 Feb 1'),
 (1,
  29,
  'Babington, Benjamin Guy, 1794-1866. 3 ALS and 1 AL to T. J. Pettigrew',
  '1830-38'),
 (1, 30, 'Babington, William, 1756-1833. AL to T. J. Pettigrew', '1817 Jun 6'),
 (1,
  31,
  'Baird, [William?], 1803-1872. 2 ALS and 3 AL to T. J. Pettigrew',
  '1831-34'),
 (1,
  32,
  'Banks, Thomas Christopher, 1765-1854. ALS to T. J. Pettigrew',
  '1845 Jun 30'),
 (1,
  33,
  'Baring, Charles, Bp. of Durham, 1807-1879. 2 ALS to T. J. Pettigrew',
  '[1850]-1865'),
 (1, 34, 'Baring, Sir Thomas, 1772-1848. AL to Mr. Stephenson', '1831 Mar 24'),
 (1,
  35,
  'Baron, John, 1786-1851. 2 ALS to T. J. Pettigrew',
  '[1836 or later]'),
 (1,
  36,
  'Barrington, William Keppel Barrington, 6th Viscount, 1793-1867. AL to T. J. Pettigrew',
  '1834 Mar 28'),
 (1, 37, 'Bateman, Thomas, 1821-1861. 4 ALS to T. J. Pettigrew', '1850-52'),
 (1,
  38,
  'Bateman, William Bateman Bateman-Hanbury, 2d Baron, 1826-1901. ALS and 1 AL to T. J. Pettigrew',
  '1857, 1858'),
 (1,
  39,
  'Beattie, William, 1793-1875. 15 ALS to T. J. Pettigrew',
  '1829-[36]'),
 (1,
  40,
  'Beaufort, Emily Frances (Smith), Duchess of, 1800?-1889. AL to T. J. Pettigrew',
  '1829 Jul 31'),
 (1,
  41,
  'Beaufort, Sir Francis, 1774-1857. ALS to Sir Gardner Wilkinson',
  '1850 Jan 15'),
 (1,
  42,
  'Beaufort, Henry Charles Fitzroy Somerset, 8th Duke of, 1824-1899. ALS and AL to T. J. Pettigrew',
  '1854 Jul, Oct'),
 (1,
  43,
  'Beaumont, Sir George Howland, bart., 1753-1827. AL to Lord Ferrers',
  'n.d.'),
 (1,
  44,
  'Bedford, John Russell, 6th Duke of, 1766-1839. 3 ALS and 1 AL to T. J. Pettigrew',
  '1827-34'),
 (1, 45, 'Bell, Robert, 1800-1867. ALS to T. J. Pettigrew', '1857 Mar 30'),
 (1,
  46,
  'Bell, Thomas, 1792-1880. 3 ALS and 2 LS to T. J. Pettigrew',
  '[1834]-53'),
 (1,
  47,
  'Beltz, George Frederick, 1777-1841. ALS to T. J. Pettigrew',
  '1829 Mar 5'),
 (1, 48, 'Bernal, Ralph, d. 1854. ALS to T. J. Pettigrew', '1853 Nov 10'),
 (1,
  49,
  'Berry, William, 1774-1851. 2 ALS to T. J. Pettigrew',
  '1831 Apr, Jun'),
 (1,
  50,
  'Berwick, Richard Noel Noel-Hill, 5th Baron, 1800-1861. ALS to T. J. Pettigrew',
  '1860 May 15'),
 (1,
  51,
  'Betham, Sir William, 1779-1853. 22 ALS to T. J. Pettigrew',
  '1826-52'),
 (2, 52, 'Billing, Archibald, 1791-1881. 2 AL to T. J. Pettigrew', '1828 Jun'),
 (2, 53, 'Birkbeck, George, 1776-1841. 10 ALS to T. J. Pettigrew', '1821-37'),
 (2, 54, 'Blaauw, William Henry, 1793-1870. 2 AL to T. J. Pettigrew', 'n.d.'),
 (2,
  55,
  'Black, William Henry, 1808-1872. ALS to T. J. Pettigrew',
  '1849 Feb 28'),
 (2,
  56,
  'Blane, Sir Gilbert, bart., 1749-1834. ALS and AL to T. J. Pettigrew',
  '1827 Nov'),
 (2,
  57,
  'Blessington, Charles John Gardiner, 2d Earl of, 1782-1829. 6 ALS to T. J. Pettigrew',
  '[1820]-26'),
 (2,
  58,
  'Blessington, Margaret (Power) Farmer Gardiner, Countess of, 1789-1849. 2 ALS to T. J. Pettigrew',
  '1821-[35]'),
 (2, 59, 'Blundell, James, 1790-1877. 6 ALS to T. J. Pettigrew', '[1833]-38'),
 (2,
  60,
  'Bolland, Sir William, 1772-1840. ALS to T. J. Pettigrew',
  '1827 Mar 26'),
 (2,
  61,
  'Bonney, Henry Kaye, 1780-1862. 2 ALS to T. J. Pettigrew',
  '1852 Aug'),
 (2,
  62,
  'Bonomi, Joseph, 1796-1878. 4 ALS to T. J. Pettigrew, and 1 calling card.',
  '1845-57'),
 (2,
  63,
  'Boston, George Ives Irby, 4th Baron, 1802-1869. 6 ALS to T. J. Pettigrew',
  '[1857-62]'),
 (2, 64, 'Bowers, George Hull, 1794-1872. ALS to T. J. Pettigrew', '1850 May'),
 (2, 65, 'Boyd, Sir William. 4 ALS to T. J. Pettigrew', '1843-[54]'),
 (2,
  66,
  'Boyne, Gustavus Frederick John James Hamilton-Russell, 7th viscount, 1797-1872. 2 ALS to T. J. Pettigrew',
  '1860, 1865'),
 (2,
  67,
  'Brande, William Thomas, 1788-1866. 2 ALS to T. J. Pettigrew',
  '[1806 or later]'),
 (2,
  68,
  'Braybrooke, Charles Cornwallis Neville, 5th Baron, 1823-1902. 2 AL to T. J. Pettigrew',
  '1861, 1862'),
 (2,
  69,
  'Braybrooke, Richard Cornwallis Neville, 4th Baron, 1820-1861. 4 ALS and 1 AL to T. J. Pettigrew',
  '1859 Jul'),
 (2,
  70,
  'Braybrooke, Richard Griffin, 2d Baron, 1750-1825. ALS (fragment) to T. J. Pettigrew',
  '1804 Mar 23'),
 (2,
  71,
  'Breadalbane, John Campbell, 2d Marquis of, 1796-1862. AL to T. J. Pettigrew',
  '1833 May 24'),
 (2, 72, 'Bree, Robert, 1759-1839. ALS and AL to T. J. Pettigrew', '1838 Apr'),
 (2,
  73,
  'Brenton, Edward Pelham, 1774-1839. ALS to T. J. Pettigrew',
  '1838 Jan 26'),
 (2,
  74,
  'Bridgeman, George Thomas Orlando. 2 ALS to T. J. Pettigrew',
  '1860 Oct, Dec'),
 (2,
  75,
  'Briggs, John Joseph, 1819-1876. 2 ALS to T.J. Pettigrew',
  '1841, 1860'),
 (2, 76, 'Bright, Richard, 1789-1858. 7 ALS to T. J. Pettigrew', '1832 Feb'),
 (2,
  77,
  'Brinckman, Charlotte (Godolphin), lady, d. 1838. AL to T. J. Pettigrew',
  'n.d.'),
 (2,
  78,
  'Britton, John, 1771-1857. 4 ALS and 1 ALS fragment to T.J. Pettigrew',
  '1846-56'),
 (2,
  79,
  'Brockett, John Trotter, 1788-1842. ALS to T. J. Pettigrew',
  '1827 Mar 14'),
 (2,
  80,
  'Brodie, Sir Benjamin Collins, bart., 1783-1862. 14 ALS to T. J. Pettigrew',
  '1824-[43]'),
 (2,
  81,
  'Brooke, Richard, 1791-1861. 3 ALS to T. J. Pettigrew',
  '1852 May-Jun'),
 (2,
  82,
  'Brookes, Joshua, 1761-1833. 3 ALS and 2 AL to T. J. Pettigrew',
  '1822-30'),
 (2,
  83,
  'Brougham, Henry Brougham, 1st Baron, 1778-1868. ALS and AL to T. J. Pettigrew',
  'n.d.'),
 (2, 84, 'Brown, James, 1812-1881. AL to T. J. Pettigrew', '1854 Jul 30'),
 (2,
  85,
  'Brownlow, Emma Sophia (Edgcumbe), Countess, 1791-1872. 2 AL to Dr. Sigmond and T. J. Pettigrew, and 1 AL to Pettigrew.',
  '[1834 or later]'),
 (2,
  86,
  'Bruce, John Collingwood, 1805-1892. 2 ALS to T. J. Pettigrew',
  '1850 Jun, Sep'),
 (2, 87, 'Buckland, William, 1784-1856. 4 ALS to T. J. Pettigrew', '1848-49'),
 (2,
  88,
  'Burges, George, 1786?-1864. ALS to T. J. Pettigrew',
  '[before 1835]'),
 (2, 89, 'Burgon, Thomas, 1787-1858. 2 ALS to T. J. Pettigrew', '1834, 1837'),
 (2,
  90,
  'Burke, Sir John Bernard, 1814-1892. 5 ALS to T. J. Pettigrew',
  '1853-58'),
 (2,
  91,
  'Burlington, Elizabeth (Compton) Cavendish, Countess of, 1760-1835. AL to T. J. Pettigrew',
  '1830 Jan 21'),
 (2,
  92,
  'Burnett, Gilbert Thomas, 1800-1835. 2 ALS and 1 AL to T. J. Pettigrew',
  '1831-35'),
 (2, 93, 'Burns, J. ALS to T. J. Pettigrew', 'n.d.'),
 (2, 94, 'Caley, John, d. 1834. 3 ALS to T. J. Pettigrew', '1824-33'),
 (2,
  95,
  'Camden, George Charles Pratt, 2d Marquis of, 1799-1866. 3 ALS to T. J. Pettigrew',
  '1853 Jan-Jun'),
 (2,
  96,
  'Carlisle, Sir Anthony, 1768-1840. 4 ALS to T. J. Pettigrew',
  '1823-38'),
 (2,
  97,
  'Carlisle, Nicholas, 1771-1847. 16 ALS to T. J. Pettigrew',
  '1825-46'),
 (2,
  98,
  'Carnarvon, Henry Howard Molyneux Herbert, 4th Earl of, 1831-1890. 10 ALS to T. J. Pettigrew',
  '1859 Jul-Oct'),
 (2,
  99,
  'Carnwath, Robert Alexander Dalzell, 9th Earl of, 1768-1839. 2 ALS and 1 AL to T. J. Pettigrew',
  'n.d.'),
 (2,
  100,
  'Carysfort, Elizabeth (Grenville) Proby, Countess of, 1756-1842. AL to T. J. Pettigrew',
  ''),
 (2,
  101,
  'Carysfort, John Joshua Proby, 1st Earl of, 1751-1828. 7 ALS and 2 AL to [T. J. Pettigrew]',
  '1800-18'),
 (2,
  102,
  'Cattermole, Richard, 1795-1858. 3 ALS to T. J. Pettigrew',
  '1845-53'),
 (2,
  103,
  'Cavan, Frederick John William Lambart, 8th Earl of, 1815-1887. ALS to T. J. Pettigrew',
  '1856 Jul 3'),
 (3,
  104,
  'Chalmers, Patrick, 1802-1854. ALS to T. J. Pettigrew',
  '1850 Jun 9'),
 (3,
  105,
  'Chambers, William Frederick, 1786-1855. 2 ALS and 2 AL to T. J. Pettigrew',
  '1818-38'),
 (3,
  106,
  'Champion de Crespigny, Sir Claude, bart., 1734-1818. AL to T. J. Pettigrew',
  '1816 Oct 8'),
 (3,
  107,
  'Champion de Crespigny, Sir William, bart., 1765-1829. 1 ALS and 1 AL to T. J. Pettigrew',
  '1823, 1824'),
 (3,
  108,
  'Charma, Antoine, 1801-1869. 3 ALS (in French) to T. J. Pettigrew',
  '1850-51'),
 (3, 109, 'Cherry, Henry Curtis. ALS to T. J. Pettigrew', '1859 Aug 23'),
 (3,
  110,
  'Chichester, Henry Thomas Pelham, 7th Earl of, 1804-1886. ALS to T. J. Pettigrew',
  '[1860?] Jul 24'),
 (3,
  111,
  'Chichester, Sir John Palmer Bruce, bart. ALS to T. J. Pettigrew',
  'n.d.'),
 (3,
  112,
  'Cholmondeley, Susan (Somerset) Cholmondeley, Marchioness, 1804-1886. AL to T. J. Pettigrew',
  '1835 Jun 22'),
 (3,
  113,
  'Cholmondeley, William Henry Hugh Cholmondeley, 3d Marquis, 1800-1884. ALS to T. J. Pettigrew',
  '[1846 or later]'),
 (3, 114, 'Christmas, Henry, 1811-1868. ALS to T.J. Pettigrew', '1855 Mar 14'),
 (3,
  115,
  'Churston, John Buller-Yarde-Buller, 1st Baron, 1799-1871. 2 ALS to T. J. Pettigrew',
  '1861 Mar, Nov'),
 (3,
  '116-119',
  'Cimitile, Principe di. 39 ALS and 3 AL to T. J. Pettigrew.',
  '[1823]-44'),
 (3,
  120,
  'Clanny, William Reid, 1776-1850. 5 ALS to T. J. Pettigrew',
  '1829-49'),
 (3,
  121,
  'Clark, Sir James, 1788-1870. ALS and AL to T. J. Pettigrew',
  '1832 Feb'),
 (3,
  122,
  'Clarke, Sir Charles Mansfield, bart., 1782-1857. 5 ALS to T. J. Pettigrew',
  '[1836]-41'),
 (3,
  123,
  'Cleveland, Henry George Vane Powlett, 4th Duke of, 1803-1891. ALS to T. J. Pettigrew',
  '1865 Aug 11'),
 (3,
  124,
  'Cleveland, Henry Vane, 2d Duke of, 1788-1864. ALS and AL to T. J. Pettigrew',
  '1860 Jan, Feb'),
 (3,
  125,
  'Clifford, Sir Augustus William James, bart., 1788-1877. ALS to T. J. Pettigrew',
  'n.d.'),
 (3,
  126,
  'Clifford, Charles Clifford, 6th Baron, 1759-1831. ALS to T. J. Pettigrew',
  '1823 Mar 14'),
 (3,
  127,
  'Clifford, Charles Hugh Clifford, 8th Baron, 1819-1880. 2 ALS to T. J. Pettigrew',
  '1861 Apr, Nov'),
 (3, 128, 'Clint, Scipio, 1805-1839. AL to T. J. Pettigrew', '1833 Mar 9'),
 (3, 129, 'Close, Thomas, 1796-1881. ALS to T. J. Pettigrew', '1852 Oct 27'),
 (3,
  130,
  'Clot, Antoine-barthélemy, 1793-1868. AL (in French) to T. J. Pettigrew and 1 calling card.',
  '1833 Jan 21'),
 (3,
  131,
  'Clutterbuck, Henry, 1767-1856. 8 ALS to T. J. Pettigrew',
  '1818-41'),
 (4,
  132,
  'Cockburn, Sir William Sarsfield Rossiter, bart., 1796-1858. ALS to T. J. Pettigrew',
  '1856 Oct 14'),
 (4,
  133,
  'Colborne, Nicholas William Ridley-Colborne, 1st Baron, 1779-1854. 5 ALS to T. J. Pettigrew',
  '[ca. 1849]'),
 (4,
  134,
  'Coleridge, Sir John Taylor, 1790-1876. 2 ALS to T. J. Pettigrew',
  '1861 Mar, Nov'),
 (4,
  135,
  'Collier, John Payne, 1789-1883. 2 ALS to T. J. Pettigrew',
  '1854, 1855'),
 (4,
  136,
  'Collyer, William Bengo, 1782-1854. 3 ALS to T. J. Pettigrew',
  '1816-23'),
 (4, 137, 'Combe, Taylor, 1774-1826. 2 ALS to T. J. Pettigrew', '1821, 1824'),
 (4,
  138,
  'Conolly, John, 1794-1866. 7 ALS and 3 AL to T. J. Pettigrew',
  '[1829]-57'),
 (4,
  139,
  'Conybeare, William Daniel, 1787-1857. ALS to T. J. Pettigrew',
  '1854 Jul 28'),
 (4,
  140,
  'Conyngham, Henry Conyngham, 1st Marquess, 1766-1832. 2 ALS to T. J. Pettigrew',
  '1831 Oct'),
 (4,
  141,
  'Cooke, John, 1756-1838. 7 ALS and 1 fragment to T. J. Pettigrew, 1 ALS to unidentified "Madam."',
  '[1829-32]'),
 (4,
  142,
  'Cooper, Sir Astley Paston, bart., 1768-1841. 14 ALS to T. J. Pettigrew and 1 ALS from Pettigrew to Cooper',
  '1815-38'),
 (4,
  143,
  'Copeland, Thomas, 1781-1855. 5 ALS and 1 AL to T. J. Pettigrew',
  '[1822 or later]'),
 (4, 144, 'Copland, James, 1791-1870. 3 ALS to T. J. Pettigrew', '1830 Feb'),
 (4,
  145,
  'Corblet, Louis-Achille-Jules, 1819-1886. ALS (in French) to T. J. Pettigrew',
  '1857 Feb 20'),
 (4,
  146,
  'Corner, George Richard, 1801-1863. 5 ALS and 1 AL to T. J. Pettigrew',
  '1845-52'),
 (4, 147, 'Cory, Isaac Preston, 1802-1842. ALS to T. J. Pettigrew', 'n.d.'),
 (4,
  148,
  'Costa, Sir Michael, 1810-1884. 7 ALS in French and 5 ALS in English to T. J. Pettigrew',
  '1840-50'),
 (4,
  149,
  'Costello, Dudley, 1803-1865. 5 ALS to T. J. Pettigrew',
  '[1856]-59'),
 (4, 150, 'Cotton, Henry, 1789-1879. ALS to T. J. Pettigrew', '1851 May 9'),
 (4,
  151,
  'Coulson, William, 1802-1877. ALS to T. J. Pettigrew',
  '1861 Nov 23'),
 (4,
  152,
  'Courtenay, Thomas Peregrine, 1782-1841. ALS to T. J. Pettigrew',
  '1841 Feb 12'),
 (4,
  153,
  'Cowper, George Augustus Frederick, 6th Earl, 1806-1856. ALS to T. J. Pettigrew',
  '1853 Jun 10'),
 (4,
  154,
  'Coxe, Henry Octavius, 1811-1881. 2 ALS to T. J. Pettigrew',
  '[1846 or later]'),
 (4,
  155,
  'Craven, Louisa (Brunton) Craven, Countess of, 1785-1860. AL to T. J. Pettigrew',
  '[1859 or later]'),
 (4, 156, 'Criticus, pseud. ALS to T. J. Pettigrew', 'n.d.'),
 (4,
  157,
  'Croker, Thomas Crofton, 1798-1854. 4 ALS to T. J. Pettigrew',
  '1844-46'),
 (4,
  158,
  'Cruikshank, George, 1792-1878. 5 ALS to T. J. Pettigrew',
  '1854-55'),
 (4, 159, 'Cullimore, Isaac, 1791-1852. 4 ALS to T. J. Pettigrew', '1838-44'),
 (4,
  160,
  'Cunningham, Peter, 1816-1869. 2 LS to T. J. Pettigrew',
  '1852 Jan, Mar'),
 (4,
  161,
  'Curtis, Sir William, bart., 1804-1870. ALS to T. J. Pettigrew',
  '[1859 or later]'),
 (4,
  162,
  'Darnley, John Stuart Bligh, 6th Earl of, 1827-1896. 6 ALS to T. J. Pettigrew',
  '1853 Jan-Aug'),
 (4,
  163,
  'Dartmouth, William Legge, 4th Earl of, 1784-1853. 2 ALS to T. J. Pettigrew',
  '1814, 1823'),
 (4,
  164,
  'Dartmouth, William Walter Legge, 5th Earl of, 1823-1891. 4 ALS to T. J. Pettigrew',
  '1860 Feb-Oct'),
 (4,
  165,
  'Davidson, John, 1797-1836. 4 ALS to T. J. Pettigrew',
  '[after 1834]'),
 (4, 166, '6 ALS to T. J. Pettigrew', '1850-[56?]'),
 (4, 167, 'Prospectus (signed)', 'n.d.'),
 (4, 168, 'Davis, Nathan, 1812-1882. 2 ALS to T. J. Pettigrew', '1835-52'),
 (4,
  169,
  'Delamere, Thomas Cholmondeley, 1st Baron, 1767-1855. AL to T. J. Pettigrew',
  'n.d.'),
 (4, 170, 'Delille, Charles Jean. 2 ALS to T. J. Pettigrew', '1834, 1841'),
 (4,
  171,
  'De Morgan, Augustus, 1806-1871. ALS to T. J. Pettigrew',
  '1845 Dec 17'),
 (4,
  172,
  'Denman, Thomas Denman, 1st Baron, 1779-1854. 4 ALS to T. J. Pettigrew',
  '1838-41'),
 (4,
  173,
  'Devon, William Reginald Courtenay, 30th Earl of, 1807-1888. ALS and 2 AL to T. J. Pettigrew',
  '1861 Feb-Jul'),
 (4,
  174,
  'Devonshire, William Cavendish, 7th Duke of, 1808-1891. AL to T. J. Pettigrew',
  '1850 Jun 14'),
 (4,
  175,
  'Devonshire, William George Spencer Cavendish, 6th Duke of, 1790-1858. ALS and AL to T. J. Pettigrew',
  '1833, 1851'),
 (4,
  176,
  "D'Eyncourt, Charles Tennyson, 1784-1861. ALS to T. J. Pettigrew",
  '1859 Mar 9'),
 (4,
  177,
  'Dillon, Sir William Henry, 1779-1857. 4 ALS to T. J. Pettigrew',
  '1834 May'),
 (4,
  178,
  'Dimock, James Francis, 1810-1876. 3 ALS to T. J. Pettigrew and 1 ALS to "Mr. Archdeacon"',
  'n.d'),
 (4,
  179,
  'Dixon, William Hepworth, 1821-1879. ALS and AL to T. J. Pettigrew',
  '1854 Feb'),
 (4,
  180,
  'Donkin, Sir Rufane Shaw, 1773-1841. 2 ALS to T. J. Pettigrew',
  '[1829], 1833'),
 (4,
  181,
  'Donnelly, Sir Ross, 1761?-1840. 4 ALS and 3 AL to T. J. Pettigrew',
  '1826-33'),
 (4,
  182,
  'Dover, Georgiana (Cavendish) Agar-Ellis, Baroness, 1804-1860. AL to Mr. Stephenson',
  'n.d.'),
 (4,
  183,
  'Downshire, Arthur Wills Blundell Sandys Trumbull Windsor Hill, 4th Marquis of, 1812-1868. ALS to T. J. Pettigrew',
  '1859 Jul 18'),
 (4,
  184,
  'Doyle, Sir Charles William, 1770-1842. AL to T. J. Pettigrew',
  '1823 Jun 8'),
 (4,
  185,
  'Doyle, Sir John, bart., 1750?-1834. 2 ALS to T. J. Pettigrew',
  '1829, 1830'),
 (4,
  186,
  'Drury, Henry Joseph Thomas, 1778-1841. 3 ALS to T. J. Pettigrew',
  '1829-32'),
 (4,
  187,
  'Ducie, Henry John Reynolds-Moreton, 3d Earl of, 1827-1921. 5 ALS to T. J. Pettigrew',
  '1860 Apr'),
 (4,
  188,
  'Duckett, Sir George, bart., 1777-1856. 2 AL to T. J. Pettigrew',
  '1830 May-Jun'),
 (4,
  189,
  'Dufour, Charles, 1814-1887. ALS (in French) to T. J. Pettigrew',
  '1851 Mar 21'),
 (4, 190, 'Dunbar, M. J. M. 7 ALS to T. J. Pettigrew', '[1853 or later]'),
 (4,
  191,
  'Dundas, Sir James Whitley Deans, 1785-1862. 3 ALS and 1 AL to T. J. Pettigrew',
  '1829-[59]'),
 (4,
  192,
  'Dungannon, Arthur Hill-Trevor, 3d Viscount, 1798-1862. AL to T. J. Pettigrew',
  '1860 May 14'),
 (4,
  193,
  'Dunkin, Alfred John, 1812-1879. ALS to T. J. Pettigrew',
  '1846 Jun 10'),
 (4,
  194,
  'Dunraven, Edward Richard Wyndham Wyndham-Quin, 3d Earl of, 1812-1871. 2 ALS to T. J. Pettigrew',
  '1861 May'),
 (4,
  195,
  'Dupont, Gustave Jules, 1820-1903. ALS to T. J. Pettigrew',
  '1851 Sep 26'),
 (4,
  196,
  'Dwarris, Sir Fortunatus William Lilley, 1786-1860. 2 ALS to T. J. Pettigrew',
  '1857 Jul-Aug'),
 (5,
  197,
  'Edwards, William Camden, 1777-1855. ALS to T. J. Pettigrew',
  '[1831 or later]'),
 (5,
  198,
  'Effingham, Henry Howard, 2d Earl of, 1806-1889. 5 ALS to T. J. Pettigrew',
  '1845-61'),
 (5,
  199,
  'Effingham, Kenneth Alexander Howard, 1st Earl of, 1767-1845. 3 ALS to T. J. Pettigrew',
  '1843-44'),
 (5,
  200,
  'Eglinton, Archibald William Montgomerie, 13th Earl of, 1812-1861. ALS to T. J. Pettigrew',
  '1857 Sep 21'),
 (5,
  201,
  'Egmont, Bridget (Wynn) Perceval, Countess of, d. 1826. ALS and AL to T. J. Pettigrew',
  '[1821 or later]'),
 (5,
  202,
  'Ellis, Sir Henry, 1777-1869. 14 ALS to T. J. Pettigrew and 1 ALS to F. Maurice',
  '1821-57'),
 (5, 203, 'Erksine, Thomas, 1788-1864. 4 ALS to T. J. Pettigrew', '1856-60'),
 (5,
  204,
  'Erksine, Thomas Erksine, 1st Baron, 1750-1823. 2 ALS and 2 AL to T. J. Pettigrew',
  '1815-18'),
 (5,
  205,
  'Essex, George Capel-Coningsby, 6th Earl of, 1757-1839. ALS to T. J. Pettigrew',
  '1821 Jun 16'),
 (5,
  206,
  'Essex, Sarah (Bazett) Capel-Coningsby, Countess of, 1761-1838. ALS to Dr. Shearman',
  'n.d.'),
 (5,
  207,
  'Estcourt, Thomas Henry Sutton Sotheron, 1801-1876. ALS to T. J. Pettigrew',
  'n.d.'),
 (5, 208, 'Ewart, William, 1798-1869. ALS to T. J. Pettigrew', '1858 Jun 1'),
 (5,
  209,
  'Exmouth, Edward Pellew, 3d Viscount, 1811-1876. ALS to T. J. Pettigrew',
  '1861 Apr 22'),
 (5,
  210,
  'Exmouth, Pownoll Bastard Pellew, 2d Viscount, 1786-1833. ALS to T. J. Pettigrew',
  '1817 Mar 21'),
 (5,
  211,
  'Eyton, Robert William, 1815-1881. 3 ALS to T. J. Pettigrew',
  '[1856]-60'),
 (5,
  212,
  'Fairholt, Frederick William, 1814-1866. 2 ALS to T. J. Pettigrew',
  '1852 May 29'),
 (5, 213, 'Falconer, Thomas, 1805-1882. 18 ALS to T. J. Pettigrew', '1850-61'),
 (5, 214, 'Falkener, Edward, 1814-1896. ALS to T. J. Pettigrew', 'n.d.'),
 (5,
  215,
  'Farquhar, Mary Octavia (Somerset), lady, d. 1906. AL to T. J. Pettigrew',
  '1848 Mar 1'),
 (5,
  216,
  'Farre, John Richard, 1775-1862. ALS to T. J. Pettigrew',
  '1831 Nov 5'),
 (5,
  217,
  'Faulkner, Sir Arthur Brooke, 1779-1845. 12 ALS and 2 AL to T. J. Pettigrew and 1 calling card',
  '1820-44'),
 (5,
  218,
  'Fellows, Sir Charles, 1799-1860. 2 ALS to T. J. Pettigrew',
  '1855 Jul'),
 (5,
  219,
  'Ferguson, Robert, 1799-1865. ALS to T. J. Pettigrew',
  '1843 Aug 10'),
 (5,
  220,
  'Ferrers, Washington Sewallis Shirley, 9th Earl of, 1822-1859. 2 ALS to T. J. Pettigrew',
  '1851 May'),
 (5,
  221,
  'Ffolkes, Sir William John Henry Browne, bart., 1786-1860. AL to T. J. Pettigrew',
  '1833 Jul 19'),
 (5,
  222,
  'Filmer, Sir Edmund, bart., 1809-1857. 2 ALS to T. J. Pettigrew',
  '1853 Mar, May'),
 (5,
  223,
  'Fitch, William Stevenson, 1793-1859. ALS to T. J. Pettigrew',
  '1845 Sep 3'),
 (5,
  224,
  'Fitzhardinge, William Fitzhardinge Berkeley, 1st Earl, 1786-1857. 2 ALS to C. Roach Smith',
  '1846 Jul'),
 (5,
  225,
  'Forbes, Sir Charles Ferguson, 1779-1852. 2 ALS to T. J. Pettigrew',
  '1817 Jun'),
 (5, 226, 'Forbes, Sir John, 1787-1861. 5 ALS to T. J. Pettigrew', '1839-40'),
 (5, 227, 'Forester, Thomas. ALS to T. J. Pettigrew', 'n.d.'),
 (5,
  228,
  'Foster, Peter Le Neve, 1809-1879. ALS to T. J. Pettigrew',
  '1854 Jan 17'),
 (5,
  229,
  'Freeman, Edward A., 1823-1892. 2 ALS to T. J. Pettigrew',
  '1854, 1856'),
 (5,
  230,
  'French, Gilbert James, 1804-1866. 4 ALS to T. J. Pettigrew, 1 ALS to J.R. Planché, and 1 ALS to [John E. Engan?] Secretary of the B.A.A.',
  '1850-60'),
 (5, 231, 'Fryer, Edward, 1761-1826. 2 ALS to T. J. Pettigrew', '1818, 1828'),
 (5,
  232,
  'Gage, Henry Hall Gage, 4th Viscount, 1791-1877. AL to T. J. Pettigrew',
  '1833 Aug 15'),
 (5,
  233,
  'Gardiner, Sir Robert William, 1781-1864. 3 ALS to T. J. Pettigrew',
  '1848 Aug'),
 (5, 234, 'Gerhard, E. ALS (in French) to T. J. Pettigrew', 'n.d.'),
 (5,
  235,
  'Gilbert, Ashurst Turner, Bp. of Chichester, 1786-1870. ALS and AL to T. J. Pettigrew',
  '1854, 1861'),
 (5, 236, 'Godwin, George, 1815-1888. 2 ALS to T. J. Pettigrew', '1853 Apr'),
 (5,
  237,
  'Good, John Mason, 1764-1827. 2 ALS to T. J. Pettigrew',
  '1815, 1821'),
 (5,
  238,
  'Goodenough, Edmund, 1785-1845. 3 ALS to T. J. Pettigrew',
  '1804-27'),
 (5,
  239,
  'Goodwin, Charles Wycliffe, 1817-1878. ALS to the Secretary of the B.A.A.',
  '1862 May 5'),
 (5, 240, 'Gordon, J. E. 3 ALS to T. J. Pettigrew', '[1831 or later]'),
 (5,
  241,
  'Gosford, Archibald Acheson, 2d Earl of, 1776-1849. 3 ALS to T. J. Pettigrew',
  '1833-44'),
 (5,
  242,
  'Gosford, Archibald Acheson, 3d Earl of, 1806-1864. ALS to T. J. Pettigrew',
  '1841 May 19'),
 (5, 243, 'Gould, Nathaniel. 2 ALS to T. J. Pettigrew', '[1850], 1861'),
 (5,
  244,
  'Grafton, William Henry FitzRoy, 6th Duke of, 1819-1882. ALS to T. J. Pettigrew',
  'n.d.'),
 (5,
  245,
  'Granville, Augustus Bozzi, 1783-1872. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 (5, 246, 'Grenville, Thomas, 1755-1846. 4 ALS to T. J. Pettigrew', '1805-42'),
 (5,
  247,
  'Grey, Charles Grey, 2d Earl, 1764-1845. 2 AL to T. J. Pettigrew',
  '1819, 1829'),
 (5,
  248,
  'Grey-Egerton, Sir Philip de Malpas, 1806-1881. ALS to T. J. Pettigrew',
  '1850 Jun 5'),
 (5,
  249,
  'Guilford, Francis North, 6th Earl of, 1772-1861. 2 ALS to T. J. Pettigrew',
  '1853 Feb, May'),
 (5, 250, 'Gunn, William, 1750-1841. ALS to T. J. Pettigrew', '1831 Jan 27'),
 (5,
  251,
  'Gurney, John Hampden, 1802-1862. 2 ALS to T. J. Pettigrew',
  '1861, 1862'),
 (5,
  252,
  'Gutch, John Matthew, 1776-1861. 5 ALS to T. J. Pettigrew',
  '1848-54'),
 (5,
  253,
  'Guthrie, George James, 1785-1856. 8 ALS to T. J. Pettigrew',
  '[1833]-45'),
 (5, 254, 'Gwilt, Joseph, 1784-1863. ALS to T. J. Pettigrew', '1849 Mar 28'),
 (6,
  255,
  'Haigh, Daniel Henry, 1819-1879. ALS to T. J. Pettigrew',
  '1850 Dec 21'),
 (6,
  256,
  'Halford, Sir Henry, bart., 1766-1844. 3 ALS to T. J. Pettigrew',
  '1829-37'),
 (6, 257, 'Haliburton, James, 1788-1862. 7 ALS to T. J. Pettigrew', '1833-48'),
 (6, 258, 'Hall, Marshall, 1790-1857. ALS to T. J. Pettigrew', '1838 Feb 14'),
 (6,
  259,
  'Halliday, Sir Andrew, 1781-1839. 2 ALS to T. J. Pettigrew',
  '1823, 1826'),
 (6,
  260,
  'Hamilton, Henry Parr, 1794-1880. 6 ALS to T. J. Pettigrew',
  '1844-58'),
 (6, 261, 'Hamilton, R., col. ALS to T. J. Pettigrew', '1826 Jul 21'),
 (6,
  262,
  'Hamilton, William Richard, 1777-1859. 7 ALS and 1 LS to T. J. Pettigrew',
  '1830-45'),
 (6,
  263,
  'Hancock, Thomas, 1783-1849. 2 ALS to T. J. Pettigrew',
  '1834, 1842'),
 (6,
  264,
  'Hargrove, William, 1788-1862. ALS to T. J. Pettigrew',
  '1850 Apr 22'),
 (6, 265, 'Harland, John, 1806-1868. ALS to T. J. Pettigrew', '1850 Sep 10'),
 (6, 266, 'Harriott, Thomas. ALS to T. J. Pettigrew', '1813 Dec 8'),
 (6, 267, 'Harrod, Henry, 1817-1871. ALS to T. J. Pettigrew', '1857 Aug 7'),
 (6,
  268,
  'Harrowby, Dudley Francis Stuart Ryder, 3d Earl of, 1831-1900. 3 ALS to T. J. Pettigrew',
  '1851-52'),
 (6,
  269,
  'Hartshorne, Charles Henry, 1802-1865. 3 ALS to T. J. Pettigrew',
  '1860-61'),
 (6, 270, 'Haslam, John, 1764-1844. 3 ALS to T. J. Pettigrew', '1831-33'),
 (6, 271, 'ALS to T. J. Pettigrew', '1845 Feb 25'),
 (6, 272, 'ALS to C. R. Smith', '1845 Jul 7'),
 (6,
  273,
  'Hawkins, Caesar Henry, 1798-1884. 3 ALS to T. J. Pettigrew',
  '[1831 or later]'),
 (6,
  274,
  'Hawkins, Edward, 1780-1867. 4 ALS and 1 AL to T. J. Pettigrew',
  '[1828]-53'),
 (6,
  275,
  'Hawkins, Francis, 1794-1877. 2 LS, 9 ALS, and 1 AL to T. J. Pettigrew',
  '1835-52'),
 (6, 276, 'Hay, Robert, 1799-1863. 2 ALS to T. J. Pettigrew', '1841, 1842'),
 (6,
  277,
  'Heath, Dunbar Isidore, 1816-1888. 2 ALS to T. J. Pettigrew',
  '1861, 1862'),
 (6, 278, 'Heath, J. M. 6 ALS and 1 AL (draft) to T. J. Pettigrew', '1817-38'),
 (6, 279, 'Heberden, William, 1767-1845. 2 ALS to T. J. Pettigrew', 'n.d.'),
 (6,
  280,
  'Henderson, Alexander, 1780-1863. 2 AL (3d person) to T. J. Pettigrew',
  '[1825 or later]'),
 (6,
  281,
  "Heytesbury, William A'Court, 1st Baron, 1779-1860. ALS to T. J. Pettigrew",
  '1855 Jul 10'),
 (6,
  282,
  'Hill, Sir Rowland, 1795-1879. ALS to T. J. Pettigrew',
  '1855 Dec 21'),
 (6, 283, 'Hill, Thomas, 1760-1840. ALS to T. J. Pettigrew', '1827 Mar 20'),
 (6,
  284,
  'Hincks, Edward, 1792-1866. 4 ALS to T. J. Pettigrew',
  '1845 Jul-Aug'),
 (6,
  285,
  'Holland, Sir Henry, bart., 1788-1873. 7 ALS and 1 AL to T. J. Pettigrew',
  '[1824-47]'),
 (6,
  286,
  'Hood, Sir Alexander Bateman Periam Fuller-Acland-Hood, bart., 1819-1892. AL to T. J. Pettigrew',
  '1856 Jun 30'),
 (6,
  287,
  'Houghton, Richard Monckton Milnes, 1st Baron, 1809-1885. 6 ALS to T. J. Pettigrew',
  'n.d.'),
 (6, 288, 'Hugo, Thomas, 1820-1876. 3 ALS to T. J. Pettigrew', '1853 Mar'),
 (6, 289, 'Hume, Abraham, 1814-1884. 4 ALS to T. J. Pettigrew', '1849-50'),
 (6,
  290,
  'Hunter, Joseph, 1783-1861. 2 ALS to T. J. Pettigrew',
  '1841 May, Jun'),
 (6,
  291,
  'Husenbeth, Frederick Charles, 1796-1872. 3 ALS to T. J. Pettigrew and 1 ALS to the Council of the B.A.A.',
  '1846-57'),
 (6,
  292,
  'Huskisson, William, 1770-1830. AL to T. J. Pettigrew',
  '1818 Jan 9'),
 (6,
  293,
  'Irving, George Vere, 1815-1869. 2 ALS to T. J. Pettigrew',
  '1857 Jun'),
 (6, 294, 'Isaacson, Stephen, 1798-1849. 4 ALS to T. J. Pettigrew', '1845-46'),
 (7,
  295,
  'Jackson, John, Bp. of London, 1811-1885. AL to T. J. Pettigrew',
  '1854 Jun 5'),
 (7, 296, 'Jerden, William, 1782-1869. ALS to T. J. Pettigrew', '1860 May 3'),
 (7,
  297,
  'Jewitt, Llewellyn Frederick William, 1816-1886. 2 ALS to T. J. Pettigrew',
  '1849 Oct'),
 (7, 298, 'Johnson, James, 1777-1845. ALS to T. J. Pettigrew', '1831 Mar 20'),
 (7,
  299,
  'Jones, Harry Longueville, 1806-1870. ALS to T. J. Pettigrew',
  '1848 Jun 2'),
 (7, 300, 'Jones, Thomas, 1810-1875. ALS to T. J. Pettigrew', '1861 Oct 22'),
 (7,
  301,
  'Jones, William Henry Rich, 1817-1885. 4 ALS to T. J. Pettigrew',
  '1858 Jun-Jul'),
 (7, 302, 'Julien, [Marc Antoine?]. AL to T. J. Pettigrew', '1833 Sep 2'),
 (7, 303, 'Just, John, 1797-1852. 4 ALS to T. J. Pettigrew', '1850-51'),
 (7,
  304,
  'Kater, Henry, 1777-1835. ALS and AL to T. J. Pettigrew',
  '1829, 1830'),
 (7,
  305,
  'Kean, Charles John, 1811-1868. 1 ALS to James Robinson Planché (1796-1880)',
  '1847 Sep 24'),
 (7, 306, 'Keate, Robert, 1777-1857. 2 ALS to T. J. Pettigrew', '[1824]-40'),
 (7, 307, 'Kelly, Patrick, 1756-1842. ALS to T. J. Pettigrew', '1830 Jan 30'),
 (7, 308, 'Kemble, Charles, 1775-1854. 1 ALS to T.J. Pettigrew.', 'n.d.'),
 (7,
  309,
  'Kempe, Alfred John, 1785?-1846. ALS to T. J. Pettigrew',
  '1846 Apr 13'),
 (7, 310, 'Kerrison, Robert Masters, 8 ALS to T. J. Pettigrew', '1829-40'),
 (7, 311, 'King, Richard, 1811?-1876. ALS to T. J. Pettigrew', 'n.d.'),
 (7,
  312,
  'King, Walker, Bp. of Rochester, 1732-1827. ALS to T. J. Pettigrew',
  '[1815 or later]'),
 (7, 313, 'Kingdom, John. ALS to William Salisbury', '[after 1831]'),
 (7,
  314,
  'Kinnaird, Douglas James William, 1788-1830. AL to T. J. Pettigrew',
  '1823 May 19'),
 (7,
  315,
  'Knightley, Selina Mary (Hervey), Lady. AL to T. J. Pettigrew',
  '1847 Apr 13'),
 (7, 316, 'Knox, Vicesimus, d. 1855. ALS to J. G. Children', '1841 Jan 30'),
 (7,
  317,
  'Konig, Charles Dietrich Eberhard, 1774-1851. 5 ALS to T. J. Pettigrew',
  '1827-[31]'),
 (7, 318, '2 ALS and 1 AL (in Italian) to Mr. Albano', '[1837 or later]'),
 (7, 319, 'LS to T. J. Pettigrew', '1838 Aug 22'),
 (7,
  320,
  'Lamb, Lady Caroline (Ponsonby), 1785-1828. AL to T. J. Pettigrew',
  '[1823 or later]'),
 (7,
  321,
  'Lamington, Alexander Dundas Ross Wishart Cochrane-Baillie, 1st Baron, 1816-1890. ALS to T. J. Pettigrew',
  '1861 Apr 30'),
 (7, 322, 'Lane, Hunter, d. 1853. 2 ALS to T. J. Pettigrew', '1840, 1842'),
 (7, 323, 'Latham, John, 1761-1843. ASL to T. J. Pettigrew', '1826 Feb 10'),
 (7,
  324,
  'Law, George Henry, Bp. of Bath and Wells, 1761-1845. 2 AL to T. J. Pettigrew',
  '1827 May'),
 (7,
  325,
  'Lawrence, Sir William, 1783-1867. ALS to T. J. Pettigrew',
  '1841 Nov 16'),
 (7,
  326,
  'Leach, William Elford, 1790-1836. AL to T. J. Pettigrew',
  '1817 Nov 22'),
 (7,
  327,
  'Leake, William Martin, 1777-1860. 2 ALS to T.J. Pettigrew and 1 calling card.',
  '[1849 or later]'),
 (7,
  328,
  'Lee, John, 1783-1866. 17 ALS and 1 AL to T. J. Pettigrew',
  '1825-57'),
 (7, 329, 'Lee, John Edward, 1808-1887. 3 ALS to T. J. Pettigrew', '1850-53'),
 (7, 330, 'Lee, Samuel, 1783-1852. 14 ALS to T. J. Pettigrew', '1827-34'),
 (7,
  331,
  'Lee, Sarah (Wallis) Bowdich, 1791-1856. ALS and AL to T. J. Pettigrew',
  '1830, 1834'),
 (7, 332, 'Leemans, Conrad. 10 ALS to T. J. Pettigrew', '1836-43'),
 (7,
  333,
  'Lemon, Robert, 1779-1835. 7 ALS and 1 AL to T. J. Pettigrew',
  '1826-31'),
 (7,
  334,
  'Lemon, Robert, 1800-1867. 3 ALS and 2 AL to T. J. Pettigrew',
  '1826-46'),
 (7,
  335,
  'Leslie, Charles Robert, 1794-1859. ALS to T. J. Pettigrew',
  '1849 Jan 8'),
 (7, 336, 'Lete, Thomas. ALS to T. J. Pettigrew', '1852 Jun 3'),
 (7,
  337,
  'Lewis, Frederick Christian, 1779-1856. AL to T. J. Pettigrew',
  'n.d.'),
 (7,
  338,
  'Lewis, George Robert, 1782-1871. 2 ALS to T. J. Pettigrew',
  '1840, 1851'),
 (7,
  339,
  'Lewis, Griffith George, 1784-1859. AL to T. J. Pettigrew',
  '1842 Apr 15'),
 (7, 340, 'ALS to unnamed recipient', 'n.d.'),
 (7, 341, 'ALS to Mr. Lindsay', 'n.d.'),
 (7, 342, '2 ALS to T. J. Pettigrew', '[1832 or later]'),
 (7, 343, 'Liston, Robert, 1794-1847. 9 ALS to T. J. Pettigrew', '1835-46'),
 (7, 344, 'Lloyd, W. ALS to T. J. Pettigrew', '1817 Mar 13'),
 (7, 345, 'Loewe, Louis, 1809-1888. 7 ALS to T. J. Pettigrew', '1837-46'),
 (7,
  '346-347',
  'Londesborough, Albert Denison, 1st Baron, 1805-1860. 43 ALS to T. J. Pettigrew and 1 ALS fragment to unidentified [The V. Revd. Dean of ?]',
  '[1843-49]'),
 (7, 348, 'Lonsdale, James, 1777-1839. ALS to T. J. Pettigrew', '1823 Sep 2'),
 (7,
  349,
  'Lonsdale, John, Bp. of Lichfield, 1788-1867. 2 ALS to T. J. Pettigrew',
  '1860 Jan, Jul'),
 (7,
  350,
  'Lough, John Graham, 1806-1876. ALS to T. J. Pettigrew',
  '[1840 or later]'),
 (7, 351, 'ALS to T. J. Pettigrew', '1845 Nov 18'),
 (7, 352, '3 ALS to J. R. Planché', '1845-52'),
 (7,
  353,
  'Ludolf, comte de [Neopolitan Ambassador]. ALS and AL to T. J. Pettigrew',
  '1830 Apr, Aug'),
 (7, 354, 'Lynch, Christopher. 3 ALS to T. J. Pettigrew', '1851-53'),
 (8,
  355,
  'Macdonald, Lawrence, 1799-1878. AL to T. J. Pettigrew',
  '[1830 or later]'),
 (8,
  356,
  'McGrigor, Sir Charles Roderic, bart., b. 1811. 3 ALS to T. J. Pettigrew',
  '[1859 or later]'),
 (8,
  357,
  'McGrigor, Sir James, bart., 1771-1858. 7 ALS, 1 LS, 1 AL to T. J. Pettigrew',
  '1830-54'),
 (8,
  358,
  'Mackenzie, Robert Shelton, 1809-1880. ALS to T. J. Pettigrew',
  '1844 Sep 19'),
 (8,
  359,
  'Mackinnon, William Alexander, 1789-1870. 7 ALS and 1 AL to T. J. Pettigrew',
  '[1828-37]'),
 (8,
  360,
  'Maitland, Samuel Roffey, 1792-1866. ALS to T. J. Pettigrew',
  '[1838-48]'),
 (8,
  361,
  'Maltby, Edward, Bp. of Durham, 1770-1859. 23 ALS to T. J. Pettigrew',
  '[1842]-52'),
 (8,
  362,
  'Manby, George William, 1765-1854. 2 ALS to T. J. Pettigrew',
  '1830 Aug 28'),
 (8,
  363,
  'Mandelsloh, count (Würtemberg Minister to Gr. Brit.). 1 ALS and 2 AL to T. J. Pettigrew',
  '[1826]-35'),
 (8, 364, 'Mangles, James, 1786-1867. 5 ALS to T. J. Pettigrew.', '1834-42'),
 (8,
  365,
  'Manvers, Charles Herbert Pierrepont, 2d Earl, 1778-1860. ALS to T. J. Pettigrew',
  '1852 Jul 9'),
 (8,
  366,
  'Markland, James Heywood, 1788-1864. ALS to T. J. Pettigrew',
  '1840 May 28'),
 (8,
  367,
  'Marrable, Frederick, 1818-1872. ALS to T. J. Pettigrew',
  '1850 Feb 20'),
 (8,
  368,
  'Marsden, William, 1754-1836. ALS and 2 AL to T. J. Pettigrew',
  '1833 Jun'),
 (8,
  369,
  'Marshall, William Calder, 1813-1894. 3 ALS to T. J. Pettigrew',
  '1851-58'),
 (8,
  370,
  'Martin, Sir James Ranald, 1793-1874. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 (8,
  371,
  'Martin, Leopold Charles, 1817-1889. ALS to T. J. Pettigrew',
  '1845 Jun 20'),
 (8,
  372,
  'Maton, William George, 1774-1835. ALS to T. J. Pettigrew',
  '[1825 or later]'),
 (8, 373, 'Maugham, Robert, d. 1862. 3 ALS to T. J. Pettigrew', '1824 Apr'),
 (8, 374, 'Mayer, Joseph, 1803-1886. 2 ALS to T. J. Pettigrew', '1849, 1850'),
 (8,
  375,
  'Mayo, Herbert, 1796-1852. 4 ALS to T. J. Pettigrew',
  '[1837 or later]'),
 (8,
  376,
  'Melfort, George Drummond, 6th Duke of, 1807-1902. ALS to T. J. Pettigrew',
  '1856 Jul 4'),
 (8,
  377,
  'Merivale, John Herman, 1779-1844. 5 ALS to T. J. Pettigrew',
  '1836 Jul-Nov'),
 (8, 378, 'Merriman, Samuel, 1771-1852. 4 ALS to T. J. Pettigrew', '1827-38'),
 (8,
  379,
  'Meyrick, Sir Samuel Rush, 1783-1848. 11 ALS to T. J. Pettigrew',
  '1827-47'),
 (8,
  380,
  'Monk, James Henry, Bp. of Gloucester and Bristol, 1784-1856. ALS to C. R. Smith',
  '1846 Apr 17'),
 (8,
  381,
  'Montfort, Henry Bromley, Lord, 3d Baron of Horseheath, 1773-1851. ALS to T. J. Pettigrew',
  '1826 Sep 28'),
 (8, 382, 'Moodie, John. 8 ALS to T. J. Pettigrew', '1816-17'),
 (8,
  383,
  'Moore, James Carrick, 1762-1860. 3 ALS and 1 AL to T. J. Pettigrew',
  '1838-40'),
 (8,
  384,
  '2 ALS (in French), 2 LS to T. J. Pettigrew and 1 document, signed',
  '1827-36'),
 (8, 385, 'LS to the Duke of Sussex', '1831 Feb 28'),
 (8,
  386,
  'Morgan, John Minter, 1782-1854. 3 ALS to T. J. Pettigrew',
  '1830-33'),
 (8,
  387,
  'Morley, Edmund Parker, 2d Earl of, 1810-1864. ALS to T. J. Pettigrew',
  '1861 Apr 30'),
 (9, 388, 'Mudge, William, 1762-1820. ALS to T. J. Pettigrew', '1816 Jan 5'),
 (9, 389, 'Müller, William, d. 1846. 3 ALS to T. J. Pettigrew', '1820-29'),
 (9,
  390,
  'Mulready, William, 1786-1863. ALS to T. J. Pettigrew',
  '1849 Jan 8'),
 (9,
  391,
  'Munro, Hugh Andrew Johnstone, 1819-1885. ALS to T. J. Pettigrew',
  '1849 Jan 17'),
 (9,
  392,
  'Munster, George Augustus Frederick Fitzclarence, 1st Earl of, 1794-1842. 4 ALS and 1 AL to T. J. Pettigrew',
  '1823-31'),
 (9,
  393,
  'Murdoch, Thomas, b. 1757. 4 ALS and 1 AL to T. J. Pettigrew',
  '1831-34'),
 (9, 394, 'Murray, John, 1808-1892. ALS to T. J. Pettigrew', 'n.d.'),
 (9, 395, 'Nares, Robert, 1753-1829. AL to T. J. Pettigrew', 'n.d.'),
 (9, 396, 'Nash, John, 1752-1835. 2 AL to T. J. Pettigrew', '1828, 1829'),
 (9,
  397,
  'Nayler, Sir George, 1764?-1831. 2 ALS and 1 LS to T. J. Pettigrew',
  '1827-30'),
 (9,
  398,
  'Needham, Francis Henry, 1819-1902. ALS to T. J. Pettigrew',
  '1846 Mar 31'),
 (9, 399, 'Newman, John, 1786-1859. ALS to T. J. Pettigrew', '1834 Jun 24'),
 (9,
  400,
  'Nichols, John Bowyer, 1779-1863. 2 ALS to T. J. Pettigrew',
  '1828, 1844'),
 (9, 401, 'Nichols, John Gough, 1806-1873. 4 ALS to T. J. Pettigrew', 'n.d.'),
 (9,
  402,
  'Nicolas, [John] Toup, 1788-1851. ALS to Mr. Smyth',
  '[1849?] Jun 16'),
 (9,
  403,
  'Nightingale, Margaret (Goostry). ALS to T. J. Pettigrew',
  '1825 Jan 10'),
 (9,
  404,
  'Northampton, Spencer Joshua Alwyne, 2d Marquis of, 1790-1851. AL to T. J. Pettigrew',
  '1848 Mar 28'),
 (9,
  405,
  'Northumberland, Algernon Percy, 4th Duke of, 1792-1865. 3 ALS to T. J. Pettigrew',
  '1834-61'),
 (9,
  406,
  'Northwick, John Rushout, 2d Baron, 1811-1887. AL to T. J. Pettigrew',
  'n.d.'),
 (9,
  407,
  'Numismatic Society. LS (signed Henry Christmas) to C. R. Smith',
  '1846 Feb 5'),
 (9,
  408,
  'Oldfield, John, 1789-1863. 6 ALS and 1 AL to T. J. Pettigrew',
  '1837-38'),
 (9,
  409,
  'Ollivant, Alfred, Bp. of Llandaff, 1798-1882. 2 ALS and 1 AL to T. J. Pettigrew',
  '1854 Jun-Sep'),
 (9,
  410,
  'Ord, John Walker, 1811-1853. 5 ALS to T. J. Pettigrew',
  '[1835]-45'),
 (9,
  411,
  'Ouseley, Sir Gore, 1770-1884. 2 ALS and 1 AL to T. J. Pettigrew',
  '1829-36'),
 (9,
  412,
  'Outram, Sir Benjamin Fonseca, 1774-1856. 4 ALS to T. J. Pettigrew',
  '[1828]-38'),
 (9, 413, 'Ouvry, Frederic, 1814-1881. ALS to T. J. Pettigrew', '1858 Feb'),
 (9,
  414,
  'Overstone, Samuel Jones Lloyd, 1st Baron, 1796-1883. ALS to T. J. Pettigrew',
  '1850 Sep 17'),
 (9,
  415,
  'Papworth, Edgar George, 1809-1886. ALS (AL in different hand) to T. J. Pettigrew',
  '1842 Aug 22'),
 (9, 416, 'Parke, Henry, 1792?-1835. ALS to T. J. Pettigrew', '1835 Mar 14'),
 (9,
  417,
  'Patten, George, 1801-1865. ALS and AL to T. J. Pettigrew',
  '1849 Apr'),
 (9,
  418,
  'Peacock, George, 1791-1858. 2 ALS to T. J. Pettigrew',
  '1857 Jul, Aug'),
 (9, 419, 'Peel, Sir Robert, bart., 1788-1850. AL to T. J. Pettigrew', 'n.d.'),
 (9,
  420,
  'Peile, Thomas Williamson, 1806-1882. ALS to T. J. Pettigrew',
  '1853 Jan 15'),
 (9, 421, 'Penn, John, 1760-1834. ALS to T. J. Pettigrew', '1811 May 9'),
 (9,
  422,
  'Pennethorne, Sir James, 1801-1871. AL to T. J. Pettigrew',
  '1850 Jan 23'),
 (9,
  423,
  'Pepys, William Hasledine, 1775-1856. AL to T. J. Pettigrew',
  '1832 May 3'),
 (9,
  424,
  'Pereira, Jonathan, 1804-1853. 2 ALS and 3 AL to T. J. Pettigrew',
  '[1830]-38'),
 (9,
  425,
  'Petre, William Bernard Petre, 12th Baron, 1817-1884. ALS to T. J. Pettigrew',
  '1861 Apr 25'),
 (9, 426, 'ALS to the British Archaeological Association', '1854 Nov 23'),
 (9, 427, 'ALS to unnamed recipient', '1856 Sep 4'),
 (9, 428, 'Pettigrew, William. ALS to T. J. Pettigrew', 'n.d.'),
 (9,
  429,
  'Philip, Alexander Philip Williamson, 1770?-1851?. 2 ALS to T. J. Pettigrew',
  '1831, 1838'),
 (9,
  430,
  'Phillipps, Sir Thomas, 1792-1872. 3 ALS to T. J. Pettigrew',
  '1830-31'),
 (9,
  431,
  'Phillips, Thomas, 1770-1845. 4 ALS to T. J. Pettigrew',
  '[1832]-37'),
 (9,
  432,
  'Phillpotts, Henry, Bp. of Exeter, 1778-1869. 2 ALS to T. J. Pettigrew',
  '1832, 1861'),
 (9,
  433,
  'Phipps, Sir Charles Beaumont, 1801-1866. 2 ALS to T. J. Pettigrew',
  '1849, 1855'),
 (9,
  434,
  'Pickersgill, Henry William, 1782-1875. 5 ALS and 3 AL to T. J. Pettigrew',
  '1832-49'),
 (9,
  435,
  'Pidgeon, Henry Clark, 1807-1880. 2 ALS to T. J. Pettigrew',
  '1849, 1850'),
 (9,
  436,
  'Pitcairn, Robert, 1793-1855. ALS to T. J. Pettigrew',
  '[1823 or later]'),
 (9,
  437,
  'Pitts, William, 1790-1840. 2 ALS and 1 AL to T. J. Pettigrew',
  '1831 May'),
 (9,
  438,
  'Planché, James Robinson, 1796-1880. 11 ALS to T. J. Pettigrew',
  '1830-58'),
 (9,
  439,
  'Poltimore, Augustus Frederick George Warwick Bampfylde, 2d Baron, 1837-1908. 2 ALS to T. J. Pettigrew',
  '[1860 or later]'),
 (9,
  440,
  'Pomfret, George Fermor, 3d Earl of, 1768-1830. AL to T. J. Pettigrew',
  '[1827 or later]'),
 (9, 441, 'Pond, John, 1767-1836. 6 ALS to T. J. Pettigrew', '1831 Feb-Jul'),
 (9, 442, 'Poste, Beale, 1793-1871. 8 ALS to T. J. Pettigrew', '1847-52'),
 (9,
  443,
  'Powis, Edward James Herbert, 3d Earl of, 1818-1891. ALS and AL to T. J. Pettigrew',
  '1860 Jul, Oct'),
 (9,
  444,
  'Poynder, John, 1779-1849. 3 ALS to T. J. Pettigrew',
  '1847 Jul-Aug'),
 (9, 445, 'Prout, William, 1783-1852. ALS to T. J. Pettigrew', '1838 Feb 24'),
 (9, 446, 'Purland, Theophilius. ALS to Thomas Wright', '1846 Feb 2'),
 (10,
  447,
  'Radnor, Jacob Pleydell-Bouverie, 8th Earl of, 1815-1889. ALS to T. J. Pettigrew',
  '1858 Jun 16'),
 (10,
  448,
  'Reeve, Lovell Augustus, 1814-1865. 3 ALS to T. J. Pettigrew',
  '1852-53'),
 (10,
  449,
  'Rennie, Sir John, 1794-1874. 2 ALS to T. J. Pettigrew',
  '[1834 or later]'),
 (10,
  450,
  'Renouard, George Cecil, 1780-1867. ALS and AL to T. J. Pettigrew',
  '1824, 1836'),
 (10,
  451,
  'Richards, George, 1767-1837. ALS to T. J. Pettigrew',
  '1829 Feb 2'),
 (10,
  452,
  'Richardson, Charles James, 1806-1871. ALS to James R. Planché',
  'n.d.'),
 (10,
  453,
  'Richardson, Moses Aaron, 1793-1871. ALS to T. J. Pettigrew',
  '1847 Nov 26'),
 (10,
  454,
  'Riego, Miguel del. 8 ALS to T. J. Pettigrew and 1 ALS to the Duke of Sussex',
  '[1823-28]'),
 (10,
  455,
  'Rifaud, J. J. 1 AL to T.J. Pettigrew and Prospectus, signed, for Voyage en Égypte, et en Nubie, 1827.',
  'n.d.'),
 (10, 456, 'Rigby, Edward, 1804-1860. ALS to T. J. Pettigrew', 'n.d.'),
 (10,
  457,
  'Rimbault, Edward Francis, 1816-1876. 3 ALS to T. J. Pettigrew',
  '1841 Apr-May'),
 (10, 458, 'Roberts, David, 1796-1864. 4 ALS to T. J. Pettigrew', '1846-51'),
 (10,
  459,
  'Roberts, P[eter?], 1760?-1819. ALS to unidentified.',
  '1797 Jul 25'),
 (10,
  460,
  'Robertson, Andrew, 1777-1845. 1 ALS and 3 AL to T. J. Pettigrew',
  '1829-32'),
 (10,
  461,
  'Robinson, Peter Frederick, 1776-1858. 3 ALS to T. J. Pettigrew',
  '1827, n.d.'),
 (10,
  462,
  'Roe, George Hamilton, 1795-1873. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 (10,
  463,
  'Rogers, William Harry, 1825-1873. 4 ALS to T. J. Pettigrew',
  '1847-50'),
 (10,
  464,
  'Roget, Peter Mark, 1779-1869. 5 ALS to T. J. Pettigrew',
  '1827-40'),
 (10,
  465,
  'Rokewode, John Gage, 1786-1842. 7 ALS to T. J. Pettigrew',
  '1826-40'),
 (10, 466, 'Room, Henry, 1802-1850. AL to T. J. Pettigrew', 'n.d.'),
 (10,
  467,
  'Rowan, Sir Charles, 1782-1852. ALS and LS to T. J. Pettigrew',
  '1830, 1833'),
 (10,
  468,
  'Royal Botanic Society. LS (signed James Sowerby) to T. J. Pettigrew',
  '1849 Jun 11'),
 (10,
  469,
  'Royal Society of London. LS (signed Davies Gilbert) to T. J. Pettigrew',
  '1829 Nov 16'),
 (10, 470, 'Rudge, Edward, 1763-1846. 2 ALS to T. J. Pettigrew', '1833'),
 (10,
  471,
  'Sabine, Sir Edward, 1788-1883. LS to T. J. Pettigrew',
  '1828 Feb 11'),
 (10,
  472,
  'Sabine, Joseph, 1770-1837. 2 ALS to T. J. Pettigrew',
  '1820, 1834'),
 (10,
  473,
  'Sala, Henrietta Catherina Florentina (Simon), 1789-1860. 1 ALS to T.J. Pettigrew',
  '[1828]'),
 (10, 474, 'Salisbury, William. ALS to T. J. Pettigrew', '1832 Jun 10'),
 (10, 475, 'Sass, Henry, 1788-1844. 3 ALS to T. J. Pettigrew', '[1826]-31'),
 (10,
  476,
  'Saull, William Devonshire, 1784-1855. ALS to T. J. Pettigrew',
  '1852 Aug 9'),
 (10,
  477,
  'Saumarez, Richard, 1764-1835. 1 ALS to T.J. Pettigrew',
  '[1815 or later]'),
 (10,
  478,
  'Sayer, Augustin, 1790-1861. 2 ALS to T. J. Pettigrew',
  '[1828], 1833'),
 (10, 479, 'Scott, John. 4 ALS to T. J. Pettigrew', '[1832]-53'),
 (10,
  480,
  'Scudamore, Sir Charles, 1779-1849. ALS to T. J. Pettigrew',
  '[1841 or later]'),
 (10,
  481,
  'Scudamore, Georgiana (Johnson), lady. 2 AL to T. J. Pettigrew',
  '[1849]'),
 (10, 482, 'Sedgwick, Adam, 1785-1873. 3 ALS to T. J. Pettigrew', '1840-[46]'),
 (10, 483, 'Seymour, Edward James, 1796-1866. AL to T. J. Pettigrew', 'n.d.'),
 (10,
  484,
  'Shakespear, John, 1774-1858. ALS to T. J. Pettigrew',
  '1833 Jul 3'),
 (10,
  485,
  'Sharp, Sir Cuthbert, 1781-1849. ALS to T. J. Pettigrew',
  '1845 Mar 28'),
 (10, 486, 'Sharp, William, 1805-1896. ALS to T. J. Pettigrew', '1839 Nov 13'),
 (10,
  487,
  'Sharpe, Edmund, 1809-1877. 4 ALS and a fragment to T. J. Pettigrew',
  '1850 Jul-Sep'),
 (10,
  488,
  'Shaw, Alexander, 1804-1890. 2 ALS and 1 AL to T. J. Pettigrew',
  '1839 Feb'),
 (10,
  489,
  'Shee, Sir Martin Archer, 1769-1850. 3 ALS and 2 AL to T. J. Pettigrew',
  '[1825]-31'),
 (10,
  490,
  'Sievier, Robert William, 1794-1865. ALS and AL to T. J. Pettigrew',
  '1816, 1825'),
 (10,
  491,
  'Skelton, Joseph, fl. 1820-1850. AL to T. J. Pettigrew',
  '1845 Jun 18'),
 (10, 492, 'Sleath, John, 1767-1847. 4 ALS to T. J. Pettigrew', '1828-31'),
 (10,
  493,
  'Smart, Benjamin Humphrey 1786?-1872. 3 ALS to T. J. Pettigrew',
  '[1828]-50'),
 (10,
  494,
  'Smart, Sir George Thomas, 1776-1867. 5 ALS to T. J. Pettigrew',
  '1825-47'),
 (10,
  495,
  'Smith, Charles John, 1803-1838. ALS to T. J. Pettigrew',
  '1831 Jan 15'),
 (10,
  496,
  'Smith, Charles Roach, 1807-1890. 6 ALS to T. J. Pettigrew',
  '1844-45'),
 (10,
  497,
  'Smith, Sir William Sidney, 1764-1840. 4 ALS to T.J. Pettigrew and 1 ALS to the Duke of Sussex',
  '1830-37'),
 (10,
  498,
  'Smyth, William Henry, 1788-1865. 5 ALS to T. J. Pettigrew, 14 ALS to unidentified.',
  '1844-52'),
 (11,
  499,
  'Soames, Henry, 1785-1860. 2 ALS to T. J. Pettigrew',
  '1842 Apr, May'),
 (11, 500, 'ALS (in French) to M. Moreau', '1819 May 20'),
 (11, 501, 'ALS (in French) to T. J. Pettigrew', '1819 Jul 21'),
 (11,
  502,
  'Société des Antiquaries de Picardie. 3 ALS (signed J. Garnie) to President of the B.A.A. and 1 ALS to President of the British Assoc. of Conservation of Monuments',
  '1850-51'),
 (11,
  503,
  'Solly, Edward, 1819-1866. 3 ALS to T. J. Pettigrew and 1 ALS to Charles Roach Smith',
  '1845-51'),
 (11,
  504,
  'Somerset, Edward Adolphus Seymour, 11th Duke of, 1775-1855. 2 AL to T. J. Pettigrew',
  '1830, 1833'),
 (11,
  505,
  'Southey, Henry Herbert, 1783-1865. ALS to T. J. Pettigrew',
  'n.d.'),
 (11,
  506,
  'Spence, William, 1783-1858. ALS and AL to T. J. Pettigrew',
  '1847, 1848'),
 (11,
  507,
  'Spencer, John Charles Spencer, 3d Earl, 1782-1845. ALS to T. J. Pettigrew',
  '1822 Feb 27'),
 (11,
  508,
  'Spring-Rice, William Cecil, 1823-1880. ALS to T. J. Pettigrew',
  '1850 Apr'),
 (11, 509, 'Spurgin, John, 1797-1866. 3 ALS to T. J. Pettigrew', '[1829]-45'),
 (11,
  510,
  'Squier, Ephraim George, 1821-1888. 3 ALS to T.J. Pettigrew and 1 ALS to Charles Roach Smith',
  '1849-52'),
 (11,
  511,
  'Stanfield, Clarkson, 1793-1867. ALS to T. J. Pettigrew',
  '1846 Jun 3'),
 (11,
  512,
  'Stanley, Edward John Stanley, 2d Baron, 1802-1869. 2 AL to T. J. Pettigrew',
  '1857 Jul, Oct'),
 (11,
  513,
  'Stapleton, Thomas, 1805-1849. 5 ALS to T. J. Pettigrew',
  '[1839]-45'),
 (11,
  514,
  'Streatfield, Thomas, 1777-1848. ALS to T. J. Pettigrew',
  '1844 Sep 8'),
 (11,
  515,
  'Strutt, Jacob George, fl. 1820-1850. ALS to the Duke of Sussex',
  '1823 Apr 21'),
 (11,
  516,
  'Stuart de Decies, Henry Villiers Stuart, 1st Baron, 1803-1874. AL to Mr. Stephenson',
  '[1828 or later]'),
 (11,
  517,
  'Suckling, Alfred Inigo, 1796-1856. ALS to T. J. Pettigrew',
  '1845 Mar 17'),
 (11,
  518,
  'Sykes, William Henry, 1790-1872. 3 ALS to T. J. Pettigrew',
  '1839-52'),
 (11,
  519,
  'Symmons, Charles, 1749-1826. ALS to T. J. Pettigrew',
  '1824 Jun 9'),
 (11, 520, 'Talman, J. J. ALS to T. J. Pettigrew', '1817 Jan 16'),
 (11,
  521,
  'Tankerville, Charles Bennet, 6th Earl of, 1810-1899. 2 ALS to T. J. Pettigrew',
  '[1832]-33'),
 (11, 522, 'Taylor, Edward, 1784-1863. 3 ALS to T. J. Pettigrew', '1824-31'),
 (11,
  523,
  'Taylor, Sir Herbert, 1775-1839. 1 ALS to T. J. Pettigrew, 3 ALS to the Duke of Sussex, 1 ALS to Col. Fitzclarence.',
  '1815-33'),
 (11,
  524,
  'Taylor, John, 1757-1832. 4 ALS to T. J. Pettigrew, with three poems',
  '1826-31'),
 (11,
  525,
  'Taylor, Michael Angelo, 1757-1834. ALS to T. J. Pettigrew',
  '1827 Nov 21'),
 (11,
  526,
  'Taylor, Thomas, 1758-1835. 3 ALS to T. J. Pettigrew',
  '1834 Feb-May'),
 (11,
  527,
  'Thelwall, [John?], 1764-1834. AL to T. J. Pettigrew',
  '1826 Mar 15'),
 (11,
  528,
  'Thomas, Honoratus Leigh, 1769-1846. 6 ALS and 1 AL to T. J. Pettigrew',
  '[1823]-38'),
 (11,
  529,
  'Thompson, James, 1817-1877. ALS to T. J. Pettigrew',
  '1850 Nov 30'),
 (11,
  530,
  'Thoms, William John, 1803-1885. 2 ALS to T. J. Pettigrew',
  '1844 Feb'),
 (11,
  531,
  'Thomson, Anthony Todd, 1778-1849. 2 ALS to T. J. Pettigrew',
  '1836, 1840'),
 (11,
  532,
  'Thomson, William, ABp. of York, 1819-1890. 3 ALS to T. J. Pettigrew',
  '1863-65'),
 (11,
  533,
  'Tite, Sir William, 1798-1873. ALS to T. J. Pettigrew',
  '1840 Oct 6'),
 (11, 534, 'Tod, James, 1782-1835. ALS to T. J. Pettigrew', '[n.d.]'),
 (11,
  535,
  'Todd, Henry John, 1763-1845. ALS to T. J. Pettigrew',
  '[1825 or later]'),
 (11,
  536,
  'Tonna, Lewis Hippolytus Joseph, 1812-1857. 3 ALS to T. J. Pettigrew',
  '1849 Jan-May'),
 (11, 537, 'Torrens, Robert. 5 ALS to T. J. Pettigrew', '1824-25'),
 (11, 538, 'Townley, James, 1774-1833. ALS to T. J. Pettigrew', '1828 Jul 12'),
 (11,
  539,
  'Toynbee, Joseph, 1815-1866. ALS to [T. J.] Pettigrew',
  '[1841 or later]'),
 (11,
  540,
  'Traherne, John Montgomery, 1788-1860. ALS to T. J. Pettigrew',
  '1846 Apr 22'),
 (11,
  541,
  'Travers, Benjamin, 1783-1858. 4 ALS and 2 AL to T. J. Pettigrew',
  '1828 Mar'),
 (11,
  542,
  'Tupper, Martin Farquhar, 1810-1889. 6 ALS and 1 AL to T. J. Pettigrew',
  '1829-54'),
 (11, 543, 'Turnbull, William. ALS to T. J. Pettigrew', 'n.d.'),
 (11,
  544,
  'Turner, Charles, 1774-1857. 2 ALS to T. J. Pettigrew',
  '[1825], 1831'),
 (11, 545, 'Turner, Dawson, 1755-1858. 22 ALS to T. J. Pettigrew', '1840-52'),
 (11,
  546,
  'Turner, Sir Tomkyns Hilgrove, 1766?-1843. 2 ALS and 1 AL to T. J. Pettigrew',
  '1838-41'),
 (11,
  547,
  'Tuthill, Sir George Leman, 1772-1835. ALS and AL to T. J. Pettigrew',
  '1824, 1835'),
 (11, 548, 'Tymms, Samuel, 1808-1871. ALS to T. J. Pettigrew', '1850 Feb 2'),
 (11,
  549,
  'Tyrrell, Frederick, 1793-1843. 2 ALS to T. J. Pettigrew',
  '[1828], 1834'),
 (12,
  550,
  'Upham, Edward, 1776-1834. 3 ALS to T. J. Pettigrew',
  '[1829 or later]'),
 (12, 551, 'Ure, Andrew, 1778-1857. ALS to T. J. Pettigrew', 'n.d.'),
 (12, 552, 'Uwins, David, 1780?-1837. AL to T. J. Pettigrew', 'n.d.'),
 (12, 553, 'Valpy, Richard, 1754-1836. 8 ALS to T. J. Pettigrew', '1817-26'),
 (12,
  554,
  'Vigors, Nicholas Aylward, 1785-1840. ALS and AL to T. J. Pettigrew',
  '1827, 1828'),
 (12,
  555,
  'Vulliamy, Lewis, 1791-1871. 2 ALS and 1 AL to T. J. Pettigrew',
  'n.d.'),
 (12, 556, 'Wadd, Thomas M. ALS to T. J. Pettigrew', 'n.d.'),
 (12,
  557,
  'Waddington, George, 1793-1869. 4 ALS to T. J. Pettigrew and 1 ALS to the Duke of Sussex',
  '1841-52'),
 (12,
  558,
  'Wallich, Nathaniel, 1786-1854. 2 ALS and 1 AL to T. J. Pettigrew',
  '1830-50'),
 (12,
  559,
  'Warburton, Henry, 1784?-1858. ALS to T. J. Pettigrew',
  '1825 Mar 4'),
 (12,
  560,
  'Ward, Edward Matthew, 1816-1879. ALS and AL to T. J. Pettigrew',
  '1850, 1852'),
 (12,
  561,
  'Ward, James, 1769-1859. 2 ALS and 1 AL to T. J. Pettigrew',
  '1849 Mar-Apr'),
 (12,
  562,
  'Wardrop, James, 1782-1869. 3 ALS and 2 AL to T. J. Pettigrew',
  '[1838 or later]'),
 (12, 563, 'Warne, Elizabeth. 2 ALS to T. J. Pettigrew', 'n.d.'),
 (12,
  564,
  'Warneford, Samuel Wilson, 1763-1855. 3 ALS to T. J. Pettigrew',
  '1848-50'),
 (12, 565, 'Watson, Ralph. 9 ALS to T. J. Pettigrew', '1829-33'),
 (12, 566, 'Way, Albert. 1805-1874. 6 ALS to T. J. Pettigrew', '1844 May'),
 (12, 567, 'Webster, Thomas, 1800-1886. ALS to T. J. Pettigrew', '1849 Jan 7'),
 (12,
  568,
  'Weld, Charles Richard, 1813-1869. ALS and LS to T. J. Pettigrew',
  '1849, 1852'),
 (12, 569, '2 ALS to T. J. Pettigrew', '1845, 1852'),
 (12, 570, 'ALS to C. R. Smith', '1849 Dec 27'),
 (12,
  571,
  'Wemyss, David Douglas, 1760-1839. ALS to T. J. Pettigrew',
  '1828 Feb 27'),
 (12,
  572,
  'Westall, Richard, 1765-1836. 2 ALS to T. J. Pettigrew',
  '[1827]-29'),
 (12,
  573,
  'Westmacott, Sir Richard, 1775-1856. 14 ALS and 1 AL to T. J. Pettigrew, 1 ALS to T[homas?] Taylor, 1 ALS to [W.R. Hamilton]',
  '1816-43'),
 (12,
  574,
  'Westmacott, Richard, 1799-1872. ALS to T. J. Pettigrew',
  '1844 Jan 11'),
 (12,
  575,
  'Wharncliffe, Edward Montagu-Stuart- Wortley Mackenzie, 1st Earl of, 1827-1899. ALS to T. J. Pettigrew',
  '1862 Mar 14'),
 (12,
  576,
  'Whatton, William Robert, 1790-1835. ALS to T. J. Pettigrew',
  '1827 Jul 6'),
 (12, 577, 'Wheatley, J. H. W. ALS to T. J. Pettigrew', '1831 Jan 15'),
 (12,
  578,
  'Whichcord, John, 1823-1885. ALS to T. J. Pettigrew',
  '1850 Jun 21'),
 (12,
  579,
  'Whittaker, George Byrom, 1793-1847. ALS to T. J. Pettigrew',
  '1824 May 13'),
 (12,
  580,
  'Whittaker, John William, 1790?-1854. 3 ALS to T. J. Pettigrew',
  '1850-52'),
 (12,
  581,
  'Wilbraham, Roger, 1744-1829. 2 ALS and 1 AL to T. J. Pettigrew',
  '1825-27'),
 (12, 582, 'Wild, Charles, 1781-1835. ALS to T. J. Pettigrew', '1828 Apr 12'),
 (12, 583, 'Wilkins, George, 1785-1865. ALS to T. J. Pettigrew', '1852 Sep 6'),
 (12,
  584,
  'Wilkins, William, 1778-1839. ALS and AL to T. J. Pettigrew',
  '1826 Feb'),
 (12,
  '585-590',
  'Wilkinson, Sir John Gardner, 1797-1875. 91 ALS and 1 AL to T. J. Pettigrew',
  '[1830]-58'),
 (13,
  591,
  'Williams, John, 1811-1862. 1 ALS to T.J. Pettigrew',
  '1851 Oct 23'),
 (13,
  592,
  'Willis, Robert, 1800-1875. 1 AL to Sir John Gardner Wilkinson',
  '1850 Jan 19'),
 (13,
  593,
  'Willson, Edward James, 1787-1854. ALS to T. J. Pettigrew',
  '1852 Jul 30'),
 (13,
  594,
  'Wilson, Sir Daniel, 1816-1892. ALS to T. J. Pettigrew',
  '1850 Jul 12'),
 (13,
  595,
  'Wilson, James Arthur, 1795-1882. 4 ALS to T. J. Pettigrew',
  '[1836 or later]'),
 (13,
  596,
  'Wilson, Matthew. 4 ALS and 1 AL to T. J. Pettigrew',
  '[1850 or later]'),
 (13, 597, 'Woodfall, George, 1767-1844. 4 ALS to T. J. Pettigrew', '1829-34'),
 (13, 598, 'Word, J. ALS and LS to T. J. Pettigrew', '1836 Sep, Nov'),
 (13,
  599,
  'Wrangham, Francis, 1769-1842. 4 ALS to T. J. Pettigrew',
  '1816-30'),
 (13,
  600,
  'Wright, John, 1770?-1844. 3 ALS to T. J. Pettigrew',
  '[1842 or later]'),
 (13, 601, 'Wright, Thomas, 1810-1877. 10 ALS to T. J. Pettigrew', '1840-45'),
 (13, 602, 'Wynyard, Miss. AL to Mr. Stephenson', 'n.d.'),
 (13,
  603,
  'Wyon, William, 1795-1851. ALS and AL to T. J. Pettigrew',
  '1832, 1840'),
 (13,
  604,
  'Yeats, Grant David, 1773-1836. AL to T. J. Pettigrew',
  '1826 May 1'),
 (13,
  605,
  'Yorke, Charles Philip, 1764-1834. AL to T. J. Pettigrew',
  '1817 Feb 3'),
 (13,
  606,
  'Yorke, Sir Joseph Sidney, 1768-1831. ALS to T. J. Pettigrew',
  '1820 Sep 1'),
 (13, 607, 'Youatt, William, 1776-1847. 3 ALS to T. J. Pettigrew', '1828-35'),
 (13,
  608,
  'Young, Sir Charles George, 1795-1869. 5 ALS and 1 AL to T. J. Pettigrew',
  '1853 Mar'),
 (13, 609, 'Young, G. 5 ALS to T.J. Pettigrew', '1833-49'),
 (13,
  610,
  'Zouche, Robert Curzon, 14th Baron, 1810-1873. AL to [T. J. Pettigrew]',
  '1849 Jan 22')]
results.description
(('BoxNumber', None, None, None, None, None, None),
 ('FolderNumber', None, None, None, None, None, None),
 ('Contents', None, None, None, None, None, None),
 ('Date', None, None, None, None, None, None))
headers = [r[0] for r in results.description]
headers
['BoxNumber', 'FolderNumber', 'Contents', 'Date']
results.description
(('BoxNumber', None, None, None, None, None, None),
 ('FolderNumber', None, None, None, None, None, None),
 ('Contents', None, None, None, None, None, None),
 ('Date', None, None, None, None, None, None))
allrows = []

for row in data:
    box = str(row[0])
    folder = str(row[1])
    rest = list(row[2:])
    newid = box + '-' + folder
    newrow = [newid] + rest
    allrows.append(newrow)
newheaders = ['ID'] + headers[2:]
newheaders
['ID', 'Contents', 'Date']
import sqlite3

conn = sqlite3.connect('pettigrew_new_id.db')
c = conn.cursor()
c.execute('CREATE TABLE letters (id text, contents text, date text);')
c.executemany('INSERT INTO letters VALUES (?, ?, ?)', allrows)
conn.commit()
results = c.execute('SELECT * FROM letters;')
results.description
(('id', None, None, None, None, None, None),
 ('contents', None, None, None, None, None, None),
 ('date', None, None, None, None, None, None))
newdata = results.fetchall()
newdata
[('1-1', '[Provenance documents and biographical sources]', 'n.d.'),
 ('1-2', '[Provenance documents and biographical sources]', 'n.d.'),
 ('1-3', '[Provenance documents and biographical sources]', 'n.d.'),
 ('1-4',
  'Aberdeen, George Hamilton-Gordon, 4th Earl of, 1784-1860. 1 ALS, 1 LS, 1 AL to T. J. Pettigrew',
  '1846 Aug'),
 ('1-5',
  'Abingdon, Montagu Bertie, 6th Earl of, 1808-1884. 2 ALS to T. J. Pettigrew',
  '1859, 1860'),
 ('1-6',
  'Acland, Sir Thomas Dyke, bart., 1787-1871. ALS to T. J. Pettigrew',
  'n.d.'),
 ('1-7', 'Aikin, Arthur, 1773-1854. 3 ALS to T. J. Pettigrew', '1823-30'),
 ('1-8',
  'Ailesbury, George William Frederick Brudnell-Bruce, 2d Marquess of, 1804-1878. 5 ALS to T. J. Pettigrew',
  '1858-59'),
 ('1-9',
  'Ainslie, Sir Whitelaw, 1767-1837. 1 ALS and 2 AL to T. J. Pettigrew',
  '1828 Jun'),
 ('1-10',
  'Ainsworth, William Francis, 1807-1896. 5 ALS to T. J. Pettigrew',
  '1843-56'),
 ('1-11',
  'Ainsworth, William Harrison, 1805-1882. 5 ALS to T. J. Pettigrew',
  '1854-60'),
 ('1-12',
  'Akerman, John Yonge, 1806-1873. 9 ALS and 2 LS to T. J. Pettigrew',
  '1849-56'),
 ('1-13',
  'Albemarle, Charlotte (Hunloke) Keppel, Countess of, d. 1862. AL to Mr. Stephenson',
  '1822 Mar 8'),
 ('1-14',
  'Albemarle, George Thomas Keppel, 6th Earl of, 1799-1891. 4 ALS to T. J. Pettigrew',
  '1857 Jul-Aug'),
 ('1-15', 'Alcock, Thomas, 1784-1833. 3 AL to T. J. Pettigrew', '1830-33'),
 ('1-16',
  'Amyot, Thomas, 1775-1850. 6 ALS to T. J. Pettigrew',
  '1827 and later'),
 ('1-17', 'Anderson, Joseph, 1789-1877. 3 ALS to T. J. Pettigrew', '1843-47'),
 ('1-18',
  'Anglo-Biblical Institute. ALS (signed W. H. Clarke) to T. J. Pettigrew',
  '1859 Nov 28'),
 ('1-19',
  'Arran, Mary (Tyrrell), Countess, 1767?-1832. AL to Augustus Frederick, Duke of Sussex',
  '[1824 or later]'),
 ('1-20', 'Arundale, Francis, 1807-1853. ALS to T. J. Pettigrew', 'n.d.'),
 ('1-21',
  'Arundell, Henry Benedict Arundell, 11th Baron, 1804-1862. 2 ALS to T. J. Pettigrew',
  '1852 Jun-Sep'),
 ('1-22',
  'Arundell, John Francis Arundell, 12th Baron, 1831-1906. 2 ALS to T. J. Pettigrew',
  '1860 Mar'),
 ('1-23',
  'Ashburton, Alexander Baring, 1st Baron, 1774-1848. 2 ALS to T.J. Pettigrew.',
  '[1839 or later]'),
 ('1-24',
  'Ashburton, William Bingham Baring, 2d Baron, 1799-1864. ALS to T. J. Pettigrew',
  'n.d.'),
 ('1-25', 'Ashpitel, Arthur, 1807-1869. 3 ALS to T. J. Pettigrew', '1850 Aug'),
 ('1-26',
  'Auckland, George Eden, 1st Earl of, 1784-1849. ALS to T. J. Pettigrew',
  '1828 Dec 7'),
 ('1-27',
  'Auckland, Robert John Eden, 3d Baron, Bp. of Bath and Wells, 1799-1870. 6 ALS to T. J. Pettigrew',
  '1856-59'),
 ('1-28', 'Ayrton, William, 1777-1858. ALS to T. J. Pettigrew', '1827 Feb 1'),
 ('1-29',
  'Babington, Benjamin Guy, 1794-1866. 3 ALS and 1 AL to T. J. Pettigrew',
  '1830-38'),
 ('1-30',
  'Babington, William, 1756-1833. AL to T. J. Pettigrew',
  '1817 Jun 6'),
 ('1-31',
  'Baird, [William?], 1803-1872. 2 ALS and 3 AL to T. J. Pettigrew',
  '1831-34'),
 ('1-32',
  'Banks, Thomas Christopher, 1765-1854. ALS to T. J. Pettigrew',
  '1845 Jun 30'),
 ('1-33',
  'Baring, Charles, Bp. of Durham, 1807-1879. 2 ALS to T. J. Pettigrew',
  '[1850]-1865'),
 ('1-34',
  'Baring, Sir Thomas, 1772-1848. AL to Mr. Stephenson',
  '1831 Mar 24'),
 ('1-35',
  'Baron, John, 1786-1851. 2 ALS to T. J. Pettigrew',
  '[1836 or later]'),
 ('1-36',
  'Barrington, William Keppel Barrington, 6th Viscount, 1793-1867. AL to T. J. Pettigrew',
  '1834 Mar 28'),
 ('1-37', 'Bateman, Thomas, 1821-1861. 4 ALS to T. J. Pettigrew', '1850-52'),
 ('1-38',
  'Bateman, William Bateman Bateman-Hanbury, 2d Baron, 1826-1901. ALS and 1 AL to T. J. Pettigrew',
  '1857, 1858'),
 ('1-39',
  'Beattie, William, 1793-1875. 15 ALS to T. J. Pettigrew',
  '1829-[36]'),
 ('1-40',
  'Beaufort, Emily Frances (Smith), Duchess of, 1800?-1889. AL to T. J. Pettigrew',
  '1829 Jul 31'),
 ('1-41',
  'Beaufort, Sir Francis, 1774-1857. ALS to Sir Gardner Wilkinson',
  '1850 Jan 15'),
 ('1-42',
  'Beaufort, Henry Charles Fitzroy Somerset, 8th Duke of, 1824-1899. ALS and AL to T. J. Pettigrew',
  '1854 Jul, Oct'),
 ('1-43',
  'Beaumont, Sir George Howland, bart., 1753-1827. AL to Lord Ferrers',
  'n.d.'),
 ('1-44',
  'Bedford, John Russell, 6th Duke of, 1766-1839. 3 ALS and 1 AL to T. J. Pettigrew',
  '1827-34'),
 ('1-45', 'Bell, Robert, 1800-1867. ALS to T. J. Pettigrew', '1857 Mar 30'),
 ('1-46',
  'Bell, Thomas, 1792-1880. 3 ALS and 2 LS to T. J. Pettigrew',
  '[1834]-53'),
 ('1-47',
  'Beltz, George Frederick, 1777-1841. ALS to T. J. Pettigrew',
  '1829 Mar 5'),
 ('1-48', 'Bernal, Ralph, d. 1854. ALS to T. J. Pettigrew', '1853 Nov 10'),
 ('1-49',
  'Berry, William, 1774-1851. 2 ALS to T. J. Pettigrew',
  '1831 Apr, Jun'),
 ('1-50',
  'Berwick, Richard Noel Noel-Hill, 5th Baron, 1800-1861. ALS to T. J. Pettigrew',
  '1860 May 15'),
 ('1-51',
  'Betham, Sir William, 1779-1853. 22 ALS to T. J. Pettigrew',
  '1826-52'),
 ('2-52',
  'Billing, Archibald, 1791-1881. 2 AL to T. J. Pettigrew',
  '1828 Jun'),
 ('2-53', 'Birkbeck, George, 1776-1841. 10 ALS to T. J. Pettigrew', '1821-37'),
 ('2-54', 'Blaauw, William Henry, 1793-1870. 2 AL to T. J. Pettigrew', 'n.d.'),
 ('2-55',
  'Black, William Henry, 1808-1872. ALS to T. J. Pettigrew',
  '1849 Feb 28'),
 ('2-56',
  'Blane, Sir Gilbert, bart., 1749-1834. ALS and AL to T. J. Pettigrew',
  '1827 Nov'),
 ('2-57',
  'Blessington, Charles John Gardiner, 2d Earl of, 1782-1829. 6 ALS to T. J. Pettigrew',
  '[1820]-26'),
 ('2-58',
  'Blessington, Margaret (Power) Farmer Gardiner, Countess of, 1789-1849. 2 ALS to T. J. Pettigrew',
  '1821-[35]'),
 ('2-59', 'Blundell, James, 1790-1877. 6 ALS to T. J. Pettigrew', '[1833]-38'),
 ('2-60',
  'Bolland, Sir William, 1772-1840. ALS to T. J. Pettigrew',
  '1827 Mar 26'),
 ('2-61',
  'Bonney, Henry Kaye, 1780-1862. 2 ALS to T. J. Pettigrew',
  '1852 Aug'),
 ('2-62',
  'Bonomi, Joseph, 1796-1878. 4 ALS to T. J. Pettigrew, and 1 calling card.',
  '1845-57'),
 ('2-63',
  'Boston, George Ives Irby, 4th Baron, 1802-1869. 6 ALS to T. J. Pettigrew',
  '[1857-62]'),
 ('2-64',
  'Bowers, George Hull, 1794-1872. ALS to T. J. Pettigrew',
  '1850 May'),
 ('2-65', 'Boyd, Sir William. 4 ALS to T. J. Pettigrew', '1843-[54]'),
 ('2-66',
  'Boyne, Gustavus Frederick John James Hamilton-Russell, 7th viscount, 1797-1872. 2 ALS to T. J. Pettigrew',
  '1860, 1865'),
 ('2-67',
  'Brande, William Thomas, 1788-1866. 2 ALS to T. J. Pettigrew',
  '[1806 or later]'),
 ('2-68',
  'Braybrooke, Charles Cornwallis Neville, 5th Baron, 1823-1902. 2 AL to T. J. Pettigrew',
  '1861, 1862'),
 ('2-69',
  'Braybrooke, Richard Cornwallis Neville, 4th Baron, 1820-1861. 4 ALS and 1 AL to T. J. Pettigrew',
  '1859 Jul'),
 ('2-70',
  'Braybrooke, Richard Griffin, 2d Baron, 1750-1825. ALS (fragment) to T. J. Pettigrew',
  '1804 Mar 23'),
 ('2-71',
  'Breadalbane, John Campbell, 2d Marquis of, 1796-1862. AL to T. J. Pettigrew',
  '1833 May 24'),
 ('2-72',
  'Bree, Robert, 1759-1839. ALS and AL to T. J. Pettigrew',
  '1838 Apr'),
 ('2-73',
  'Brenton, Edward Pelham, 1774-1839. ALS to T. J. Pettigrew',
  '1838 Jan 26'),
 ('2-74',
  'Bridgeman, George Thomas Orlando. 2 ALS to T. J. Pettigrew',
  '1860 Oct, Dec'),
 ('2-75',
  'Briggs, John Joseph, 1819-1876. 2 ALS to T.J. Pettigrew',
  '1841, 1860'),
 ('2-76', 'Bright, Richard, 1789-1858. 7 ALS to T. J. Pettigrew', '1832 Feb'),
 ('2-77',
  'Brinckman, Charlotte (Godolphin), lady, d. 1838. AL to T. J. Pettigrew',
  'n.d.'),
 ('2-78',
  'Britton, John, 1771-1857. 4 ALS and 1 ALS fragment to T.J. Pettigrew',
  '1846-56'),
 ('2-79',
  'Brockett, John Trotter, 1788-1842. ALS to T. J. Pettigrew',
  '1827 Mar 14'),
 ('2-80',
  'Brodie, Sir Benjamin Collins, bart., 1783-1862. 14 ALS to T. J. Pettigrew',
  '1824-[43]'),
 ('2-81',
  'Brooke, Richard, 1791-1861. 3 ALS to T. J. Pettigrew',
  '1852 May-Jun'),
 ('2-82',
  'Brookes, Joshua, 1761-1833. 3 ALS and 2 AL to T. J. Pettigrew',
  '1822-30'),
 ('2-83',
  'Brougham, Henry Brougham, 1st Baron, 1778-1868. ALS and AL to T. J. Pettigrew',
  'n.d.'),
 ('2-84', 'Brown, James, 1812-1881. AL to T. J. Pettigrew', '1854 Jul 30'),
 ('2-85',
  'Brownlow, Emma Sophia (Edgcumbe), Countess, 1791-1872. 2 AL to Dr. Sigmond and T. J. Pettigrew, and 1 AL to Pettigrew.',
  '[1834 or later]'),
 ('2-86',
  'Bruce, John Collingwood, 1805-1892. 2 ALS to T. J. Pettigrew',
  '1850 Jun, Sep'),
 ('2-87', 'Buckland, William, 1784-1856. 4 ALS to T. J. Pettigrew', '1848-49'),
 ('2-88',
  'Burges, George, 1786?-1864. ALS to T. J. Pettigrew',
  '[before 1835]'),
 ('2-89', 'Burgon, Thomas, 1787-1858. 2 ALS to T. J. Pettigrew', '1834, 1837'),
 ('2-90',
  'Burke, Sir John Bernard, 1814-1892. 5 ALS to T. J. Pettigrew',
  '1853-58'),
 ('2-91',
  'Burlington, Elizabeth (Compton) Cavendish, Countess of, 1760-1835. AL to T. J. Pettigrew',
  '1830 Jan 21'),
 ('2-92',
  'Burnett, Gilbert Thomas, 1800-1835. 2 ALS and 1 AL to T. J. Pettigrew',
  '1831-35'),
 ('2-93', 'Burns, J. ALS to T. J. Pettigrew', 'n.d.'),
 ('2-94', 'Caley, John, d. 1834. 3 ALS to T. J. Pettigrew', '1824-33'),
 ('2-95',
  'Camden, George Charles Pratt, 2d Marquis of, 1799-1866. 3 ALS to T. J. Pettigrew',
  '1853 Jan-Jun'),
 ('2-96',
  'Carlisle, Sir Anthony, 1768-1840. 4 ALS to T. J. Pettigrew',
  '1823-38'),
 ('2-97',
  'Carlisle, Nicholas, 1771-1847. 16 ALS to T. J. Pettigrew',
  '1825-46'),
 ('2-98',
  'Carnarvon, Henry Howard Molyneux Herbert, 4th Earl of, 1831-1890. 10 ALS to T. J. Pettigrew',
  '1859 Jul-Oct'),
 ('2-99',
  'Carnwath, Robert Alexander Dalzell, 9th Earl of, 1768-1839. 2 ALS and 1 AL to T. J. Pettigrew',
  'n.d.'),
 ('2-100',
  'Carysfort, Elizabeth (Grenville) Proby, Countess of, 1756-1842. AL to T. J. Pettigrew',
  ''),
 ('2-101',
  'Carysfort, John Joshua Proby, 1st Earl of, 1751-1828. 7 ALS and 2 AL to [T. J. Pettigrew]',
  '1800-18'),
 ('2-102',
  'Cattermole, Richard, 1795-1858. 3 ALS to T. J. Pettigrew',
  '1845-53'),
 ('2-103',
  'Cavan, Frederick John William Lambart, 8th Earl of, 1815-1887. ALS to T. J. Pettigrew',
  '1856 Jul 3'),
 ('3-104',
  'Chalmers, Patrick, 1802-1854. ALS to T. J. Pettigrew',
  '1850 Jun 9'),
 ('3-105',
  'Chambers, William Frederick, 1786-1855. 2 ALS and 2 AL to T. J. Pettigrew',
  '1818-38'),
 ('3-106',
  'Champion de Crespigny, Sir Claude, bart., 1734-1818. AL to T. J. Pettigrew',
  '1816 Oct 8'),
 ('3-107',
  'Champion de Crespigny, Sir William, bart., 1765-1829. 1 ALS and 1 AL to T. J. Pettigrew',
  '1823, 1824'),
 ('3-108',
  'Charma, Antoine, 1801-1869. 3 ALS (in French) to T. J. Pettigrew',
  '1850-51'),
 ('3-109', 'Cherry, Henry Curtis. ALS to T. J. Pettigrew', '1859 Aug 23'),
 ('3-110',
  'Chichester, Henry Thomas Pelham, 7th Earl of, 1804-1886. ALS to T. J. Pettigrew',
  '[1860?] Jul 24'),
 ('3-111',
  'Chichester, Sir John Palmer Bruce, bart. ALS to T. J. Pettigrew',
  'n.d.'),
 ('3-112',
  'Cholmondeley, Susan (Somerset) Cholmondeley, Marchioness, 1804-1886. AL to T. J. Pettigrew',
  '1835 Jun 22'),
 ('3-113',
  'Cholmondeley, William Henry Hugh Cholmondeley, 3d Marquis, 1800-1884. ALS to T. J. Pettigrew',
  '[1846 or later]'),
 ('3-114',
  'Christmas, Henry, 1811-1868. ALS to T.J. Pettigrew',
  '1855 Mar 14'),
 ('3-115',
  'Churston, John Buller-Yarde-Buller, 1st Baron, 1799-1871. 2 ALS to T. J. Pettigrew',
  '1861 Mar, Nov'),
 ('3-116-119',
  'Cimitile, Principe di. 39 ALS and 3 AL to T. J. Pettigrew.',
  '[1823]-44'),
 ('3-120',
  'Clanny, William Reid, 1776-1850. 5 ALS to T. J. Pettigrew',
  '1829-49'),
 ('3-121',
  'Clark, Sir James, 1788-1870. ALS and AL to T. J. Pettigrew',
  '1832 Feb'),
 ('3-122',
  'Clarke, Sir Charles Mansfield, bart., 1782-1857. 5 ALS to T. J. Pettigrew',
  '[1836]-41'),
 ('3-123',
  'Cleveland, Henry George Vane Powlett, 4th Duke of, 1803-1891. ALS to T. J. Pettigrew',
  '1865 Aug 11'),
 ('3-124',
  'Cleveland, Henry Vane, 2d Duke of, 1788-1864. ALS and AL to T. J. Pettigrew',
  '1860 Jan, Feb'),
 ('3-125',
  'Clifford, Sir Augustus William James, bart., 1788-1877. ALS to T. J. Pettigrew',
  'n.d.'),
 ('3-126',
  'Clifford, Charles Clifford, 6th Baron, 1759-1831. ALS to T. J. Pettigrew',
  '1823 Mar 14'),
 ('3-127',
  'Clifford, Charles Hugh Clifford, 8th Baron, 1819-1880. 2 ALS to T. J. Pettigrew',
  '1861 Apr, Nov'),
 ('3-128', 'Clint, Scipio, 1805-1839. AL to T. J. Pettigrew', '1833 Mar 9'),
 ('3-129', 'Close, Thomas, 1796-1881. ALS to T. J. Pettigrew', '1852 Oct 27'),
 ('3-130',
  'Clot, Antoine-barthélemy, 1793-1868. AL (in French) to T. J. Pettigrew and 1 calling card.',
  '1833 Jan 21'),
 ('3-131',
  'Clutterbuck, Henry, 1767-1856. 8 ALS to T. J. Pettigrew',
  '1818-41'),
 ('4-132',
  'Cockburn, Sir William Sarsfield Rossiter, bart., 1796-1858. ALS to T. J. Pettigrew',
  '1856 Oct 14'),
 ('4-133',
  'Colborne, Nicholas William Ridley-Colborne, 1st Baron, 1779-1854. 5 ALS to T. J. Pettigrew',
  '[ca. 1849]'),
 ('4-134',
  'Coleridge, Sir John Taylor, 1790-1876. 2 ALS to T. J. Pettigrew',
  '1861 Mar, Nov'),
 ('4-135',
  'Collier, John Payne, 1789-1883. 2 ALS to T. J. Pettigrew',
  '1854, 1855'),
 ('4-136',
  'Collyer, William Bengo, 1782-1854. 3 ALS to T. J. Pettigrew',
  '1816-23'),
 ('4-137', 'Combe, Taylor, 1774-1826. 2 ALS to T. J. Pettigrew', '1821, 1824'),
 ('4-138',
  'Conolly, John, 1794-1866. 7 ALS and 3 AL to T. J. Pettigrew',
  '[1829]-57'),
 ('4-139',
  'Conybeare, William Daniel, 1787-1857. ALS to T. J. Pettigrew',
  '1854 Jul 28'),
 ('4-140',
  'Conyngham, Henry Conyngham, 1st Marquess, 1766-1832. 2 ALS to T. J. Pettigrew',
  '1831 Oct'),
 ('4-141',
  'Cooke, John, 1756-1838. 7 ALS and 1 fragment to T. J. Pettigrew, 1 ALS to unidentified "Madam."',
  '[1829-32]'),
 ('4-142',
  'Cooper, Sir Astley Paston, bart., 1768-1841. 14 ALS to T. J. Pettigrew and 1 ALS from Pettigrew to Cooper',
  '1815-38'),
 ('4-143',
  'Copeland, Thomas, 1781-1855. 5 ALS and 1 AL to T. J. Pettigrew',
  '[1822 or later]'),
 ('4-144', 'Copland, James, 1791-1870. 3 ALS to T. J. Pettigrew', '1830 Feb'),
 ('4-145',
  'Corblet, Louis-Achille-Jules, 1819-1886. ALS (in French) to T. J. Pettigrew',
  '1857 Feb 20'),
 ('4-146',
  'Corner, George Richard, 1801-1863. 5 ALS and 1 AL to T. J. Pettigrew',
  '1845-52'),
 ('4-147', 'Cory, Isaac Preston, 1802-1842. ALS to T. J. Pettigrew', 'n.d.'),
 ('4-148',
  'Costa, Sir Michael, 1810-1884. 7 ALS in French and 5 ALS in English to T. J. Pettigrew',
  '1840-50'),
 ('4-149',
  'Costello, Dudley, 1803-1865. 5 ALS to T. J. Pettigrew',
  '[1856]-59'),
 ('4-150', 'Cotton, Henry, 1789-1879. ALS to T. J. Pettigrew', '1851 May 9'),
 ('4-151',
  'Coulson, William, 1802-1877. ALS to T. J. Pettigrew',
  '1861 Nov 23'),
 ('4-152',
  'Courtenay, Thomas Peregrine, 1782-1841. ALS to T. J. Pettigrew',
  '1841 Feb 12'),
 ('4-153',
  'Cowper, George Augustus Frederick, 6th Earl, 1806-1856. ALS to T. J. Pettigrew',
  '1853 Jun 10'),
 ('4-154',
  'Coxe, Henry Octavius, 1811-1881. 2 ALS to T. J. Pettigrew',
  '[1846 or later]'),
 ('4-155',
  'Craven, Louisa (Brunton) Craven, Countess of, 1785-1860. AL to T. J. Pettigrew',
  '[1859 or later]'),
 ('4-156', 'Criticus, pseud. ALS to T. J. Pettigrew', 'n.d.'),
 ('4-157',
  'Croker, Thomas Crofton, 1798-1854. 4 ALS to T. J. Pettigrew',
  '1844-46'),
 ('4-158',
  'Cruikshank, George, 1792-1878. 5 ALS to T. J. Pettigrew',
  '1854-55'),
 ('4-159', 'Cullimore, Isaac, 1791-1852. 4 ALS to T. J. Pettigrew', '1838-44'),
 ('4-160',
  'Cunningham, Peter, 1816-1869. 2 LS to T. J. Pettigrew',
  '1852 Jan, Mar'),
 ('4-161',
  'Curtis, Sir William, bart., 1804-1870. ALS to T. J. Pettigrew',
  '[1859 or later]'),
 ('4-162',
  'Darnley, John Stuart Bligh, 6th Earl of, 1827-1896. 6 ALS to T. J. Pettigrew',
  '1853 Jan-Aug'),
 ('4-163',
  'Dartmouth, William Legge, 4th Earl of, 1784-1853. 2 ALS to T. J. Pettigrew',
  '1814, 1823'),
 ('4-164',
  'Dartmouth, William Walter Legge, 5th Earl of, 1823-1891. 4 ALS to T. J. Pettigrew',
  '1860 Feb-Oct'),
 ('4-165',
  'Davidson, John, 1797-1836. 4 ALS to T. J. Pettigrew',
  '[after 1834]'),
 ('4-166', '6 ALS to T. J. Pettigrew', '1850-[56?]'),
 ('4-167', 'Prospectus (signed)', 'n.d.'),
 ('4-168', 'Davis, Nathan, 1812-1882. 2 ALS to T. J. Pettigrew', '1835-52'),
 ('4-169',
  'Delamere, Thomas Cholmondeley, 1st Baron, 1767-1855. AL to T. J. Pettigrew',
  'n.d.'),
 ('4-170', 'Delille, Charles Jean. 2 ALS to T. J. Pettigrew', '1834, 1841'),
 ('4-171',
  'De Morgan, Augustus, 1806-1871. ALS to T. J. Pettigrew',
  '1845 Dec 17'),
 ('4-172',
  'Denman, Thomas Denman, 1st Baron, 1779-1854. 4 ALS to T. J. Pettigrew',
  '1838-41'),
 ('4-173',
  'Devon, William Reginald Courtenay, 30th Earl of, 1807-1888. ALS and 2 AL to T. J. Pettigrew',
  '1861 Feb-Jul'),
 ('4-174',
  'Devonshire, William Cavendish, 7th Duke of, 1808-1891. AL to T. J. Pettigrew',
  '1850 Jun 14'),
 ('4-175',
  'Devonshire, William George Spencer Cavendish, 6th Duke of, 1790-1858. ALS and AL to T. J. Pettigrew',
  '1833, 1851'),
 ('4-176',
  "D'Eyncourt, Charles Tennyson, 1784-1861. ALS to T. J. Pettigrew",
  '1859 Mar 9'),
 ('4-177',
  'Dillon, Sir William Henry, 1779-1857. 4 ALS to T. J. Pettigrew',
  '1834 May'),
 ('4-178',
  'Dimock, James Francis, 1810-1876. 3 ALS to T. J. Pettigrew and 1 ALS to "Mr. Archdeacon"',
  'n.d'),
 ('4-179',
  'Dixon, William Hepworth, 1821-1879. ALS and AL to T. J. Pettigrew',
  '1854 Feb'),
 ('4-180',
  'Donkin, Sir Rufane Shaw, 1773-1841. 2 ALS to T. J. Pettigrew',
  '[1829], 1833'),
 ('4-181',
  'Donnelly, Sir Ross, 1761?-1840. 4 ALS and 3 AL to T. J. Pettigrew',
  '1826-33'),
 ('4-182',
  'Dover, Georgiana (Cavendish) Agar-Ellis, Baroness, 1804-1860. AL to Mr. Stephenson',
  'n.d.'),
 ('4-183',
  'Downshire, Arthur Wills Blundell Sandys Trumbull Windsor Hill, 4th Marquis of, 1812-1868. ALS to T. J. Pettigrew',
  '1859 Jul 18'),
 ('4-184',
  'Doyle, Sir Charles William, 1770-1842. AL to T. J. Pettigrew',
  '1823 Jun 8'),
 ('4-185',
  'Doyle, Sir John, bart., 1750?-1834. 2 ALS to T. J. Pettigrew',
  '1829, 1830'),
 ('4-186',
  'Drury, Henry Joseph Thomas, 1778-1841. 3 ALS to T. J. Pettigrew',
  '1829-32'),
 ('4-187',
  'Ducie, Henry John Reynolds-Moreton, 3d Earl of, 1827-1921. 5 ALS to T. J. Pettigrew',
  '1860 Apr'),
 ('4-188',
  'Duckett, Sir George, bart., 1777-1856. 2 AL to T. J. Pettigrew',
  '1830 May-Jun'),
 ('4-189',
  'Dufour, Charles, 1814-1887. ALS (in French) to T. J. Pettigrew',
  '1851 Mar 21'),
 ('4-190', 'Dunbar, M. J. M. 7 ALS to T. J. Pettigrew', '[1853 or later]'),
 ('4-191',
  'Dundas, Sir James Whitley Deans, 1785-1862. 3 ALS and 1 AL to T. J. Pettigrew',
  '1829-[59]'),
 ('4-192',
  'Dungannon, Arthur Hill-Trevor, 3d Viscount, 1798-1862. AL to T. J. Pettigrew',
  '1860 May 14'),
 ('4-193',
  'Dunkin, Alfred John, 1812-1879. ALS to T. J. Pettigrew',
  '1846 Jun 10'),
 ('4-194',
  'Dunraven, Edward Richard Wyndham Wyndham-Quin, 3d Earl of, 1812-1871. 2 ALS to T. J. Pettigrew',
  '1861 May'),
 ('4-195',
  'Dupont, Gustave Jules, 1820-1903. ALS to T. J. Pettigrew',
  '1851 Sep 26'),
 ('4-196',
  'Dwarris, Sir Fortunatus William Lilley, 1786-1860. 2 ALS to T. J. Pettigrew',
  '1857 Jul-Aug'),
 ('5-197',
  'Edwards, William Camden, 1777-1855. ALS to T. J. Pettigrew',
  '[1831 or later]'),
 ('5-198',
  'Effingham, Henry Howard, 2d Earl of, 1806-1889. 5 ALS to T. J. Pettigrew',
  '1845-61'),
 ('5-199',
  'Effingham, Kenneth Alexander Howard, 1st Earl of, 1767-1845. 3 ALS to T. J. Pettigrew',
  '1843-44'),
 ('5-200',
  'Eglinton, Archibald William Montgomerie, 13th Earl of, 1812-1861. ALS to T. J. Pettigrew',
  '1857 Sep 21'),
 ('5-201',
  'Egmont, Bridget (Wynn) Perceval, Countess of, d. 1826. ALS and AL to T. J. Pettigrew',
  '[1821 or later]'),
 ('5-202',
  'Ellis, Sir Henry, 1777-1869. 14 ALS to T. J. Pettigrew and 1 ALS to F. Maurice',
  '1821-57'),
 ('5-203', 'Erksine, Thomas, 1788-1864. 4 ALS to T. J. Pettigrew', '1856-60'),
 ('5-204',
  'Erksine, Thomas Erksine, 1st Baron, 1750-1823. 2 ALS and 2 AL to T. J. Pettigrew',
  '1815-18'),
 ('5-205',
  'Essex, George Capel-Coningsby, 6th Earl of, 1757-1839. ALS to T. J. Pettigrew',
  '1821 Jun 16'),
 ('5-206',
  'Essex, Sarah (Bazett) Capel-Coningsby, Countess of, 1761-1838. ALS to Dr. Shearman',
  'n.d.'),
 ('5-207',
  'Estcourt, Thomas Henry Sutton Sotheron, 1801-1876. ALS to T. J. Pettigrew',
  'n.d.'),
 ('5-208', 'Ewart, William, 1798-1869. ALS to T. J. Pettigrew', '1858 Jun 1'),
 ('5-209',
  'Exmouth, Edward Pellew, 3d Viscount, 1811-1876. ALS to T. J. Pettigrew',
  '1861 Apr 22'),
 ('5-210',
  'Exmouth, Pownoll Bastard Pellew, 2d Viscount, 1786-1833. ALS to T. J. Pettigrew',
  '1817 Mar 21'),
 ('5-211',
  'Eyton, Robert William, 1815-1881. 3 ALS to T. J. Pettigrew',
  '[1856]-60'),
 ('5-212',
  'Fairholt, Frederick William, 1814-1866. 2 ALS to T. J. Pettigrew',
  '1852 May 29'),
 ('5-213',
  'Falconer, Thomas, 1805-1882. 18 ALS to T. J. Pettigrew',
  '1850-61'),
 ('5-214', 'Falkener, Edward, 1814-1896. ALS to T. J. Pettigrew', 'n.d.'),
 ('5-215',
  'Farquhar, Mary Octavia (Somerset), lady, d. 1906. AL to T. J. Pettigrew',
  '1848 Mar 1'),
 ('5-216',
  'Farre, John Richard, 1775-1862. ALS to T. J. Pettigrew',
  '1831 Nov 5'),
 ('5-217',
  'Faulkner, Sir Arthur Brooke, 1779-1845. 12 ALS and 2 AL to T. J. Pettigrew and 1 calling card',
  '1820-44'),
 ('5-218',
  'Fellows, Sir Charles, 1799-1860. 2 ALS to T. J. Pettigrew',
  '1855 Jul'),
 ('5-219',
  'Ferguson, Robert, 1799-1865. ALS to T. J. Pettigrew',
  '1843 Aug 10'),
 ('5-220',
  'Ferrers, Washington Sewallis Shirley, 9th Earl of, 1822-1859. 2 ALS to T. J. Pettigrew',
  '1851 May'),
 ('5-221',
  'Ffolkes, Sir William John Henry Browne, bart., 1786-1860. AL to T. J. Pettigrew',
  '1833 Jul 19'),
 ('5-222',
  'Filmer, Sir Edmund, bart., 1809-1857. 2 ALS to T. J. Pettigrew',
  '1853 Mar, May'),
 ('5-223',
  'Fitch, William Stevenson, 1793-1859. ALS to T. J. Pettigrew',
  '1845 Sep 3'),
 ('5-224',
  'Fitzhardinge, William Fitzhardinge Berkeley, 1st Earl, 1786-1857. 2 ALS to C. Roach Smith',
  '1846 Jul'),
 ('5-225',
  'Forbes, Sir Charles Ferguson, 1779-1852. 2 ALS to T. J. Pettigrew',
  '1817 Jun'),
 ('5-226', 'Forbes, Sir John, 1787-1861. 5 ALS to T. J. Pettigrew', '1839-40'),
 ('5-227', 'Forester, Thomas. ALS to T. J. Pettigrew', 'n.d.'),
 ('5-228',
  'Foster, Peter Le Neve, 1809-1879. ALS to T. J. Pettigrew',
  '1854 Jan 17'),
 ('5-229',
  'Freeman, Edward A., 1823-1892. 2 ALS to T. J. Pettigrew',
  '1854, 1856'),
 ('5-230',
  'French, Gilbert James, 1804-1866. 4 ALS to T. J. Pettigrew, 1 ALS to J.R. Planché, and 1 ALS to [John E. Engan?] Secretary of the B.A.A.',
  '1850-60'),
 ('5-231', 'Fryer, Edward, 1761-1826. 2 ALS to T. J. Pettigrew', '1818, 1828'),
 ('5-232',
  'Gage, Henry Hall Gage, 4th Viscount, 1791-1877. AL to T. J. Pettigrew',
  '1833 Aug 15'),
 ('5-233',
  'Gardiner, Sir Robert William, 1781-1864. 3 ALS to T. J. Pettigrew',
  '1848 Aug'),
 ('5-234', 'Gerhard, E. ALS (in French) to T. J. Pettigrew', 'n.d.'),
 ('5-235',
  'Gilbert, Ashurst Turner, Bp. of Chichester, 1786-1870. ALS and AL to T. J. Pettigrew',
  '1854, 1861'),
 ('5-236', 'Godwin, George, 1815-1888. 2 ALS to T. J. Pettigrew', '1853 Apr'),
 ('5-237',
  'Good, John Mason, 1764-1827. 2 ALS to T. J. Pettigrew',
  '1815, 1821'),
 ('5-238',
  'Goodenough, Edmund, 1785-1845. 3 ALS to T. J. Pettigrew',
  '1804-27'),
 ('5-239',
  'Goodwin, Charles Wycliffe, 1817-1878. ALS to the Secretary of the B.A.A.',
  '1862 May 5'),
 ('5-240', 'Gordon, J. E. 3 ALS to T. J. Pettigrew', '[1831 or later]'),
 ('5-241',
  'Gosford, Archibald Acheson, 2d Earl of, 1776-1849. 3 ALS to T. J. Pettigrew',
  '1833-44'),
 ('5-242',
  'Gosford, Archibald Acheson, 3d Earl of, 1806-1864. ALS to T. J. Pettigrew',
  '1841 May 19'),
 ('5-243', 'Gould, Nathaniel. 2 ALS to T. J. Pettigrew', '[1850], 1861'),
 ('5-244',
  'Grafton, William Henry FitzRoy, 6th Duke of, 1819-1882. ALS to T. J. Pettigrew',
  'n.d.'),
 ('5-245',
  'Granville, Augustus Bozzi, 1783-1872. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 ('5-246',
  'Grenville, Thomas, 1755-1846. 4 ALS to T. J. Pettigrew',
  '1805-42'),
 ('5-247',
  'Grey, Charles Grey, 2d Earl, 1764-1845. 2 AL to T. J. Pettigrew',
  '1819, 1829'),
 ('5-248',
  'Grey-Egerton, Sir Philip de Malpas, 1806-1881. ALS to T. J. Pettigrew',
  '1850 Jun 5'),
 ('5-249',
  'Guilford, Francis North, 6th Earl of, 1772-1861. 2 ALS to T. J. Pettigrew',
  '1853 Feb, May'),
 ('5-250', 'Gunn, William, 1750-1841. ALS to T. J. Pettigrew', '1831 Jan 27'),
 ('5-251',
  'Gurney, John Hampden, 1802-1862. 2 ALS to T. J. Pettigrew',
  '1861, 1862'),
 ('5-252',
  'Gutch, John Matthew, 1776-1861. 5 ALS to T. J. Pettigrew',
  '1848-54'),
 ('5-253',
  'Guthrie, George James, 1785-1856. 8 ALS to T. J. Pettigrew',
  '[1833]-45'),
 ('5-254', 'Gwilt, Joseph, 1784-1863. ALS to T. J. Pettigrew', '1849 Mar 28'),
 ('6-255',
  'Haigh, Daniel Henry, 1819-1879. ALS to T. J. Pettigrew',
  '1850 Dec 21'),
 ('6-256',
  'Halford, Sir Henry, bart., 1766-1844. 3 ALS to T. J. Pettigrew',
  '1829-37'),
 ('6-257',
  'Haliburton, James, 1788-1862. 7 ALS to T. J. Pettigrew',
  '1833-48'),
 ('6-258', 'Hall, Marshall, 1790-1857. ALS to T. J. Pettigrew', '1838 Feb 14'),
 ('6-259',
  'Halliday, Sir Andrew, 1781-1839. 2 ALS to T. J. Pettigrew',
  '1823, 1826'),
 ('6-260',
  'Hamilton, Henry Parr, 1794-1880. 6 ALS to T. J. Pettigrew',
  '1844-58'),
 ('6-261', 'Hamilton, R., col. ALS to T. J. Pettigrew', '1826 Jul 21'),
 ('6-262',
  'Hamilton, William Richard, 1777-1859. 7 ALS and 1 LS to T. J. Pettigrew',
  '1830-45'),
 ('6-263',
  'Hancock, Thomas, 1783-1849. 2 ALS to T. J. Pettigrew',
  '1834, 1842'),
 ('6-264',
  'Hargrove, William, 1788-1862. ALS to T. J. Pettigrew',
  '1850 Apr 22'),
 ('6-265', 'Harland, John, 1806-1868. ALS to T. J. Pettigrew', '1850 Sep 10'),
 ('6-266', 'Harriott, Thomas. ALS to T. J. Pettigrew', '1813 Dec 8'),
 ('6-267', 'Harrod, Henry, 1817-1871. ALS to T. J. Pettigrew', '1857 Aug 7'),
 ('6-268',
  'Harrowby, Dudley Francis Stuart Ryder, 3d Earl of, 1831-1900. 3 ALS to T. J. Pettigrew',
  '1851-52'),
 ('6-269',
  'Hartshorne, Charles Henry, 1802-1865. 3 ALS to T. J. Pettigrew',
  '1860-61'),
 ('6-270', 'Haslam, John, 1764-1844. 3 ALS to T. J. Pettigrew', '1831-33'),
 ('6-271', 'ALS to T. J. Pettigrew', '1845 Feb 25'),
 ('6-272', 'ALS to C. R. Smith', '1845 Jul 7'),
 ('6-273',
  'Hawkins, Caesar Henry, 1798-1884. 3 ALS to T. J. Pettigrew',
  '[1831 or later]'),
 ('6-274',
  'Hawkins, Edward, 1780-1867. 4 ALS and 1 AL to T. J. Pettigrew',
  '[1828]-53'),
 ('6-275',
  'Hawkins, Francis, 1794-1877. 2 LS, 9 ALS, and 1 AL to T. J. Pettigrew',
  '1835-52'),
 ('6-276', 'Hay, Robert, 1799-1863. 2 ALS to T. J. Pettigrew', '1841, 1842'),
 ('6-277',
  'Heath, Dunbar Isidore, 1816-1888. 2 ALS to T. J. Pettigrew',
  '1861, 1862'),
 ('6-278',
  'Heath, J. M. 6 ALS and 1 AL (draft) to T. J. Pettigrew',
  '1817-38'),
 ('6-279', 'Heberden, William, 1767-1845. 2 ALS to T. J. Pettigrew', 'n.d.'),
 ('6-280',
  'Henderson, Alexander, 1780-1863. 2 AL (3d person) to T. J. Pettigrew',
  '[1825 or later]'),
 ('6-281',
  "Heytesbury, William A'Court, 1st Baron, 1779-1860. ALS to T. J. Pettigrew",
  '1855 Jul 10'),
 ('6-282',
  'Hill, Sir Rowland, 1795-1879. ALS to T. J. Pettigrew',
  '1855 Dec 21'),
 ('6-283', 'Hill, Thomas, 1760-1840. ALS to T. J. Pettigrew', '1827 Mar 20'),
 ('6-284',
  'Hincks, Edward, 1792-1866. 4 ALS to T. J. Pettigrew',
  '1845 Jul-Aug'),
 ('6-285',
  'Holland, Sir Henry, bart., 1788-1873. 7 ALS and 1 AL to T. J. Pettigrew',
  '[1824-47]'),
 ('6-286',
  'Hood, Sir Alexander Bateman Periam Fuller-Acland-Hood, bart., 1819-1892. AL to T. J. Pettigrew',
  '1856 Jun 30'),
 ('6-287',
  'Houghton, Richard Monckton Milnes, 1st Baron, 1809-1885. 6 ALS to T. J. Pettigrew',
  'n.d.'),
 ('6-288', 'Hugo, Thomas, 1820-1876. 3 ALS to T. J. Pettigrew', '1853 Mar'),
 ('6-289', 'Hume, Abraham, 1814-1884. 4 ALS to T. J. Pettigrew', '1849-50'),
 ('6-290',
  'Hunter, Joseph, 1783-1861. 2 ALS to T. J. Pettigrew',
  '1841 May, Jun'),
 ('6-291',
  'Husenbeth, Frederick Charles, 1796-1872. 3 ALS to T. J. Pettigrew and 1 ALS to the Council of the B.A.A.',
  '1846-57'),
 ('6-292',
  'Huskisson, William, 1770-1830. AL to T. J. Pettigrew',
  '1818 Jan 9'),
 ('6-293',
  'Irving, George Vere, 1815-1869. 2 ALS to T. J. Pettigrew',
  '1857 Jun'),
 ('6-294',
  'Isaacson, Stephen, 1798-1849. 4 ALS to T. J. Pettigrew',
  '1845-46'),
 ('7-295',
  'Jackson, John, Bp. of London, 1811-1885. AL to T. J. Pettigrew',
  '1854 Jun 5'),
 ('7-296', 'Jerden, William, 1782-1869. ALS to T. J. Pettigrew', '1860 May 3'),
 ('7-297',
  'Jewitt, Llewellyn Frederick William, 1816-1886. 2 ALS to T. J. Pettigrew',
  '1849 Oct'),
 ('7-298', 'Johnson, James, 1777-1845. ALS to T. J. Pettigrew', '1831 Mar 20'),
 ('7-299',
  'Jones, Harry Longueville, 1806-1870. ALS to T. J. Pettigrew',
  '1848 Jun 2'),
 ('7-300', 'Jones, Thomas, 1810-1875. ALS to T. J. Pettigrew', '1861 Oct 22'),
 ('7-301',
  'Jones, William Henry Rich, 1817-1885. 4 ALS to T. J. Pettigrew',
  '1858 Jun-Jul'),
 ('7-302', 'Julien, [Marc Antoine?]. AL to T. J. Pettigrew', '1833 Sep 2'),
 ('7-303', 'Just, John, 1797-1852. 4 ALS to T. J. Pettigrew', '1850-51'),
 ('7-304',
  'Kater, Henry, 1777-1835. ALS and AL to T. J. Pettigrew',
  '1829, 1830'),
 ('7-305',
  'Kean, Charles John, 1811-1868. 1 ALS to James Robinson Planché (1796-1880)',
  '1847 Sep 24'),
 ('7-306', 'Keate, Robert, 1777-1857. 2 ALS to T. J. Pettigrew', '[1824]-40'),
 ('7-307', 'Kelly, Patrick, 1756-1842. ALS to T. J. Pettigrew', '1830 Jan 30'),
 ('7-308', 'Kemble, Charles, 1775-1854. 1 ALS to T.J. Pettigrew.', 'n.d.'),
 ('7-309',
  'Kempe, Alfred John, 1785?-1846. ALS to T. J. Pettigrew',
  '1846 Apr 13'),
 ('7-310', 'Kerrison, Robert Masters, 8 ALS to T. J. Pettigrew', '1829-40'),
 ('7-311', 'King, Richard, 1811?-1876. ALS to T. J. Pettigrew', 'n.d.'),
 ('7-312',
  'King, Walker, Bp. of Rochester, 1732-1827. ALS to T. J. Pettigrew',
  '[1815 or later]'),
 ('7-313', 'Kingdom, John. ALS to William Salisbury', '[after 1831]'),
 ('7-314',
  'Kinnaird, Douglas James William, 1788-1830. AL to T. J. Pettigrew',
  '1823 May 19'),
 ('7-315',
  'Knightley, Selina Mary (Hervey), Lady. AL to T. J. Pettigrew',
  '1847 Apr 13'),
 ('7-316', 'Knox, Vicesimus, d. 1855. ALS to J. G. Children', '1841 Jan 30'),
 ('7-317',
  'Konig, Charles Dietrich Eberhard, 1774-1851. 5 ALS to T. J. Pettigrew',
  '1827-[31]'),
 ('7-318', '2 ALS and 1 AL (in Italian) to Mr. Albano', '[1837 or later]'),
 ('7-319', 'LS to T. J. Pettigrew', '1838 Aug 22'),
 ('7-320',
  'Lamb, Lady Caroline (Ponsonby), 1785-1828. AL to T. J. Pettigrew',
  '[1823 or later]'),
 ('7-321',
  'Lamington, Alexander Dundas Ross Wishart Cochrane-Baillie, 1st Baron, 1816-1890. ALS to T. J. Pettigrew',
  '1861 Apr 30'),
 ('7-322', 'Lane, Hunter, d. 1853. 2 ALS to T. J. Pettigrew', '1840, 1842'),
 ('7-323', 'Latham, John, 1761-1843. ASL to T. J. Pettigrew', '1826 Feb 10'),
 ('7-324',
  'Law, George Henry, Bp. of Bath and Wells, 1761-1845. 2 AL to T. J. Pettigrew',
  '1827 May'),
 ('7-325',
  'Lawrence, Sir William, 1783-1867. ALS to T. J. Pettigrew',
  '1841 Nov 16'),
 ('7-326',
  'Leach, William Elford, 1790-1836. AL to T. J. Pettigrew',
  '1817 Nov 22'),
 ('7-327',
  'Leake, William Martin, 1777-1860. 2 ALS to T.J. Pettigrew and 1 calling card.',
  '[1849 or later]'),
 ('7-328',
  'Lee, John, 1783-1866. 17 ALS and 1 AL to T. J. Pettigrew',
  '1825-57'),
 ('7-329', 'Lee, John Edward, 1808-1887. 3 ALS to T. J. Pettigrew', '1850-53'),
 ('7-330', 'Lee, Samuel, 1783-1852. 14 ALS to T. J. Pettigrew', '1827-34'),
 ('7-331',
  'Lee, Sarah (Wallis) Bowdich, 1791-1856. ALS and AL to T. J. Pettigrew',
  '1830, 1834'),
 ('7-332', 'Leemans, Conrad. 10 ALS to T. J. Pettigrew', '1836-43'),
 ('7-333',
  'Lemon, Robert, 1779-1835. 7 ALS and 1 AL to T. J. Pettigrew',
  '1826-31'),
 ('7-334',
  'Lemon, Robert, 1800-1867. 3 ALS and 2 AL to T. J. Pettigrew',
  '1826-46'),
 ('7-335',
  'Leslie, Charles Robert, 1794-1859. ALS to T. J. Pettigrew',
  '1849 Jan 8'),
 ('7-336', 'Lete, Thomas. ALS to T. J. Pettigrew', '1852 Jun 3'),
 ('7-337',
  'Lewis, Frederick Christian, 1779-1856. AL to T. J. Pettigrew',
  'n.d.'),
 ('7-338',
  'Lewis, George Robert, 1782-1871. 2 ALS to T. J. Pettigrew',
  '1840, 1851'),
 ('7-339',
  'Lewis, Griffith George, 1784-1859. AL to T. J. Pettigrew',
  '1842 Apr 15'),
 ('7-340', 'ALS to unnamed recipient', 'n.d.'),
 ('7-341', 'ALS to Mr. Lindsay', 'n.d.'),
 ('7-342', '2 ALS to T. J. Pettigrew', '[1832 or later]'),
 ('7-343', 'Liston, Robert, 1794-1847. 9 ALS to T. J. Pettigrew', '1835-46'),
 ('7-344', 'Lloyd, W. ALS to T. J. Pettigrew', '1817 Mar 13'),
 ('7-345', 'Loewe, Louis, 1809-1888. 7 ALS to T. J. Pettigrew', '1837-46'),
 ('7-346-347',
  'Londesborough, Albert Denison, 1st Baron, 1805-1860. 43 ALS to T. J. Pettigrew and 1 ALS fragment to unidentified [The V. Revd. Dean of ?]',
  '[1843-49]'),
 ('7-348', 'Lonsdale, James, 1777-1839. ALS to T. J. Pettigrew', '1823 Sep 2'),
 ('7-349',
  'Lonsdale, John, Bp. of Lichfield, 1788-1867. 2 ALS to T. J. Pettigrew',
  '1860 Jan, Jul'),
 ('7-350',
  'Lough, John Graham, 1806-1876. ALS to T. J. Pettigrew',
  '[1840 or later]'),
 ('7-351', 'ALS to T. J. Pettigrew', '1845 Nov 18'),
 ('7-352', '3 ALS to J. R. Planché', '1845-52'),
 ('7-353',
  'Ludolf, comte de [Neopolitan Ambassador]. ALS and AL to T. J. Pettigrew',
  '1830 Apr, Aug'),
 ('7-354', 'Lynch, Christopher. 3 ALS to T. J. Pettigrew', '1851-53'),
 ('8-355',
  'Macdonald, Lawrence, 1799-1878. AL to T. J. Pettigrew',
  '[1830 or later]'),
 ('8-356',
  'McGrigor, Sir Charles Roderic, bart., b. 1811. 3 ALS to T. J. Pettigrew',
  '[1859 or later]'),
 ('8-357',
  'McGrigor, Sir James, bart., 1771-1858. 7 ALS, 1 LS, 1 AL to T. J. Pettigrew',
  '1830-54'),
 ('8-358',
  'Mackenzie, Robert Shelton, 1809-1880. ALS to T. J. Pettigrew',
  '1844 Sep 19'),
 ('8-359',
  'Mackinnon, William Alexander, 1789-1870. 7 ALS and 1 AL to T. J. Pettigrew',
  '[1828-37]'),
 ('8-360',
  'Maitland, Samuel Roffey, 1792-1866. ALS to T. J. Pettigrew',
  '[1838-48]'),
 ('8-361',
  'Maltby, Edward, Bp. of Durham, 1770-1859. 23 ALS to T. J. Pettigrew',
  '[1842]-52'),
 ('8-362',
  'Manby, George William, 1765-1854. 2 ALS to T. J. Pettigrew',
  '1830 Aug 28'),
 ('8-363',
  'Mandelsloh, count (Würtemberg Minister to Gr. Brit.). 1 ALS and 2 AL to T. J. Pettigrew',
  '[1826]-35'),
 ('8-364', 'Mangles, James, 1786-1867. 5 ALS to T. J. Pettigrew.', '1834-42'),
 ('8-365',
  'Manvers, Charles Herbert Pierrepont, 2d Earl, 1778-1860. ALS to T. J. Pettigrew',
  '1852 Jul 9'),
 ('8-366',
  'Markland, James Heywood, 1788-1864. ALS to T. J. Pettigrew',
  '1840 May 28'),
 ('8-367',
  'Marrable, Frederick, 1818-1872. ALS to T. J. Pettigrew',
  '1850 Feb 20'),
 ('8-368',
  'Marsden, William, 1754-1836. ALS and 2 AL to T. J. Pettigrew',
  '1833 Jun'),
 ('8-369',
  'Marshall, William Calder, 1813-1894. 3 ALS to T. J. Pettigrew',
  '1851-58'),
 ('8-370',
  'Martin, Sir James Ranald, 1793-1874. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 ('8-371',
  'Martin, Leopold Charles, 1817-1889. ALS to T. J. Pettigrew',
  '1845 Jun 20'),
 ('8-372',
  'Maton, William George, 1774-1835. ALS to T. J. Pettigrew',
  '[1825 or later]'),
 ('8-373', 'Maugham, Robert, d. 1862. 3 ALS to T. J. Pettigrew', '1824 Apr'),
 ('8-374', 'Mayer, Joseph, 1803-1886. 2 ALS to T. J. Pettigrew', '1849, 1850'),
 ('8-375',
  'Mayo, Herbert, 1796-1852. 4 ALS to T. J. Pettigrew',
  '[1837 or later]'),
 ('8-376',
  'Melfort, George Drummond, 6th Duke of, 1807-1902. ALS to T. J. Pettigrew',
  '1856 Jul 4'),
 ('8-377',
  'Merivale, John Herman, 1779-1844. 5 ALS to T. J. Pettigrew',
  '1836 Jul-Nov'),
 ('8-378', 'Merriman, Samuel, 1771-1852. 4 ALS to T. J. Pettigrew', '1827-38'),
 ('8-379',
  'Meyrick, Sir Samuel Rush, 1783-1848. 11 ALS to T. J. Pettigrew',
  '1827-47'),
 ('8-380',
  'Monk, James Henry, Bp. of Gloucester and Bristol, 1784-1856. ALS to C. R. Smith',
  '1846 Apr 17'),
 ('8-381',
  'Montfort, Henry Bromley, Lord, 3d Baron of Horseheath, 1773-1851. ALS to T. J. Pettigrew',
  '1826 Sep 28'),
 ('8-382', 'Moodie, John. 8 ALS to T. J. Pettigrew', '1816-17'),
 ('8-383',
  'Moore, James Carrick, 1762-1860. 3 ALS and 1 AL to T. J. Pettigrew',
  '1838-40'),
 ('8-384',
  '2 ALS (in French), 2 LS to T. J. Pettigrew and 1 document, signed',
  '1827-36'),
 ('8-385', 'LS to the Duke of Sussex', '1831 Feb 28'),
 ('8-386',
  'Morgan, John Minter, 1782-1854. 3 ALS to T. J. Pettigrew',
  '1830-33'),
 ('8-387',
  'Morley, Edmund Parker, 2d Earl of, 1810-1864. ALS to T. J. Pettigrew',
  '1861 Apr 30'),
 ('9-388', 'Mudge, William, 1762-1820. ALS to T. J. Pettigrew', '1816 Jan 5'),
 ('9-389', 'Müller, William, d. 1846. 3 ALS to T. J. Pettigrew', '1820-29'),
 ('9-390',
  'Mulready, William, 1786-1863. ALS to T. J. Pettigrew',
  '1849 Jan 8'),
 ('9-391',
  'Munro, Hugh Andrew Johnstone, 1819-1885. ALS to T. J. Pettigrew',
  '1849 Jan 17'),
 ('9-392',
  'Munster, George Augustus Frederick Fitzclarence, 1st Earl of, 1794-1842. 4 ALS and 1 AL to T. J. Pettigrew',
  '1823-31'),
 ('9-393',
  'Murdoch, Thomas, b. 1757. 4 ALS and 1 AL to T. J. Pettigrew',
  '1831-34'),
 ('9-394', 'Murray, John, 1808-1892. ALS to T. J. Pettigrew', 'n.d.'),
 ('9-395', 'Nares, Robert, 1753-1829. AL to T. J. Pettigrew', 'n.d.'),
 ('9-396', 'Nash, John, 1752-1835. 2 AL to T. J. Pettigrew', '1828, 1829'),
 ('9-397',
  'Nayler, Sir George, 1764?-1831. 2 ALS and 1 LS to T. J. Pettigrew',
  '1827-30'),
 ('9-398',
  'Needham, Francis Henry, 1819-1902. ALS to T. J. Pettigrew',
  '1846 Mar 31'),
 ('9-399', 'Newman, John, 1786-1859. ALS to T. J. Pettigrew', '1834 Jun 24'),
 ('9-400',
  'Nichols, John Bowyer, 1779-1863. 2 ALS to T. J. Pettigrew',
  '1828, 1844'),
 ('9-401', 'Nichols, John Gough, 1806-1873. 4 ALS to T. J. Pettigrew', 'n.d.'),
 ('9-402',
  'Nicolas, [John] Toup, 1788-1851. ALS to Mr. Smyth',
  '[1849?] Jun 16'),
 ('9-403',
  'Nightingale, Margaret (Goostry). ALS to T. J. Pettigrew',
  '1825 Jan 10'),
 ('9-404',
  'Northampton, Spencer Joshua Alwyne, 2d Marquis of, 1790-1851. AL to T. J. Pettigrew',
  '1848 Mar 28'),
 ('9-405',
  'Northumberland, Algernon Percy, 4th Duke of, 1792-1865. 3 ALS to T. J. Pettigrew',
  '1834-61'),
 ('9-406',
  'Northwick, John Rushout, 2d Baron, 1811-1887. AL to T. J. Pettigrew',
  'n.d.'),
 ('9-407',
  'Numismatic Society. LS (signed Henry Christmas) to C. R. Smith',
  '1846 Feb 5'),
 ('9-408',
  'Oldfield, John, 1789-1863. 6 ALS and 1 AL to T. J. Pettigrew',
  '1837-38'),
 ('9-409',
  'Ollivant, Alfred, Bp. of Llandaff, 1798-1882. 2 ALS and 1 AL to T. J. Pettigrew',
  '1854 Jun-Sep'),
 ('9-410',
  'Ord, John Walker, 1811-1853. 5 ALS to T. J. Pettigrew',
  '[1835]-45'),
 ('9-411',
  'Ouseley, Sir Gore, 1770-1884. 2 ALS and 1 AL to T. J. Pettigrew',
  '1829-36'),
 ('9-412',
  'Outram, Sir Benjamin Fonseca, 1774-1856. 4 ALS to T. J. Pettigrew',
  '[1828]-38'),
 ('9-413', 'Ouvry, Frederic, 1814-1881. ALS to T. J. Pettigrew', '1858 Feb'),
 ('9-414',
  'Overstone, Samuel Jones Lloyd, 1st Baron, 1796-1883. ALS to T. J. Pettigrew',
  '1850 Sep 17'),
 ('9-415',
  'Papworth, Edgar George, 1809-1886. ALS (AL in different hand) to T. J. Pettigrew',
  '1842 Aug 22'),
 ('9-416', 'Parke, Henry, 1792?-1835. ALS to T. J. Pettigrew', '1835 Mar 14'),
 ('9-417',
  'Patten, George, 1801-1865. ALS and AL to T. J. Pettigrew',
  '1849 Apr'),
 ('9-418',
  'Peacock, George, 1791-1858. 2 ALS to T. J. Pettigrew',
  '1857 Jul, Aug'),
 ('9-419',
  'Peel, Sir Robert, bart., 1788-1850. AL to T. J. Pettigrew',
  'n.d.'),
 ('9-420',
  'Peile, Thomas Williamson, 1806-1882. ALS to T. J. Pettigrew',
  '1853 Jan 15'),
 ('9-421', 'Penn, John, 1760-1834. ALS to T. J. Pettigrew', '1811 May 9'),
 ('9-422',
  'Pennethorne, Sir James, 1801-1871. AL to T. J. Pettigrew',
  '1850 Jan 23'),
 ('9-423',
  'Pepys, William Hasledine, 1775-1856. AL to T. J. Pettigrew',
  '1832 May 3'),
 ('9-424',
  'Pereira, Jonathan, 1804-1853. 2 ALS and 3 AL to T. J. Pettigrew',
  '[1830]-38'),
 ('9-425',
  'Petre, William Bernard Petre, 12th Baron, 1817-1884. ALS to T. J. Pettigrew',
  '1861 Apr 25'),
 ('9-426', 'ALS to the British Archaeological Association', '1854 Nov 23'),
 ('9-427', 'ALS to unnamed recipient', '1856 Sep 4'),
 ('9-428', 'Pettigrew, William. ALS to T. J. Pettigrew', 'n.d.'),
 ('9-429',
  'Philip, Alexander Philip Williamson, 1770?-1851?. 2 ALS to T. J. Pettigrew',
  '1831, 1838'),
 ('9-430',
  'Phillipps, Sir Thomas, 1792-1872. 3 ALS to T. J. Pettigrew',
  '1830-31'),
 ('9-431',
  'Phillips, Thomas, 1770-1845. 4 ALS to T. J. Pettigrew',
  '[1832]-37'),
 ('9-432',
  'Phillpotts, Henry, Bp. of Exeter, 1778-1869. 2 ALS to T. J. Pettigrew',
  '1832, 1861'),
 ('9-433',
  'Phipps, Sir Charles Beaumont, 1801-1866. 2 ALS to T. J. Pettigrew',
  '1849, 1855'),
 ('9-434',
  'Pickersgill, Henry William, 1782-1875. 5 ALS and 3 AL to T. J. Pettigrew',
  '1832-49'),
 ('9-435',
  'Pidgeon, Henry Clark, 1807-1880. 2 ALS to T. J. Pettigrew',
  '1849, 1850'),
 ('9-436',
  'Pitcairn, Robert, 1793-1855. ALS to T. J. Pettigrew',
  '[1823 or later]'),
 ('9-437',
  'Pitts, William, 1790-1840. 2 ALS and 1 AL to T. J. Pettigrew',
  '1831 May'),
 ('9-438',
  'Planché, James Robinson, 1796-1880. 11 ALS to T. J. Pettigrew',
  '1830-58'),
 ('9-439',
  'Poltimore, Augustus Frederick George Warwick Bampfylde, 2d Baron, 1837-1908. 2 ALS to T. J. Pettigrew',
  '[1860 or later]'),
 ('9-440',
  'Pomfret, George Fermor, 3d Earl of, 1768-1830. AL to T. J. Pettigrew',
  '[1827 or later]'),
 ('9-441', 'Pond, John, 1767-1836. 6 ALS to T. J. Pettigrew', '1831 Feb-Jul'),
 ('9-442', 'Poste, Beale, 1793-1871. 8 ALS to T. J. Pettigrew', '1847-52'),
 ('9-443',
  'Powis, Edward James Herbert, 3d Earl of, 1818-1891. ALS and AL to T. J. Pettigrew',
  '1860 Jul, Oct'),
 ('9-444',
  'Poynder, John, 1779-1849. 3 ALS to T. J. Pettigrew',
  '1847 Jul-Aug'),
 ('9-445', 'Prout, William, 1783-1852. ALS to T. J. Pettigrew', '1838 Feb 24'),
 ('9-446', 'Purland, Theophilius. ALS to Thomas Wright', '1846 Feb 2'),
 ('10-447',
  'Radnor, Jacob Pleydell-Bouverie, 8th Earl of, 1815-1889. ALS to T. J. Pettigrew',
  '1858 Jun 16'),
 ('10-448',
  'Reeve, Lovell Augustus, 1814-1865. 3 ALS to T. J. Pettigrew',
  '1852-53'),
 ('10-449',
  'Rennie, Sir John, 1794-1874. 2 ALS to T. J. Pettigrew',
  '[1834 or later]'),
 ('10-450',
  'Renouard, George Cecil, 1780-1867. ALS and AL to T. J. Pettigrew',
  '1824, 1836'),
 ('10-451',
  'Richards, George, 1767-1837. ALS to T. J. Pettigrew',
  '1829 Feb 2'),
 ('10-452',
  'Richardson, Charles James, 1806-1871. ALS to James R. Planché',
  'n.d.'),
 ('10-453',
  'Richardson, Moses Aaron, 1793-1871. ALS to T. J. Pettigrew',
  '1847 Nov 26'),
 ('10-454',
  'Riego, Miguel del. 8 ALS to T. J. Pettigrew and 1 ALS to the Duke of Sussex',
  '[1823-28]'),
 ('10-455',
  'Rifaud, J. J. 1 AL to T.J. Pettigrew and Prospectus, signed, for Voyage en Égypte, et en Nubie, 1827.',
  'n.d.'),
 ('10-456', 'Rigby, Edward, 1804-1860. ALS to T. J. Pettigrew', 'n.d.'),
 ('10-457',
  'Rimbault, Edward Francis, 1816-1876. 3 ALS to T. J. Pettigrew',
  '1841 Apr-May'),
 ('10-458', 'Roberts, David, 1796-1864. 4 ALS to T. J. Pettigrew', '1846-51'),
 ('10-459',
  'Roberts, P[eter?], 1760?-1819. ALS to unidentified.',
  '1797 Jul 25'),
 ('10-460',
  'Robertson, Andrew, 1777-1845. 1 ALS and 3 AL to T. J. Pettigrew',
  '1829-32'),
 ('10-461',
  'Robinson, Peter Frederick, 1776-1858. 3 ALS to T. J. Pettigrew',
  '1827, n.d.'),
 ('10-462',
  'Roe, George Hamilton, 1795-1873. 2 ALS to T. J. Pettigrew',
  'n.d.'),
 ('10-463',
  'Rogers, William Harry, 1825-1873. 4 ALS to T. J. Pettigrew',
  '1847-50'),
 ('10-464',
  'Roget, Peter Mark, 1779-1869. 5 ALS to T. J. Pettigrew',
  '1827-40'),
 ('10-465',
  'Rokewode, John Gage, 1786-1842. 7 ALS to T. J. Pettigrew',
  '1826-40'),
 ('10-466', 'Room, Henry, 1802-1850. AL to T. J. Pettigrew', 'n.d.'),
 ('10-467',
  'Rowan, Sir Charles, 1782-1852. ALS and LS to T. J. Pettigrew',
  '1830, 1833'),
 ('10-468',
  'Royal Botanic Society. LS (signed James Sowerby) to T. J. Pettigrew',
  '1849 Jun 11'),
 ('10-469',
  'Royal Society of London. LS (signed Davies Gilbert) to T. J. Pettigrew',
  '1829 Nov 16'),
 ('10-470', 'Rudge, Edward, 1763-1846. 2 ALS to T. J. Pettigrew', '1833'),
 ('10-471',
  'Sabine, Sir Edward, 1788-1883. LS to T. J. Pettigrew',
  '1828 Feb 11'),
 ('10-472',
  'Sabine, Joseph, 1770-1837. 2 ALS to T. J. Pettigrew',
  '1820, 1834'),
 ('10-473',
  'Sala, Henrietta Catherina Florentina (Simon), 1789-1860. 1 ALS to T.J. Pettigrew',
  '[1828]'),
 ('10-474', 'Salisbury, William. ALS to T. J. Pettigrew', '1832 Jun 10'),
 ('10-475', 'Sass, Henry, 1788-1844. 3 ALS to T. J. Pettigrew', '[1826]-31'),
 ('10-476',
  'Saull, William Devonshire, 1784-1855. ALS to T. J. Pettigrew',
  '1852 Aug 9'),
 ('10-477',
  'Saumarez, Richard, 1764-1835. 1 ALS to T.J. Pettigrew',
  '[1815 or later]'),
 ('10-478',
  'Sayer, Augustin, 1790-1861. 2 ALS to T. J. Pettigrew',
  '[1828], 1833'),
 ('10-479', 'Scott, John. 4 ALS to T. J. Pettigrew', '[1832]-53'),
 ('10-480',
  'Scudamore, Sir Charles, 1779-1849. ALS to T. J. Pettigrew',
  '[1841 or later]'),
 ('10-481',
  'Scudamore, Georgiana (Johnson), lady. 2 AL to T. J. Pettigrew',
  '[1849]'),
 ('10-482',
  'Sedgwick, Adam, 1785-1873. 3 ALS to T. J. Pettigrew',
  '1840-[46]'),
 ('10-483', 'Seymour, Edward James, 1796-1866. AL to T. J. Pettigrew', 'n.d.'),
 ('10-484',
  'Shakespear, John, 1774-1858. ALS to T. J. Pettigrew',
  '1833 Jul 3'),
 ('10-485',
  'Sharp, Sir Cuthbert, 1781-1849. ALS to T. J. Pettigrew',
  '1845 Mar 28'),
 ('10-486',
  'Sharp, William, 1805-1896. ALS to T. J. Pettigrew',
  '1839 Nov 13'),
 ('10-487',
  'Sharpe, Edmund, 1809-1877. 4 ALS and a fragment to T. J. Pettigrew',
  '1850 Jul-Sep'),
 ('10-488',
  'Shaw, Alexander, 1804-1890. 2 ALS and 1 AL to T. J. Pettigrew',
  '1839 Feb'),
 ('10-489',
  'Shee, Sir Martin Archer, 1769-1850. 3 ALS and 2 AL to T. J. Pettigrew',
  '[1825]-31'),
 ('10-490',
  'Sievier, Robert William, 1794-1865. ALS and AL to T. J. Pettigrew',
  '1816, 1825'),
 ('10-491',
  'Skelton, Joseph, fl. 1820-1850. AL to T. J. Pettigrew',
  '1845 Jun 18'),
 ('10-492', 'Sleath, John, 1767-1847. 4 ALS to T. J. Pettigrew', '1828-31'),
 ('10-493',
  'Smart, Benjamin Humphrey 1786?-1872. 3 ALS to T. J. Pettigrew',
  '[1828]-50'),
 ('10-494',
  'Smart, Sir George Thomas, 1776-1867. 5 ALS to T. J. Pettigrew',
  '1825-47'),
 ('10-495',
  'Smith, Charles John, 1803-1838. ALS to T. J. Pettigrew',
  '1831 Jan 15'),
 ('10-496',
  'Smith, Charles Roach, 1807-1890. 6 ALS to T. J. Pettigrew',
  '1844-45'),
 ('10-497',
  'Smith, Sir William Sidney, 1764-1840. 4 ALS to T.J. Pettigrew and 1 ALS to the Duke of Sussex',
  '1830-37'),
 ('10-498',
  'Smyth, William Henry, 1788-1865. 5 ALS to T. J. Pettigrew, 14 ALS to unidentified.',
  '1844-52'),
 ('11-499',
  'Soames, Henry, 1785-1860. 2 ALS to T. J. Pettigrew',
  '1842 Apr, May'),
 ('11-500', 'ALS (in French) to M. Moreau', '1819 May 20'),
 ('11-501', 'ALS (in French) to T. J. Pettigrew', '1819 Jul 21'),
 ('11-502',
  'Société des Antiquaries de Picardie. 3 ALS (signed J. Garnie) to President of the B.A.A. and 1 ALS to President of the British Assoc. of Conservation of Monuments',
  '1850-51'),
 ('11-503',
  'Solly, Edward, 1819-1866. 3 ALS to T. J. Pettigrew and 1 ALS to Charles Roach Smith',
  '1845-51'),
 ('11-504',
  'Somerset, Edward Adolphus Seymour, 11th Duke of, 1775-1855. 2 AL to T. J. Pettigrew',
  '1830, 1833'),
 ('11-505',
  'Southey, Henry Herbert, 1783-1865. ALS to T. J. Pettigrew',
  'n.d.'),
 ('11-506',
  'Spence, William, 1783-1858. ALS and AL to T. J. Pettigrew',
  '1847, 1848'),
 ('11-507',
  'Spencer, John Charles Spencer, 3d Earl, 1782-1845. ALS to T. J. Pettigrew',
  '1822 Feb 27'),
 ('11-508',
  'Spring-Rice, William Cecil, 1823-1880. ALS to T. J. Pettigrew',
  '1850 Apr'),
 ('11-509', 'Spurgin, John, 1797-1866. 3 ALS to T. J. Pettigrew', '[1829]-45'),
 ('11-510',
  'Squier, Ephraim George, 1821-1888. 3 ALS to T.J. Pettigrew and 1 ALS to Charles Roach Smith',
  '1849-52'),
 ('11-511',
  'Stanfield, Clarkson, 1793-1867. ALS to T. J. Pettigrew',
  '1846 Jun 3'),
 ('11-512',
  'Stanley, Edward John Stanley, 2d Baron, 1802-1869. 2 AL to T. J. Pettigrew',
  '1857 Jul, Oct'),
 ('11-513',
  'Stapleton, Thomas, 1805-1849. 5 ALS to T. J. Pettigrew',
  '[1839]-45'),
 ('11-514',
  'Streatfield, Thomas, 1777-1848. ALS to T. J. Pettigrew',
  '1844 Sep 8'),
 ('11-515',
  'Strutt, Jacob George, fl. 1820-1850. ALS to the Duke of Sussex',
  '1823 Apr 21'),
 ('11-516',
  'Stuart de Decies, Henry Villiers Stuart, 1st Baron, 1803-1874. AL to Mr. Stephenson',
  '[1828 or later]'),
 ('11-517',
  'Suckling, Alfred Inigo, 1796-1856. ALS to T. J. Pettigrew',
  '1845 Mar 17'),
 ('11-518',
  'Sykes, William Henry, 1790-1872. 3 ALS to T. J. Pettigrew',
  '1839-52'),
 ('11-519',
  'Symmons, Charles, 1749-1826. ALS to T. J. Pettigrew',
  '1824 Jun 9'),
 ('11-520', 'Talman, J. J. ALS to T. J. Pettigrew', '1817 Jan 16'),
 ('11-521',
  'Tankerville, Charles Bennet, 6th Earl of, 1810-1899. 2 ALS to T. J. Pettigrew',
  '[1832]-33'),
 ('11-522', 'Taylor, Edward, 1784-1863. 3 ALS to T. J. Pettigrew', '1824-31'),
 ('11-523',
  'Taylor, Sir Herbert, 1775-1839. 1 ALS to T. J. Pettigrew, 3 ALS to the Duke of Sussex, 1 ALS to Col. Fitzclarence.',
  '1815-33'),
 ('11-524',
  'Taylor, John, 1757-1832. 4 ALS to T. J. Pettigrew, with three poems',
  '1826-31'),
 ('11-525',
  'Taylor, Michael Angelo, 1757-1834. ALS to T. J. Pettigrew',
  '1827 Nov 21'),
 ('11-526',
  'Taylor, Thomas, 1758-1835. 3 ALS to T. J. Pettigrew',
  '1834 Feb-May'),
 ('11-527',
  'Thelwall, [John?], 1764-1834. AL to T. J. Pettigrew',
  '1826 Mar 15'),
 ('11-528',
  'Thomas, Honoratus Leigh, 1769-1846. 6 ALS and 1 AL to T. J. Pettigrew',
  '[1823]-38'),
 ('11-529',
  'Thompson, James, 1817-1877. ALS to T. J. Pettigrew',
  '1850 Nov 30'),
 ('11-530',
  'Thoms, William John, 1803-1885. 2 ALS to T. J. Pettigrew',
  '1844 Feb'),
 ('11-531',
  'Thomson, Anthony Todd, 1778-1849. 2 ALS to T. J. Pettigrew',
  '1836, 1840'),
 ('11-532',
  'Thomson, William, ABp. of York, 1819-1890. 3 ALS to T. J. Pettigrew',
  '1863-65'),
 ('11-533',
  'Tite, Sir William, 1798-1873. ALS to T. J. Pettigrew',
  '1840 Oct 6'),
 ('11-534', 'Tod, James, 1782-1835. ALS to T. J. Pettigrew', '[n.d.]'),
 ('11-535',
  'Todd, Henry John, 1763-1845. ALS to T. J. Pettigrew',
  '[1825 or later]'),
 ('11-536',
  'Tonna, Lewis Hippolytus Joseph, 1812-1857. 3 ALS to T. J. Pettigrew',
  '1849 Jan-May'),
 ('11-537', 'Torrens, Robert. 5 ALS to T. J. Pettigrew', '1824-25'),
 ('11-538',
  'Townley, James, 1774-1833. ALS to T. J. Pettigrew',
  '1828 Jul 12'),
 ('11-539',
  'Toynbee, Joseph, 1815-1866. ALS to [T. J.] Pettigrew',
  '[1841 or later]'),
 ('11-540',
  'Traherne, John Montgomery, 1788-1860. ALS to T. J. Pettigrew',
  '1846 Apr 22'),
 ('11-541',
  'Travers, Benjamin, 1783-1858. 4 ALS and 2 AL to T. J. Pettigrew',
  '1828 Mar'),
 ('11-542',
  'Tupper, Martin Farquhar, 1810-1889. 6 ALS and 1 AL to T. J. Pettigrew',
  '1829-54'),
 ('11-543', 'Turnbull, William. ALS to T. J. Pettigrew', 'n.d.'),
 ('11-544',
  'Turner, Charles, 1774-1857. 2 ALS to T. J. Pettigrew',
  '[1825], 1831'),
 ('11-545', 'Turner, Dawson, 1755-1858. 22 ALS to T. J. Pettigrew', '1840-52'),
 ('11-546',
  'Turner, Sir Tomkyns Hilgrove, 1766?-1843. 2 ALS and 1 AL to T. J. Pettigrew',
  '1838-41'),
 ('11-547',
  'Tuthill, Sir George Leman, 1772-1835. ALS and AL to T. J. Pettigrew',
  '1824, 1835'),
 ('11-548', 'Tymms, Samuel, 1808-1871. ALS to T. J. Pettigrew', '1850 Feb 2'),
 ('11-549',
  'Tyrrell, Frederick, 1793-1843. 2 ALS to T. J. Pettigrew',
  '[1828], 1834'),
 ('12-550',
  'Upham, Edward, 1776-1834. 3 ALS to T. J. Pettigrew',
  '[1829 or later]'),
 ('12-551', 'Ure, Andrew, 1778-1857. ALS to T. J. Pettigrew', 'n.d.'),
 ('12-552', 'Uwins, David, 1780?-1837. AL to T. J. Pettigrew', 'n.d.'),
 ('12-553', 'Valpy, Richard, 1754-1836. 8 ALS to T. J. Pettigrew', '1817-26'),
 ('12-554',
  'Vigors, Nicholas Aylward, 1785-1840. ALS and AL to T. J. Pettigrew',
  '1827, 1828'),
 ('12-555',
  'Vulliamy, Lewis, 1791-1871. 2 ALS and 1 AL to T. J. Pettigrew',
  'n.d.'),
 ('12-556', 'Wadd, Thomas M. ALS to T. J. Pettigrew', 'n.d.'),
 ('12-557',
  'Waddington, George, 1793-1869. 4 ALS to T. J. Pettigrew and 1 ALS to the Duke of Sussex',
  '1841-52'),
 ('12-558',
  'Wallich, Nathaniel, 1786-1854. 2 ALS and 1 AL to T. J. Pettigrew',
  '1830-50'),
 ('12-559',
  'Warburton, Henry, 1784?-1858. ALS to T. J. Pettigrew',
  '1825 Mar 4'),
 ('12-560',
  'Ward, Edward Matthew, 1816-1879. ALS and AL to T. J. Pettigrew',
  '1850, 1852'),
 ('12-561',
  'Ward, James, 1769-1859. 2 ALS and 1 AL to T. J. Pettigrew',
  '1849 Mar-Apr'),
 ('12-562',
  'Wardrop, James, 1782-1869. 3 ALS and 2 AL to T. J. Pettigrew',
  '[1838 or later]'),
 ('12-563', 'Warne, Elizabeth. 2 ALS to T. J. Pettigrew', 'n.d.'),
 ('12-564',
  'Warneford, Samuel Wilson, 1763-1855. 3 ALS to T. J. Pettigrew',
  '1848-50'),
 ('12-565', 'Watson, Ralph. 9 ALS to T. J. Pettigrew', '1829-33'),
 ('12-566', 'Way, Albert. 1805-1874. 6 ALS to T. J. Pettigrew', '1844 May'),
 ('12-567',
  'Webster, Thomas, 1800-1886. ALS to T. J. Pettigrew',
  '1849 Jan 7'),
 ('12-568',
  'Weld, Charles Richard, 1813-1869. ALS and LS to T. J. Pettigrew',
  '1849, 1852'),
 ('12-569', '2 ALS to T. J. Pettigrew', '1845, 1852'),
 ('12-570', 'ALS to C. R. Smith', '1849 Dec 27'),
 ('12-571',
  'Wemyss, David Douglas, 1760-1839. ALS to T. J. Pettigrew',
  '1828 Feb 27'),
 ('12-572',
  'Westall, Richard, 1765-1836. 2 ALS to T. J. Pettigrew',
  '[1827]-29'),
 ('12-573',
  'Westmacott, Sir Richard, 1775-1856. 14 ALS and 1 AL to T. J. Pettigrew, 1 ALS to T[homas?] Taylor, 1 ALS to [W.R. Hamilton]',
  '1816-43'),
 ('12-574',
  'Westmacott, Richard, 1799-1872. ALS to T. J. Pettigrew',
  '1844 Jan 11'),
 ('12-575',
  'Wharncliffe, Edward Montagu-Stuart- Wortley Mackenzie, 1st Earl of, 1827-1899. ALS to T. J. Pettigrew',
  '1862 Mar 14'),
 ('12-576',
  'Whatton, William Robert, 1790-1835. ALS to T. J. Pettigrew',
  '1827 Jul 6'),
 ('12-577', 'Wheatley, J. H. W. ALS to T. J. Pettigrew', '1831 Jan 15'),
 ('12-578',
  'Whichcord, John, 1823-1885. ALS to T. J. Pettigrew',
  '1850 Jun 21'),
 ('12-579',
  'Whittaker, George Byrom, 1793-1847. ALS to T. J. Pettigrew',
  '1824 May 13'),
 ('12-580',
  'Whittaker, John William, 1790?-1854. 3 ALS to T. J. Pettigrew',
  '1850-52'),
 ('12-581',
  'Wilbraham, Roger, 1744-1829. 2 ALS and 1 AL to T. J. Pettigrew',
  '1825-27'),
 ('12-582', 'Wild, Charles, 1781-1835. ALS to T. J. Pettigrew', '1828 Apr 12'),
 ('12-583',
  'Wilkins, George, 1785-1865. ALS to T. J. Pettigrew',
  '1852 Sep 6'),
 ('12-584',
  'Wilkins, William, 1778-1839. ALS and AL to T. J. Pettigrew',
  '1826 Feb'),
 ('12-585-590',
  'Wilkinson, Sir John Gardner, 1797-1875. 91 ALS and 1 AL to T. J. Pettigrew',
  '[1830]-58'),
 ('13-591',
  'Williams, John, 1811-1862. 1 ALS to T.J. Pettigrew',
  '1851 Oct 23'),
 ('13-592',
  'Willis, Robert, 1800-1875. 1 AL to Sir John Gardner Wilkinson',
  '1850 Jan 19'),
 ('13-593',
  'Willson, Edward James, 1787-1854. ALS to T. J. Pettigrew',
  '1852 Jul 30'),
 ('13-594',
  'Wilson, Sir Daniel, 1816-1892. ALS to T. J. Pettigrew',
  '1850 Jul 12'),
 ('13-595',
  'Wilson, James Arthur, 1795-1882. 4 ALS to T. J. Pettigrew',
  '[1836 or later]'),
 ('13-596',
  'Wilson, Matthew. 4 ALS and 1 AL to T. J. Pettigrew',
  '[1850 or later]'),
 ('13-597',
  'Woodfall, George, 1767-1844. 4 ALS to T. J. Pettigrew',
  '1829-34'),
 ('13-598', 'Word, J. ALS and LS to T. J. Pettigrew', '1836 Sep, Nov'),
 ('13-599',
  'Wrangham, Francis, 1769-1842. 4 ALS to T. J. Pettigrew',
  '1816-30'),
 ('13-600',
  'Wright, John, 1770?-1844. 3 ALS to T. J. Pettigrew',
  '[1842 or later]'),
 ('13-601', 'Wright, Thomas, 1810-1877. 10 ALS to T. J. Pettigrew', '1840-45'),
 ('13-602', 'Wynyard, Miss. AL to Mr. Stephenson', 'n.d.'),
 ('13-603',
  'Wyon, William, 1795-1851. ALS and AL to T. J. Pettigrew',
  '1832, 1840'),
 ('13-604',
  'Yeats, Grant David, 1773-1836. AL to T. J. Pettigrew',
  '1826 May 1'),
 ('13-605',
  'Yorke, Charles Philip, 1764-1834. AL to T. J. Pettigrew',
  '1817 Feb 3'),
 ('13-606',
  'Yorke, Sir Joseph Sidney, 1768-1831. ALS to T. J. Pettigrew',
  '1820 Sep 1'),
 ('13-607', 'Youatt, William, 1776-1847. 3 ALS to T. J. Pettigrew', '1828-35'),
 ('13-608',
  'Young, Sir Charles George, 1795-1869. 5 ALS and 1 AL to T. J. Pettigrew',
  '1853 Mar'),
 ('13-609', 'Young, G. 5 ALS to T.J. Pettigrew', '1833-49'),
 ('13-610',
  'Zouche, Robert Curzon, 14th Baron, 1810-1873. AL to [T. J. Pettigrew]',
  '1849 Jan 22')]
newheaders
['ID', 'Contents', 'Date']
import csv

with open('newletters.csv', 'w') as fileout:
    csvout = csv.writer(fileout)
    csvout.writerow(newheaders)
    csvout.writerows(newdata)
import requests
url = "https://en.wikipedia.org/wiki/UIUC_School_of_Information_Sciences"
result = requests.get(url)
print(type(result))
result.status_code
200
text = result.text
print(text)
<!DOCTYPE html>
<html class="client-nojs" lang="en" dir="ltr">
<head>
<meta charset="UTF-8"/>
<title>UIUC School of Information Sciences - Wikipedia</title>
<script>document.documentElement.className="client-js";RLCONF={"wgCanonicalNamespace":"","wgCanonicalSpecialPageName":!1,"wgNamespaceNumber":0,"wgPageName":"UIUC_School_of_Information_Sciences","wgTitle":"UIUC School of Information Sciences","wgCurRevisionId":921410882,"wgRevisionId":921410882,"wgArticleId":5761393,"wgIsArticle":!0,"wgIsRedirect":!1,"wgAction":"view","wgUserName":null,"wgUserGroups":["*"],"wgCategories":["Pages using infobox university with the image name parameter","Coordinates on Wikidata","Information schools","University of Illinois at Urbana–Champaign"],"wgBreakFrames":!1,"wgPageContentLanguage":"en","wgPageContentModel":"wikitext","wgSeparatorTransformTable":["",""],"wgDigitTransformTable":["",""],"wgDefaultDateFormat":"dmy","wgMonthNames":["","January","February","March","April","May","June","July","August","September","October","November","December"],"wgMonthNamesShort":["","Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],
"wgRelevantPageName":"UIUC_School_of_Information_Sciences","wgRelevantArticleId":5761393,"wgRequestId":"XaXtJgpAAD4AAILs0L8AAADI","wgCSPNonce":!1,"wgIsProbablyEditable":!0,"wgRelevantPageIsProbablyEditable":!0,"wgRestrictionEdit":[],"wgRestrictionMove":[],"wgMediaViewerOnClick":!0,"wgMediaViewerEnabledByDefault":!0,"wgPopupsReferencePreviews":!1,"wgPopupsConflictsWithNavPopupGadget":!1,"wgVisualEditor":{"pageLanguageCode":"en","pageLanguageDir":"ltr","pageVariantFallbacks":"en"},"wgMFDisplayWikibaseDescriptions":{"search":!0,"nearby":!0,"watchlist":!0,"tagline":!1},"wgWMESchemaEditAttemptStepOversample":!1,"wgULSCurrentAutonym":"English","wgNoticeProject":"wikipedia","wgCoordinates":{"lat":40.10777777777778,"lon":-88.23138888888889},"wgWikibaseItemId":"Q7864734","wgCentralAuthMobileDomain":!1,"wgEditSubmitButtonLabelPublish":!0};RLSTATE={"ext.globalCssJs.user.styles":"ready","site.styles":"ready","noscript":"ready","user.styles":"ready",
"ext.globalCssJs.user":"ready","user":"ready","user.options":"ready","user.tokens":"loading","ext.cite.styles":"ready","mediawiki.legacy.shared":"ready","mediawiki.legacy.commonPrint":"ready","jquery.makeCollapsible.styles":"ready","mediawiki.toc.styles":"ready","wikibase.client.init":"ready","ext.visualEditor.desktopArticleTarget.noscript":"ready","ext.uls.interlanguage":"ready","ext.wikimediaBadges":"ready","ext.3d.styles":"ready","mediawiki.skinning.interface":"ready","skins.vector.styles":"ready"};RLPAGEMODULES=["ext.cite.ux-enhancements","ext.cite.tracking","site","mediawiki.page.startup","mediawiki.page.ready","jquery.makeCollapsible","mediawiki.toc","mediawiki.searchSuggest","ext.gadget.teahouse","ext.gadget.ReferenceTooltips","ext.gadget.watchlist-notice","ext.gadget.DRN-wizard","ext.gadget.charinsert","ext.gadget.refToolbar","ext.gadget.extra-toolbar-buttons","ext.gadget.switcher","ext.centralauth.centralautologin","mmv.head","mmv.bootstrap.autostart","ext.popups",
"ext.visualEditor.desktopArticleTarget.init","ext.visualEditor.targetLoader","ext.eventLogging","ext.wikimediaEvents","ext.navigationTiming","ext.uls.compactlinks","ext.uls.interface","ext.cx.eventlogging.campaigns","ext.quicksurveys.init","ext.centralNotice.geoIP","ext.centralNotice.startUp","skins.vector.js"];</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.loader.implement("user.tokens@tffin",function($,jQuery,require,module){/*@nomin*/mw.user.tokens.set({"patrolToken":"+\\","watchToken":"+\\","csrfToken":"+\\"});
});});</script>
<link rel="stylesheet" href="/w/load.php?lang=en&amp;modules=ext.3d.styles%7Cext.cite.styles%7Cext.uls.interlanguage%7Cext.visualEditor.desktopArticleTarget.noscript%7Cext.wikimediaBadges%7Cjquery.makeCollapsible.styles%7Cmediawiki.legacy.commonPrint%2Cshared%7Cmediawiki.skinning.interface%7Cmediawiki.toc.styles%7Cskins.vector.styles%7Cwikibase.client.init&amp;only=styles&amp;skin=vector"/>
<script async="" src="/w/load.php?lang=en&amp;modules=startup&amp;only=scripts&amp;raw=1&amp;skin=vector"></script>
<meta name="ResourceLoaderDynamicStyles" content=""/>
<link rel="stylesheet" href="/w/load.php?lang=en&amp;modules=site.styles&amp;only=styles&amp;skin=vector"/>
<meta name="generator" content="MediaWiki 1.35.0-wmf.1"/>
<meta name="referrer" content="origin"/>
<meta name="referrer" content="origin-when-crossorigin"/>
<meta name="referrer" content="origin-when-cross-origin"/>
<meta property="og:image" content="https://upload.wikimedia.org/wikipedia/commons/thumb/2/27/SchoolofInformationSciences_May2014.jpg/1200px-SchoolofInformationSciences_May2014.jpg"/>
<link rel="alternate" href="android-app://org.wikipedia/http/en.m.wikipedia.org/wiki/UIUC_School_of_Information_Sciences"/>
<link rel="alternate" type="application/x-wiki" title="Edit this page" href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit"/>
<link rel="edit" title="Edit this page" href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit"/>
<link rel="apple-touch-icon" href="/static/apple-touch/wikipedia.png"/>
<link rel="shortcut icon" href="/static/favicon/wikipedia.ico"/>
<link rel="search" type="application/opensearchdescription+xml" href="/w/opensearch_desc.php" title="Wikipedia (en)"/>
<link rel="EditURI" type="application/rsd+xml" href="//en.wikipedia.org/w/api.php?action=rsd"/>
<link rel="license" href="//creativecommons.org/licenses/by-sa/3.0/"/>
<link rel="canonical" href="https://en.wikipedia.org/wiki/UIUC_School_of_Information_Sciences"/>
<link rel="dns-prefetch" href="//login.wikimedia.org"/>
<link rel="dns-prefetch" href="//meta.wikimedia.org" />
<!--[if lt IE 9]><script src="/w/resources/lib/html5shiv/html5shiv.js"></script><![endif]-->
</head>
<body class="mediawiki ltr sitedir-ltr mw-hide-empty-elt ns-0 ns-subject mw-editable page-UIUC_School_of_Information_Sciences rootpage-UIUC_School_of_Information_Sciences skin-vector action-view">
<div id="mw-page-base" class="noprint"></div>
<div id="mw-head-base" class="noprint"></div>
<div id="content" class="mw-body" role="main">
    <a id="top"></a>
    <div id="siteNotice" class="mw-body-content"><!-- CentralNotice --></div>
    <div class="mw-indicators mw-body-content">
</div>

    <h1 id="firstHeading" class="firstHeading" lang="en">UIUC School of Information Sciences</h1>

    <div id="bodyContent" class="mw-body-content">
        <div id="siteSub" class="noprint">From Wikipedia, the free encyclopedia</div>
        <div id="contentSub"></div>



        <div id="jump-to-nav"></div>
        <a class="mw-jump-link" href="#mw-head">Jump to navigation</a>
        <a class="mw-jump-link" href="#p-search">Jump to search</a>
        <div id="mw-content-text" lang="en" dir="ltr" class="mw-content-ltr"><div class="mw-parser-output"><table class="infobox vcard" style="width:22em"><caption class="fn org">School of Information Sciences</caption><tbody><tr><td colspan="2" style="text-align:center"><a href="/wiki/File:SchoolofInformationSciences_May2014.jpg" class="image"><img alt="SchoolofInformationSciences May2014.jpg" src="//upload.wikimedia.org/wikipedia/commons/thumb/2/27/SchoolofInformationSciences_May2014.jpg/220px-SchoolofInformationSciences_May2014.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/27/SchoolofInformationSciences_May2014.jpg/330px-SchoolofInformationSciences_May2014.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/27/SchoolofInformationSciences_May2014.jpg/440px-SchoolofInformationSciences_May2014.jpg 2x" data-file-width="5184" data-file-height="3456" /></a></td></tr><tr><th scope="row" style="padding-right:0.65em;">Established</th><td>1893, as the Library Science Program at the Armour Institute in Chicago</td></tr><tr><th scope="row" style="padding-right:0.65em;"><a href="/wiki/Dean_(education)" title="Dean (education)">Dean</a></th><td>Eunice Santos<sup id="cite_ref-1" class="reference"><a href="#cite_note-1">&#91;1&#93;</a></sup></td></tr><tr><th scope="row" style="padding-right:0.65em;"><div style="padding:0.1em 0;line-height:1.2em;">Academic staff</div></th><td>29 FTE<sup id="cite_ref-2" class="reference"><a href="#cite_note-2">&#91;2&#93;</a></sup></td></tr><tr><th scope="row" style="padding-right:0.65em;">Students</th><td>129 undergraduate, 853 graduate<sup id="cite_ref-3" class="reference"><a href="#cite_note-3">&#91;3&#93;</a></sup></td></tr><tr><th scope="row" style="padding-right:0.65em;">Address</th><td class="adr"><div style="display:inline" class="street-address">501 E. Daniel Street, MC-493
Champaign, IL 61820-6211</div>, <div style="display:inline" class="locality"><a href="/wiki/Champaign,_Illinois" title="Champaign, Illinois">Champaign</a></div>, <div style="display:inline" class="state"><a href="/wiki/Illinois" title="Illinois">Illinois</a></div>, <div style="display:inline" class="country-name">United States</div></td></tr><tr><th scope="row" style="padding-right:0.65em;">Website</th><td><a rel="nofollow" class="external text" href="http://ischool.illinois.edu">ischool.illinois.edu</a></td></tr></tbody></table>
<p>The <b>School of Information Sciences</b>, also <b>The iSchool at Illinois</b>, is a <a href="/wiki/Graduate_school" title="Graduate school">graduate school</a> at the <a href="/wiki/University_of_Illinois_at_Urbana%E2%80%93Champaign" title="University of Illinois at Urbana–Champaign">University of Illinois at Urbana–Champaign</a>. Its Master of Science in Library and Information Science is currently accredited in full good standing by the American Library Association. The school is a charter member of the <a href="/wiki/ISchool" class="mw-redirect" title="ISchool">iSchool</a> initiative.
</p><p>The school offers <sup id="cite_ref-4" class="reference"><a href="#cite_note-4">&#91;4&#93;</a></sup> the Master of Science in Library and Information Science (MS/LIS; comparable to the <a href="/wiki/Master_of_Library_and_Information_Science" title="Master of Library and Information Science">Master of Library and Information Science</a>), Master of Science in Information Management (MS/IM), Master of Science in Bioinformatics,  a <a href="/wiki/Certificate_of_Advanced_Study" title="Certificate of Advanced Study">Certificate of Advanced Study</a> (CAS), and a PhD. Specializations available to MS/LIS students include Youth Services, K–12 School Librarianship, Special Collections, <a href="/wiki/Community_Informatics" class="mw-redirect" title="Community Informatics">Community Informatics</a>, Socio-technical Data Analytics, and <a href="/wiki/Data_curation" title="Data curation">Data Curation</a>.<sup id="cite_ref-5" class="reference"><a href="#cite_note-5">&#91;5&#93;</a></sup> The School's PhD program in LIS, the oldest such program in the country, is primarily oriented towards interdisciplinary research.
</p><p>Students seeking the MS/LIS, MS/IM, or CAS degree can earn their degree as an on-campus student or as a distance student via the Leep online learning option. For doctoral students, at least one year of residency is required on campus.
</p>
<div id="toc" class="toc"><input type="checkbox" role="button" id="toctogglecheckbox" class="toctogglecheckbox" style="display:none" /><div class="toctitle" lang="en" dir="ltr"><h2>Contents</h2><span class="toctogglespan"><label class="toctogglelabel" for="toctogglecheckbox"></label></span></div>
<ul>
<li class="toclevel-1 tocsection-1"><a href="#Reputation"><span class="tocnumber">1</span> <span class="toctext">Reputation</span></a></li>
<li class="toclevel-1 tocsection-2"><a href="#History"><span class="tocnumber">2</span> <span class="toctext">History</span></a></li>
<li class="toclevel-1 tocsection-3"><a href="#Facilities"><span class="tocnumber">3</span> <span class="toctext">Facilities</span></a></li>
<li class="toclevel-1 tocsection-4"><a href="#Research_areas"><span class="tocnumber">4</span> <span class="toctext">Research areas</span></a></li>
<li class="toclevel-1 tocsection-5"><a href="#Research_centers"><span class="tocnumber">5</span> <span class="toctext">Research centers</span></a></li>
<li class="toclevel-1 tocsection-6"><a href="#Student_activities"><span class="tocnumber">6</span> <span class="toctext">Student activities</span></a></li>
<li class="toclevel-1 tocsection-7"><a href="#Footnotes"><span class="tocnumber">7</span> <span class="toctext">Footnotes</span></a></li>
<li class="toclevel-1 tocsection-8"><a href="#References"><span class="tocnumber">8</span> <span class="toctext">References</span></a></li>
<li class="toclevel-1 tocsection-9"><a href="#External_links"><span class="tocnumber">9</span> <span class="toctext">External links</span></a></li>
</ul>
</div>

<h2><span class="mw-headline" id="Reputation">Reputation</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=1" title="Edit section: Reputation">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>The School of Information Sciences' MS/LIS degree has been ranked as the top library and information science (LIS) graduate program in the country by <a href="/wiki/U.S._News_%26_World_Report" title="U.S. News &amp; World Report">U.S. News &amp; World Report</a> since 1996.<sup id="cite_ref-6" class="reference"><a href="#cite_note-6">&#91;6&#93;</a></sup> In the Research and Markets' 2008-2009 Survey of Academic Libraries, Illinois was ranked the number one library and information science program in the U.S. and Canada.<sup id="cite_ref-7" class="reference"><a href="#cite_note-7">&#91;7&#93;</a></sup> As of 2017, the school is also ranked by U.S. News &amp; World Report as first in services for children and youth, first in digital libraries, and third in school media library in comparison to other U.S. and Canada library and information science schools.<sup id="cite_ref-8" class="reference"><a href="#cite_note-8">&#91;8&#93;</a></sup><sup id="cite_ref-9" class="reference"><a href="#cite_note-9">&#91;9&#93;</a></sup><sup id="cite_ref-10" class="reference"><a href="#cite_note-10">&#91;10&#93;</a></sup>
</p>
<h2><span class="mw-headline" id="History">History</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=2" title="Edit section: History">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>The program has its roots in the Library Science Program at the Armour Institute of Chicago created in September 1893 as part of the strong cultural movement following the <a href="/wiki/Industrial_Revolution" title="Industrial Revolution">Industrial Revolution</a> to professionally educate men and women for the upcoming twentieth century and for the technical world.<sup id="cite_ref-11" class="reference"><a href="#cite_note-11">&#91;11&#93;</a></sup> The public library had come to be seen by most as a "university of the people," and those who were to become the "best librarians" were those formally educated in the trade.<sup id="cite_ref-12" class="reference"><a href="#cite_note-12">&#91;12&#93;</a></sup>
</p><p>Seeking a director, Gunsaulus, the president of the Institute, asked Melvil Dewey to recommend the best person for the job. Dewey recommended <a href="/wiki/Katharine_Sharp" title="Katharine Sharp">Katharine Sharp</a>, who was finishing up her library science degree program in Dewey's school in Albany, NY.<sup id="cite_ref-13" class="reference"><a href="#cite_note-13">&#91;13&#93;</a></sup> Once established, the school became the only library science program in the Midwest and the fourth in the United States.
</p><p>Sharp, in turn, became the library school: "Her enthusiasm, her drive, and her unswerving dedication were the determining factors for the school during its formative years in Chicago as well as the following ten years when she directed the Illinois State Library School on the Urbana–Champaign campus."<sup id="cite_ref-14" class="reference"><a href="#cite_note-14">&#91;14&#93;</a></sup> The school in Chicago, operating off of a technical institute model, began taking on a university structure under Sharp's leadership. The Armour facility did not provide enough collection or classroom space that was needed, and finances were becoming tight. The University of Illinois and the University of Wisconsin were interested in the program, and both universities offered to accept Sharp's program. Sharp chose the University of Illinois, and the program moved to Urbana.<sup id="cite_ref-15" class="reference"><a href="#cite_note-15">&#91;15&#93;</a></sup>
</p><p>The initial location for the library science program was in <a href="/wiki/Altgeld_Hall" title="Altgeld Hall">Altgeld Hall</a> where it remained until 1926. It then moved to the Main Library for the next fifty three years until 1979. The program then relocated to David Kinley Hall until 1993. An additional relocation went underway when the University purchased property from <a href="/wiki/Acacia_Fraternity" class="mw-redirect" title="Acacia Fraternity">Acacia Fraternity</a>'s Illinois Heth chapter and moved the school to its current location at Fifth and Daniel Streets.<sup id="cite_ref-16" class="reference"><a href="#cite_note-16">&#91;16&#93;</a></sup>
</p><p>The school officially changed its name from the Graduate School of Library and Information Science (GSLIS) to the School of Information Sciences in June 2016.<sup id="cite_ref-17" class="reference"><a href="#cite_note-17">&#91;17&#93;</a></sup>
</p>
<h2><span class="mw-headline" id="Facilities">Facilities</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=3" title="Edit section: Facilities">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>The school is located on the corner of Fifth and Daniel streets in Champaign, Illinois. It is situated next to the Department of Speech and Hearing Science and across the street from the Department of Psychology. The building was formerly the location of the <a href="/wiki/Acacia_Fraternity" class="mw-redirect" title="Acacia Fraternity">Acacia Fraternity</a> and still has functional showers for both men and women along with three kitchens. Other areas, such as the second floor lounge and the doctoral student area, serve as study spots for students. Wireless Internet access is also available in all public areas, and technology support is provided by the department's Help Desk on the second floor. The Help Desk is staffed by current iSchool master's students.
</p><p>The building is also in close proximity to many campus libraries. The University of Illinois at Urbana–Champaign, one of three campuses of the University of Illinois system, has over 40 libraries; their combined holdings are among the largest in the United States and the world. One such library, The Center for Children's Books, which houses more than 16,000 youth trade books, is located on the bottom floor of the iSchool building.<sup id="cite_ref-18" class="reference"><a href="#cite_note-18">&#91;18&#93;</a></sup>
</p>
<h2><span class="mw-headline" id="Research_areas">Research areas</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=4" title="Edit section: Research areas">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li><a href="/wiki/History" title="History">History</a>, <a href="/wiki/Economics" title="Economics">economics</a>, <a href="/wiki/Policy" title="Policy">policy</a></li>
<li><a href="/wiki/Information_organization" class="mw-redirect" title="Information organization">Information organization</a> and <a href="/wiki/Knowledge_representation" class="mw-redirect" title="Knowledge representation">knowledge representation</a></li>
<li>Information resources, uses, and users</li>
<li><a href="/wiki/Information_systems" class="mw-redirect" title="Information systems">Information systems</a></li>
<li>Management and evaluation</li>
<li>Social, community, and organizational informatics</li>
<li><a href="/wiki/Children%27s_literature" title="Children&#39;s literature">Children's literature</a>, <a href="/wiki/Young_adult_fiction" title="Young adult fiction">Young adult literature</a>, and services.<sup id="cite_ref-19" class="reference"><a href="#cite_note-19">&#91;19&#93;</a></sup></li></ul>
<h2><span class="mw-headline" id="Research_centers">Research centers</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=5" title="Edit section: Research centers">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li><b>The Center for Children's Books</b><sup id="cite_ref-20" class="reference"><a href="#cite_note-20">&#91;20&#93;</a></sup> – The Center’s mission is to facilitate the creation and dissemination of exemplary and progressive research and scholarship related to all aspects of children’s and young adult literature; media and resources for young (ages 0–18) audiences; and youth services librarianship. It is also home to <i><a href="/wiki/The_Bulletin_of_the_Center_for_Children%27s_Books" title="The Bulletin of the Center for Children&#39;s Books">The Bulletin of the Center for Children's Books</a></i>, an academic journal that published reviews for books intended for a 0-18 audience.</li>
<li><b>Center for Digital Inclusion</b><sup id="cite_ref-21" class="reference"><a href="#cite_note-21">&#91;21&#93;</a></sup> – The Center for Digital Inclusion fosters inclusive and sustainable societies through research, teaching, and public engagement about information and communication technologies (ICT) and their impacts on communities, organizations, and governments. Digital inclusion encompasses not only access to the Internet but also the availability of hardware and software; relevant content and services; and training for the digital literacy skills required for effective use of ICT.</li>
<li><b>Center for Informatics Research in Science and Scholarship</b><sup id="cite_ref-22" class="reference"><a href="#cite_note-22">&#91;22&#93;</a></sup> – The GSLIS Center for Informatics Research in Science and Scholarship (CIRSS) studies the information lifecycle in the contexts of science and scholarship. Center members contribute to our understanding of how data curation, information modeling, and data analytics can enable scientists and scholars to leverage digital information resources. CIRSS members have expertise in <a href="/wiki/Digital_preservation" title="Digital preservation">digital preservation</a>, interview methods, information retrieval, data and text mining, knowledge discovery, ubiquitous systems, collaborative systems, socio-technical systems, author disambiguation, persuasive technologies, reading behaviors, information modeling, scientific publishing, institutional repository development, cultural heritage collections, gaming, social networking and digital music retrieval and evaluation. Funding partners include <a href="/wiki/Google" title="Google">Google</a>, the <a href="/wiki/National_Endowment_for_the_Humanities" title="National Endowment for the Humanities">National Endowment for the Humanities</a>, the <a href="/wiki/National_Science_Foundation" title="National Science Foundation">National Science Foundation</a>, <a href="/wiki/The_Andrew_W._Mellon_Foundation" class="mw-redirect" title="The Andrew W. Mellon Foundation">The Andrew W. Mellon Foundation</a>, the <a href="/wiki/Library_of_Congress" title="Library of Congress">Library of Congress</a>, the <a href="/wiki/Environmental_Change_Institute" title="Environmental Change Institute">Environmental Change Institute</a>, and <a href="/wiki/Institute_for_Museum_and_Library_Services" class="mw-redirect" title="Institute for Museum and Library Services">Institute for Museum and Library Services</a>.</li></ul>
<h2><span class="mw-headline" id="Student_activities">Student activities</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=6" title="Edit section: Student activities">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<p>Student organizations at the iSchool include:
</p>
<ul><li><a href="/wiki/American_Library_Association" title="American Library Association">American Library Association</a> (ALA) student chapter<sup id="cite_ref-23" class="reference"><a href="#cite_note-23">&#91;23&#93;</a></sup></li>
<li><a href="/wiki/Special_Libraries_Association" title="Special Libraries Association">Special Libraries Association</a> (SLA) student chapter</li>
<li><a href="/wiki/Society_of_American_Archivists" title="Society of American Archivists">Society of American Archivists</a> (SAA) student chapter<sup id="cite_ref-24" class="reference"><a href="#cite_note-24">&#91;24&#93;</a></sup></li>
<li><a href="/wiki/American_Society_for_Information_Science_and_Technology" class="mw-redirect" title="American Society for Information Science and Technology">American Society for Information Science and Technology</a> (ASIS&amp;T) student chapter<sup id="cite_ref-25" class="reference"><a href="#cite_note-25">&#91;25&#93;</a></sup></li>
<li><a href="/wiki/Beta_Phi_Mu" title="Beta Phi Mu">Beta Phi Mu</a> alpha chapter<sup id="cite_ref-26" class="reference"><a href="#cite_note-26">&#91;26&#93;</a></sup></li>
<li>Community Informatics Club<sup id="cite_ref-27" class="reference"><a href="#cite_note-27">&#91;27&#93;</a></sup></li>
<li>iSchool Connections</li>
<li>Students of Color<sup id="cite_ref-28" class="reference"><a href="#cite_note-28">&#91;28&#93;</a></sup></li>
<li>Chinese Student Group</li>
<li>Progressive Librarians Guild</li>
<li>Queer Library Alliance<sup id="cite_ref-29" class="reference"><a href="#cite_note-29">&#91;29&#93;</a></sup></li></ul>
<h2><span class="mw-headline" id="Footnotes">Footnotes</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=7" title="Edit section: Footnotes">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<div class="reflist" style="list-style-type: decimal;">
<div class="mw-references-wrap mw-references-columns"><ol class="references">
<li id="cite_note-1"><span class="mw-cite-backlink"><b><a href="#cite_ref-1">^</a></b></span> <span class="reference-text"><cite class="citation news"><a rel="nofollow" class="external text" href="https://news.illinois.edu/view/6367/801293">"Santos named iSchool dean at Illinois"</a>. <i>news.illinois.edu</i>. July 12, 2019.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal&amp;rft.genre=article&amp;rft.jtitle=news.illinois.edu&amp;rft.atitle=Santos+named+iSchool+dean+at+Illinois&amp;rft.date=2019-07-12&amp;rft_id=https%3A%2F%2Fnews.illinois.edu%2Fview%2F6367%2F801293&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><style data-mw-deduplicate="TemplateStyles:r886058088">.mw-parser-output cite.citation{font-style:inherit}.mw-parser-output .citation q{quotes:"\"""\"""'""'"}.mw-parser-output .citation .cs1-lock-free a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/6/65/Lock-green.svg/9px-Lock-green.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-limited a,.mw-parser-output .citation .cs1-lock-registration a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/d/d6/Lock-gray-alt-2.svg/9px-Lock-gray-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .citation .cs1-lock-subscription a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/a/aa/Lock-red-alt-2.svg/9px-Lock-red-alt-2.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration{color:#555}.mw-parser-output .cs1-subscription span,.mw-parser-output .cs1-registration span{border-bottom:1px dotted;cursor:help}.mw-parser-output .cs1-ws-icon a{background:url("//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/12px-Wikisource-logo.svg.png")no-repeat;background-position:right .1em center}.mw-parser-output code.cs1-code{color:inherit;background:inherit;border:inherit;padding:inherit}.mw-parser-output .cs1-hidden-error{display:none;font-size:100%}.mw-parser-output .cs1-visible-error{font-size:100%}.mw-parser-output .cs1-maint{display:none;color:#33aa33;margin-left:0.3em}.mw-parser-output .cs1-subscription,.mw-parser-output .cs1-registration,.mw-parser-output .cs1-format{font-size:95%}.mw-parser-output .cs1-kern-left,.mw-parser-output .cs1-kern-wl-left{padding-left:0.2em}.mw-parser-output .cs1-kern-right,.mw-parser-output .cs1-kern-wl-right{padding-right:0.2em}</style></span>
</li>
<li id="cite_note-2"><span class="mw-cite-backlink"><b><a href="#cite_ref-2">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://ischool.illinois.edu/people/faculty">"Core Faculty"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Core+Faculty&amp;rft_id=http%3A%2F%2Fischool.illinois.edu%2Fpeople%2Ffaculty&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-3"><span class="mw-cite-backlink"><b><a href="#cite_ref-3">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://ischool.illinois.edu/our-school/demographics">"Student Demographics 2015-2016"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Student+Demographics+2015-2016&amp;rft_id=http%3A%2F%2Fischool.illinois.edu%2Four-school%2Fdemographics&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-4"><span class="mw-cite-backlink"><b><a href="#cite_ref-4">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://ischool.illinois.edu/academics/degrees">"professional degrees including"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2016-04-15</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=professional+degrees+including&amp;rft_id=http%3A%2F%2Fischool.illinois.edu%2Facademics%2Fdegrees&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-5"><span class="mw-cite-backlink"><b><a href="#cite_ref-5">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20160621173645/http://ischool.illinois.edu/academics/degrees/specializations">"Degree Specializations"</a>. Archived from <a rel="nofollow" class="external text" href="http://ischool.illinois.edu/academics/degrees/specializations">the original</a> on 2016-06-21<span class="reference-accessdate">. Retrieved <span class="nowrap">2016-04-15</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Degree+Specializations&amp;rft_id=http%3A%2F%2Fischool.illinois.edu%2Facademics%2Fdegrees%2Fspecializations&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-6"><span class="mw-cite-backlink"><b><a href="#cite_ref-6">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.usnews.com/best-graduate-schools/top-library-information-science-programs/library-information-science-rankings">"Best Library and Information Studies Programs, Graduate Schools"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-10-23</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Best+Library+and+Information+Studies+Programs%2C+Graduate+Schools&amp;rft_id=https%3A%2F%2Fwww.usnews.com%2Fbest-graduate-schools%2Ftop-library-information-science-programs%2Flibrary-information-science-rankings&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-7"><span class="mw-cite-backlink"><b><a href="#cite_ref-7">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://www.news.uiuc.edu/news/08/0804gslis.html">"New Survey Ranks U of I iSchool No. 1 in U.S., Canada"</a>. News Bureau at the University of Illinois. 2008-08-04.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=New+Survey+Ranks+U+of+I+iSchool+No.+1+in+U.S.%2C+Canada&amp;rft.pub=News+Bureau+at+the+University+of+Illinois&amp;rft.date=2008-08-04&amp;rft_id=http%3A%2F%2Fwww.news.uiuc.edu%2Fnews%2F08%2F0804gslis.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-8"><span class="mw-cite-backlink"><b><a href="#cite_ref-8">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.usnews.com/best-graduate-schools/top-library-information-science-programs/children-youth-service-rankings">"Best Services for Children and Youth Programs"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-10-23</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Best+Services+for+Children+and+Youth+Programs&amp;rft_id=https%3A%2F%2Fwww.usnews.com%2Fbest-graduate-schools%2Ftop-library-information-science-programs%2Fchildren-youth-service-rankings&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-9"><span class="mw-cite-backlink"><b><a href="#cite_ref-9">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.usnews.com/best-graduate-schools/top-library-information-science-programs/digital-librarianship-rankings">"Best Digital Librarianship Programs"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-10-23</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Best+Digital+Librarianship+Programs&amp;rft_id=https%3A%2F%2Fwww.usnews.com%2Fbest-graduate-schools%2Ftop-library-information-science-programs%2Fdigital-librarianship-rankings&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-10"><span class="mw-cite-backlink"><b><a href="#cite_ref-10">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://www.usnews.com/best-graduate-schools/top-library-information-science-programs/library-media-rankings">"Best School Library Media Programs"</a><span class="reference-accessdate">. Retrieved <span class="nowrap">2017-10-23</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Best+School+Library+Media+Programs&amp;rft_id=https%3A%2F%2Fwww.usnews.com%2Fbest-graduate-schools%2Ftop-library-information-science-programs%2Flibrary-media-rankings&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-11"><span class="mw-cite-backlink"><b><a href="#cite_ref-11">^</a></b></span> <span class="reference-text">Grotzinger 1992, p. 2</span>
</li>
<li id="cite_note-12"><span class="mw-cite-backlink"><b><a href="#cite_ref-12">^</a></b></span> <span class="reference-text">Grotzinger 1992, p. 2</span>
</li>
<li id="cite_note-13"><span class="mw-cite-backlink"><b><a href="#cite_ref-13">^</a></b></span> <span class="reference-text">Grotzinger 1992, p. 5</span>
</li>
<li id="cite_note-14"><span class="mw-cite-backlink"><b><a href="#cite_ref-14">^</a></b></span> <span class="reference-text">Grotzinger 1992, p. 6-7</span>
</li>
<li id="cite_note-15"><span class="mw-cite-backlink"><b><a href="#cite_ref-15">^</a></b></span> <span class="reference-text">Grotzinger 1992, p. 9</span>
</li>
<li id="cite_note-16"><span class="mw-cite-backlink"><b><a href="#cite_ref-16">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.rushacacia.com/History">http://www.rushacacia.com/History</a></span>
</li>
<li id="cite_note-17"><span class="mw-cite-backlink"><b><a href="#cite_ref-17">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://ischool.illinois.edu/articles/2015/10/faculty-vote-favor-name-change-proposal">http://ischool.illinois.edu/articles/2015/10/faculty-vote-favor-name-change-proposal</a></span>
</li>
<li id="cite_note-18"><span class="mw-cite-backlink"><b><a href="#cite_ref-18">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20141204173206/http://ccb.lis.illinois.edu/aboutus.html">"Center for Children's Books - About Us"</a>. 2014-11-27. Archived from <a rel="nofollow" class="external text" href="http://ccb.lis.illinois.edu/aboutus.html">the original</a> on 2014-12-04.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Center+for+Children%27s+Books+-+About+Us&amp;rft.date=2014-11-27&amp;rft_id=http%3A%2F%2Fccb.lis.illinois.edu%2Faboutus.html&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-19"><span class="mw-cite-backlink"><b><a href="#cite_ref-19">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="https://web.archive.org/web/20131030202052/http://www.lis.illinois.edu/research/areas">"Research Areas | GSLIS"</a>. Archived from <a rel="nofollow" class="external text" href="http://www.lis.illinois.edu/research/areas">the original</a> on 2013-10-30.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Research+Areas+%7C+GSLIS&amp;rft_id=http%3A%2F%2Fwww.lis.illinois.edu%2Fresearch%2Fareas&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-20"><span class="mw-cite-backlink"><b><a href="#cite_ref-20">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://ccb.ischool.illinois.edu/">"The Center for Children's Books (CCB)"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=The+Center+for+Children%E2%80%99s+Books+%28CCB%29&amp;rft_id=http%3A%2F%2Fccb.ischool.illinois.edu%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-21"><span class="mw-cite-backlink"><b><a href="#cite_ref-21">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://cdi.lis.illinois.edu/cdi/">"Center for Digital Inclusion"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Center+for+Digital+Inclusion&amp;rft_id=http%3A%2F%2Fcdi.lis.illinois.edu%2Fcdi%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-22"><span class="mw-cite-backlink"><b><a href="#cite_ref-22">^</a></b></span> <span class="reference-text"><cite class="citation web"><a rel="nofollow" class="external text" href="http://cirssweb.lis.illinois.edu/">"Center for Informatics Research in Science and Scholarship"</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook&amp;rft.genre=unknown&amp;rft.btitle=Center+for+Informatics+Research+in+Science+and+Scholarship&amp;rft_id=http%3A%2F%2Fcirssweb.lis.illinois.edu%2F&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AUIUC+School+of+Information+Sciences" class="Z3988"></span><link rel="mw-deduplicated-inline-style" href="mw-data:TemplateStyles:r886058088"/></span>
</li>
<li id="cite_note-23"><span class="mw-cite-backlink"><b><a href="#cite_ref-23">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="https://web.archive.org/web/20111226061517/http://www.lis.illinois.edu/people/students/orgs/ala">https://web.archive.org/web/20111226061517/http://www.lis.illinois.edu/people/students/orgs/ala</a></span>
</li>
<li id="cite_note-24"><span class="mw-cite-backlink"><b><a href="#cite_ref-24">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://saauiuc.wordpress.com/">http://saauiuc.wordpress.com/</a></span>
</li>
<li id="cite_note-25"><span class="mw-cite-backlink"><b><a href="#cite_ref-25">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="https://web.archive.org/web/20111226061905/http://www.lis.illinois.edu/people/students/orgs/asist">https://web.archive.org/web/20111226061905/http://www.lis.illinois.edu/people/students/orgs/asist</a></span>
</li>
<li id="cite_note-26"><span class="mw-cite-backlink"><b><a href="#cite_ref-26">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.lis.illinois.edu/people/alumni/betaphimu">http://www.lis.illinois.edu/people/alumni/betaphimu</a></span>
</li>
<li id="cite_note-27"><span class="mw-cite-backlink"><b><a href="#cite_ref-27">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://www.communityinformaticsprojects.org/ciclub/">http://www.communityinformaticsprojects.org/ciclub/</a></span>
</li>
<li id="cite_note-28"><span class="mw-cite-backlink"><b><a href="#cite_ref-28">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="https://publish.illinois.edu/studentsofcolor/">https://publish.illinois.edu/studentsofcolor/</a></span>
</li>
<li id="cite_note-29"><span class="mw-cite-backlink"><b><a href="#cite_ref-29">^</a></b></span> <span class="reference-text"><a rel="nofollow" class="external free" href="http://queerliballiance.wikispot.org/">http://queerliballiance.wikispot.org/</a></span>
</li>
</ol></div></div>
<h2><span class="mw-headline" id="References">References</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=8" title="Edit section: References">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li>Grotzinger, L. (1992). <i>Remarkable beginnings: The first half century of the Graduate School of Library and Information Science. In ideals and standards: The history of the University of Illinois Graduate School of Library and Information Science, 1893–1993</i> (1–22). Champaign, IL: The Graduate School of Library and Information Science. University of Illinois at Urbana–Champaign. Retrieved from <a rel="nofollow" class="external free" href="https://www.ideals.illinois.edu/handle/2142/18680">https://www.ideals.illinois.edu/handle/2142/18680</a></li></ul>
<h2><span class="mw-headline" id="External_links">External links</span><span class="mw-editsection"><span class="mw-editsection-bracket">[</span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit&amp;section=9" title="Edit section: External links">edit</a><span class="mw-editsection-bracket">]</span></span></h2>
<ul><li><a rel="nofollow" class="external text" href="http://ischool.illinois.edu/">Official website</a></li></ul>
<div role="navigation" class="navbox" aria-labelledby="University_of_Illinois_at_Urbana–Champaign" style="padding:3px"><table class="nowraplinks hlist mw-collapsible mw-collapsed navbox-inner" style="border-spacing:0;background:transparent;color:inherit"><tbody><tr><th scope="col" class="navbox-title" colspan="2" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;"><div class="plainlinks hlist navbar mini"><ul><li class="nv-view"><a href="/wiki/Template:University_of_Illinois_at_Urbana%E2%80%93Champaign_campus" title="Template:University of Illinois at Urbana–Champaign campus"><abbr title="View this template" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;;background:none transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none; padding:0;">v</abbr></a></li><li class="nv-talk"><a href="/wiki/Template_talk:University_of_Illinois_at_Urbana%E2%80%93Champaign_campus" title="Template talk:University of Illinois at Urbana–Champaign campus"><abbr title="Discuss this template" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;;background:none transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none; padding:0;">t</abbr></a></li><li class="nv-edit"><a class="external text" href="https://en.wikipedia.org/w/index.php?title=Template:University_of_Illinois_at_Urbana%E2%80%93Champaign_campus&amp;action=edit"><abbr title="Edit this template" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;;background:none transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none; padding:0;">e</abbr></a></li></ul></div><div id="University_of_Illinois_at_Urbana–Champaign" style="font-size:114%;margin:0 4em"><a href="/wiki/University_of_Illinois_at_Urbana%E2%80%93Champaign" title="University of Illinois at Urbana–Champaign"><span style="color: white; text-decoration: inherit; -moz-text-decoration-color: white; text-decoration-color: white;">University of Illinois at Urbana–Champaign</span></a></div></th></tr><tr><td class="navbox-abovebelow" colspan="2" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;"><div id="Located_in:_Urbana_and_Champaign,_Illinois"><b>Located in</b>: <a href="/wiki/Urbana,_Illinois" title="Urbana, Illinois"><span style="color:white">Urbana</span></a> and <a href="/wiki/Champaign,_Illinois" title="Champaign, Illinois"><span style="color:white">Champaign, Illinois</span></a></div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%">Academics</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Schools and<br /> colleges</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/UIUC_College_of_Agriculture,_Consumer,_and_Environmental_Sciences" title="UIUC College of Agriculture, Consumer, and Environmental Sciences">Agricultural, Consumer, and Environmental Sciences</a></li>
<li><a href="/wiki/UIUC_College_of_Applied_Health_Sciences" title="UIUC College of Applied Health Sciences">Applied Health Sciences</a></li>
<li><a href="/wiki/University_of_Illinois_School_of_Architecture" title="University of Illinois School of Architecture">Architecture</a></li>
<li><a href="/wiki/Carle_Illinois_College_of_Medicine" title="Carle Illinois College of Medicine"> Carle (Medicine)</a></li>
<li><a href="/wiki/UIUC_College_of_Education" title="UIUC College of Education">Education</a></li>
<li><a href="/wiki/UIUC_College_of_Fine_and_Applied_Arts" title="UIUC College of Fine and Applied Arts">Fine and Applied Arts</a></li>
<li><a href="/wiki/Gies_College_of_Business" title="Gies College of Business">Gies (Business)</a></li>
<li><a href="/wiki/Grainger_College_of_Engineering" title="Grainger College of Engineering">Grainger (Engineering)</a></li>
<li><a href="/wiki/UIUC_School_of_Labor_and_Employment_Relations" title="UIUC School of Labor and Employment Relations">Labor and Employment Relations</a></li>
<li><a href="/wiki/University_of_Illinois_College_of_Law" title="University of Illinois College of Law">Law</a></li>
<li><a href="/wiki/UIUC_College_of_Liberal_Arts_and_Sciences" title="UIUC College of Liberal Arts and Sciences">Liberal Arts and Sciences</a></li>
<li><a class="mw-selflink selflink">Information Sciences</a></li>
<li><a href="/wiki/UIUC_College_of_Media" title="UIUC College of Media">Media</a></li>
<li><a href="/wiki/UIUC_School_of_Social_Work" title="UIUC School of Social Work">Social Work</a></li>
<li><a href="/wiki/UIUC_College_of_Veterinary_Medicine" title="UIUC College of Veterinary Medicine">Veterinary Medicine</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Centers and<br /> institutes</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Beckman_Institute_for_Advanced_Science_and_Technology" title="Beckman Institute for Advanced Science and Technology">Beckman Institute for Advanced Science and Technology</a></li>
<li><a href="/wiki/Blue_Waters" title="Blue Waters">Blue Waters</a></li>
<li><a href="/wiki/Center_for_International_Business_Education_and_Research" title="Center for International Business Education and Research">Center for International Business Education and Research</a></li>
<li><a href="/wiki/Center_for_the_Simulation_of_Advanced_Rockets" title="Center for the Simulation of Advanced Rockets">Center for the Simulation of Advanced Rockets</a></li>
<li><a href="/wiki/Coordinated_Science_Laboratory" title="Coordinated Science Laboratory">Coordinated Science Laboratory</a></li>
<li><a href="/wiki/Illinois_Newspaper_Project" title="Illinois Newspaper Project">Illinois Newspaper Project</a></li>
<li><a href="/wiki/Information_Trust_Institute" title="Information Trust Institute">Information Trust Institute</a></li>
<li><a href="/wiki/Institute_for_Computing_in_the_Humanities,_Arts,_and_Social_Science" title="Institute for Computing in the Humanities, Arts, and Social Science">Institute for Computing in the Humanities, Arts, and Social Science</a></li>
<li><a href="/wiki/Institute_for_Condensed_Matter_Theory" title="Institute for Condensed Matter Theory">Institute for Condensed Matter Theory</a></li>
<li><a href="/wiki/Carl_R._Woese_Institute_for_Genomic_Biology" title="Carl R. Woese Institute for Genomic Biology">Carl R. Woese Institute for Genomic Biology</a></li>
<li><a href="/wiki/Mortenson_Center_for_International_Library_Programs" title="Mortenson Center for International Library Programs">Mortenson Center for International Library Programs</a></li>
<li><a href="/wiki/National_Center_for_Supercomputing_Applications" title="National Center for Supercomputing Applications">National Center for Supercomputing Applications</a></li>
<li><a href="/wiki/Prairie_Research_Institute" title="Prairie Research Institute">Prairie Research Institute</a></li>
<li><a href="/wiki/The_Rare_Book_%26_Manuscript_Library_(University_of_Illinois_at_Urbana%E2%80%93Champaign)" title="The Rare Book &amp; Manuscript Library (University of Illinois at Urbana–Champaign)">The Rare Book &amp; Manuscript Library</a></li>
<li><a href="/wiki/Regional_Economics_Applications_Laboratory" title="Regional Economics Applications Laboratory">Regional Economics Applications Laboratory</a></li>
<li><a href="/wiki/Sousa_Archives_and_Center_for_American_Music" title="Sousa Archives and Center for American Music">Sousa Archives and Center for American Music</a></li>
<li><a href="/wiki/State_Farm_Research_and_Development_Center" title="State Farm Research and Development Center">State Farm Research and Development Center</a></li>
<li><a href="/wiki/UPCRC_Illinois" title="UPCRC Illinois">Universal Parallel Computing Research Center - Illinois</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%"><a href="/wiki/Illinois_Fighting_Illini" title="Illinois Fighting Illini"><span style="color:white;">Athletics</span></a></th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">NCAA sports</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Illinois_Fighting_Illini" title="Illinois Fighting Illini">Illinois Fighting Illini</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_baseball" title="Illinois Fighting Illini baseball">Baseball</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_football" title="Illinois Fighting Illini football">Football</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_men%27s_basketball" title="Illinois Fighting Illini men&#39;s basketball">Men's Basketball</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_men%27s_golf" title="Illinois Fighting Illini men&#39;s golf">Men's Golf</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_men%27s_gymnastics" title="Illinois Fighting Illini men&#39;s gymnastics">Men's Gymnastics</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_men%27s_tennis" title="Illinois Fighting Illini men&#39;s tennis">Men's Tennis</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_women%27s_basketball" title="Illinois Fighting Illini women&#39;s basketball">Women's Basketball</a></li>
<li><a href="/wiki/Illinois_Fighting_Illini_women%27s_volleyball" title="Illinois Fighting Illini women&#39;s volleyball">Women's Volleyball</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Club sports</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Illinois_Fighting_Illini_men%27s_ice_hockey" title="Illinois Fighting Illini men&#39;s ice hockey">Men's ice hockey</a></li>
<li><a href="/wiki/Illinois_Men%27s_Volleyball_Club" title="Illinois Men&#39;s Volleyball Club">Men's volleyball</a></li>
<li><a href="/wiki/Illini_Rowing" title="Illini Rowing">Rowing</a></li>
<li><a href="/wiki/University_of_Illinois_Wheelchair_Basketball" title="University of Illinois Wheelchair Basketball">Wheelchair basketball</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Facilities</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Activities_and_Recreation_Center_(UIUC)" title="Activities and Recreation Center (UIUC)">The ARC</a></li>
<li><a href="/wiki/Atkins_Tennis_Center" title="Atkins Tennis Center">Atkins Tennis Center</a></li>
<li><a href="/wiki/UIUC_Campus_Recreation_Center_%E2%80%93_East_(CRCE)" title="UIUC Campus Recreation Center – East (CRCE)">Campus Recreation Center – East</a></li>
<li><a href="/wiki/Louise_Freer_Hall" title="Louise Freer Hall">Freer Hall</a></li>
<li><a href="/wiki/Huff_Hall" title="Huff Hall">Huff Hall</a></li>
<li><a href="/wiki/University_of_Illinois_Ice_Arena" title="University of Illinois Ice Arena">Ice Arena</a></li>
<li><a href="/wiki/Illinois_Field" title="Illinois Field">Illinois Field</a></li>
<li><a href="/wiki/Kenney_Gym_and_Kenney_Gym_Annex" title="Kenney Gym and Kenney Gym Annex">Kenney Gym and Kenney Gym Annex</a></li>
<li><a href="/wiki/Memorial_Stadium_(Champaign)" title="Memorial Stadium (Champaign)">Memorial Stadium</a></li>
<li><a href="/wiki/State_Farm_Center" title="State Farm Center">State Farm Center</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Rivalries</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Braggin%27_Rights" title="Braggin&#39; Rights">Braggin' Rights</a></li>
<li><a href="/wiki/Illinois%E2%80%93Missouri_football_rivalry" title="Illinois–Missouri football rivalry">Missouri</a></li>
<li><a href="/wiki/Illinois%E2%80%93Northwestern_football_rivalry" title="Illinois–Northwestern football rivalry">Northwestern</a></li>
<li><a href="/wiki/Illibuck_Trophy" title="Illibuck Trophy">Ohio State football</a></li>
<li><a href="/wiki/Illinois%E2%80%93Purdue_football_rivalry" title="Illinois–Purdue football rivalry">Purdue</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Spirit</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><i><a href="/wiki/Alma_Mater_(Illinois_sculpture)" title="Alma Mater (Illinois sculpture)">Alma Mater</a></i></li>
<li><a href="/wiki/Chief_Illiniwek" title="Chief Illiniwek">Chief Illiniwek</a></li>
<li>"<a href="/wiki/Illinois_Loyalty" title="Illinois Loyalty">Illinois Loyalty</a>"</li>
<li>"<a href="/wiki/Oskee_Wow-Wow" title="Oskee Wow-Wow">Oskee Wow-Wow</a>"</li>
<li><a href="/wiki/Orange_Krush" title="Orange Krush">Orange Krush</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%">Student life</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Groups</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/List_of_social_fraternities_and_sororities_at_UIUC" title="List of social fraternities and sororities at UIUC">Fraternities and sororities</a></li>
<li><a href="/wiki/Graduate_Employees%27_Organization" title="Graduate Employees&#39; Organization">Graduate Employees' Organization</a></li>
<li><a href="/wiki/Illini_4000_for_Cancer" title="Illini 4000 for Cancer">Illini 4000 for Cancer</a></li>
<li><a href="/wiki/Illinois_Business_Consulting" title="Illinois Business Consulting">Illinois Business Consulting</a></li>
<li><a href="/wiki/Marching_Illini" title="Marching Illini">Marching Illini</a></li>
<li><a href="/wiki/Illinois_Solar_Decathlon" title="Illinois Solar Decathlon">Illinois Solar Decathlon</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Media</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Fighting_Illini_Sports_Network" title="Fighting Illini Sports Network">Fighting Illini Sports Network</a></li>
<li><a href="/wiki/Illini_Media" title="Illini Media">Illini Media</a>
<ul><li><i><a href="/wiki/The_Daily_Illini" title="The Daily Illini">The Daily Illini</a></i></li>
<li><a href="/wiki/WPGU" title="WPGU">WPGU</a></li></ul></li>
<li><a href="/wiki/WILL" title="WILL">Illinois Public Media</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Journals</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><i><a href="/wiki/Comparative_Labor_Law_and_Policy_Journal" title="Comparative Labor Law and Policy Journal">Comparative Labor Law and Policy Journal</a></i></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%"><a href="/wiki/Campus_of_the_University_of_Illinois_at_Urbana%E2%80%93Champaign" title="Campus of the University of Illinois at Urbana–Champaign"><span style="color:white;">Campus</span></a></th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em"></div><table class="nowraplinks navbox-subgroup" style="border-spacing:0"><tbody><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Historic<br /> buildings</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Altgeld_Hall" title="Altgeld Hall">Altgeld Hall</a></li>
<li><a href="/wiki/Busey%E2%80%93Evans_Residence_Halls" title="Busey–Evans Residence Halls">Busey–Evans Residence Halls</a></li>
<li><a href="/wiki/UIUC_Engineering_Hall" title="UIUC Engineering Hall">Engineering Hall</a></li>
<li><a href="/wiki/Foellinger_Auditorium" title="Foellinger Auditorium">Foellinger Auditorium</a></li>
<li><a href="/wiki/Harker_Hall" title="Harker Hall">Harker Hall</a></li>
<li><a href="/wiki/Illini_Union" title="Illini Union">Illini Union</a></li>
<li><a href="/wiki/Lincoln_Hall_(University_of_Illinois)" title="Lincoln Hall (University of Illinois)">Lincoln Hall</a></li>
<li><a href="/wiki/Main_Library_(University_of_Illinois_at_Urbana%E2%80%93Champaign)" title="Main Library (University of Illinois at Urbana–Champaign)">Main Library</a></li>
<li><a href="/wiki/Natural_History_Building" title="Natural History Building">Natural History Building</a></li>
<li><a href="/wiki/Noyes_Laboratory_of_Chemistry" title="Noyes Laboratory of Chemistry">Noyes Laboratory of Chemistry</a></li>
<li><a href="/wiki/Astronomical_Observatory_(University_of_Illinois_at_Urbana%E2%80%93Champaign)" title="Astronomical Observatory (University of Illinois at Urbana–Champaign)">Observatory</a></li>
<li><a href="/wiki/University_of_Illinois_round_barns" title="University of Illinois round barns">Round Barns</a></li>
<li><a href="/wiki/Tina_Weedon_Smith_Memorial_Hall" title="Tina Weedon Smith Memorial Hall">Smith Memorial Hall</a></li>
<li><a href="/wiki/University_Laboratory_High_School_(Urbana,_Illinois)" title="University Laboratory High School (Urbana, Illinois)">Uni High School</a></li>
<li><a href="/wiki/Main_Library_(University_of_Illinois_at_Urbana%E2%80%93Champaign)" title="Main Library (University of Illinois at Urbana–Champaign)">University Library</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Other<br /> buildings</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Business_Instructional_Facility" title="Business Instructional Facility">Business Instructional Facility</a></li>
<li><a href="/wiki/Grainger_Engineering_Library" title="Grainger Engineering Library">Grainger Engineering Library</a></li>
<li><a href="/wiki/Krannert_Art_Museum" title="Krannert Art Museum">Krannert Art Museum</a></li>
<li><a href="/wiki/Krannert_Center_for_the_Performing_Arts" title="Krannert Center for the Performing Arts">Krannert Center for the Performing Arts</a></li>
<li><a href="/wiki/Newmark_Civil_Engineering_Laboratory" title="Newmark Civil Engineering Laboratory">Newmark Civil Engineering Laboratory</a></li>
<li><a href="/wiki/Thomas_M._Siebel_Center_for_Computer_Science" title="Thomas M. Siebel Center for Computer Science">Siebel Center for Computer Science</a></li>
<li><a href="/wiki/Spurlock_Museum" title="Spurlock Museum">Spurlock Museum</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:8em">Around<br /> campus</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/History_of_the_University_of_Illinois_at_Urbana%E2%80%93Champaign" title="History of the University of Illinois at Urbana–Champaign">UIUC History</a></li>
<li><a href="/wiki/University_of_Illinois_Arboretum" title="University of Illinois Arboretum">Arboretum</a></li>
<li><a href="/wiki/Boneyard_Creek" title="Boneyard Creek">Boneyard Creek</a></li>
<li><a href="/wiki/University_of_Illinois_Conservatory_and_Plant_Collection" title="University of Illinois Conservatory and Plant Collection">Conservatory and Plant Collection</a></li>
<li><a href="/wiki/Engineering_Campus_(University_of_Illinois_at_Urbana-Champaign)" class="mw-redirect" title="Engineering Campus (University of Illinois at Urbana-Champaign)">Engineering Campus</a></li>
<li><a href="/wiki/McFarland_Carillon" title="McFarland Carillon">McFarland Carillon</a></li>
<li><a href="/wiki/Morrow_Plots" title="Morrow Plots">Morrow Plots</a></li>
<li><a href="/wiki/UIUC_Residence_Halls" class="mw-redirect" title="UIUC Residence Halls">Residence Halls</a></li></ul>
</div></td></tr></tbody></table><div></div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%">Other<br /> locations</th><td class="navbox-list navbox-even" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/Robert_Allerton_Park" title="Robert Allerton Park">Allerton Park</a></li>
<li><a href="/wiki/Campustown_(Champaign,_Illinois)" title="Campustown (Champaign, Illinois)">Campustown</a></li>
<li><a href="/wiki/Mount_Laguna_Observatory" title="Mount Laguna Observatory">Mount Laguna Observatory</a></li>
<li><a href="/wiki/Research_Park_at_the_University_of_Illinois_at_Urbana-Champaign" class="mw-redirect" title="Research Park at the University of Illinois at Urbana-Champaign">Research Park</a></li>
<li><a href="/wiki/University_of_Illinois_Willard_Airport" title="University of Illinois Willard Airport">Willard Airport</a></li></ul>
</div></td></tr><tr><th scope="row" class="navbox-group" style="background-color:#13294B;color:white;-moz-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; -webkit-box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27; box-shadow: inset 2px 2px 0 #E84A27, inset -2px -2px 0 #E84A27;;width:1%">Misc.</th><td class="navbox-list navbox-odd" style="text-align:left;border-left-width:2px;border-left-style:solid;width:100%;padding:0px"><div style="padding:0em 0.25em">
<ul><li><a href="/wiki/List_of_University_of_Illinois_at_Urbana%E2%80%93Champaign_people" title="List of University of Illinois at Urbana–Champaign people">Notable people</a></li>
<li><a href="/wiki/List_of_Chancellors_of_the_University_of_Illinois_at_Urbana%E2%80%93Champaign" class="mw-redirect" title="List of Chancellors of the University of Illinois at Urbana–Champaign">Chancellors of the UIUC</a></li>
<li><a href="/wiki/List_of_University_of_Illinois_Presidents" title="List of University of Illinois Presidents">University of Illinois Presidents</a></li>
<li><a href="/wiki/University_of_Illinois_Press" title="University of Illinois Press">Press</a></li>
<li><a href="/wiki/Project_500" title="Project 500">Project 500</a></li>
<li><a href="/wiki/Champaign-Urbana_Mass_Transit_District" title="Champaign-Urbana Mass Transit District">Transportation</a></li>
<li><a href="/wiki/University_of_Illinois_at_Urbana%E2%80%93Champaign_University_Library" title="University of Illinois at Urbana–Champaign University Library">University Library</a></li>
<li><a href="/wiki/University_of_Illinois_system" title="University of Illinois system">University of Illinois system</a></li></ul>
</div></td></tr></tbody></table></div>
<p><span style="font-size: small;"><span id="coordinates"><a href="/wiki/Geographic_coordinate_system" title="Geographic coordinate system">Coordinates</a>: <span class="plainlinks nourlexpansion"><a class="external text" href="//tools.wmflabs.org/geohack/geohack.php?pagename=UIUC_School_of_Information_Sciences&amp;params=40_06_28_N_88_13_53_W_type:edu_region:US-IL"><span class="geo-default"><span class="geo-dms" title="Maps, aerial photos, and other data for this location"><span class="latitude">40°06′28″N</span> <span class="longitude">88°13′53″W</span></span></span><span class="geo-multi-punct">&#xfeff; / &#xfeff;</span><span class="geo-nondefault"><span class="geo-dec" title="Maps, aerial photos, and other data for this location">40.10778°N 88.23139°W</span><span style="display:none">&#xfeff; / <span class="geo">40.10778; -88.23139</span></span></span></a></span></span></span>
</p>
<!-- 
NewPP limit report
Parsed by mw1227
Cached time: 20191015155959
Cache expiry: 2592000
Dynamic content: false
Complications: [vary‐revision‐sha1]
CPU time usage: 0.420 seconds
Real time usage: 0.524 seconds
Preprocessor visited node count: 1641/1000000
Preprocessor generated node count: 0/1500000
Post‐expand include size: 110108/2097152 bytes
Template argument size: 1044/2097152 bytes
Highest expansion depth: 13/40
Expensive parser function count: 0/500
Unstrip recursion depth: 1/20
Unstrip post‐expand size: 46276/5000000 bytes
Number of Wikibase entities loaded: 1/400
Lua time usage: 0.230/10.000 seconds
Lua memory usage: 4.66 MB/50 MB
-->
<!--
Transclusion expansion time report (%,ms,calls,template)
100.00%  441.315      1 -total
 43.85%  193.505      1 Template:Reflist
 28.74%  126.848      5 Template:Navbox
 27.72%  122.324      1 Template:Infobox_university
 23.16%  102.223      1 Template:Cite_news
 22.45%   99.076      1 Template:Infobox
 18.10%   79.894      1 Template:University_of_Illinois_at_Urbana-Champaign_campus
 14.76%   65.159     14 Template:Cite_web
  9.79%   43.205      5 Template:CollegePrimaryStyle
  8.56%   37.773      2 Template:Br_separated_entries
-->

<!-- Saved in parser cache with key enwiki:pcache:idhash:5761393-0!canonical and timestamp 20191015160008 and revision id 921410882
 -->
</div><noscript><img src="//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1" alt="" title="" width="1" height="1" style="border: none; position: absolute;" /></noscript></div>

        <div class="printfooter">Retrieved from "<a dir="ltr" href="https://en.wikipedia.org/w/index.php?title=UIUC_School_of_Information_Sciences&amp;oldid=921410882">https://en.wikipedia.org/w/index.php?title=UIUC_School_of_Information_Sciences&amp;oldid=921410882</a>"</div>

        <div id="catlinks" class="catlinks" data-mw="interface"><div id="mw-normal-catlinks" class="mw-normal-catlinks"><a href="/wiki/Help:Category" title="Help:Category">Categories</a>: <ul><li><a href="/wiki/Category:Information_schools" title="Category:Information schools">Information schools</a></li><li><a href="/wiki/Category:University_of_Illinois_at_Urbana%E2%80%93Champaign" title="Category:University of Illinois at Urbana–Champaign">University of Illinois at Urbana–Champaign</a></li></ul></div><div id="mw-hidden-catlinks" class="mw-hidden-catlinks mw-hidden-cats-hidden">Hidden categories: <ul><li><a href="/wiki/Category:Pages_using_infobox_university_with_the_image_name_parameter" title="Category:Pages using infobox university with the image name parameter">Pages using infobox university with the image name parameter</a></li><li><a href="/wiki/Category:Coordinates_on_Wikidata" title="Category:Coordinates on Wikidata">Coordinates on Wikidata</a></li></ul></div></div>
        <div class="visualClear"></div>

    </div>
</div>
<div id='mw-data-after-content'>
    <div class="read-more-container"></div>
</div>


        <div id="mw-navigation">
            <h2>Navigation menu</h2>
            <div id="mw-head">
                                    <div id="p-personal" role="navigation" aria-labelledby="p-personal-label">
                        <h3 id="p-personal-label">Personal tools</h3>
                        <ul>
                            <li id="pt-anonuserpage">Not logged in</li><li id="pt-anontalk"><a href="/wiki/Special:MyTalk" title="Discussion about edits from this IP address [n]" accesskey="n">Talk</a></li><li id="pt-anoncontribs"><a href="/wiki/Special:MyContributions" title="A list of edits made from this IP address [y]" accesskey="y">Contributions</a></li><li id="pt-createaccount"><a href="/w/index.php?title=Special:CreateAccount&amp;returnto=UIUC+School+of+Information+Sciences" title="You are encouraged to create an account and log in; however, it is not mandatory">Create account</a></li><li id="pt-login"><a href="/w/index.php?title=Special:UserLogin&amp;returnto=UIUC+School+of+Information+Sciences" title="You&#039;re encouraged to log in; however, it&#039;s not mandatory. [o]" accesskey="o">Log in</a></li>                        </ul>
                    </div>
                                    <div id="left-navigation">
                                        <div id="p-namespaces" role="navigation" class="vectorTabs" aria-labelledby="p-namespaces-label">
                        <h3 id="p-namespaces-label">Namespaces</h3>
                        <ul>
                            <li id="ca-nstab-main" class="selected"><span><a href="/wiki/UIUC_School_of_Information_Sciences" title="View the content page [c]" accesskey="c">Article</a></span></li><li id="ca-talk"><span><a href="/wiki/Talk:UIUC_School_of_Information_Sciences" rel="discussion" title="Discussion about the content page [t]" accesskey="t">Talk</a></span></li>                        </ul>
                    </div>
                                        <div id="p-variants" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-variants-label">
                                                <input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="p-variants-label" />
                        <h3 id="p-variants-label">
                            <span>Variants</span>
                        </h3>
                        <ul class="menu">
                                                    </ul>
                    </div>
                                    </div>
                <div id="right-navigation">
                                        <div id="p-views" role="navigation" class="vectorTabs" aria-labelledby="p-views-label">
                        <h3 id="p-views-label">Views</h3>
                        <ul>
                            <li id="ca-view" class="collapsible selected"><span><a href="/wiki/UIUC_School_of_Information_Sciences">Read</a></span></li><li id="ca-edit" class="collapsible"><span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=edit" title="Edit this page [e]" accesskey="e">Edit</a></span></li><li id="ca-history" class="collapsible"><span><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=history" title="Past revisions of this page [h]" accesskey="h">View history</a></span></li>                        </ul>
                    </div>
                                        <div id="p-cactions" role="navigation" class="vectorMenu emptyPortlet" aria-labelledby="p-cactions-label">
                        <input type="checkbox" class="vectorMenuCheckbox" aria-labelledby="p-cactions-label" />
                        <h3 id="p-cactions-label"><span>More</span></h3>
                        <ul class="menu">
                                                    </ul>
                    </div>
                                        <div id="p-search" role="search">
                        <h3>
                            <label for="searchInput">Search</label>
                        </h3>
                        <form action="/w/index.php" id="searchform">
                            <div id="simpleSearch">
                                <input type="search" name="search" placeholder="Search Wikipedia" title="Search Wikipedia [f]" accesskey="f" id="searchInput"/><input type="hidden" value="Special:Search" name="title"/><input type="submit" name="fulltext" value="Search" title="Search Wikipedia for this text" id="mw-searchButton" class="searchButton mw-fallbackSearchButton"/><input type="submit" name="go" value="Go" title="Go to a page with this exact name if it exists" id="searchButton" class="searchButton"/>                            </div>
                        </form>
                    </div>
                                    </div>
            </div>
            <div id="mw-panel">
                <div id="p-logo" role="banner"><a class="mw-wiki-logo" href="/wiki/Main_Page" title="Visit the main page"></a></div>
                        <div class="portal" role="navigation" id="p-navigation" aria-labelledby="p-navigation-label">
            <h3 id="p-navigation-label">Navigation</h3>
            <div class="body">
                                <ul>
                    <li id="n-mainpage-description"><a href="/wiki/Main_Page" title="Visit the main page [z]" accesskey="z">Main page</a></li><li id="n-contents"><a href="/wiki/Portal:Contents" title="Guides to browsing Wikipedia">Contents</a></li><li id="n-featuredcontent"><a href="/wiki/Portal:Featured_content" title="Featured content – the best of Wikipedia">Featured content</a></li><li id="n-currentevents"><a href="/wiki/Portal:Current_events" title="Find background information on current events">Current events</a></li><li id="n-randompage"><a href="/wiki/Special:Random" title="Load a random article [x]" accesskey="x">Random article</a></li><li id="n-sitesupport"><a href="https://donate.wikimedia.org/wiki/Special:FundraiserRedirector?utm_source=donate&amp;utm_medium=sidebar&amp;utm_campaign=C13_en.wikipedia.org&amp;uselang=en" title="Support us">Donate to Wikipedia</a></li><li id="n-shoplink"><a href="//shop.wikimedia.org" title="Visit the Wikipedia store">Wikipedia store</a></li>                </ul>
                            </div>
        </div>
            <div class="portal" role="navigation" id="p-interaction" aria-labelledby="p-interaction-label">
            <h3 id="p-interaction-label">Interaction</h3>
            <div class="body">
                                <ul>
                    <li id="n-help"><a href="/wiki/Help:Contents" title="Guidance on how to use and edit Wikipedia">Help</a></li><li id="n-aboutsite"><a href="/wiki/Wikipedia:About" title="Find out about Wikipedia">About Wikipedia</a></li><li id="n-portal"><a href="/wiki/Wikipedia:Community_portal" title="About the project, what you can do, where to find things">Community portal</a></li><li id="n-recentchanges"><a href="/wiki/Special:RecentChanges" title="A list of recent changes in the wiki [r]" accesskey="r">Recent changes</a></li><li id="n-contactpage"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us" title="How to contact Wikipedia">Contact page</a></li>                </ul>
                            </div>
        </div>
            <div class="portal" role="navigation" id="p-tb" aria-labelledby="p-tb-label">
            <h3 id="p-tb-label">Tools</h3>
            <div class="body">
                                <ul>
                    <li id="t-whatlinkshere"><a href="/wiki/Special:WhatLinksHere/UIUC_School_of_Information_Sciences" title="List of all English Wikipedia pages containing links to this page [j]" accesskey="j">What links here</a></li><li id="t-recentchangeslinked"><a href="/wiki/Special:RecentChangesLinked/UIUC_School_of_Information_Sciences" rel="nofollow" title="Recent changes in pages linked from this page [k]" accesskey="k">Related changes</a></li><li id="t-upload"><a href="/wiki/Wikipedia:File_Upload_Wizard" title="Upload files [u]" accesskey="u">Upload file</a></li><li id="t-specialpages"><a href="/wiki/Special:SpecialPages" title="A list of all special pages [q]" accesskey="q">Special pages</a></li><li id="t-permalink"><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;oldid=921410882" title="Permanent link to this revision of the page">Permanent link</a></li><li id="t-info"><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;action=info" title="More information about this page">Page information</a></li><li id="t-wikibase"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q7864734" title="Link to connected data repository item [g]" accesskey="g">Wikidata item</a></li><li id="t-cite"><a href="/w/index.php?title=Special:CiteThisPage&amp;page=UIUC_School_of_Information_Sciences&amp;id=921410882" title="Information on how to cite this page">Cite this page</a></li>                </ul>
                            </div>
        </div>
            <div class="portal" role="navigation" id="p-coll-print_export" aria-labelledby="p-coll-print_export-label">
            <h3 id="p-coll-print_export-label">Print/export</h3>
            <div class="body">
                                <ul>
                    <li id="coll-create_a_book"><a href="/w/index.php?title=Special:Book&amp;bookcmd=book_creator&amp;referer=UIUC+School+of+Information+Sciences">Create a book</a></li><li id="coll-download-as-rl"><a href="/w/index.php?title=Special:ElectronPdf&amp;page=UIUC+School+of+Information+Sciences&amp;action=show-download-screen">Download as PDF</a></li><li id="t-print"><a href="/w/index.php?title=UIUC_School_of_Information_Sciences&amp;printable=yes" title="Printable version of this page [p]" accesskey="p">Printable version</a></li>                </ul>
                            </div>
        </div>
            <div class="portal" role="navigation" id="p-lang" aria-labelledby="p-lang-label">
            <h3 id="p-lang-label">Languages</h3>
            <div class="body">
                                <ul>
                                    </ul>
                <div class="after-portlet after-portlet-lang"><span class="wb-langlinks-add wb-langlinks-link"><a href="https://www.wikidata.org/wiki/Special:EntityPage/Q7864734#sitelinks-wikipedia" title="Add interlanguage links" class="wbc-editpage">Add links</a></span></div>            </div>
        </div>
                </div>
        </div>
                <div id="footer" role="contentinfo">
                        <ul id="footer-info">
                                <li id="footer-info-lastmod"> This page was last edited on 15 October 2019, at 16:00<span class="anonymous-show">&#160;(UTC)</span>.</li>
                                <li id="footer-info-copyright">Text is available under the <a rel="license" href="//en.wikipedia.org/wiki/Wikipedia:Text_of_Creative_Commons_Attribution-ShareAlike_3.0_Unported_License">Creative Commons Attribution-ShareAlike License</a><a rel="license" href="//creativecommons.org/licenses/by-sa/3.0/" style="display:none;"></a>;
additional terms may apply.  By using this site, you agree to the <a href="//foundation.wikimedia.org/wiki/Terms_of_Use">Terms of Use</a> and <a href="//foundation.wikimedia.org/wiki/Privacy_policy">Privacy Policy</a>. Wikipedia® is a registered trademark of the <a href="//www.wikimediafoundation.org/">Wikimedia Foundation, Inc.</a>, a non-profit organization.</li>
                            </ul>
                        <ul id="footer-places">
                                <li id="footer-places-privacy"><a href="https://foundation.wikimedia.org/wiki/Privacy_policy" class="extiw" title="wmf:Privacy policy">Privacy policy</a></li>
                                <li id="footer-places-about"><a href="/wiki/Wikipedia:About" title="Wikipedia:About">About Wikipedia</a></li>
                                <li id="footer-places-disclaimer"><a href="/wiki/Wikipedia:General_disclaimer" title="Wikipedia:General disclaimer">Disclaimers</a></li>
                                <li id="footer-places-contact"><a href="//en.wikipedia.org/wiki/Wikipedia:Contact_us">Contact Wikipedia</a></li>
                                <li id="footer-places-developers"><a href="https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute">Developers</a></li>
                                <li id="footer-places-cookiestatement"><a href="https://foundation.wikimedia.org/wiki/Cookie_statement">Cookie statement</a></li>
                                <li id="footer-places-mobileview"><a href="//en.m.wikipedia.org/w/index.php?title=UIUC_School_of_Information_Sciences&amp;mobileaction=toggle_view_mobile" class="noprint stopMobileRedirectToggle">Mobile view</a></li>
                            </ul>
                                        <ul id="footer-icons" class="noprint">
                                        <li id="footer-copyrightico">
                        <a href="https://wikimediafoundation.org/"><img src="/static/images/wikimedia-button.png" srcset="/static/images/wikimedia-button-1.5x.png 1.5x, /static/images/wikimedia-button-2x.png 2x" width="88" height="31" alt="Wikimedia Foundation"/></a>                    </li>
                                        <li id="footer-poweredbyico">
                        <a href="https://www.mediawiki.org/"><img src="/static/images/poweredby_mediawiki_88x31.png" alt="Powered by MediaWiki" srcset="/static/images/poweredby_mediawiki_132x47.png 1.5x, /static/images/poweredby_mediawiki_176x62.png 2x" width="88" height="31"/></a>                    </li>
                                    </ul>
                        <div style="clear: both;"></div>
        </div>


<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgPageParseReport":{"limitreport":{"cputime":"0.420","walltime":"0.524","ppvisitednodes":{"value":1641,"limit":1000000},"ppgeneratednodes":{"value":0,"limit":1500000},"postexpandincludesize":{"value":110108,"limit":2097152},"templateargumentsize":{"value":1044,"limit":2097152},"expansiondepth":{"value":13,"limit":40},"expensivefunctioncount":{"value":0,"limit":500},"unstrip-depth":{"value":1,"limit":20},"unstrip-size":{"value":46276,"limit":5000000},"entityaccesscount":{"value":1,"limit":400},"timingprofile":["100.00%  441.315      1 -total"," 43.85%  193.505      1 Template:Reflist"," 28.74%  126.848      5 Template:Navbox"," 27.72%  122.324      1 Template:Infobox_university"," 23.16%  102.223      1 Template:Cite_news"," 22.45%   99.076      1 Template:Infobox"," 18.10%   79.894      1 Template:University_of_Illinois_at_Urbana-Champaign_campus"," 14.76%   65.159     14 Template:Cite_web","  9.79%   43.205      5 Template:CollegePrimaryStyle","  8.56%   37.773      2 Template:Br_separated_entries"]},"scribunto":{"limitreport-timeusage":{"value":"0.230","limit":"10.000"},"limitreport-memusage":{"value":4883112,"limit":52428800}},"cachereport":{"origin":"mw1227","timestamp":"20191015155959","ttl":2592000,"transientcontent":false}}});});</script>
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@type":"Article","name":"UIUC School of Information Sciences","url":"https:\/\/en.wikipedia.org\/wiki\/UIUC_School_of_Information_Sciences","sameAs":"http:\/\/www.wikidata.org\/entity\/Q7864734","mainEntity":"http:\/\/www.wikidata.org\/entity\/Q7864734","author":{"@type":"Organization","name":"Contributors to Wikimedia projects"},"publisher":{"@type":"Organization","name":"Wikimedia Foundation, Inc.","logo":{"@type":"ImageObject","url":"https:\/\/www.wikimedia.org\/static\/images\/wmf-hor-googpub.png"}},"datePublished":"2006-06-29T17:57:46Z","dateModified":"2019-10-15T16:00:08Z","image":"https:\/\/upload.wikimedia.org\/wikipedia\/commons\/2\/27\/SchoolofInformationSciences_May2014.jpg"}</script>
<script>(RLQ=window.RLQ||[]).push(function(){mw.config.set({"wgBackendResponseTime":110,"wgHostname":"mw1267"});});</script>
</body>
</html>
result.close()
type(text)
str
import pathlib
pathlib.Path('wikipage.txt').write_text(text)
92875
base = "https://api.datacite.org/works?query=snake&page[number]="
import time
import pathlib
import requests
import json

for i in range(1, 100000000000000):
    fnamebase = 'snake-' + str(i).zfill(3) + '.json'
    url = base + str(i)
    p = pathlib.Path(fnamebase)
    response = requests.get(url)
    t = response.text
    p.write_text(t)
    jsontext = json.loads(t)
    end = jsontext["meta"]["total-pages"]
    print(i, end)
    response.close()
    time.sleep(3)
    if i == int(end):
        break
1 250
2 250
3 250



---------------------------------------------------------------------------

JSONDecodeError                           Traceback (most recent call last)

<ipython-input-20-9a3c6727feaf> in <module>()
     11     t = response.text
     12     p.write_text(t)
---> 13     jsontext = json.loads(t)
     14     end = jsontext["meta"]["total-pages"]
     15     print(i, end)


~/anaconda3_420/lib/python3.5/json/__init__.py in loads(s, encoding, cls, object_hook, parse_float, parse_int, parse_constant, object_pairs_hook, **kw)
    317             parse_int is None and parse_float is None and
    318             parse_constant is None and object_pairs_hook is None and not kw):
--> 319         return _default_decoder.decode(s)
    320     if cls is None:
    321         cls = JSONDecoder


~/anaconda3_420/lib/python3.5/json/decoder.py in decode(self, s, _w)
    337 
    338         """
--> 339         obj, end = self.raw_decode(s, idx=_w(s, 0).end())
    340         end = _w(s, end).end()
    341         if end != len(s):


~/anaconda3_420/lib/python3.5/json/decoder.py in raw_decode(self, s, idx)
    355             obj, end = self.scan_once(s, idx)
    356         except StopIteration as err:
--> 357             raise JSONDecodeError("Expecting value", s, err.value) from None
    358         return obj, end


JSONDecodeError: Expecting value: line 1 column 1 (char 0)

Last updated

Was this helpful?