craigslist_scraper 0.0.1.alpha

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3666542934dc2d61a7387c62595f8faf281833e6
4
+ data.tar.gz: 532e27c818c8a5a549bf220b5eebd907c904187d
5
+ SHA512:
6
+ metadata.gz: 79eb6ca55698a33a5f61c222decc0b7d0691e02eb936ea202937ebed6488866a3ba8c77b0d23d0b3bf67ae230838f25d58680e706d35e07630b7a024b1084853
7
+ data.tar.gz: ea7d4d37bef349c99e1b513c3e1fcb07780a003d9164fdc7e8a81d3f49107c42bf3c7d3d24b37975e3ab2ec86f78b2a5dcba16db4da20cbfa8433cf6140aed10
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in craigslist_scraper.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 mark nery
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # CraigslistScraper
2
+
3
+ A gem to scrape craiglist data , use at own risk.
4
+
5
+ ####Warning
6
+
7
+ This gem does not work if hosted on heroku or ec2 , it appears [craiglist blocks requests coming from them.](http://stackoverflow.com/questions/14328955/http-get-on-craigslist-blocked)
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem 'craigslist_scraper'
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install craigslist_scraper
22
+
23
+ ## Usage
24
+
25
+ ### search example
26
+
27
+ craigslist = CraigsList.new
28
+ craigslist.search_boulder_for "vegan flip flops"
29
+
30
+ > defaults to searching the entire post
31
+ > you can also search in just the titles
32
+
33
+ `craigslist.search_titles_in_denver_for "vegan flip flops"`
34
+
35
+ #### returns
36
+
37
+ [{
38
+ data_id: "314159265359",
39
+ decsription: "vegan flip flops made out of tofu",
40
+ url: "http://denver.craigslist.org/42.html,
41
+ price: 5
42
+ }]
43
+
44
+ ### calculate average prices on postings
45
+ #### example
46
+
47
+ craigslist = CraigsList.new
48
+ craigslist.search_miami_for "white aligator shoes".average_price #=> 200
49
+
50
+ ### You can search most valid craigslist cities
51
+ #### example
52
+ craigslist.search_dallas_for "a NoBama bumper sticker"
53
+
54
+ craigslist.search_lasvegas_for "gold chains and workout jumpsuit"
55
+
56
+
57
+ ## Contributing
58
+
59
+ 1. Fork it
60
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
61
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
62
+ 4. Make sure all tests pass
63
+ 5. Push to the branch (`git push origin my-new-feature`)
64
+ 6. Create new Pull Request
65
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'craigslist_scraper/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "craigslist_scraper"
8
+ spec.version = CraigslistScraper::VERSION
9
+ spec.authors = ["mark nery"]
10
+ spec.email = ["marknery@gmail.com"]
11
+ spec.description = %q{a gem that scrapes craigslist data}
12
+ spec.summary = %q{a gem that scrapes craigslist data}
13
+ spec.homepage = "https://github.com/mark-nery/craigslist_scraper"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "nokogiri"
22
+ spec.add_development_dependency "rspec", "~> 2.6"
23
+ spec.add_development_dependency "bundler", "~> 1.3"
24
+ spec.add_development_dependency "rake"
25
+ end
@@ -0,0 +1,5 @@
1
+ require "craigslist_scraper/version"
2
+
3
+ module CraigslistScraper
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Cities
2
+ CITIES = ["auburn", "bham", "dothan", "shoals", "gadsden", "huntsville", "mobile", "montgomery", "tuscaloosa", "anchorage", "fairbanks", "kenai", "juneau", "flagstaff", "mohave", "phoenix", "prescott", "showlow", "sierravista", "tucson", "yuma", "fayar", "fortsmith", "jonesboro", "littlerock", "texarkana", "bakersfield", "chico", "fresno", "goldcountry", "hanford", "humboldt", "imperial", "inlandempire", "losangeles", "mendocino", "merced", "modesto", "monterey", "orangecounty", "palmsprings", "redding", "sacramento", "sandiego", "sfbay", "slo", "santabarbara", "santamaria", "siskiyou", "stockton", "susanville", "ventura", "visalia", "yubasutter", "boulder", "cosprings", "denver", "eastco", "fortcollins", "rockies", "pueblo", "westslope", "newlondon", "hartford", "newhaven", "nwct", "delaware", "washingtondc", "daytona", "keys", "fortlauderdale", "fortmyers", "gainesville", "cfl", "jacksonville", "lakeland", "lakecity", "ocala", "okaloosa", "orlando", "panamacity", "pensacola", "sarasota", "miami", "spacecoast", "staugustine", "tallahassee", "tampa", "treasure", "westpalmbeach", "albanyga", "athensga", "atlanta", "augusta", "brunswick", "columbusga", "macon", "nwga", "savannah", "statesboro", "valdosta", "honolulu", "boise", "eastidaho", "lewiston", "twinfalls", "bn", "chambana", "chicago", "decatur", "lasalle", "mattoon", "peoria", "rockford", "carbondale", "springfieldil", "quincy", "bloomington", "evansville", "fortwayne", "indianapolis", "kokomo", "tippecanoe", "muncie", "richmondin", "southbend", "terrehaute", "ames", "cedarrapids", "desmoines", "dubuque", "fortdodge", "iowacity", "masoncity", "quadcities", "siouxcity", "ottumwa", "waterloo", "lawrence", "ksu", "nwks", "salina", "seks", "swks", "topeka", "wichita", "bgky", "eastky", "lexington", "louisville", "owensboro", "westky", "batonrouge", "cenla", "houma", "lafayette", "lakecharles", "monroe", "neworleans", "shreveport", "maine", "annapolis", "baltimore", "easternshore", "frederick", "smd", "westmd", "boston", "capecod", "southcoast", "westernmass", "worcester", "annarbor", "battlecreek", "centralmich", "detroit", "flint", "grandrapids", "holland", "jxn", "kalamazoo", "lansing", "monroemi", "muskegon", "nmi", "porthuron", "saginaw", "swmi", "thumb", "up", "bemidji", "brainerd", "duluth", "mankato", "minneapolis", "rmn", "marshall", "stcloud", "gulfport", "hattiesburg", "jackson", "meridian", "northmiss", "natchez", "columbiamo", "joplin", "kansascity", "kirksville", "loz", "semo", "springfield", "stjoseph", "stlouis", "billings", "bozeman", "butte", "greatfalls", "helena", "kalispell", "missoula", "montana", "grandisland", "lincoln", "northplatte", "omaha", "scottsbluff", "elko", "lasvegas", "reno", "nh", "cnj", "jerseyshore", "newjersey", "southjersey", "albuquerque", "clovis", "farmington", "lascruces", "roswell", "santafe", "albany", "binghamton", "buffalo", "catskills", "chautauqua", "elmira", "fingerlakes", "glensfalls", "hudsonvalley", "ithaca", "longisland", "newyork", "oneonta", "plattsburgh", "potsdam", "rochester", "syracuse", "twintiers", "utica", "watertown", "asheville", "boone", "charlotte", "eastnc", "fayetteville", "greensboro", "hickory", "onslow", "outerbanks", "raleigh", "wilmington", "winstonsalem", "bismarck", "fargo", "grandforks", "nd", "akroncanton", "ashtabula", "athensohio", "chillicothe", "cincinnati", "cleveland", "columbus", "dayton", "limaohio", "mansfield", "sandusky", "toledo", "tuscarawas", "youngstown", "zanesville", "lawton", "enid", "oklahomacity", "stillwater", "tulsa", "bend", "corvallis", "eastoregon", "eugene", "klamath", "medford", "oregoncoast", "portland", "roseburg", "salem", "altoona", "chambersburg", "erie", "harrisburg", "lancaster", "allentown", "meadville", "philadelphia", "pittsburgh", "poconos", "reading", "scranton", "pennstate", "williamsport", "york", "providence", "charleston", "columbia", "florencesc", "greenville", "hiltonhead", "myrtlebeach", "nesd", "csd", "rapidcity", "siouxfalls", "sd", "chattanooga", "clarksville", "cookeville", "jacksontn", "knoxville", "memphis", "nashville", "tricities", "abilene", "amarillo", "austin", "beaumont", "brownsville", "collegestation", "corpuschristi", "dallas", "nacogdoches", "delrio", "elpaso", "galveston", "houston", "killeen", "laredo", "lubbock", "mcallen", "odessa", "sanangelo", "sanantonio", "sanmarcos", "bigbend", "texoma", "easttexas", "victoriatx", "waco", "wichitafalls", "logan", "ogden", "provo", "saltlakecity", "stgeorge", "burlington", "charlottesville", "danville", "fredericksburg", "norfolk", "harrisonburg", "lynchburg", "blacksburg", "richmond", "roanoke", "swva", "winchester", "bellingham", "kpr", "moseslake", "olympic", "pullman", "seattle", "skagit", "spokane", "wenatchee", "yakima", "charlestonwv", "martinsburg", "huntington", "morgantown", "wheeling", "parkersburg", "swv", "wv", "appleton", "eauclaire", "greenbay", "janesville", "racine", "lacrosse", "madison", "milwaukee", "northernwi", "sheboygan", "wausau", "wyoming", "micronesia", "puertorico", "virgin", "brussels", "bulgaria", "zagreb", "copenhagen", "bordeaux", "rennes", "grenoble", "lille", "loire", "lyon", "marseilles", "montpellier", "cotedazur", "rouen", "paris", "strasbourg", "toulouse", "budapest", "reykjavik", "dublin", "luxembourg", "amsterdam", "oslo", "bucharest", "moscow", "stpetersburg", "ukraine", "bangladesh", "micronesia", "jakarta", "tehran", "baghdad", "haifa", "jerusalem", "telaviv", "ramallah", "kuwait", "beirut", "malaysia", "pakistan", "dubai", "vietnam", "auckland", "christchurch", "wellington", "buenosaires", "lapaz", "belohorizonte", "brasilia", "curitiba", "fortaleza", "portoalegre", "recife", "rio", "salvador", "saopaulo", "caribbean", "santiago", "colombia", "costarica", "santodomingo", "quito", "elsalvador", "guatemala", "managua", "panama", "lima", "puertorico", "montevideo", "caracas", "virgin", "cairo", "addisababa", "accra", "kenya", "casablanca", "tunis"]
3
+ end
@@ -0,0 +1,68 @@
1
+ require 'nokogiri'
2
+ require 'open-uri'
3
+ require 'cgi'
4
+ require_relative 'cities'
5
+
6
+ class CraigsList
7
+ include Cities
8
+
9
+ VALID_FIELDS = [:query, :srchType]
10
+
11
+ def search(options ={})
12
+ if options[:title_only]
13
+ options.merge!(srchType: "T")
14
+ options.delete(:title_only)
15
+ end
16
+ uri = "http://#{options[:city]}.craigslist.org/search/sss?#{to_query(options)}"
17
+
18
+ doc = Nokogiri::HTML(open(uri))
19
+
20
+ doc.css('p.row').flat_map do |link|
21
+ [
22
+ data_id: link["data-pid"] ,
23
+ description: link.css("a").text,
24
+ url: "http://#{options[:city]}.craigslist.org#{link.css("a")[0]["href"]}",
25
+ price: extract_price(link.css("span.price").text)
26
+ ]
27
+ end
28
+ end
29
+
30
+ def method_missing(method,*args)
31
+ super unless Cities::CITIES.include? city ||= extract_city(method)
32
+
33
+ params = { query: args.first , city: city}
34
+ params.merge!(title_only: true) if /titles/ =~ method
35
+
36
+ search(params)
37
+ end
38
+
39
+ Array.class_eval do
40
+ def average_price
41
+ return 0 if empty?
42
+
43
+ self.reject! { |item| item[:price] == nil }
44
+
45
+ flat_map { |item| [item[:price]] }.map { |price| price.to_i }.reduce(:+) / self.size
46
+ end
47
+ end
48
+
49
+ private
50
+
51
+ def extract_city(method_name)
52
+
53
+ if /titles/ =~ method_name
54
+ method_name.to_s.gsub("search_titles_in_","").gsub("_for","")
55
+ else
56
+ method_name.to_s.gsub("search_","").gsub("_for","")
57
+ end
58
+ end
59
+
60
+ def extract_price(dollar_string)
61
+ dollar_string[1..-1]
62
+ end
63
+
64
+ def to_query(hsh)
65
+ hsh.select { |k,v| CraigsList::VALID_FIELDS.include? k }.map {|k, v| "#{k}=#{CGI::escape v}" }.join("&")
66
+ end
67
+
68
+ end
@@ -0,0 +1,3 @@
1
+ module CraigslistScraper
2
+ VERSION = "0.0.1.alpha"
3
+ end
@@ -0,0 +1,138 @@
1
+ require 'craigslist_scraper/craigslist'
2
+
3
+ describe CraigsList do
4
+
5
+ describe ".search" do
6
+ it "returns an array with all the items" do
7
+ cl = CraigsList.new
8
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
9
+
10
+ cl.search.length.should == 100
11
+ cl.search[0].keys.should == [:data_id, :description, :url, :price]
12
+ end
13
+ end
14
+
15
+ it "has the right keys " do
16
+ cl = CraigsList.new
17
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
18
+
19
+ cl.search[0].keys.should == [:data_id, :description, :url, :price]
20
+ end
21
+
22
+ it "addes '+' to white space in queries" do
23
+ cl = CraigsList.new
24
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
25
+
26
+ cl.should_receive(:open).with("http://denver.craigslist.org/search/sss?query=iphone+5")
27
+
28
+ cl.search(city: "denver" , query: "iphone 5")
29
+ end
30
+
31
+ it "adds title only filter to url" do
32
+ cl = CraigsList.new
33
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
34
+
35
+ cl.should_receive(:open).with("http://denver.craigslist.org/search/sss?query=iphone+5&srchType=T")
36
+ cl.search(city: "denver" , query: "iphone 5" , title_only: true)
37
+ end
38
+
39
+ it "doesn't filter when title only is false" do
40
+ cl = CraigsList.new
41
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
42
+
43
+ cl.should_receive(:open).with("http://denver.craigslist.org/search/sss?query=iphone+5")
44
+ cl.search(city: "denver" , query: "iphone 5" , title_only: false )
45
+ end
46
+
47
+
48
+ it "exracts the price" do
49
+ cl = CraigsList.new
50
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
51
+
52
+ cl.search[0][:price].should == "70"
53
+ end
54
+
55
+ it "builds the correct reference url" do
56
+ cl = CraigsList.new
57
+ cl.stub(:open).and_return(File.read(File.dirname(__FILE__) + '/mock_craigslist_data.html'))
58
+
59
+ city = "shanghai"
60
+ cl.search(city: city)[0][:url].should == "http://#{city}.craigslist.org/mob/3849318365.html"
61
+ end
62
+
63
+ describe "dynamic method search_{cityname}_for" do
64
+
65
+ let(:craigslist) { CraigsList.new }
66
+
67
+ it "calls search for a valid city" do
68
+ CraigsList::CITIES.each do |city|
69
+ craigslist.should_receive(:search).with(city: city , query: nil)
70
+
71
+ craigslist.send("search_#{city}_for")
72
+ end
73
+ end
74
+
75
+ it "doesn't call search for an invalid city" do
76
+ expect { craigslist.search_yourmamaville_for }.to raise_error(NoMethodError)
77
+ end
78
+
79
+ it "passes a query" do
80
+ craigslist.should_receive(:search).with(city: "dallas", query: "cowboy hats")
81
+
82
+ craigslist.search_dallas_for("cowboy hats")
83
+ end
84
+ end
85
+
86
+
87
+ describe "dynamic method search_titles_in_{cityname}_for" do
88
+ let(:craigslist) { CraigsList.new }
89
+
90
+ it "calls search for a valid city" do
91
+ CraigsList::CITIES.each do |city|
92
+ craigslist.should_receive(:search).with(city: city , query: nil , title_only: true)
93
+
94
+ craigslist.send("search_titles_in_#{city}_for")
95
+ end
96
+ end
97
+
98
+ it "doesn't call search for an invalid city" do
99
+ expect { craigslist.search_titles_in_yourmamaville_for }.to raise_error(NoMethodError)
100
+ end
101
+ end
102
+
103
+ describe "Array#average_price" do
104
+ let(:craigslist) { CraigsList.new }
105
+
106
+ it "returns the average price for a search with multiple items" do
107
+ craigslist.stub(:search_denver_for).and_return([{price: "3"} , {price: "5"} , {price: "7"}])
108
+
109
+ craigslist.search_denver_for("uranium").average_price.should == 5
110
+ end
111
+
112
+ it "returns 0 for search with no results" do
113
+ craigslist.stub(:search_denver_for).and_return([])
114
+
115
+ craigslist.search_denver_for("uranium").average_price.should == 0
116
+ end
117
+
118
+ it "returns average for a search with two items" do
119
+ craigslist.stub(:search_denver_for).and_return([{price: "8"} , {price: "12"} ])
120
+
121
+ craigslist.search_denver_for("uranium").average_price.should == 10
122
+ end
123
+
124
+ it "returns the price for a search with one item" do
125
+ craigslist.stub(:search_denver_for).and_return([{price: 1}])
126
+
127
+ craigslist.search_denver_for("uranium").average_price.should == 1
128
+ end
129
+
130
+ it "discards nil prices" do
131
+ craigslist.stub(:search_denver_for).and_return([{price: 1} , {price: nil}])
132
+
133
+ craigslist.search_denver_for("uranium").average_price.should == 1
134
+ end
135
+
136
+ end
137
+ end
138
+
@@ -0,0 +1,361 @@
1
+ <!DOCTYPE html>
2
+ <html><head>
3
+ <title>denver all for sale / wanted classifieds &quot;iphone 5&quot; - craigslist</title>
4
+
5
+ <meta name="description" content="denver all for sale / wanted classifieds &quot;iphone 5&quot; - craigslist">
6
+ <link rel="alternate" type="application/rss+xml" href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;format=rss" title="RSS feed for craigslist | all for sale / wanted &quot;iphone 5&quot; in denver ">
7
+ <meta name="viewport" content="initial-scale=1.0, user-scalable=1">
8
+ <link type="text/css" rel="stylesheet" media="all" href="http://www.craigslist.org/styles/clnew.css?v=7ef43a0354c0e3413e7fd02b94d149f1">
9
+ <link type="text/css" rel="stylesheet" media="all" href="http://www.craigslist.org/styles/jquery-ui-1.9.2.custom.css?v=cb67f2e720fe8a2c7d83234590b2d1ed">
10
+
11
+
12
+
13
+ <script type="text/javascript"><!--
14
+ var unmappableNotShownText = "unmappable items not shown";
15
+ var showImageText = "show images";
16
+ var showMapTabs = 1;
17
+ var lessInfoText = "less info";
18
+ var areaID = "13";
19
+ var removeFromShortlistText = "remove from shortlist";
20
+ var starHint = "save this post in your favorites list";
21
+ var expFaves = "";
22
+ var shortlistViewText = "shortlist view";
23
+ var shortlistNoteText = "SHORTLISTED";
24
+ var catAbb = null;
25
+ var currencySymbol = "$";
26
+ var viewPostingText = "view posting";
27
+ var clearShortlistText = "clear shortlist";
28
+ var moreInfoText = "more info";
29
+ var showInfoText = "show info";
30
+ var zoomToPosting = null;
31
+ var imageHost = "http://images.craigslist.org";
32
+ var pID = null;
33
+ var addToShortlistText = "add to shortlist";
34
+
35
+ --></script>
36
+
37
+ <!--[if lt IE 9]>
38
+ <script type="text/javascript" src="http://www.craigslist.org/js/html5shiv.js?v=ed7af45dcbda983c8455631037ebcdda"></script>
39
+ <![endif]-->
40
+ </head>
41
+
42
+ <body class="toc">
43
+ <script type="text/javascript"><!--
44
+ var pagetype;
45
+ function C(k){return(document.cookie.match('(^|; )'+k+'=([^;]*)')||0)[2]}
46
+ var fmt = C('cl_fmt');
47
+ var b = document.body;
48
+ pagetype = b.className;
49
+ if (fmt !== '') { b.className += " " + fmt; }
50
+ var width = window.innerWidth || document.documentElement.clientWidth;
51
+ if (width > 1000) { b.className += ' w1024'; }
52
+ var mode = C('cl_img');
53
+ if (mode !== '') { b.className += " " + mode; }
54
+ --></script>
55
+
56
+
57
+ <article id="pagecontainer">
58
+
59
+ <header class="bchead">
60
+ <div class="contents closed">
61
+ <div class="topright_box">
62
+ <div id="ef">
63
+ [ <a href="http://www.craigslist.org/about/help/">help</a> ]
64
+ [ <a href="https://post.craigslist.org/c/den?lang=en">post</a> ]
65
+ </div>
66
+
67
+ <div id="favorites" class="highlight">
68
+ <a href="#"><span class="n">0</span> favorites</a>
69
+ </div>
70
+
71
+ </div>
72
+ <div class="dropdown down">&or;</div>
73
+ <div class="dropdown up">&and;</div>
74
+ <div class="leftside">
75
+ <button class="back">&lt;</button>
76
+ <div class="breadbox">
77
+ <div class="breadcrumbs">
78
+ <span class="crumb"><a href="//www.craigslist.org/about/sites">CL</a></span>
79
+ <span class="crumb"><a href="/">denver</a></span> <span class="crumb"><a href="/sss/">for sale / wanted</a></span>
80
+ </div>
81
+ </div>
82
+ </div>
83
+
84
+ </div>
85
+ </header>
86
+
87
+
88
+ <blockquote>
89
+
90
+ <script type="text/javascript"><!--
91
+ var catAbb = "sss";
92
+
93
+ --></script>
94
+
95
+ <form action="/search/sss" id="searchform" method="get" accept-charset="utf-8">
96
+
97
+ <fieldset id="searchfieldset">
98
+ <legend id="searchlegend">all for sale: <a href="#" data-cat="sso">by-owner</a> | <a href="#" data-cat="ssq">by-dealer</a> | both</legend>
99
+ <table id="searchtable" width="100%" cellpadding="2" summary="">
100
+ <tr>
101
+ <td align="right">search for:</td>
102
+
103
+ <td>
104
+ <div id="searchchecks">
105
+ <label id="usemapcheck" style="display:none;">
106
+ <input type="checkbox" name="useMap" value="1">show map
107
+ </label>
108
+ <label id="shortlistcheck" style="display:none;">
109
+ <input type="checkbox" name="shortlistOnly" value="1">show shortlisted items only
110
+ </label>
111
+ <input id="zoomtoposting" type="hidden" name="zoomToPosting" value="">
112
+ </div>
113
+ <input id="query" name="query" size="24" value="iphone 5" autocorrect="off" autocapitalize="off"> in:
114
+ <select id="catAbb" name="catAbb">
115
+
116
+ <option value="ccc">all community
117
+
118
+ <option value="eee">all event
119
+
120
+ <option value="sss" selected>all for sale / wanted
121
+ <option disabled value="">--
122
+ <option value="ata"> antiques
123
+ <option value="atd"> antiques - by dealer
124
+ <option value="atq"> antiques - by owner
125
+ <option value="ppa"> appliances
126
+ <option value="ppd"> appliances - by dealer
127
+ <option value="app"> appliances - by owner
128
+ <option value="ard"> arts &amp; crafts - by dealer
129
+ <option value="art"> arts &amp; crafts - by owner
130
+ <option value="ara"> arts+crafts
131
+ <option value="pta"> auto parts
132
+ <option value="ptd"> auto parts - by dealer
133
+ <option value="pts"> auto parts - by owner
134
+ <option value="bad"> baby &amp; kid stuff - by dealer
135
+ <option value="bab"> baby &amp; kid stuff - by owner
136
+ <option value="baa"> baby+kids
137
+ <option value="bar"> barter
138
+ <option value="haa"> beauty+hlth
139
+ <option value="bid"> bicycles - by dealer
140
+ <option value="bik"> bicycles - by owner
141
+ <option value="bia"> bikes
142
+ <option value="boo"> boats
143
+ <option value="bod"> boats - by dealer
144
+ <option value="boa"> boats - by owner
145
+ <option value="bka"> books
146
+ <option value="bkd"> books &amp; magazines - by dealer
147
+ <option value="bks"> books &amp; magazines - by owner
148
+ <option value="bfa"> business
149
+ <option value="bfd"> business/commercial - by dealer
150
+ <option value="bfs"> business/commercial - by owner
151
+ <option value="ctd"> cars &amp; trucks - by dealer
152
+ <option value="cto"> cars &amp; trucks - by owner
153
+ <option value="cta"> cars+trucks
154
+ <option value="emq"> cds / dvds / vhs - by dealer
155
+ <option value="emd"> cds / dvds / vhs - by owner
156
+ <option value="ema"> cds/dvd/vhs
157
+ <option value="moa"> cell phones
158
+ <option value="mod"> cell phones - by dealer
159
+ <option value="mob"> cell phones - by owner
160
+ <option value="cla"> clothes+acc
161
+ <option value="cld"> clothing &amp; accessories - by deal
162
+ <option value="clo"> clothing &amp; accessories - by owne
163
+ <option value="cba"> collectibles
164
+ <option value="cbd"> collectibles - by dealer
165
+ <option value="clt"> collectibles - by owner
166
+ <option value="sya"> computers
167
+ <option value="syd"> computers - by dealer
168
+ <option value="sys"> computers - by owner
169
+ <option value="ela"> electronics
170
+ <option value="eld"> electronics - by dealer
171
+ <option value="ele"> electronics - by owner
172
+ <option value="grq"> farm &amp; garden - by dealer
173
+ <option value="grd"> farm &amp; garden - by owner
174
+ <option value="gra"> farm+garden
175
+ <option value="ssq"> for sale by dealer
176
+ <option value="sso"> for sale by owner
177
+ <option value="zip"> free stuff
178
+ <option value="fua"> furniture
179
+ <option value="fud"> furniture - by dealer
180
+ <option value="fuo"> furniture - by owner
181
+ <option value="gms"> garage sales
182
+ <option value="foa"> general
183
+ <option value="fod"> general for sale - by dealer
184
+ <option value="for"> general for sale - by owner
185
+ <option value="had"> health and beauty - by dealer
186
+ <option value="hab"> health and beauty - by owner
187
+ <option value="hsa"> household
188
+ <option value="hsd"> household items - by dealer
189
+ <option value="hsh"> household items - by owner
190
+ <option value="wan"> items wanted
191
+ <option value="jwa"> jewelry
192
+ <option value="jwd"> jewelry - by dealer
193
+ <option value="jwl"> jewelry - by owner
194
+ <option value="maa"> materials
195
+ <option value="mad"> materials - by dealer
196
+ <option value="mat"> materials - by owner
197
+ <option value="mca"> motorcycles
198
+ <option value="mcd"> motorcycles/scooters - by dealer
199
+ <option value="mcy"> motorcycles/scooters - by owner
200
+ <option value="msa"> music instr
201
+ <option value="msd"> musical instruments - by dealer
202
+ <option value="msg"> musical instruments - by owner
203
+ <option value="pha"> photo+video
204
+ <option value="phd"> photo/video - by dealer
205
+ <option value="pho"> photo/video - by owner
206
+ <option value="rva"> recreational vehicles
207
+ <option value="rvd"> rvs - by dealer
208
+ <option value="rvs"> rvs - by owner
209
+ <option value="sga"> sporting
210
+ <option value="sgd"> sporting goods - by dealer
211
+ <option value="spo"> sporting goods - by owner
212
+ <option value="tia"> tickets
213
+ <option value="tid"> tickets - by dealer
214
+ <option value="tix"> tickets - by owner
215
+ <option value="tla"> tools
216
+ <option value="tld"> tools - by dealer
217
+ <option value="tls"> tools - by owner
218
+ <option value="tad"> toys &amp; games - by dealer
219
+ <option value="tag"> toys &amp; games - by owner
220
+ <option value="taa"> toys+games
221
+ <option value="vga"> video gaming
222
+ <option value="vgd"> video gaming - by dealer
223
+ <option value="vgm"> video gaming - by owner
224
+ <option disabled value="">--
225
+
226
+ <option value="ggg">all gigs
227
+
228
+ <option value="hhh">all housing
229
+
230
+ <option value="jjj">all jobs
231
+
232
+ <option value="ppp">all personals
233
+
234
+ <option value="res">all resume
235
+
236
+ <option value="bbb">all services offered
237
+ </select>
238
+ <input type="submit" value="Search">
239
+ <label>
240
+ <input type="radio" name="srchType" value="T"
241
+ title="search only posting titles">title
242
+ </label>
243
+ <label>
244
+ <input type="radio" name="srchType" value="A" checked="checked"
245
+ title="search the entire posting">entire post
246
+ </label>
247
+ </td>
248
+ </tr>
249
+
250
+ <tr>
251
+ <td align="right">price:</td>
252
+ <td><input name="minAsk" class="min" size="5" value="">
253
+ <input name="maxAsk" class="max" size="5" value="">
254
+
255
+ <span id="hoodpicker"></span>
256
+ <label>
257
+ <input type="checkbox" name="hasPic" value="1">has image
258
+ </label>
259
+ </td>
260
+ </tr>
261
+ </table>
262
+ </fieldset>
263
+ </form>
264
+ </blockquote>
265
+
266
+
267
+ <section class="body">
268
+
269
+
270
+
271
+
272
+ <blockquote class="modebtns v">
273
+ <button id="listview">list view</button>
274
+ <button id="picview">pic view</button>
275
+ <button id="gridview">grid view</button>
276
+ <button id="mapview">map view</button>
277
+ </blockquote>
278
+
279
+
280
+ <blockquote id="toc_rows">
281
+
282
+ <div class="sortby">sort by: <strong>most recent</strong> <a href="/search/sss?sort=rel&amp;query=iphone 5">best match</a> <a href="/search/sss?sort=priceasc&amp;query=iphone 5">low price</a> <a href="/search/sss?sort=pricedsc&amp;query=iphone 5">high price</a></div><h4 class="ban resultshdr">
283
+ <span class="nplink prev">&#171; Prev</span>
284
+ <span class="nplink next"><a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=100">Next &#187;</a>
285
+ </span>
286
+ Found: 2048 Displaying: 1 - 100
287
+ <br><span class="pagelinks"> <b>1</b> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=100">2</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=200">3</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=300">4</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=400">5</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=500">6</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=600">7</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=700">8</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=800">9</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=900">10</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1000">11</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1100">12</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1200">13</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1300">14</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1400">15</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1500">16</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1600">17</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1700">18</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1800">19</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1900">20</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=2000">21</a> </span>
288
+ </h4>
289
+ <p class="row" data-pid="3849318365"> <a href="/mob/3849318365.html" class="i" data-id="3Ga3Ie3Jb5Nf5J35Mdd642f344936b71414b0.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3849318365.html">#1 IPHONE REPAIR MOBILE SERVICE WE COME TO YOU-PARTS IN STOCK</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$70</span></span> <small> (HIGHLAND RANCH - LITTLETON)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873920671"> <a href="/ele/3873920671.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/ele/3873920671.html">White iPhone 5 Unlocked 16gb</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <small> (Lakewood/Belmar)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/ele/" data-cat="ele">electronics - by owner</a> </span> </p> <p class="row" data-pid="3873867114"> <a href="/mob/3873867114.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873867114.html">AVIC-X910BT PIONEER for sale </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$400</span></span> <small> (Denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873864246"> <a href="/mob/3873864246.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873864246.html">AVIC-X910BT PIONEER for sale </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$400</span></span> <small> (Denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873791033"> <a href="/mob/3873791033.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873791033.html">galaxy s3 for sale</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$400</span></span> <small> (lakewood)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3843944988"> <a href="/mob/3843944988.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3843944988.html">iPhone 5 burton plaid case and white IPhone 4 glass</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <small> (Denver / Aurora)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3865449436"> <a href="/wan/3865449436.html" class="i" data-id="3K83L83qa5N35q55M8d6b82f4007eac541f4c.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/wan/3865449436.html">iPhone 5 16GB (ATT)</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$250</span></span> <small> (Westminster)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/wan/" data-cat="wan">items wanted</a> </span> </p> <p class="row" data-pid="3852204372"> <a href="/bar/3852204372.html" class="i" data-id="3Ef3K63H35F15H35t1d65dbae8812960f1935.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/bar/3852204372.html">MacBook A1278 13-inch, Aluminum</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/bar/" data-cat="bar">barter</a> </span> </p> <p class="row" data-pid="3873728315"> <a href="/mob/3873728315.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873728315.html">iPhone 4 - 16GB Verizon</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$275</span></span> <small> (Lakewood)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873675855"> <a href="/mob/3873675855.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873675855.html">64GB iPhone5 - Verizon</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$550</span></span> <small> (Elizabeth)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873674383"> <a href="/mob/3873674383.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873674383.html">iphone 5</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$4</span></span> <small> (denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-latitude="39.7293518784701" data-longitude="-105.096559735382" data-pid="3873668166"> <a href="/mob/3873668166.html" class="i" data-id="3G63L23sf5Nd5t95Jdd6fbba4be149bf11b5d.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873668166.html">LIKE NEW - Black iPhone 5 64gb | AT&amp;T/Verizon w/ iOS7 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$700</span></span> <small> (Lakewood, CO )</small> <span class="px"> <span class="p"> pic&nbsp;<a href="#" class="maptag" data-pid="3873668166">map</a></span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873668143"> <a href="/mob/3873668143.html" class="i" data-id="3t73sd3q75He5q25t2d6fcae328057f9417ff.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873668143.html">Lifeproof iPhone 5 case (new)</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$65</span></span> <small> (Denver Lakewood)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873634971"> <a href="/clo/3873634971.html" class="i" data-id="3r83G93se5Gc5Ea5qfd6f53bd156fbc101723.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/clo/3873634971.html">Jordan 3s true blues</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$180</span></span> <small> (Lakewood )</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/clo/" data-cat="clo">clothing &amp; accessories - by owner</a> </span> </p> <p class="row" data-pid="3873485220"> <a href="/wan/3873485220.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/wan/3873485220.html">Wanted iPhone 4S and 5 ** Cash 303..909..4216...today cash</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$300</span></span> <small> (Denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/wan/" data-cat="wan">items wanted</a> </span> </p> <p class="row" data-pid="3819907663"> <a href="/mod/3819907663.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3819907663.html">Unlocks&amp;&amp;JailBreaks (Lakewood) - s. wodsworth blvd -- 303-238-4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3813539678"> <a href="/mod/3813539678.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3813539678.html">IS YOUR PHONE SCREEN BROKE ??itec (S.Wadsworth blvd.303-238-4488 -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3813533951"> <a href="/mod/3813533951.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3813533951.html">WE DO ROOTING!!!! FEDAK CELL - itec (S.Wadsworth blvd.303-238-4488 - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3852136323"> <a href="/ele/3852136323.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/ele/3852136323.html">Two 64gb iPads wifi+4g retina displays!</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500600</span></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/ele/" data-cat="ele">electronics - by owner</a> </span> </p> <p class="row" data-pid="3864964030"> <a href="/sys/3864964030.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/sys/3864964030.html">late 2010 macbook air</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$600</span></span> <small> (thornton)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/sys/" data-cat="sys">computers - by owner</a> </span> </p> <p class="row" data-pid="3838652346"> <a href="/mob/3838652346.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3838652346.html">AT&amp;T white iPhone 5 64gb</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$600</span></span> <small> (Thornton)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3868026704"> <a href="/mob/3868026704.html" class="i" data-id="3Eb3rb3L65Fd5Jc5ted6d13572525752415aa.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3868026704.html">T-MOBILE HTC ONE S 2 CAMERAS BIG SCREEN A LOT OF FUN</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$220</span></span> <small> (Commerce city)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873556118"> <a href="/ele/3873556118.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/ele/3873556118.html"> OtterBox Defender Series for iPhone 5</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$20</span></span> <small> (centennial)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/ele/" data-cat="ele">electronics - by owner</a> </span> </p> <p class="row" data-pid="3820699885"> <a href="/mod/3820699885.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820699885.html">BROKEN SCREEN?? COME SEE US!! - (itec (S. Wadsworth blvd. 303*238*4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820720962"> <a href="/mod/3820720962.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820720962.html">Unlocks&amp;&amp;JailBreaks (Lakewood) - s. wodsworth blvd -- 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848915889"> <a href="/mod/3848915889.html" class="i" data-id="3K43Mb3q25K45Ff5Mdd6ddcfeee1698491b4e.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848915889.html">WE have simple mobile - the SIM revolution - ( itec [ wadsworth Blvd ]</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864074834"> <a href="/mod/3864074834.html" class="i" data-id="3r63Gd3t15G65Ed5qbd6dea5b12757d591e39.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864074834.html">BrokeYour Glass? Fedak Will Fix It itec (S.Wadsworth blvd.303-238-4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864095580"> <a href="/mod/3864095580.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864095580.html">Best Deals on Repairs - (itec) 303-238-4488 - [lakewood] - - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864088565"> <a href="/mod/3864088565.html" class="i" data-id="3ra3t53Nc5Gd5r95t2d6de2d4ce2861561f4d.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864088565.html">+++++++hospital for iphones+++++++(itec) 303-238-4488 [lakewood] - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864070756"> <a href="/mod/3864070756.html" class="i" data-id="3te3F43se5L85K85s1d6dfc5e29b1c7ee1180.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864070756.html">Hacemos reparo de celulares*** +++ (itec) 303-238-4488 - - - - - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864118601"> <a href="/mod/3864118601.html" class="i" data-id="3E43t53qf5Id5L35q9d6def61e5ca51a61bc8.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864118601.html">Best Deals on Repairs - (itec) 303-238-4488 - [lakewood] - - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864067641"> <a href="/mod/3864067641.html" class="i" data-id="3r53J33Hc5K65H95J1d6d5edcff32541c112f.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864067641.html">---- SHATTERED SCREEN ??? ---- (303*238*4488) - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849028045"> <a href="/mod/3849028045.html" class="i" data-id="3re3Ib3Na5G15H15J9d6d33f7ce6992c0108d.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849028045.html">Repairs - flashing - sales - service - (Lakewood) (itec (303*238*4488 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849024686"> <a href="/mod/3849024686.html" class="i" data-id="3E93r73s95N85rf5Ffd6dba335c4d4f9514d5.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849024686.html">WE DO ROOTING!!!! FEDAK CELL - itec (S.Wadsworth blvd.303-238-4488 - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849022394"> <a href="/mod/3849022394.html" class="i" data-id="3rb3G23I65F55q45t8d6d5ef79c93346f1097.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849022394.html">We Fix Ipads &amp; Ipods And Tablets-(itec (S.Wadsworth blvd.303*238*4488 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849019901"> <a href="/mod/3849019901.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849019901.html">---- SHATTERED SCREEN ??? ---- (303*238*4488) - itec - - - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849145219"> <a href="/mod/3849145219.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849145219.html">Servicios de televisión e internet*!*!(Lakewood) (itec (303*238*4488)</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849114590"> <a href="/mod/3849114590.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849114590.html">00BROKEN SCREEN?? COME SEE US!!itec (S.Wadsworth blvd.303-238-4488 - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820695200"> <a href="/mod/3820695200.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820695200.html">**Repair***iphones**ipad**and**tablets -(Lakewood) (itec (303*238*4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820690368"> <a href="/mod/3820690368.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820690368.html">Smartphones Gratis***** (S.Wadsworth blvd 303*238*4488) - itec - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820686670"> <a href="/mod/3820686670.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820686670.html">we fix all broken screens ipads ipods iphones - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <small> ((itec (S. Wadsworth blvd. 303*238*4488)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820386257"> <a href="/mod/3820386257.html" class="i" data-id="3t83F83N65L45Ga5t3d6d668e88470a551f6f.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820386257.html">BROKEN SCREEN?? COME SEE US!! - (itec (S. Wadsworth blvd. 303*238*4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820028416"> <a href="/mod/3820028416.html" class="i" data-id="3rb3t73Lc5Nb5Fe5tcd6d285132f4c9de1940.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820028416.html">We Fix All Tablets -( itec [ wadsworth Blvd ] .... 303-238-4488 - - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3820024128"> <a href="/mod/3820024128.html" class="i" data-id="3r13t83qb5N65F55t9d6dd8f1ce56950d1752.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820024128.html">Reparamos todo tipo de celulares!-*!(Lakewood) (itec (303*238*4488) - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3852561751"> <a href="/mob/3852561751.html" class="i" data-id="3M83J23H15ra5Ke5t2d668b502480fab3179d.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3852561751.html">iPhone 5 AT&amp;T 16GB</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$490</span></span> <small> (South Aurora)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3825190238"> <a href="/mob/3825190238.html" class="i" data-id="3Lb3F93Ia5If5K85M7d5nbdd8af2d71691470.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3825190238.html">pink otter box </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$30</span></span> <small> (Littleton)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-latitude="39.6530339001628" data-longitude="-104.772437510694" data-pid="3873501004"> <a href="/for/3873501004.html" class="i" data-id="3L13Fa3Hd5Gb5F65scd6f7b01035c153d1ecb.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/for/3873501004.html">Online Garage Sale / Lot Sale - Tons of Stuff </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$1</span></span> <small> (Aurora)</small> <span class="px"> <span class="p"> pic&nbsp;<a href="#" class="maptag" data-pid="3873501004">map</a></span></span> </span> <a class="gc" href="/for/" data-cat="for">general - by owner</a> </span> </p> <p class="row" data-pid="3873438619"> <a href="/ele/3873438619.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/ele/3873438619.html">iPhone 5 Verizon never opened 16gb</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$510</span></span> <small> (Arvada)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/ele/" data-cat="ele">electronics - by owner</a> </span> </p> <p class="row" data-pid="3873449006"> <a href="/mob/3873449006.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873449006.html">iPhone 5 AT&amp;T 16GB Black Perfect Condition</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$520</span></span> <small> (Brighton)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873374270"> <a href="/wan/3873374270.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/wan/3873374270.html">Buyin iPhone 4S &amp; 5 ....pay 100% CASH..303-909-42..16</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$300</span></span> <small> (Lakewood)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/wan/" data-cat="wan">items wanted</a> </span> </p> <p class="row" data-pid="3873268036"> <a href="/sys/3873268036.html" class="i" data-id="3rd3tc3sd5N75M85t6d6f7fa25580342f1456.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/sys/3873268036.html">Mint 13" Macbook Pro 750GB 2.8 i7</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$650</span></span> <small> (Firm)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/sys/" data-cat="sys">computers - by owner</a> </span> </p> <p class="row" data-pid="3867450816"> <a href="/mob/3867450816.html" class="i" data-id="3F23s23N25Kd5Ma5t6d6cc60ae6b096641ef2.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3867450816.html">iPhone 5 new 2 weeks old comes with everything AT&amp;T white</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <small> (DENVER DOWNTOWN)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873372930"> <a href="/mob/3873372930.html" class="i" data-id="3r83t73s45Ea5s75t5d6fbd2c780edaf3114d.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873372930.html">Lifeproof Iphone 4/4s Cases (13 COLORS) Waterproof / Shockproof</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$30</span></span> <small> (Will Meet)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873359945"> <a href="/mob/3873359945.html" class="i" data-id="3Ib3N63Hd5I95F55tfd6fc418901d84271a0f.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873359945.html">selling white iphone 5 16gb with screen protector and a 3D case</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <small> (Smokey Hill and Quincy Aurora)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873303600"> <a href="/mob/3873303600.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873303600.html">sprint iphone 5 32gb clean esn </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$510</span></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-latitude="39.5931025147953" data-longitude="-104.876200167387" data-pid="3873268522"> <a href="/syd/3873268522.html" class="i" data-id="3rf3I43s75Gc5H85q9d6f715a0ebc6b16101b.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/syd/3873268522.html">Ditch CenturyLink &amp; Save.....Business Phone System</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> pic&nbsp;<a href="#" class="maptag" data-pid="3873268522">map</a></span></span> </span> <a class="gc" href="/syd/" data-cat="syd">computers - by dealer</a> </span> </p> <p class="row" data-pid="3867037644"> <a href="/mob/3867037644.html" class="i" data-id="3s43q33H65K75s95t6d6c8ef99608e8db1f55.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3867037644.html">BRAND NEW IPHONE 5 FACTORY UNLOCKED</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873213985"> <a href="/mob/3873213985.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873213985.html">iPhone 5 At&amp;t</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$475</span></span> <small> (Westminster)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3811168213"> <a href="/mob/3811168213.html" class="i" data-id="3G23M43F95Nd5E25H5d5h749e07ae48051066.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3811168213.html">iphone 5 black for verizon..GREAT CONDITIONS -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <small> (Denver)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3848517146"> <a href="/mob/3848517146.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3848517146.html">Iphone 5 16gb White Brand New!</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$560</span></span> <small> (Aurora)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3814944140"> <a href="/mob/3814944140.html" class="i" data-id="3r83Gf3L15N45s65Mcd6fba9c6489ec4c1c47.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3814944140.html">i phone 4 At&amp;t</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$200</span></span> <small> (Broomfield )</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873164641"> <a href="/mob/3873164641.html" class="i" data-id="3Ka3Fe3Ne5s55Hf5t2d6f7a1c06cbe38c1784.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873164641.html">beats by dr. dre Lady GAGA iPhone 5 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$20</span></span> <small> (Southeast Denver)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3843364585"> <a href="/mod/3843364585.html" class="i" data-id="3I63Jc3Hd5N45Fc5H3d610d6c16f698b41d70.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3843364585.html">WE DO SIM CUT nano and micro size...Net10,SIMPLE MOBILE, TMOBILE, H2O</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$1</span></span> <small> (8020 N Federal Blvd suite 8)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3828930674"> <a href="/mob/3828930674.html" class="i" data-id="3G43K63Nb5Lc5K55Mad5p4f253d49af071b6b.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3828930674.html">iphone 5</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$610</span></span> <small> (aurora)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873121516"> <a href="/mob/3873121516.html" class="i" data-id="3K23F33I25Ia5N45J9d6f06da27bdcfc61ba0.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873121516.html">Iphone 5 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$450</span></span> <small> (Denver, Co)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3868776965"> <a href="/mod/3868776965.html" class="i" data-id="3ta3I13He5Gd5r55s8d6d62ff5eb77dec1756.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3868776965.html">mytouch 4g</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$180</span></span> <small> (8020 N Federal Blvd suite 8)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3873109375"> <a href="/mob/3873109375.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3873109375.html">*****iphone 5 need to sell asap*****</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <small> (Arvada )</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3873094454"> <a href="/mod/3873094454.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3873094454.html">►Remotely Unlock your Iphone !! www.DenUnlock.com </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$10</span></span> <small> (SE Aurora Parker Centenial)</small> <span class="px"> <span class="p"> img</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3868454747"> <a href="/mob/3868454747.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3868454747.html">White iPhone 5(small crack)</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$200</span></span> <small> (Aurora)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3864237578"> <a href="/mob/3864237578.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3864237578.html">IPhone 5 slate black 16 GB Verizon like new</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$500</span></span> <small> (Metro Denver )</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3872864855"> <a href="/sys/3872864855.html" class="i" data-id="3Le3s23q95r95H25Jad6fe9d10bcbb9bc121f.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/sys/3872864855.html">Brand new Desktop GATEWAY TRADE?</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$275</span></span> <small> (Denver highlands )</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/sys/" data-cat="sys">computers - by owner</a> </span> </p> <p class="row" data-pid="3872916834"> <a href="/ele/3872916834.html" class="i" data-id="3L43sb3qa5G65s55tbd6fc7fda89d7be215a3.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/ele/3872916834.html">Integra DTR50.3 THX® Select2 Plus™, 3-Zone 7.2-Ch Network AV Receiver </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$950</span></span> <small> (Denver, CO)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/ele/" data-cat="ele">electronics - by owner</a> </span> </p> <p class="row" data-pid="3872903511"> <a href="/mob/3872903511.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3872903511.html"> ^ ^ ^ ^ ^ BUYING iphone 4s TODAY! ^ ^ ^ ^ ^ </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <small> (Denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3835946327"> <a href="/mob/3835946327.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3835946327.html">Motorola Razr Maxx HD for sale or trade for Iphone 5 in 32 or 64</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$370</span></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3872905086"> <a href="/mob/3872905086.html" class="i" data-id="3Mb3F83Nd5r65q15t4d6fe3f94db8976913ad.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3872905086.html">iPhone 5 lifeproof case (NEW)</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$65</span></span> <small> (Denver Lakewood)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3820211559"> <a href="/mod/3820211559.html" class="i" data-id="3Ee3K83Md5N85Ld5E3d5l443bca58d9e5137c.jpg"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3820211559.html">^ iPhone Flashing ^</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$45</span></span> <small> (Aurora)</small> <span class="px"> <span class="p"> pic</span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848925348"> <a href="/mod/3848925348.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848925348.html">~~~iTec iPhone Hostpital~~~ itec (S.Wadsworth blvd.303-238-4488 - - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849011854"> <a href="/mod/3849011854.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849011854.html">**Repair***iphones**ipad**and**tablets lakewood 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849013634"> <a href="/mod/3849013634.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849013634.html">Broke Your Phone?itec Can Fix it!!(itec (S.Wadsworth blvd.303-238-4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849007901"> <a href="/mod/3849007901.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849007901.html">we can fix your ipod - lakewood - itec 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849005476"> <a href="/mod/3849005476.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849005476.html">--- SHATTERED SCREEN ??? ---- (303*238*4488) - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848936708"> <a href="/mod/3848936708.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848936708.html">***THE Repair Center*** !(Lakewood) (itec (303*238*4488) - - - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848922479"> <a href="/mod/3848922479.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848922479.html">Smartphones Gratis***** (S.Wadsworth blvd 303*238*4488) - itec - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3849009722"> <a href="/mod/3849009722.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3849009722.html">WANT TO CHANGE YOUR IPHONE 4's COLOR ??? - 303*238*4488 lakewood -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864866699"> <a href="/mod/3864866699.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864866699.html">WANT TO CHANGE YOUR IPHONE 4's COLOR ??? - 303*238*4488 lakewood -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864871905"> <a href="/mod/3864871905.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864871905.html">**Repair***iphones**ipad**and**tablets lakewood 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864908901"> <a href="/mod/3864908901.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864908901.html">The Iphone Hospital 3G,3Gs,4G,4Gs,5G (itec) 303-238-4488 - - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3862796325"> <a href="/mod/3862796325.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3862796325.html">**iTec Fixs Android**++ - (itec) 303-238-4488 - [lakewood] - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3862794137"> <a href="/mod/3862794137.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3862794137.html">---- SHATTERED SCREEN ??? ---- (303*238*4488) - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3862792595"> <a href="/mod/3862792595.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3862792595.html">Repairs - flashing - sales - service - (Lakewood) (itec (303*238*4488 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3862790688"> <a href="/mod/3862790688.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3862790688.html">**iTec Fixs Android**++ - (itec) 303-238-4488 - [lakewood] - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3872863551"> <a href="/mob/3872863551.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mob/3872863551.html"> * * * * * I'LL BUY YOUR CRACKED SCREEN iphone 5 * * * * * </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"><span class="price">$300</span></span> <small> (Denver)</small> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mob/" data-cat="mob">cell phones - by owner</a> </span> </p> <p class="row" data-pid="3862788459"> <a href="/mod/3862788459.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3862788459.html">BrokeYour Glass? Fedak Will Fix It itec (S.Wadsworth blvd.303-238-4488</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848903024"> <a href="/mod/3848903024.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848903024.html">***THE Repair Center*** itec -- lakewood 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848899233"> <a href="/mod/3848899233.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848899233.html">We fix Phones -- lakewood -- itec 303-238-4488 - - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848895111"> <a href="/mod/3848895111.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848895111.html">***THE Repair Center*** itec -- lakewood 303-238-4488 - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3848881209"> <a href="/mod/3848881209.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3848881209.html">Water damage...? No problem!!!! 303-238-4488 itec - lakewood - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864018343"> <a href="/mod/3864018343.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864018343.html">bring your verizon phone and activate it with pageplus - </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864022831"> <a href="/mod/3864022831.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864022831.html">Repairs - flashing - sales - service - (Lakewood) (itec (303*238*4488 </a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p> <p class="row" data-pid="3864015106"> <a href="/mod/3864015106.html" class="i"></a> <span class="pl"> <span class="star"></span> <small> <span class="date">Jun 15</span></small> <a href="/mod/3864015106.html">**iTec Fixs Android**++ - (itec) 303-238-4488 - [lakewood] - - - - - -</a> </span> <span class="l2"> <span class="pnr"> <span class="pp"></span> <span class="px"> <span class="p"> </span></span> </span> <a class="gc" href="/mod/" data-cat="mod">cell phones - by dealer</a> </span> </p><div class="sortby">sort by: <strong>most recent</strong> <a href="/search/sss?sort=rel&amp;query=iphone 5">best match</a> <a href="/search/sss?sort=priceasc&amp;query=iphone 5">low price</a> <a href="/search/sss?sort=pricedsc&amp;query=iphone 5">high price</a></div><h4 class="ban resultshdr">
290
+ <span class="nplink prev">&#171; Prev</span>
291
+ <span class="nplink next"><a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=100">Next &#187;</a>
292
+ </span>
293
+ Found: 2048 Displaying: 1 - 100
294
+ <br><span class="pagelinks"> <b>1</b> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=100">2</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=200">3</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=300">4</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=400">5</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=500">6</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=600">7</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=700">8</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=800">9</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=900">10</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1000">11</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1100">12</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1200">13</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1300">14</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1400">15</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1500">16</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1600">17</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1700">18</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1800">19</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=1900">20</a> | <a href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;s=2000">21</a> </span>
295
+ </h4>
296
+
297
+
298
+
299
+
300
+ <div id="floater">
301
+ <img class="loading" src="http://www.craigslist.org/images/map/animated-spinny.gif">
302
+ <img class="payload" src="http://www.craigslist.org/images/map/animated-spinny.gif">
303
+ </div>
304
+ <div class="loadposting">
305
+ <a href="#" class="full btn">[+]</a> <a href="#" class="close btn">[&ndash;]</a>
306
+ <div class="pleasewait">
307
+ <br>
308
+ <img src="http://www.craigslist.org/favicon.ico" alt="">
309
+ <br>CL<br>
310
+ <img src="http://www.craigslist.org/favicon.ico" alt="">
311
+ <br><br>
312
+ </div>
313
+ </div>
314
+
315
+ </blockquote>
316
+ </section>
317
+
318
+ <ul id="fmtsel">
319
+ <li><b>FORMAT:</b></li>
320
+ <li class="fsel" data-mode="mobile">mobile</li>
321
+ <li class="fsel" data-mode="regular">regular</li>
322
+ </ul>
323
+
324
+ <footer>
325
+
326
+ <span class="rss">
327
+ <a class="l" href="http://denver.craigslist.org/search/sss?query=iphone 5&amp;format=rss">RSS</a>
328
+ <a href="http://www.craigslist.org/about/rss">(?)</a><br>
329
+ </span>
330
+
331
+ <ul class="clfooter">
332
+ <li>&copy; 2013 craigslist</li>
333
+ <li><a href="//www.craigslist.org/about/help/">help</a></li>
334
+ <li><a href="//www.craigslist.org/about/terms.of.use">terms</a></li>
335
+ <li><a href="//www.craigslist.org/about/privacy.policy">privacy</a></li>
336
+ <li><a href="//www.craigslist.org/about/scams">safety</a></li>
337
+ <li><a href="https://forums.craigslist.org/?forumID=8">feedback</a></li>
338
+ <li><a href="//www.craigslist.org/about/">about</a></li>
339
+ <li><a href="//www.craigslist.org/about/craigslist_is_hiring" style="color: #0b0">cl jobs</a></li>
340
+ </ul>
341
+ </footer>
342
+
343
+ </article>
344
+ <!--[if lte IE 7]>
345
+ <script type="text/javascript" src="http://www.craigslist.org/js/json2.js?v=c1da07f5953739dffc17fd1db3c5313c"></script>
346
+ <![endif]-->
347
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery-1.9.1.js?v=56eaef3b8a28d9d45bb4f86004b0eaae"></script>
348
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery-ui-1.9.2.custom.js?v=32c38510c8db71f2fbef00da891aeaac"></script>
349
+ <script type="text/javascript" src="http://www.craigslist.org/js/formats.js?v=1eec461f1f94ef8f90ea4002a264dc42"></script>
350
+ <script type="text/javascript" src="http://www.craigslist.org/js/toChecklist.js?v=b163a7aa23a6dad79076f92e56c622f7"></script>
351
+ <script type="text/javascript" src="http://www.craigslist.org/js/jquery.form-defaults.js?v=421648d06bad2f29bbfc2f66c5205aeb"></script>
352
+ <script type="text/javascript" src="http://www.craigslist.org/js/cookie.js?v=0cce2559d540be0bb52211e4105921c4"></script>
353
+ <script type="text/javascript" src="http://www.craigslist.org/js/localstorage.js?v=dc71e9bc7ca6c8ccdc60b33b8b22b699"></script>
354
+ <script type="text/javascript" src="http://www.craigslist.org/js/tocs.js?v=b60515c75620266f9a12895cbd88c573"></script>
355
+ <script type="text/javascript" src="http://www.craigslist.org/js/postings.js?v=b17a7bf5ec42baf99fa171a6fe3de6ad"></script>
356
+ <!--[if gte IE 8]><!-->
357
+ <script type="text/javascript" src="http://www.craigslist.org/js/favorites.js?v=a0c5ed5cf33405e33fb68769933e8557"></script>
358
+ <!--<![endif]-->
359
+
360
+ </body>
361
+ </html>
metadata ADDED
@@ -0,0 +1,114 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: craigslist_scraper
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.alpha
5
+ platform: ruby
6
+ authors:
7
+ - mark nery
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-06-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rspec
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: '2.6'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: '2.6'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: a gem that scrapes craigslist data
70
+ email:
71
+ - marknery@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - craigslist_scraper.gemspec
82
+ - lib/craigslist_scraper.rb
83
+ - lib/craigslist_scraper/cities.rb
84
+ - lib/craigslist_scraper/craigslist.rb
85
+ - lib/craigslist_scraper/version.rb
86
+ - spec/craigslist_spec.rb
87
+ - spec/mock_craigslist_data.html
88
+ homepage: https://github.com/mark-nery/craigslist_scraper
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - '>='
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - '>'
104
+ - !ruby/object:Gem::Version
105
+ version: 1.3.1
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.0.3
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: a gem that scrapes craigslist data
112
+ test_files:
113
+ - spec/craigslist_spec.rb
114
+ - spec/mock_craigslist_data.html