libcraigscrape 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  == Change Log
2
2
 
3
+ === Release 0.8.2 (April 17, 2010)
4
+ - Found another odd parsing bug. Scrape sample is in 'listing_samples/mia_search_kitten.3.15.10.html', Adjusted CraigScrape::Listings::HEADER_DATE to fix.
5
+ - Craigslist started added <span> tags in its post summaries. Fixed. See sample in test_new_listing_span051710
6
+
3
7
  === Release 0.8.1 (Feb 10, 2010)
4
8
  - Found an odd parsing bug occured for the first time today. Scrape sample is in 'listing_samples/mia_sss_kittens2.10.10.html', Adjusted CraigScrape::Listings::LABEL to fix.
5
9
  - Switched to require "active_support" per the deprecation notices
data/Rakefile CHANGED
@@ -11,12 +11,12 @@ include FileUtils
11
11
  RbConfig = Config unless defined? RbConfig
12
12
 
13
13
  NAME = "libcraigscrape"
14
- VERS = ENV['VERSION'] || "0.8.1"
14
+ VERS = ENV['VERSION'] || "0.8.2"
15
15
  PKG = "#{NAME}-#{VERS}"
16
16
 
17
17
  RDOC_OPTS = ['--quiet', '--title', 'The libcraigscrape Reference', '--main', 'README', '--inline-source']
18
18
  RDOC_FILES = ['README', "CHANGELOG", "COPYING","COPYING.LESSER", 'bin/craigwatch']
19
- PKG_FILES = (%w(Rakefile) + RDOC_FILES + Dir.glob("{bin,test,lib}/**/*")).uniq
19
+ PKG_FILES = (%w(Rakefile) + RDOC_FILES + Dir.glob("{bin,test,lib}/**/*")).uniq.sort_by{|a,b| (a == 'lib/libcraigscrape.rb') ? -1 : 0 }
20
20
 
21
21
  SPEC =
22
22
  Gem::Specification.new do |s|
@@ -2,7 +2,6 @@
2
2
  #
3
3
  # All of libcraigscrape's objects and methods are loaded when you use <tt>require 'libcraigscrape'</tt> in your code.
4
4
  #
5
-
6
5
  require 'net/http'
7
6
  require 'zlib'
8
7
 
@@ -197,7 +196,7 @@ class CraigScrape
197
196
  # Returns the most recentlt expired time for the provided month and day
198
197
  def self.most_recently_expired_time(month, day) #:nodoc:
199
198
  now = (time_now) ? time_now : Time.now
200
-
199
+
201
200
  # This ensures we always generate a time in the past, by guessing the year and subtracting one if we guessed wrong
202
201
  ret = Time.local now.year, month, day
203
202
  ret = Time.local now.year-1, month, day if ret > now
@@ -209,4 +208,4 @@ end
209
208
 
210
209
  require 'listings'
211
210
  require 'posting'
212
- require 'geo_listings'
211
+ require 'geo_listings'
data/lib/listings.rb CHANGED
@@ -4,7 +4,6 @@
4
4
  # should never need to include this file directly, as all of libcraigscrape's objects and methods
5
5
  # are loaded when you use <tt>require 'libcraigscrape'</tt> in your code.
6
6
  #
7
-
8
7
  require 'scraper'
9
8
 
10
9
  # Listings represents a parsed Craigslist listing page and is generally returned by CraigScrape.scrape_listing
@@ -12,7 +11,7 @@ class CraigScrape::Listings < CraigScrape::Scraper
12
11
  LABEL = /^(.+?)[ ]*[\-]?$/
13
12
  LOCATION = /^[ ]*\((.*?)\)$/
14
13
  IMG_TYPE = /^[ ]*(.+)[ ]*$/
15
- HEADER_DATE = /^[ ]*[^ ]+[ ]+([^ ]+)[ ]+([^ ]+)[ ]*$/
14
+ HEADER_DATE = /^[ ]*(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)[ ]+(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Nov|Dec)[ ]+([0-9]{1,2})[ ]*$/i
16
15
  SUMMARY_DATE = /^[ ]([^ ]+)[ ]+([^ ]+)[ ]*[\-][ ]*$/
17
16
  NEXT_PAGE_LINK = /^[ ]*next [\d]+ postings[ ]*$/
18
17
 
@@ -30,7 +29,7 @@ class CraigScrape::Listings < CraigScrape::Scraper
30
29
  post_tags.last.at('a') and
31
30
  NEXT_PAGE_LINK.match post_tags.last.at('a').inner_html
32
31
  )
33
-
32
+
34
33
  # Now we iterate though the listings:
35
34
  post_tags.each do |el|
36
35
  case el.name
@@ -107,8 +106,24 @@ class CraigScrape::Listings < CraigScrape::Scraper
107
106
  # We separate this from the rest of the parsing both for readability and ease of testing
108
107
  def self.parse_summary(p_element, date = nil) #:nodoc:
109
108
  ret = {}
109
+
110
+ title_anchor = nil
111
+ section_anchor = nil
112
+
113
+ # This loop got a little more complicated after Craigslist start inserting weird <spans>'s in
114
+ # its list summary postings (See test_new_listing_span051710)
115
+ p_element.search('a').each do |a_el|
116
+ # We want the first a-tag that doesn't have spans in it to be the title anchor
117
+ if title_anchor.nil?
118
+ title_anchor = a_el if !a_el.at('span')
119
+ # We want the next a-tag after the title_anchor to be the section anchor
120
+ elsif section_anchor.nil?
121
+ section_anchor = a_el
122
+ # We have no need to tranverse these further:
123
+ break
124
+ end
125
+ end
110
126
 
111
- title_anchor, section_anchor = p_element.search 'a'
112
127
  location_tag = p_element.at 'font'
113
128
  has_pic_tag = p_element.at 'span'
114
129
 
@@ -5,7 +5,7 @@ module LibcraigscrapeTestHelpers
5
5
 
6
6
  def pp_assertions(obj, obj_name)
7
7
  probable_accessors = (obj.methods-obj.class.superclass.methods)
8
-
8
+
9
9
  puts
10
10
  probable_accessors.sort.each do |m|
11
11
  val = obj.send(m.to_sym)
@@ -16,13 +16,19 @@ module LibcraigscrapeTestHelpers
16
16
  val = val.to_a
17
17
  m = "#{m}.to_a"
18
18
  end
19
-
19
+
20
20
  if val.kind_of? Hash and val.length > 5
21
21
  puts "assert_equal %s, %s.%s.length" % [val.length.inspect,obj_name,m]
22
22
 
23
23
  val.keys.sort{|a,b| a <=> b }.each do |k|
24
24
  puts "assert_equal %s, %s.%s[%s]" % [val[k].inspect,obj_name,m,k.inspect]
25
25
  end
26
+ # elsif val.kind_of? Array
27
+ # puts "assert_equal %s, %s.%s.length" % [val.length.inspect,obj_name,m]
28
+ #
29
+ # val.each_index do |i|
30
+ # pp_assertions val[i], "%s.%s[%s]" % [obj_name,m,i.inspect]
31
+ # end
26
32
  else
27
33
  puts "assert_equal %s, %s.%s" % [val.inspect,obj_name,m]
28
34
  end
@@ -0,0 +1,149 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head>
3
+ <title>south florida pets classifieds &quot;kitten&quot; - craigslist</title>
4
+
5
+ <meta name="description" content="craigslist pets classifieds for south florida &quot;kitten&quot; ">
6
+ <meta name="keywords" content="south florida pets craigslist, classifieds, want ads ">
7
+
8
+
9
+
10
+ <link rel=alternate type="application/rss+xml" href="/search/pet?query=kitten&amp;catAbbreviation=pet&amp;hasPic=1&amp;format=rss" title="RSS feed for craigslist | pets &quot;kitten&quot; in south florida ">
11
+ <link rel="stylesheet" title="craigslist" href="http://www.craigslist.org/styles/craigslist.css" type="text/css" media="all">
12
+ <link rel="shortcut icon" href="http://www.craigslist.org/favicon.ico" type="image/x-icon">
13
+ </head>
14
+
15
+ <body class="toc">
16
+
17
+ <a name="top"></a>
18
+
19
+ <div class="bchead">
20
+ <span id="ef">
21
+
22
+ [ <a href="http://www.craigslist.org/about/help/">help</a> ]
23
+ [ <a href="https://post.craigslist.org/mia/C">post</a> ]</span>
24
+
25
+ <a href="/"> south florida craigslist</a> &gt; <a href="/ccc/">community</a> &gt; <a href="/pet/">pets</a>
26
+ <div id="satabs"> <b>all south florida</b> <a href="/search/pet/mdc?hasPic=1&amp;query=kitten">miami / dade</a> <a href="/search/pet/brw?hasPic=1&amp;query=kitten">broward county</a> <a href="/search/pet/pbc?hasPic=1&amp;query=kitten">palm beach co</a> </div>
27
+
28
+ </div>
29
+
30
+ <blockquote>
31
+ <form action="/search/pet" method="get" onsubmit="ckCAbb();">
32
+
33
+ <script type="text/javascript"><!--
34
+ var cabb = "pet";
35
+ -->
36
+ </script>
37
+
38
+ <table width="100%" cellpadding="2" style="white-space: nowrap; background:#eee; border:1px solid gray;" summary="">
39
+ <tr>
40
+ <td align="right" width="1">search for:</td>
41
+
42
+ <td width="30%"><input id="query" name="query" size="30" value="kitten"> in:
43
+ <select id="cAbb" name="catAbbreviation">
44
+
45
+ <option value="ccc">all community
46
+ <option disabled value="">--
47
+ <option value="act"> activity partners
48
+ <option value="ats"> artists
49
+ <option value="kid"> childcare
50
+ <option value="com"> general
51
+ <option value="grp"> groups
52
+ <option value="vnn"> local news and views
53
+ <option value="laf"> lost &amp; found
54
+ <option value="muc"> musicians
55
+ <option value="pet" selected> pets
56
+ <option value="pol"> politics
57
+ <option value="rid"> rideshare
58
+ <option value="vol"> volunteers
59
+ <option disabled value="">--
60
+
61
+ <option value="eee">all event
62
+
63
+ <option value="sss">all for sale / wanted
64
+
65
+ <option value="ggg">all gigs
66
+
67
+ <option value="hhh">all housing
68
+
69
+ <option value="jjj">all jobs
70
+
71
+ <option value="ppp">all personals
72
+
73
+ <option value="res">all resume
74
+
75
+ <option value="bbb">all services offered
76
+ </select>
77
+ <input type="submit" value="Search">
78
+ </td><td>
79
+ <label><input type="checkbox" name="srchType" value="T"
80
+ title="check this box to search only posting titles"> only search titles</label>
81
+ </td>
82
+ </tr>
83
+ <tr>
84
+ <td align="right" width="1"></td>
85
+ <td></td>
86
+ <td align="left"><label><input type="checkbox" name="hasPic" value="1" checked> has image</label></td>
87
+ </tr>
88
+ </table>
89
+ </form>
90
+ </blockquote>
91
+
92
+
93
+
94
+ <blockquote>
95
+ <table width="100%" summary="">
96
+ <tr>
97
+ <td valign="top"></td>
98
+ <td valign="top" id="messages"></td>
99
+ </tr>
100
+ </table>
101
+
102
+ <div>Sort by:<strong> most recent</strong> <a href="/search/pet?catAbbreviation=pet&amp;hasPic=1&amp;query=kitten&amp;sort=rel">best match</a>
103
+ </div>
104
+
105
+ <h4 style="text-align: center;">
106
+ <span style="float: left;">&nbsp;</span>
107
+ <span style="float: right;">&nbsp;</span>
108
+ <b>Found: 21 Displaying: 1 - 21</b>
109
+
110
+ </h4>
111
+
112
+
113
+
114
+ <!-- sphinx: 0.002661, csd: 0.029722, total: 0.032383 via 15p -->
115
+
116
+ <p> Mar 15 - <a href="/brw/pet/1645427156.html">Adopt a 7 month on kitten- $75</a> - <font size="-1"> (Tamarac)</font> <span class="p"> pic</span></p><p> Mar 15 - <a href="/brw/pet/1645417724.html">Adorable Kitten! Free!!!</a> - <font size="-1"> (Hollywood)</font> <span class="p"> pic</span></p><p> Mar 13 - <a href="/pbc/pet/1642509548.html">KITTENS,5 months, 1 Russian blue, 1 grey &amp; white,vac spy/neu,$35fee ea</a> - <font size="-1"> (Boca Raton)</font> <span class="p"> pic</span></p><p> Mar 13 - <a href="/mdc/pet/1642507025.html">Kitties need a good home </a> - <span class="p"> pic</span></p><p> Mar 13 - <a href="/pbc/pet/1641788349.html">7 week old kittens for adoption</a> - <font size="-1"> (Jupiter)</font> <span class="p"> pic</span></p><p> Mar 12 - <a href="/brw/pet/1641586368.html">Adorable Orange Kitten Free to Good Home</a> - <font size="-1"> (Pompano Beach)</font> <span class="p"> pic</span></p><p> Mar 12 - <a href="/mdc/pet/1641319490.html">7 month old kitten free to good home</a> - <span class="p"> pic</span></p><p> Mar 9 - <a href="/mdc/pet/1636566131.html">FEMALE KITTEN FOR GOOD HOME</a> - <font size="-1"> (Coral Gables)</font> <span class="p"> pic</span></p><p> Mar 4 - <a href="/mdc/pet/1628719960.html">Kitten</a> - <font size="-1"> (Coral Gables)</font> <span class="p"> pic</span></p><p> Mar 4 - <a href="/mdc/pet/1628599344.html">Kitties need a good home</a> - <font size="-1"> (Cutler Bay, FL)</font> <span class="p"> pic</span></p><p> Mar 1 - <a href="/mdc/pet/1624188627.html">Persain Cat And Tabby Cat</a> - <font size="-1"> (Homestead)</font> <span class="p"> pic</span></p><p> Feb 23 - <a href="/mdc/pet/1614259228.html">Tabby female kitten in a parking lot needs your help</a> - <font size="-1"> (Aventura)</font> <span class="p"> pic</span></p><p> Feb 22 - <a href="/brw/pet/1612518373.html">Spring is almost officially here, grow your family, adopt a kitty!</a> - <font size="-1"> (Margate, FL)</font> <span class="p"> pic</span></p><p> Feb 22 - <a href="/brw/pet/1612003336.html">Many adorable kittens for adoption! </a> - <font size="-1"> (Fort Lauderdale)</font> <span class="p"> img</span></p><p> Feb 19 - <a href="/mdc/pet/1607905310.html">2 free cats/kitten to good home</a> - <font size="-1"> (westchester)</font> <span class="p"> pic</span></p><p> Feb 19 - <a href="/brw/pet/1607872920.html">BEAUTIFUL KITTENS</a> - <font size="-1"> (plantation)</font> <span class="p"> pic</span></p><p> Feb 18 - <a href="/brw/pet/1607609174.html">MANY new adorable kittens for good homes!!!</a> - <font size="-1"> (Fort Lauderdale)</font> <span class="p"> img</span></p><p> Feb 16 - <a href="/mdc/pet/1603373139.html">Kitten living in a parking lot needs your help</a> - <font size="-1"> (Aventura)</font> <span class="p"> pic</span></p><p> Feb 16 - <a href="/brw/pet/1603142238.html">BEAUTIFUL 8 WEEK KITTENS</a> - <font size="-1"> (plantation)</font> <span class="p"> pic</span></p><p> Feb 13 - <a href="/pbc/pet/1599172135.html">ORANGE TABBY KITTEN</a> - <font size="-1"> (Delray Beach)</font> <span class="p"> pic</span></p><p> Feb 13 - <a href="/brw/pet/1598811174.html">Lots of kittens to choose from! Pics!!</a> - <font size="-1"> (Fort Lauderdale)</font> <span class="p"> img</span></p><br><div>Sort by:<strong> most recent</strong> <a href="/search/pet?catAbbreviation=pet&amp;hasPic=1&amp;query=kitten&amp;sort=rel">best match</a>
117
+ </div>
118
+
119
+ <h4 style="text-align: center;">
120
+ <span style="float: left;">&nbsp;</span>
121
+ <span style="float: right;">&nbsp;</span>
122
+ <b>Found: 21 Displaying: 1 - 21</b>
123
+
124
+ </h4>
125
+
126
+
127
+
128
+
129
+
130
+ <div id="footer">
131
+ <hr>
132
+ <span id="copy">
133
+ Copyright &copy; 2010 craigslist, inc.<br>
134
+ </span>
135
+ <span class="rss">
136
+ <a class="l" href="/search/pet?query=kitten&amp;catAbbreviation=pet&amp;hasPic=1&amp;format=rss">RSS</a>
137
+ <a href="http://www.craigslist.org/about/rss">(?)</a><br>
138
+ </span>
139
+ </div>
140
+ <br><br>
141
+
142
+ <div id="floater">&nbsp;</div>
143
+
144
+ </blockquote>
145
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery-1.4.2.js"></script>
146
+ <script type="text/javascript" src="http://www.craigslist.org/js/tocs.js"></script>
147
+
148
+ </body>
149
+ </html>
@@ -0,0 +1,769 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html><head>
3
+ <title>tampa bay area arts &amp; crafts classifieds - craigslist</title>
4
+
5
+ <meta name="description" content="craigslist arts &amp; crafts classifieds for tampa bay area ">
6
+ <meta name="keywords" content="tampa bay area arts &amp; crafts craigslist, classifieds, want ads ">
7
+
8
+
9
+
10
+ <link rel=alternate type="application/rss+xml" href="/art/index.rss" title="RSS feed for craigslist | arts &amp; crafts in tampa bay area ">
11
+ <link rel="stylesheet" title="craigslist" href="http://www.craigslist.org/styles/craigslist.css" type="text/css" media="all">
12
+ <link rel="shortcut icon" href="http://www.craigslist.org/favicon.ico" type="image/x-icon">
13
+ </head>
14
+
15
+ <body class="toc">
16
+
17
+ <a name="top"></a>
18
+
19
+ <div class="bchead">
20
+ <span id="ef">
21
+
22
+ <span id="hideImgs">[ <a href="#" onclick="hideImgs();return false;">hide images</a> ]</span>
23
+ <span id="showImgs">[ <a href="#" onclick="showImgs();return false;">show images</a> ]</span>
24
+
25
+ [ <a href="http://www.craigslist.org/about/help/">help</a> ]
26
+ [ <a href="https://post.craigslist.org/tpa/S">post</a> ]</span>
27
+
28
+ <a href="/"> tampa bay craigslist</a> &gt; <a href="/sss/">for sale / wanted</a> &gt; <a href="/art/">arts &amp; crafts</a>
29
+ <div id="satabs"> <b>all tampa bay</b> <a href="/hdo/art/">hernando co</a> <a href="/hil/art/">hillsborough co</a> <a href="/psc/art/">pasco co</a> <a href="/pnl/art/">pinellas co</a></div>
30
+
31
+ </div>
32
+
33
+ <blockquote>
34
+ <form action="/search/art" method="get">
35
+
36
+ <script type="text/javascript"><!--
37
+ var cabb = "art";
38
+ //-->
39
+ </script>
40
+
41
+ <table id="searchform" width="100%" cellpadding="2" summary="">
42
+ <tr>
43
+ <td align="right" width="1">search for:</td>
44
+
45
+ <td colspan="2" width="30%"><input id="query" name="query" size="30" value=""> in:
46
+ <select id="cAbb" name="catAbbreviation">
47
+
48
+ <option value="ccc">all community
49
+
50
+ <option value="eee">all event
51
+
52
+ <option value="sss">all for sale / wanted
53
+ <option disabled value="">--
54
+ <option value="atq"> antiques
55
+ <option value="app"> appliances
56
+ <option value="art" selected> arts &amp; crafts
57
+ <option value="pts"> auto parts
58
+ <option value="bab"> baby &amp; kid stuff
59
+ <option value="bar"> barter
60
+ <option value="bik"> bicycles
61
+ <option value="boa"> boats
62
+ <option value="bks"> books
63
+ <option value="bfs"> business
64
+ <option value="ctd"> cars &amp; trucks - by dealer
65
+ <option value="cto"> cars &amp; trucks - by owner
66
+ <option value="cta"> cars+trucks
67
+ <option value="emd"> cds / dvds / vhs
68
+ <option value="mob"> cell phones
69
+ <option value="clo"> clothing
70
+ <option value="clt"> collectibles
71
+ <option value="sys"> computers &amp; tech
72
+ <option value="ele"> electronics
73
+ <option value="grd"> farm &amp; garden
74
+ <option value="zip"> free stuff
75
+ <option value="fua"> furniture
76
+ <option value="fud"> furniture - by dealer
77
+ <option value="fuo"> furniture - by owner
78
+ <option value="gms"> garage sales
79
+ <option value="for"> general
80
+ <option value="hab"> health and beauty
81
+ <option value="hsh"> household
82
+ <option value="wan"> items wanted
83
+ <option value="jwl"> jewelry
84
+ <option value="mat"> materials
85
+ <option value="mcy"> motorcycles/scooters
86
+ <option value="msg"> musical instruments
87
+ <option value="pho"> photo/video
88
+ <option value="rvs"> recreational vehicles
89
+ <option value="spo"> sporting goods
90
+ <option value="tix"> tickets
91
+ <option value="tls"> tools
92
+ <option value="tag"> toys &amp; games
93
+ <option value="vgm"> video gaming
94
+ <option disabled value="">--
95
+
96
+ <option value="ggg">all gigs
97
+
98
+ <option value="hhh">all housing
99
+
100
+ <option value="jjj">all jobs
101
+
102
+ <option value="ppp">all personals
103
+
104
+ <option value="res">all resume
105
+
106
+ <option value="bbb">all services offered
107
+ </select>
108
+ </td>
109
+
110
+ <td>
111
+ <label><input type="checkbox" name="srchType" value="T"
112
+ title="check this box to search only posting titles"> only search titles</label>
113
+ <input type="submit" value="Search">
114
+ </td>
115
+ </tr>
116
+
117
+
118
+ <tr>
119
+ <td align="right" width="1">price:</td>
120
+ <td><input name="minAsk" class="min" size="6" value="">&nbsp;<input name="maxAsk" class="max" size="6" value="">&nbsp;</td>
121
+ <td id="hoodpicker"></td>
122
+ <td align="left"><label><input type="checkbox" name="hasPic" value="1"> has image</label></td>
123
+ </tr>
124
+ </table>
125
+ </form>
126
+ </blockquote>
127
+
128
+ <span id="showPics"></span><span id="hidePics"></span>
129
+
130
+ <blockquote>
131
+ <table width="100%" summary="">
132
+ <tr>
133
+ <td valign="top">[ Sat, 17 Apr 13:35:25 ]</td>
134
+ <td valign="top" id="messages"><span class="hl"> [ <a href="/about/prohibited.items">partial list of prohibited items</a> ] </span> <span class="hl"> [ <a href="http://www.craigslist.org/about/recalled_items">avoid recalled items</a> ] </span> <span class="hl"> [ <b><a href="/about/safety">PERSONAL SAFETY TIPS</a></b> ] </span> <span class="hl"> [ <b><a href="/about/scams">AVOIDING SCAMS &amp; FRAUD</a></b> ] </span> <span class="hl"> [<a href="/cgi-bin/success.stories.cgi">success story?</a>]</span> </td>
135
+ </tr>
136
+ </table>
137
+
138
+ <h4>Sat Apr 17</h4>
139
+
140
+ <p class="row">
141
+ <a href="http://tampa.craigslist.org/hdo/art/1696781350.html"><span class="ih" id="images:3nd3p53o95U15X65R3a4hfeb2c08d5ef81a69.jpg"></span></a>
142
+ <a href="http://tampa.craigslist.org/hdo/art/1696781350.html"> Art Directly for Sale from the Artist </a> -
143
+ <span class="p"> pic</span><br class="c">
144
+ </p>
145
+
146
+ <p class="row">
147
+ <a href="http://tampa.craigslist.org/hil/art/1696766257.html"><span class="ih" id="images:3kd3mf3p75Y45Q45U1a4he9d14397487412fb.jpg"></span></a>
148
+ <a href="http://tampa.craigslist.org/hil/art/1696766257.html">Wall Art, Contemporary Abstract by Vista Gallories</a> -
149
+ $199<font size="-1"> (Lutz)</font> <span class="p"> pic</span><br class="c">
150
+ </p>
151
+
152
+ <p class="row">
153
+ <a href="http://tampa.craigslist.org/pnl/art/1696669348.html"><span class="ih" id="images:3ne3mc3o15Y45Z15X2a4h95c7485a241f1634.jpg"></span></a>
154
+ <a href="http://tampa.craigslist.org/pnl/art/1696669348.html">Gary George "Darice" Giclee Semi Nude Woman COA NEW</a> -
155
+ $150<font size="-1"> (Palm Harbor)</font> <span class="p"> pic</span><br class="c">
156
+ </p>
157
+
158
+ <p class="row">
159
+ <a href="http://tampa.craigslist.org/psc/art/1696647129.html"><span class="ih" id="images:3nf3k23lc5O05V15Q5a4hd9bc407831151f81.jpg"></span></a>
160
+ <a href="http://tampa.craigslist.org/psc/art/1696647129.html">electric clock kits</a> -
161
+ $25<font size="-1"> (Dade City)</font> <span class="p"> pic</span><br class="c">
162
+ </p>
163
+
164
+ <p class="row">
165
+ <a href="http://tampa.craigslist.org/pnl/art/1696618047.html"><span class="ih" id="images:3n73m53l75O35T25U3a4hc8db4abab3011665.jpg"></span></a>
166
+ <a href="http://tampa.craigslist.org/pnl/art/1696618047.html">Artificial Bonsai arrangements (3)</a> -
167
+ $40<font size="-1"> (St. Petersburg)</font> <span class="p"> pic</span><br class="c">
168
+ </p>
169
+
170
+ <p class="row">
171
+ <a href="http://tampa.craigslist.org/hil/art/1696610492.html"><span class="ih" id="images:3n33mf3lc5V55Z25S6a4h518e32ac75d71a05.jpg"></span></a>
172
+ <a href="http://tampa.craigslist.org/hil/art/1696610492.html">Wall Canvass</a> -
173
+ $400<font size="-1"> (Brandon)</font> <span class="p"> pic</span><br class="c">
174
+ </p>
175
+
176
+ <p class="row">
177
+ <a href="http://tampa.craigslist.org/pnl/art/1696610622.html"><span class="ih" ></span></a>
178
+ <a href="http://tampa.craigslist.org/pnl/art/1696610622.html">seeking drafting table</a> -
179
+ $50<font size="-1"> (pinellas county)</font><br class="c">
180
+ </p>
181
+
182
+ <p class="row">
183
+ <a href="http://tampa.craigslist.org/psc/art/1696531120.html"><span class="ih" ></span></a>
184
+ <a href="http://tampa.craigslist.org/psc/art/1696531120.html">great electrical air compressor LIKE NEW</a> -
185
+ $115<font size="-1"> (port richey fl.)</font><br class="c">
186
+ </p>
187
+
188
+ <p class="row">
189
+ <a href="http://tampa.craigslist.org/hil/art/1696526921.html"><span class="ih" id="images:3k13od3p65V65X45S0a4hb05bb1b3871a1243.jpg"></span></a>
190
+ <a href="http://tampa.craigslist.org/hil/art/1696526921.html">Mannequin Male Full Torso Display Form</a> -
191
+ $65<font size="-1"> (South Tampa)</font> <span class="p"> pic</span><br class="c">
192
+ </p>
193
+
194
+ <p class="row">
195
+ <a href="http://tampa.craigslist.org/psc/art/1696513891.html"><span class="ih" ></span></a>
196
+ <a href="http://tampa.craigslist.org/psc/art/1696513891.html">CRAB NETS 12 X12 X7</a> -
197
+ $8<font size="-1"> (port richey fl)</font><br class="c">
198
+ </p>
199
+
200
+ <p class="row">
201
+ <a href="http://tampa.craigslist.org/psc/art/1696497700.html"><span class="ih" id="images:3n43m43l55V25Q55R5a4h45726d49237e17cb.jpg"></span></a>
202
+ <a href="http://tampa.craigslist.org/psc/art/1696497700.html">Hundreds of Loose Beads from old Jewelry &amp;newer Seed Beads arts crafts</a> -
203
+ $14<font size="-1"> (new port richey)</font> <span class="p"> pic</span><br class="c">
204
+ </p>
205
+
206
+ <p class="row">
207
+ <a href="http://tampa.craigslist.org/psc/art/1696503851.html"><span class="ih" id="images:3k83pe3l35O35Y15Z5a4hae9985b70813125e.jpg"></span></a>
208
+ <a href="http://tampa.craigslist.org/psc/art/1696503851.html">HUNDREDS OF LOOSE BEADS VARIETY FOR ARTS CRAFTS MAKING JEWELRY </a> -
209
+ $12<font size="-1"> (npr)</font> <span class="p"> pic</span><br class="c">
210
+ </p>
211
+
212
+ <p class="row">
213
+ <a href="http://tampa.craigslist.org/psc/art/1696499215.html"><span class="ih" ></span></a>
214
+ <a href="http://tampa.craigslist.org/psc/art/1696499215.html">consolidated b-24d liberator</a> -
215
+ $15<font size="-1"> (west pasco)</font><br class="c">
216
+ </p>
217
+
218
+ <p class="row">
219
+ <a href="http://tampa.craigslist.org/psc/art/1696491136.html"><span class="ih" ></span></a>
220
+ <a href="http://tampa.craigslist.org/psc/art/1696491136.html">nort american p-51b mustang</a> -
221
+ $25<font size="-1"> (west pasco)</font><br class="c">
222
+ </p>
223
+
224
+ <p class="row">
225
+ <a href="http://tampa.craigslist.org/psc/art/1696487149.html"><span class="ih" ></span></a>
226
+ <a href="http://tampa.craigslist.org/psc/art/1696487149.html">spitfire mk.ixc kenley wing</a> -
227
+ $25<font size="-1"> (west pasco)</font><br class="c">
228
+ </p>
229
+
230
+ <p class="row">
231
+ <a href="http://tampa.craigslist.org/psc/art/1696482244.html"><span class="ih" ></span></a>
232
+ <a href="http://tampa.craigslist.org/psc/art/1696482244.html">republic p-47d thunderbolt bubbletop</a> -
233
+ $25<font size="-1"> (west pasco)</font><br class="c">
234
+ </p>
235
+
236
+ <p class="row">
237
+ <a href="http://tampa.craigslist.org/hil/art/1696481997.html"><span class="ih" id="images:3n83o83pc5Y05Q55Z1a4h8f103c93469c14f8.jpg"></span></a>
238
+ <a href="http://tampa.craigslist.org/hil/art/1696481997.html">Artistic &amp; Commercial Mannequin Female Torso Ladies Form</a> -
239
+ $75<font size="-1"> (South Tampa)</font> <span class="p"> pic</span><br class="c">
240
+ </p>
241
+
242
+ <p class="row">
243
+ <a href="http://tampa.craigslist.org/pnl/art/1696479425.html"><span class="ih" id="images:3m33p33ld5T55P55R5a4ha8dc920ada3d1c42.jpg"></span></a>
244
+ <a href="http://tampa.craigslist.org/pnl/art/1696479425.html">Start your own Bath &amp; Beauty company</a> -
245
+ $450<font size="-1"> (St Pete/Lealman)</font> <span class="p"> pic</span><br class="c">
246
+ </p>
247
+
248
+ <p class="row">
249
+ <a href="http://tampa.craigslist.org/psc/art/1696478021.html"><span class="ih" ></span></a>
250
+ <a href="http://tampa.craigslist.org/psc/art/1696478021.html">hurricane mk.2 eagle squadron </a> -
251
+ $25<font size="-1"> (west pasco)</font><br class="c">
252
+ </p>
253
+
254
+ <p class="row">
255
+ <a href="http://tampa.craigslist.org/psc/art/1696476700.html"><span class="ih" id="images:3m03p93lc5T65W45S6a4h1121775445e51fc3.jpg"></span></a>
256
+ <a href="http://tampa.craigslist.org/psc/art/1696476700.html">HUGE Lot Iron-Ons Appliques-Craft Decals-Fabric-Holidays, Looney Tunes</a> -
257
+ $20<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
258
+ </p>
259
+
260
+ <p class="row">
261
+ <a href="http://tampa.craigslist.org/psc/art/1696473972.html"><span class="ih" ></span></a>
262
+ <a href="http://tampa.craigslist.org/psc/art/1696473972.html">typhoon mk.ib</a> -
263
+ $25<font size="-1"> (west pasco)</font><br class="c">
264
+ </p>
265
+
266
+ <p class="row">
267
+ <a href="http://tampa.craigslist.org/psc/art/1696472085.html"><span class="ih" id="images:3k63pf3lc5V15Z55S1a4h7d3d6ce760ed1517.jpg"></span></a>
268
+ <a href="http://tampa.craigslist.org/psc/art/1696472085.html">Beautiful Handmade Sea Shell Candles - Great Gift Ideas</a> -
269
+ $2<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
270
+ </p>
271
+
272
+ <p class="row">
273
+ <a href="http://tampa.craigslist.org/psc/art/1696470870.html"><span class="ih" ></span></a>
274
+ <a href="http://tampa.craigslist.org/psc/art/1696470870.html">bristol beaufighter mk.vi</a> -
275
+ $25<font size="-1"> (west pasco)</font><br class="c">
276
+ </p>
277
+
278
+ <p class="row">
279
+ <a href="http://tampa.craigslist.org/psc/art/1696467383.html"><span class="ih" ></span></a>
280
+ <a href="http://tampa.craigslist.org/psc/art/1696467383.html">hawker tempest mk.v </a> -
281
+ $25<font size="-1"> (west pasco)</font><br class="c">
282
+ </p>
283
+
284
+ <p class="row">
285
+ <a href="http://tampa.craigslist.org/psc/art/1696463534.html"><span class="ih" ></span></a>
286
+ <a href="http://tampa.craigslist.org/psc/art/1696463534.html">gloster meteor f.1.v.1 </a> -
287
+ $25<font size="-1"> (west pasco)</font><br class="c">
288
+ </p>
289
+
290
+ <p class="row">
291
+ <a href="http://tampa.craigslist.org/pnl/art/1696457508.html"><span class="ih" ></span></a>
292
+ <a href="http://tampa.craigslist.org/pnl/art/1696457508.html">Painted art picture with frame 43"L X 31"H</a> -
293
+ $110<font size="-1"> (Clearwater )</font> <span class="p"> img</span><br class="c">
294
+ </p>
295
+
296
+ <p class="row">
297
+ <a href="http://tampa.craigslist.org/psc/art/1696457000.html"><span class="ih" ></span></a>
298
+ <a href="http://tampa.craigslist.org/psc/art/1696457000.html">messerschmitt me 410b-2/u4</a> -
299
+ $20<font size="-1"> (west pasco)</font><br class="c">
300
+ </p>
301
+
302
+ <p class="row">
303
+ <a href="http://tampa.craigslist.org/psc/art/1696456248.html"><span class="ih" id="images:3nd3m03l95Y35T55X1a4h01cad6a8bd4d1c67.jpg"></span></a>
304
+ <a href="http://tampa.craigslist.org/psc/art/1696456248.html">Matching Set 4 Wild Cat Prints Framed in Gold-Cheetah, Leopard, Lion</a> -
305
+ $25<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
306
+ </p>
307
+
308
+ <p class="row">
309
+ <a href="http://tampa.craigslist.org/psc/art/1696454151.html"><span class="ih" id="images:3k93o63l35Z65W05R4a4he08069ce694210da.jpg"></span></a>
310
+ <a href="http://tampa.craigslist.org/psc/art/1696454151.html">CATS IN PAJAMAS FRAMED PRINT-SIGNED-KATHRYN RAMSEUR GLICK 1995-NUMBERD</a> -
311
+ $20<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
312
+ </p>
313
+
314
+ <p class="row">
315
+ <a href="http://tampa.craigslist.org/psc/art/1696453921.html"><span class="ih" id="images:3nb3m53p35Y45T55S5a4h94625c67b6dd13b7.jpg"></span></a>
316
+ <a href="http://tampa.craigslist.org/psc/art/1696453921.html">4 Needlecraft Books</a> -
317
+ $5<font size="-1"> (Port Richey)</font> <span class="p"> pic</span><br class="c">
318
+ </p>
319
+
320
+ <p class="row">
321
+ <a href="http://tampa.craigslist.org/psc/art/1696452019.html"><span class="ih" id="images:3m93oc3la5Y25Q45W3a4h95b955a690d01dfb.jpg"></span></a>
322
+ <a href="http://tampa.craigslist.org/psc/art/1696452019.html">UNIQUE HIDDEN ANGEL PRINT-MATTED &amp; FRAMED Retails $89.99-Signed-Ocampa</a> -
323
+ $30<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
324
+ </p>
325
+
326
+ <p class="row">
327
+ <a href="http://tampa.craigslist.org/psc/art/1696449024.html"><span class="ih" ></span></a>
328
+ <a href="http://tampa.craigslist.org/psc/art/1696449024.html">royal air force hawker hurricane</a> -
329
+ $20<font size="-1"> (west pasco)</font><br class="c">
330
+ </p>
331
+
332
+ <p class="row">
333
+ <a href="http://tampa.craigslist.org/psc/art/1696448753.html"><span class="ih" id="images:3n53k53o95O05P15S5a4hf2be81ca39651e07.jpg"></span></a>
334
+ <a href="http://tampa.craigslist.org/psc/art/1696448753.html">UNIQUE LARGE PRINT-HANDS OF TIME-BY OCTAVIO - RETAILS $139.00</a> -
335
+ $40<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
336
+ </p>
337
+
338
+ <p class="row">
339
+ <a href="http://tampa.craigslist.org/psc/art/1696444807.html"><span class="ih" id="images:3m73o53pa5Q55Z45T5a4h790bd3db1d8011a8.jpg"></span></a>
340
+ <a href="http://tampa.craigslist.org/psc/art/1696444807.html">LARGE COBBLESTONE FRAMED PRINT LANDSCAPE BY HAILS - SIGNED 1996</a> -
341
+ $40<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
342
+ </p>
343
+
344
+ <p class="row">
345
+ <a href="http://tampa.craigslist.org/psc/art/1696444756.html"><span class="ih" ></span></a>
346
+ <a href="http://tampa.craigslist.org/psc/art/1696444756.html">zero fighier </a> -
347
+ $100<font size="-1"> (west pasco)</font><br class="c">
348
+ </p>
349
+
350
+ <p class="row">
351
+ <a href="http://tampa.craigslist.org/pnl/art/1696438939.html"><span class="ih" id="images:3n73mf3la5O25Y05Q2a4he5dd1c94f7b91026.jpg"></span></a>
352
+ <a href="http://tampa.craigslist.org/pnl/art/1696438939.html">UNIQUE 1 OF A KIND -HANDMADE JEWELRY</a> -
353
+ <font size="-1"> (FL)</font> <span class="p"> pic</span><br class="c">
354
+ </p>
355
+
356
+ <p class="row">
357
+ <a href="http://tampa.craigslist.org/pnl/art/1696438132.html"><span class="ih" id="images:3k33o93pb5O05P25X2a4h2ccab5c8a4f01707.jpg"></span></a>
358
+ <a href="http://tampa.craigslist.org/pnl/art/1696438132.html">YARN YARN YARN</a> -
359
+ $20<font size="-1"> (Lealman (N. St Petersburg))</font> <span class="p"> pic</span><br class="c">
360
+ </p>
361
+
362
+ <p class="row">
363
+ <a href="http://tampa.craigslist.org/hil/art/1696400092.html"><span class="ih" id="images:3nf3oe3le5O05V55X0a4hcec0043ace881d4a.jpg"></span></a>
364
+ <a href="http://tampa.craigslist.org/hil/art/1696400092.html">2012 Original Paintings</a> -
365
+ $45<font size="-1"> (riverview)</font> <span class="p"> pic</span><br class="c">
366
+ </p>
367
+
368
+ <p class="row">
369
+ <a href="http://tampa.craigslist.org/pnl/art/1696388701.html"><span class="ih" id="images:3of3p23le5V65W05S5a4hc8dd1a16a21b11c5.jpg"></span></a>
370
+ <a href="http://tampa.craigslist.org/pnl/art/1696388701.html">picture with birds songs$10</a> -
371
+ $10<font size="-1"> (clearwater)</font> <span class="p"> pic</span><br class="c">
372
+ </p>
373
+
374
+ <p class="row">
375
+ <a href="http://tampa.craigslist.org/hil/art/1696386460.html"><span class="ih" id="images:3k03p83l15Q35U35S4a4hf2871219429f1f3f.jpg"></span></a>
376
+ <a href="http://tampa.craigslist.org/hil/art/1696386460.html">Modern original Still Life painting SIGNED</a> -
377
+ $30<font size="-1"> (Tampa/S. Seminole Hgts.)</font> <span class="p"> pic</span><br class="c">
378
+ </p>
379
+
380
+ <p class="row">
381
+ <a href="http://tampa.craigslist.org/psc/art/1696367763.html"><span class="ih" id="images:3n13k03l45V25X65R6a4hee30c50a1cd71252.jpg"></span></a>
382
+ <a href="http://tampa.craigslist.org/psc/art/1696367763.html">afghans</a> -
383
+ $25<font size="-1"> (pasco)</font> <span class="p"> pic</span><br class="c">
384
+ </p>
385
+
386
+ <p class="row">
387
+ <a href="http://tampa.craigslist.org/hil/art/1696358713.html"><span class="ih" id="images:3n93m13l65U65X15R5a4hed10cdf3c7fa1941.jpg"></span></a>
388
+ <a href="http://tampa.craigslist.org/hil/art/1696358713.html">Teamwork Print-Inspirational</a> -
389
+ $5<font size="-1"> (Lutz)</font> <span class="p"> pic</span><br class="c">
390
+ </p>
391
+
392
+ <p class="row">
393
+ <a href="http://tampa.craigslist.org/hil/art/1696329989.html"><span class="ih" ></span></a>
394
+ <a href="http://tampa.craigslist.org/hil/art/1696329989.html">Large number of ceramic molds for sale at Reasonable prices!</a> -
395
+ <font size="-1"> (Mango/Tampa area)</font><br class="c">
396
+ </p>
397
+
398
+ <p class="row">
399
+ <a href="http://tampa.craigslist.org/pnl/art/1696320175.html"><span class="ih" ></span></a>
400
+ <a href="http://tampa.craigslist.org/pnl/art/1696320175.html">1982 Knitting Collection</a> -
401
+ $30<font size="-1"> (clearwater)</font><br class="c">
402
+ </p>
403
+
404
+ <p class="row">
405
+ <a href="http://tampa.craigslist.org/hdo/art/1696305027.html"><span class="ih" ></span></a>
406
+ <a href="http://tampa.craigslist.org/hdo/art/1696305027.html">Bell Small Wilton Cake Pan</a> -
407
+ $3<font size="-1"> (Brooksville FL 34602)</font> <span class="p"> img</span><br class="c">
408
+ </p>
409
+
410
+ <p class="row">
411
+ <a href="http://tampa.craigslist.org/hdo/art/1696304646.html"><span class="ih" ></span></a>
412
+ <a href="http://tampa.craigslist.org/hdo/art/1696304646.html">Winnie The Pooh Wilton Cake Pan</a> -
413
+ $5<font size="-1"> (Brooksville FL 34602)</font> <span class="p"> img</span><br class="c">
414
+ </p>
415
+
416
+ <p class="row">
417
+ <a href="http://tampa.craigslist.org/hdo/art/1696303843.html"><span class="ih" ></span></a>
418
+ <a href="http://tampa.craigslist.org/hdo/art/1696303843.html">Holly Hobbie Wilton Cake Pan</a> -
419
+ $5<font size="-1"> (Brooksville FL 34602)</font> <span class="p"> img</span><br class="c">
420
+ </p>
421
+
422
+ <p class="row">
423
+ <a href="http://tampa.craigslist.org/hdo/art/1696292713.html"><span class="ih" ></span></a>
424
+ <a href="http://tampa.craigslist.org/hdo/art/1696292713.html">Quilt~ Hand Crafted~Beautiful hand crafted quilted wall hanging</a> -
425
+ $30<font size="-1"> (Brooksville FL 34602)</font> <span class="p"> img</span><br class="c">
426
+ </p>
427
+
428
+ <p class="row">
429
+ <a href="http://tampa.craigslist.org/hil/art/1696267596.html"><span class="ih" id="images:3k03o23p05O05Y55X3a4h88cd49d4a297100b.jpg"></span></a>
430
+ <a href="http://tampa.craigslist.org/hil/art/1696267596.html">Pretty Pictures</a> -
431
+ <font size="-1"> (Tampa)</font> <span class="p"> pic</span><br class="c">
432
+ </p>
433
+
434
+ <p class="row">
435
+ <a href="http://tampa.craigslist.org/psc/art/1696247545.html"><span class="ih" ></span></a>
436
+ <a href="http://tampa.craigslist.org/psc/art/1696247545.html">messerschmitt bf 109d </a> -
437
+ $20<font size="-1"> (west pasco)</font><br class="c">
438
+ </p>
439
+
440
+ <p class="row">
441
+ <a href="http://tampa.craigslist.org/psc/art/1696247114.html"><span class="ih" ></span></a>
442
+ <a href="http://tampa.craigslist.org/psc/art/1696247114.html">douglas a-20 g havoc</a> -
443
+ $20<font size="-1"> (west pasco)</font><br class="c">
444
+ </p>
445
+
446
+ <p class="row">
447
+ <a href="http://tampa.craigslist.org/psc/art/1696246653.html"><span class="ih" ></span></a>
448
+ <a href="http://tampa.craigslist.org/psc/art/1696246653.html">me262a-1a/u3 reconnaissance </a> -
449
+ $20<font size="-1"> (west pasco)</font><br class="c">
450
+ </p>
451
+
452
+ <p class="row">
453
+ <a href="http://tampa.craigslist.org/psc/art/1696246149.html"><span class="ih" ></span></a>
454
+ <a href="http://tampa.craigslist.org/psc/art/1696246149.html">p-36 pearl harbor defender</a> -
455
+ $20<font size="-1"> (west pasco)</font><br class="c">
456
+ </p>
457
+
458
+ <p class="row">
459
+ <a href="http://tampa.craigslist.org/psc/art/1696245484.html"><span class="ih" ></span></a>
460
+ <a href="http://tampa.craigslist.org/psc/art/1696245484.html">spitfire mk.xivc </a> -
461
+ $20<font size="-1"> (west pasco)</font><br class="c">
462
+ </p>
463
+
464
+ <p class="row">
465
+ <a href="http://tampa.craigslist.org/pnl/art/1696219068.html"><span class="ih" ></span></a>
466
+ <a href="http://tampa.craigslist.org/pnl/art/1696219068.html">ART KIT</a> -
467
+ $45<font size="-1"> (LARGO)</font> <span class="p"> img</span><br class="c">
468
+ </p>
469
+
470
+ <p class="row">
471
+ <a href="http://tampa.craigslist.org/pnl/art/1696130415.html"><span class="ih" ></span></a>
472
+ <a href="http://tampa.craigslist.org/pnl/art/1696130415.html">Unique Recycled Glass Melted Bottle Cheese Trays and dishes</a> -
473
+ <font size="-1"> (Saint Petersburg)</font> <span class="p"> img</span><br class="c">
474
+ </p>
475
+ <h4>Fri Apr 16</h4>
476
+
477
+ <p class="row">
478
+ <a href="http://tampa.craigslist.org/psc/art/1696081784.html"><span class="ih" ></span></a>
479
+ <a href="http://tampa.craigslist.org/psc/art/1696081784.html">T-SHIRT HEAT PRESS</a> -
480
+ $325<font size="-1"> (NEWPORT RICHEY)</font><br class="c">
481
+ </p>
482
+
483
+ <p class="row">
484
+ <a href="http://tampa.craigslist.org/hdo/art/1696046653.html"><span class="ih" id="images:3nc3m33of5V45P55R4a4g1706c420f6fd144f.jpg"></span></a>
485
+ <a href="http://tampa.craigslist.org/hdo/art/1696046653.html">Metal Alligator Wall Art With Neon Light</a> -
486
+ $90<font size="-1"> (crystal River)</font> <span class="p"> pic</span><br class="c">
487
+ </p>
488
+
489
+ <p class="row">
490
+ <a href="http://tampa.craigslist.org/pnl/art/1695974535.html"><span class="ih" id="images:3n53kd3mc5P55X65R3a4gd69ae6e16a401edb.jpg"></span></a>
491
+ <a href="http://tampa.craigslist.org/pnl/art/1695974535.html">SOLAR GARDEN DECO LITES</a> -
492
+ $20<font size="-1"> (ST PETE)</font> <span class="p"> pic</span><br class="c">
493
+ </p>
494
+
495
+ <p class="row">
496
+ <a href="http://tampa.craigslist.org/psc/art/1695915272.html"><span class="ih" id="images:3n53o73l05T65U15S5a4gd5caec6d078f1570.jpg"></span></a>
497
+ <a href="http://tampa.craigslist.org/psc/art/1695915272.html">POMPELL CHEETAH FRAMED ART PRINT &amp; MATCHING THROW PILLOWS 35 X 27 </a> -
498
+ $25<font size="-1"> (Holiday, FL)</font> <span class="p"> pic</span><br class="c">
499
+ </p>
500
+
501
+ <p class="row">
502
+ <a href="http://tampa.craigslist.org/pnl/art/1695900144.html"><span class="ih" id="images:3n03oc3lb5W15P05X0a4g016496d055361463.jpg"></span></a>
503
+ <a href="http://tampa.craigslist.org/pnl/art/1695900144.html">"YOU CAN DRAW" 8 BOOKS IN 1 </a> -
504
+ $10<font size="-1"> (PINELLAS )</font> <span class="p"> pic</span><br class="c">
505
+ </p>
506
+
507
+ <p class="row">
508
+ <a href="http://tampa.craigslist.org/pnl/art/1695890137.html"><span class="ih" id="images:3ma3o33l25W55U65P6a4g64a20d2412c1126c.jpg"></span></a>
509
+ <a href="http://tampa.craigslist.org/pnl/art/1695890137.html">ROSEART SMART 3 IN 1 PORTFOLIO </a> -
510
+ $12<font size="-1"> (PINELLAS )</font> <span class="p"> pic</span><br class="c">
511
+ </p>
512
+
513
+ <p class="row">
514
+ <a href="http://tampa.craigslist.org/psc/art/1695769173.html"><span class="ih" ></span></a>
515
+ <a href="http://tampa.craigslist.org/psc/art/1695769173.html">art supplies</a> -
516
+ $1<font size="-1"> (Meadow Pointe)</font><br class="c">
517
+ </p>
518
+
519
+ <p class="row">
520
+ <a href="http://tampa.craigslist.org/pnl/art/1695760615.html"><span class="ih" ></span></a>
521
+ <a href="http://tampa.craigslist.org/pnl/art/1695760615.html">ZINC OXIDE</a> -
522
+ $2560<font size="-1"> (420 22nd St. South St. Petersburg)</font><br class="c">
523
+ </p>
524
+
525
+ <p class="row">
526
+ <a href="http://tampa.craigslist.org/pnl/art/1694647896.html"><span class="ih" ></span></a>
527
+ <a href="http://tampa.craigslist.org/pnl/art/1694647896.html">Wood Veneer</a> -
528
+ $250<font size="-1"> (Clearwater)</font><br class="c">
529
+ </p>
530
+
531
+ <p class="row">
532
+ <a href="http://tampa.craigslist.org/hdo/art/1695671616.html"><span class="ih" ></span></a>
533
+ <a href="http://tampa.craigslist.org/hdo/art/1695671616.html">Scrapbook magazines</a> -
534
+ $5<font size="-1"> (34608)</font><br class="c">
535
+ </p>
536
+
537
+ <p class="row">
538
+ <a href="http://tampa.craigslist.org/pnl/art/1695665275.html"><span class="ih" id="images:3nc3ka3o55T05U05R3a4g69905062e5f113f0.jpg"></span></a>
539
+ <a href="http://tampa.craigslist.org/pnl/art/1695665275.html">henri plisson fine art</a> -
540
+ $2500<font size="-1"> (pinellas county)</font> <span class="p"> pic</span><br class="c">
541
+ </p>
542
+
543
+ <p class="row">
544
+ <a href="http://tampa.craigslist.org/pnl/art/1695590830.html"><span class="ih" id="images:3n63p73o95O45V05Q2a4g85376d844ab7156e.jpg"></span></a>
545
+ <a href="http://tampa.craigslist.org/pnl/art/1695590830.html">Beautiful brand new bronze Fountain</a> -
546
+ $8999<font size="-1"> (Tarpon Springs)</font> <span class="p"> pic</span><br class="c">
547
+ </p>
548
+
549
+ <p class="row">
550
+ <a href="http://tampa.craigslist.org/hil/art/1695521966.html"><span class="ih" ></span></a>
551
+ <a href="http://tampa.craigslist.org/hil/art/1695521966.html">Contemporary fine arts and quality handmade crafts</a> -
552
+ <br class="c">
553
+ </p>
554
+
555
+ <p class="row">
556
+ <a href="http://tampa.craigslist.org/psc/art/1695499350.html"><span class="ih" ></span></a>
557
+ <a href="http://tampa.craigslist.org/psc/art/1695499350.html">p-61 black widow</a> -
558
+ $10<br class="c">
559
+ </p>
560
+
561
+ <p class="row">
562
+ <a href="http://tampa.craigslist.org/pnl/art/1695496480.html"><span class="ih" id="images:3k63m53p85Y35T55Q1a4ga1b5177f193d1e0a.jpg"></span></a>
563
+ <a href="http://tampa.craigslist.org/pnl/art/1695496480.html">New Abstract Oil Paintings for Sale - Made in USA!</a> -
564
+ <span class="p"> pic&nbsp;img</span><br class="c">
565
+ </p>
566
+
567
+ <p class="row">
568
+ <a href="http://tampa.craigslist.org/pnl/art/1695461112.html"><span class="ih" id="images:3n43o03l75V55Y05T5a4gf2ceb551c1cb1430.jpg"></span></a>
569
+ <a href="http://tampa.craigslist.org/pnl/art/1695461112.html">Fun Stamps</a> -
570
+ $5<font size="-1"> (Largo)</font> <span class="p"> pic</span><br class="c">
571
+ </p>
572
+
573
+ <p class="row">
574
+ <a href="http://tampa.craigslist.org/pnl/art/1695388351.html"><span class="ih" ></span></a>
575
+ <a href="http://tampa.craigslist.org/pnl/art/1695388351.html">For Sale - Salvador Dali Print - Lincoln in Dalivision</a> -
576
+ $20<font size="-1"> (St.Pete)</font> <span class="p"> img</span><br class="c">
577
+ </p>
578
+
579
+ <p class="row">
580
+ <a href="http://tampa.craigslist.org/pnl/art/1695385750.html"><span class="ih" ></span></a>
581
+ <a href="http://tampa.craigslist.org/pnl/art/1695385750.html">For Sale Print on Canvas Gone with the Wind</a> -
582
+ $30<font size="-1"> (St.Pete)</font> <span class="p"> img</span><br class="c">
583
+ </p>
584
+
585
+ <p class="row">
586
+ <a href="http://tampa.craigslist.org/pnl/art/1695380331.html"><span class="ih" ></span></a>
587
+ <a href="http://tampa.craigslist.org/pnl/art/1695380331.html">For Sale - Two Framed Egyptian Prints on Papyrus</a> -
588
+ $65<font size="-1"> (St.Pete)</font> <span class="p"> img</span><br class="c">
589
+ </p>
590
+
591
+ <p class="row">
592
+ <a href="http://tampa.craigslist.org/hil/art/1695366558.html"><span class="ih" ></span></a>
593
+ <a href="http://tampa.craigslist.org/hil/art/1695366558.html">4/16 and 4/17 Gallery art unframed - gallery closed</a> -
594
+ $510<font size="-1"> (North Tampa/Odessa)</font><br class="c">
595
+ </p>
596
+
597
+ <p class="row">
598
+ <a href="http://tampa.craigslist.org/hil/art/1695355240.html"><span class="ih" ></span></a>
599
+ <a href="http://tampa.craigslist.org/hil/art/1695355240.html">Sewing patterns TONS 4/16 and 4/17</a> -
600
+ $13<font size="-1"> (Odessa/North Tampa)</font><br class="c">
601
+ </p>
602
+
603
+ <p class="row">
604
+ <a href="http://tampa.craigslist.org/pnl/art/1695349614.html"><span class="ih" ></span></a>
605
+ <a href="http://tampa.craigslist.org/pnl/art/1695349614.html">For Sale 4 panel Asian folding Art </a> -
606
+ $35<font size="-1"> (St.Pete)</font> <span class="p"> img</span><br class="c">
607
+ </p>
608
+
609
+ <p class="row">
610
+ <a href="http://tampa.craigslist.org/hil/art/1695289307.html"><span class="ih" id="images:3md3o43lb5O35T05U6a4g7b279e70a1751355.jpg"></span></a>
611
+ <a href="http://tampa.craigslist.org/hil/art/1695289307.html">@@@ Original Artwork on Print &amp; signed</a> -
612
+ <font size="-1"> (Tampa/all over)</font> <span class="p"> pic</span><br class="c">
613
+ </p>
614
+
615
+ <p class="row">
616
+ <a href="http://tampa.craigslist.org/pnl/art/1695286864.html"><span class="ih" id="images:3ka3p13lf5Y25P15R2a4gd492c3b6baef18ea.jpg"></span></a>
617
+ <a href="http://tampa.craigslist.org/pnl/art/1695286864.html">Three Moai Tikis </a> -
618
+ $65<font size="-1"> (Safety Harbor)</font> <span class="p"> pic</span><br class="c">
619
+ </p>
620
+
621
+ <p class="row">
622
+ <a href="http://tampa.craigslist.org/hil/art/1695275159.html"><span class="ih" id="images:3m33pe3la5O05W15S3a4g230b6e646a53159e.jpg"></span></a>
623
+ <a href="http://tampa.craigslist.org/hil/art/1695275159.html">Stained Glass Kiln</a> -
624
+ $1600<font size="-1"> (St. Cloud)</font> <span class="p"> pic</span><br class="c">
625
+ </p>
626
+
627
+ <p class="row">
628
+ <a href="http://tampa.craigslist.org/pnl/art/1695271058.html"><span class="ih" id="images:3of3pd3l75W65U55R6a4gebc264be9204199a.jpg"></span></a>
629
+ <a href="http://tampa.craigslist.org/pnl/art/1695271058.html">Tiki Carved From Palm</a> -
630
+ $150<font size="-1"> (Safety Harbor)</font> <span class="p"> pic</span><br class="c">
631
+ </p>
632
+
633
+ <p class="row">
634
+ <a href="http://tampa.craigslist.org/hil/art/1695262204.html"><span class="ih" id="images:3k13p33lc5V65U55S3a4ga0088941793f181e.jpg"></span></a>
635
+ <a href="http://tampa.craigslist.org/hil/art/1695262204.html">The End is Near! 2012 painting</a> -
636
+ $45<font size="-1"> (riverview)</font> <span class="p"> pic</span><br class="c">
637
+ </p>
638
+
639
+ <p class="row">
640
+ <a href="http://tampa.craigslist.org/pnl/art/1695257091.html"><span class="ih" id="images:3nb3of3p15V25S45R6a4g966f48aab6a810bf.jpg"></span></a>
641
+ <a href="http://tampa.craigslist.org/pnl/art/1695257091.html">PAINTING BY KENT</a> -
642
+ $35<font size="-1"> (St. Petersburg)</font> <span class="p"> pic</span><br class="c">
643
+ </p>
644
+
645
+ <p class="row">
646
+ <a href="http://tampa.craigslist.org/hdo/art/1695212984.html"><span class="ih" ></span></a>
647
+ <a href="http://tampa.craigslist.org/hdo/art/1695212984.html">ART SALE! ONLY $29 to $69 FOR THESE ORIGINAL PHOTO ART PIECES!</a> -
648
+ <span class="p"> img</span><br class="c">
649
+ </p>
650
+
651
+ <p class="row">
652
+ <a href="http://tampa.craigslist.org/hdo/art/1695203836.html"><span class="ih" id="images:3mb3oe3lf5Y15Q35R1a4gd6e7edb35d4715e0.jpg"></span></a>
653
+ <a href="http://tampa.craigslist.org/hdo/art/1695203836.html"> Contemporary Painting for Sale!!! </a> -
654
+ <span class="p"> pic</span><br class="c">
655
+ </p>
656
+
657
+ <p class="row">
658
+ <a href="http://tampa.craigslist.org/hil/art/1695172144.html"><span class="ih" id="images:3n53kf3mc5Y05Z65X2a4gf9bfa0ca9bd41051.jpg"></span></a>
659
+ <a href="http://tampa.craigslist.org/hil/art/1695172144.html">gift baskets and bears</a> -
660
+ $12<font size="-1"> (Riverview)</font> <span class="p"> pic</span><br class="c">
661
+ </p>
662
+
663
+ <p class="row">
664
+ <a href="http://tampa.craigslist.org/pnl/art/1695048492.html"><span class="ih" id="images:3n93o03lf5Y25U35X0a4gae1e5f67af981127.jpg"></span></a>
665
+ <a href="http://tampa.craigslist.org/pnl/art/1695048492.html">Eyvind Earle Nocturne Serigraph</a> -
666
+ $3999<font size="-1"> (Clearwater)</font> <span class="p"> pic</span><br class="c">
667
+ </p>
668
+
669
+ <p class="row">
670
+ <a href="http://tampa.craigslist.org/pnl/art/1695043078.html"><span class="ih" id="images:3k03oe3la5T45U15R0a4g57cb1116cbef17f9.jpg"></span></a>
671
+ <a href="http://tampa.craigslist.org/pnl/art/1695043078.html">jo's watercolors </a> -
672
+ $25<font size="-1"> (brooksville)</font> <span class="p"> pic</span><br class="c">
673
+ </p>
674
+
675
+ <p class="row">
676
+ <a href="http://tampa.craigslist.org/pnl/art/1695035785.html"><span class="ih" id="images:3n33p53l95Y45Q05S5a4gfb139e7df1391d50.jpg"></span></a>
677
+ <a href="http://tampa.craigslist.org/pnl/art/1695035785.html">Eyvind Earle Carmel Cypress Serigraph</a> -
678
+ $3999<font size="-1"> (Clearwater)</font> <span class="p"> pic</span><br class="c">
679
+ </p>
680
+
681
+ <p class="row">
682
+ <a href="http://tampa.craigslist.org/pnl/art/1695033676.html"><span class="ih" id="images:3m53ob3l35T15Q55S5a4g6680fbd6343a1374.jpg"></span></a>
683
+ <a href="http://tampa.craigslist.org/pnl/art/1695033676.html">Eyvind Earle Stardust Blue Serigraph</a> -
684
+ $3999<font size="-1"> (Clearwater)</font> <span class="p"> pic</span><br class="c">
685
+ </p>
686
+
687
+ <p class="row">
688
+ <a href="http://tampa.craigslist.org/hil/art/1695019593.html"><span class="ih" id="images:3n53kd3l85V25O15T2a4g570cc392ebaf17d9.jpg"></span></a>
689
+ <a href="http://tampa.craigslist.org/hil/art/1695019593.html">Portraits painted of your loved ones</a> -
690
+ $75<font size="-1"> (Seffner)</font> <span class="p"> pic</span><br class="c">
691
+ </p>
692
+
693
+ <p class="row">
694
+ <a href="http://tampa.craigslist.org/pnl/art/1694978907.html"><span class="ih" id="images:3nb3k73oe5Y05V45R3a4g2726ecf77c6f1419.jpg"></span></a>
695
+ <a href="http://tampa.craigslist.org/pnl/art/1694978907.html">Attn Crafters! 10 Strands of Lemons</a> -
696
+ $50<font size="-1"> (Pinellas Point)</font> <span class="p"> pic</span><br class="c">
697
+ </p>
698
+
699
+ <p class="row">
700
+ <a href="http://tampa.craigslist.org/hil/art/1694946180.html"><span class="ih" id="images:3me3ob3ld5O05T55U0a4gac87b87394c71b29.jpg"></span></a>
701
+ <a href="http://tampa.craigslist.org/hil/art/1694946180.html">SARAH E. AND GULLS</a> -
702
+ $350<font size="-1"> (RIVERVIEW)</font> <span class="p"> pic</span><br class="c">
703
+ </p>
704
+
705
+ <p class="row">
706
+ <a href="http://tampa.craigslist.org/hil/art/1694922616.html"><span class="ih" id="images:3m93o33l85U15P55S2a4gd9c543537d631ed1.jpg"></span></a>
707
+ <a href="http://tampa.craigslist.org/hil/art/1694922616.html">cavalier 98 </a> -
708
+ $850<font size="-1"> (hillsborough)</font> <span class="p"> pic</span><br class="c">
709
+ </p>
710
+
711
+ <p class="row">
712
+ <a href="http://tampa.craigslist.org/psc/art/1694878171.html"><span class="ih" ></span></a>
713
+ <a href="http://tampa.craigslist.org/psc/art/1694878171.html">model kit fairey swordfish mk 2</a> -
714
+ $10<font size="-1"> (west pasco)</font><br class="c">
715
+ </p>
716
+
717
+ <p class="row">
718
+ <a href="http://tampa.craigslist.org/hdo/art/1694789888.html"><span class="ih" id="images:3k43md3oc5O45Y45U1a4g6084410c88911d75.jpg"></span></a>
719
+ <a href="http://tampa.craigslist.org/hdo/art/1694789888.html">jo's watercolors</a> -
720
+ $25<font size="-1"> (brooksville)</font> <span class="p"> pic</span><br class="c">
721
+ </p>
722
+
723
+ <p class="row">
724
+ <a href="http://tampa.craigslist.org/hil/art/1694761354.html"><span class="ih" id="images:3k93m83p35V35Q45W1a4gcc9982ce6d691867.jpg"></span></a>
725
+ <a href="http://tampa.craigslist.org/hil/art/1694761354.html">Stampin' Up Rubber Stamps</a> -
726
+ $20<font size="-1"> (Countryway)</font> <span class="p"> pic</span><br class="c">
727
+ </p>
728
+
729
+ <p class="row">
730
+ <a href="http://tampa.craigslist.org/pnl/art/1694718446.html"><span class="ih" id="images:3kd3m13oc5Y15U35S4a4g540f81336874192b.jpg"></span></a>
731
+ <a href="http://tampa.craigslist.org/pnl/art/1694718446.html">Wyland Oil Painting</a> -
732
+ $15000<font size="-1"> (New Port Richey)</font> <span class="p"> pic</span><br class="c">
733
+ </p>
734
+
735
+ <p class="row">
736
+ <a href="http://tampa.craigslist.org/psc/art/1694710402.html"><span class="ih" id="images:3kb3p63l95Y05W05P0a4g4e4a44f86ea71da6.jpg"></span></a>
737
+ <a href="http://tampa.craigslist.org/psc/art/1694710402.html">Denim Fabric Blocks for Crafts</a> -
738
+ $5<font size="-1"> (Holiday)</font> <span class="p"> pic</span><br class="c">
739
+ </p>
740
+
741
+
742
+ <p align="center"><font size="4"><a href="index100.html">next 100 postings</a></font>
743
+
744
+ <div id="footer">
745
+ <hr>
746
+ <span id="copy">
747
+ Copyright &copy; 2010 craigslist, inc.<br>
748
+ </span>
749
+ <span class="rss">
750
+ <a class="l" href="/art/index.rss">RSS</a>
751
+ <a href="http://www.craigslist.org/about/rss">(?)</a><br>
752
+ </span>
753
+ </div>
754
+ <br><br>
755
+
756
+ <div id="floater">&nbsp;</div>
757
+
758
+ </blockquote>
759
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery-1.4.2.js"></script>
760
+ <script type="text/javascript" src="http://www.craigslist.org/js/toChecklist.js"></script>
761
+ <script type="text/javascript" src="http://www.craigslist.org/js/tocs.js"></script>
762
+ <script type="text/javascript">
763
+ <!--
764
+ window.tocpix=1
765
+ -->
766
+ </script>
767
+
768
+ </body>
769
+ </html>