etsy 0.3.1 → 0.3.2

Sign up to get free protection for your applications and to get access to all the features.
data/.travis.yml CHANGED
@@ -2,5 +2,12 @@ language: ruby
2
2
  rvm:
3
3
  - 1.9.3
4
4
  - jruby-19mode
5
- - rbx-2
5
+ - rbx
6
6
  - 2.1.5
7
+
8
+ before_install:
9
+ - gem install bundler
10
+
11
+ matrix:
12
+ allow_failures:
13
+ - rvm: rbx
data/Gemfile CHANGED
@@ -5,3 +5,7 @@ gemspec
5
5
  if RUBY_VERSION < '1.9'
6
6
  gem 'activesupport', '< 4.0'
7
7
  end
8
+
9
+ if RUBY_VERSION < '2.0'
10
+ gem 'json', '<= 1.5.5'
11
+ end
data/lib/etsy/about.rb ADDED
@@ -0,0 +1,15 @@
1
+ module Etsy
2
+ class About
3
+ include Etsy::Model
4
+
5
+ attributes :status, :story_headline, :story_leading_paragraph,
6
+ :story, :related_links, :url
7
+ attribute :id, :from => :shop_id
8
+ attribute :shop_id, :from => :shop_id
9
+
10
+ def self.find_by_shop(shop)
11
+ get("/shops/#{shop.id}/about")
12
+ end
13
+
14
+ end
15
+ end
data/lib/etsy/listing.rb CHANGED
@@ -45,7 +45,8 @@ module Etsy
45
45
  attributes :title, :description, :state, :url, :price, :quantity,
46
46
  :tags, :materials, :hue, :saturation, :brightness, :is_black_and_white,
47
47
  :featured_rank, :occasion, :num_favorers, :user_id,
48
- :shipping_template_id, :who_made, :when_made
48
+ :shipping_template_id, :who_made, :when_made,
49
+ :original_creation_tsz, :style, :category_path
49
50
 
50
51
  association :image, :from => 'Images'
51
52
 
@@ -58,7 +59,7 @@ module Etsy
58
59
  options.merge!(:require_secure => true)
59
60
  put("/listings/#{listing.id}", options)
60
61
  end
61
-
62
+
62
63
  def self.destroy(listing, options = {})
63
64
  options.merge!(:require_secure => true)
64
65
  delete("/listings/#{listing.id}", options)
@@ -124,7 +125,7 @@ module Etsy
124
125
  # The collection of images associated with this listing.
125
126
  #
126
127
  def images
127
- @images ||= Image.find_all_by_listing_id(id, oauth)
128
+ @images ||= listing_images
128
129
  end
129
130
 
130
131
  # The primary image for this listing.
@@ -133,8 +134,16 @@ module Etsy
133
134
  images.first
134
135
  end
135
136
 
136
- def variations
137
- self.class.get_all("/listings/#{id}/variations")
137
+ # Listing category name
138
+ #
139
+ def category
140
+ path = category_path.join('/')
141
+ @category ||= Category.find(path)
142
+ end
143
+
144
+ def variations(options={})
145
+ options.merge!(:require_secure => true)
146
+ self.class.get_all("/listings/#{id}/variations", oauth.merge(options))
138
147
  end
139
148
 
140
149
  # If these are your desired variations:
@@ -262,9 +271,17 @@ module Etsy
262
271
  end
263
272
 
264
273
  private
265
-
274
+
266
275
  def oauth
267
276
  oauth = (token && secret) ? {:access_token => token, :access_secret => secret} : {}
268
277
  end
278
+
279
+ def listing_images
280
+ if result && result["Images"]
281
+ result["Images"].map { |hash| Image.new(hash) }
282
+ else
283
+ Image.find_all_by_listing_id(id, oauth)
284
+ end
285
+ end
269
286
  end
270
287
  end
data/lib/etsy/model.rb CHANGED
@@ -83,7 +83,7 @@ module Etsy
83
83
  def put(endpoint, options={})
84
84
  Request.put(endpoint, options)
85
85
  end
86
-
86
+
87
87
  def delete(endpoint, options={})
88
88
  Request.delete(endpoint, options)
89
89
  end
data/lib/etsy/receipt.rb CHANGED
@@ -12,6 +12,10 @@ module Etsy
12
12
  get_all("/shops/#{shop_id}/receipts", options)
13
13
  end
14
14
 
15
+ def self.find_all_by_shop_id_and_status(shop_id, status, options = {})
16
+ get_all("/shops/#{shop_id}/receipts/#{status}", options)
17
+ end
18
+
15
19
  def created_at
16
20
  Time.at(creation_tsz)
17
21
  end
@@ -20,5 +24,14 @@ module Etsy
20
24
  @buyer ||= User.find(buyer_id)
21
25
  end
22
26
 
27
+ def transactions
28
+ unless @transactions
29
+ options = {}
30
+ options = options.merge(:access_token => token, :access_secret => secret) if (token && secret)
31
+ @transactions = Transaction.find_all_by_receipt_id(id, options)
32
+ end
33
+ @transactions
34
+ end
35
+
23
36
  end
24
37
  end
data/lib/etsy/shop.rb CHANGED
@@ -30,6 +30,7 @@ module Etsy
30
30
  attribute :message, :from => :sale_message
31
31
  attribute :url, :from => :url
32
32
  attribute :favorers_count, :from => :num_favorers
33
+ attribute :icon_url, :from => 'icon_url_fullxfull'
33
34
 
34
35
  # Retrieve one or more shops by name or ID:
35
36
  #
@@ -75,6 +76,10 @@ module Etsy
75
76
  Section.find_by_shop(self)
76
77
  end
77
78
 
79
+ def about
80
+ About.find_by_shop(self)
81
+ end
82
+
78
83
  private
79
84
  def oauth
80
85
  oauth = (token && secret) ? {:access_token => token, :access_secret => secret} : {}
@@ -16,6 +16,11 @@ module Etsy
16
16
  get_all("/users/#{user_id}/transactions", options)
17
17
  end
18
18
 
19
+ def self.find_all_by_receipt_id(receipt_id, options = {})
20
+ get_all("/receipts/#{receipt_id}/transactions", options)
21
+ end
22
+
23
+
19
24
  def buyer
20
25
  @buyer ||= User.find(buyer_id)
21
26
  end
data/lib/etsy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Etsy
2
- VERSION = "0.3.1"
2
+ VERSION = "0.3.2"
3
3
  end
data/lib/etsy.rb CHANGED
@@ -28,6 +28,7 @@ require 'etsy/section'
28
28
  require 'etsy/favorite_listing'
29
29
  require 'etsy/receipt'
30
30
  require 'etsy/variation/property_set'
31
+ require 'etsy/about'
31
32
 
32
33
  # = Etsy: A friendly Ruby interface to the Etsy API
33
34
  #
@@ -83,7 +84,7 @@ module Etsy
83
84
  def self.api_secret
84
85
  Thread.current[:etsy_api_secret] || @api_secret
85
86
  end
86
-
87
+
87
88
  def self.api_secret=(secret)
88
89
  @api_secret ||= secret
89
90
  Thread.current[:etsy_api_secret] = secret
@@ -102,14 +103,14 @@ module Etsy
102
103
  @environment = environment
103
104
  @host = (environment == :sandbox) ? SANDBOX_HOST : PRODUCTION_HOST
104
105
  end
105
-
106
+
106
107
  def self.protocol=(protocol)
107
108
  unless ["http", "https"].include?(protocol.to_s)
108
109
  raise(ArgumentError, "protocol must be set to either 'http' or 'https'")
109
110
  end
110
111
  @protocol = protocol.to_s
111
112
  end
112
-
113
+
113
114
  # Allow throwing API errors
114
115
  #
115
116
  def self.silent_errors=(bool)
@@ -0,0 +1,16 @@
1
+ {
2
+ "count":1,
3
+ "results":[
4
+ { "shop_id": 8740774,
5
+ "status": "active",
6
+ "story_headline": "A shop long in the making...",
7
+ "story_leading_paragraph": "This is the leading paragraph",
8
+ "story": "I grew up with strong women in my family who all had a love of creating. My mom and grandma always encouraged a lifelong love of creating Working with glass, wire, and mineral components brings back my graduate school days, when I studied these items from a scientific point-of-view. Here&#39;s hoping I can create something that gives you a little sparkle in your life!",
9
+ "related_links": {
10
+ "link-0": {"title": "facebook", "url": "https://www.facebook.com/pebbleplusmetal/"},
11
+ "link-1": {"title": "pinterest", "url": "https://www.pinterest.com/PebblePlusMetal/pebble%2Bmetal/"}
12
+ },
13
+ "url": "https://www.etsy.com/shop/PebblePlusMetal/about"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1 @@
1
+ {"count":1,"results":[{"listing_id":59759273,"state":"active","user_id":7301949,"title":"Vinyl Wall Art Decal -- Multi-colored Flowers Set","description":"The listing is for a beautiful set of multi-colored flowers, colors as shown in the picture.\r\n\r\nExclusive design only from OrqueShaw&#39;s walldecors! you won&#39;t find this anywhere else on etsy!\r\n\r\nHeights of the 4 large flowers: 52in\/37in\/29in\/26in.\r\n\r\nAll of our decals are computer die-cut, there are no &quot;edges&quot; nor &quot;backgrounds&quot;, all you will get is the lovely image! and after applying they will look like they are stenciled on with paint!\r\n\r\nuggested install areas: Walls, Mirrors, Metals, Woods, Plastic...Lightly textured surfaces would be just fine! \r\n\r\n\r\n\r\n\r\nABOUT US AND OUR BEAUTIFUL DECALS:\r\n\r\nWe want to transform your walls....and your lives.\r\nDid you know that you can save literally hundreds of dollars designing your own interior space? Seriously, got bored of painting walls,using stencils, applying borders, and putting up wallpapers?? Using our super convenient n&#39; simply gorgeous wall art decals is a very cool and a great way to make a room shine (or to change a room) w\/out damaging your walls or the bank! great alternative to wall paper or a head board, and without any of the mess and hassle involved with painting. Especially nice if you rent and cannot paint your walls, You can even take your wall decals to work and redesign your office or cubical. Easy to apply even for the creative or somewhat domestically challenged . We carry a variety of colors, styles and themes which you could use to decorate every room for anyone in the family!\r\n\r\nOur wall art decals are hand made, they are easy and fun to install.These wall stickers affix on most smooth surfaces and can be removed without leaving any residues. Complete and simple step-by-step instructions are included with your order. \r\n\r\n\r\nSHIPPING:\r\n\r\n*We combine shipping for multiple purchases!\r\n\r\n*Orders usually ship within 2 business days after the clear of payment. \r\n\r\n*All of our shipments are packed in 3 ply spiral wound mailing tubes to ensure the maximum protection during deliveries.\r\n\r\n*Shipping rates: $9.75 for US and Canada $16.75 for other countries.\r\n\r\n*2-7 business days for shipping in Canada, 6-12 business days for shipping to US and other countries, we are not responsible for the delays caused by the custom clearance.\r\n\r\n*Faster delivery options are available upon request.\r\n\r\n*We ship worldwide except the following places: Africa, China, South & North Korea, Italy, Republic Of Serbia, Turkmenistan and Republic Of Montenegro.\r\n\r\n\r\nPAYMENT:\r\n\r\n*Please remit payment within 3 days. Your product will not be shipped until payment is received. Thank you!\r\n\r\n*If you are not 100% satisfied with your purchase, please return the item in its original condition(unopened) within 30 days of delivery of your shipment. Please note that we cannot accept the returns of opened items or items returned more than 30 days past delivery, shipping cost is not refundable and buyers are responsible for the return shipping fees at any case. \r\n","creation_tsz":1288738828,"ending_tsz":1299042000,"original_creation_tsz":1287867280,"last_modified_tsz":1288738828,"price":"42.00","currency_code":"USD","quantity":1,"tags":["children","wallpaper_graphic","nursery_playroom","red_orange_pink","green_lime_color","furniture","office_room","bedroom_bathroom","nature_garden","girl_boy_baby","everything_else","cheersandtears","front_page","soft_colors"],"materials":["self_adhesive_vinyl","decal_transfer_paper"],"shop_section_id":6489554,"featured_rank":null,"state_tsz":1288738828,"hue":0,"saturation":0,"brightness":100,"is_black_and_white":false,"url":"http:\/\/www.etsy.com\/listing\/59759273\/vinyl-wall-art-decal-multi-colored","views":178,"num_favorers":5,"Images":[{"listing_image_id":1132761, "hex_code":"6B6868", "red":107, "green":104, "blue":104, "hue":0, "saturation":2, "brightness":41, "is_black_and_white":false, "creation_tsz":1485797197, "listing_id":59759273, "rank":1, "url_75x75":"https://img0.etsystatic.com/176/0/12065520/il_75x75.1132761110_kggi.jpg", "url_170x135":"https://img0.etsystatic.com/176/0/12065520/il_170x135.1132761110_kggi.jpg", "url_570xN":"https://img0.etsystatic.com/176/0/12065520/il_570xN.1132761110_kggi.jpg", "url_fullxfull":"https://img0.etsystatic.com/176/0/12065520/il_fullxfull.1132761110_kggi.jpg", "full_height":540, "full_width":720}, {"listing_image_id":1179359, "hex_code":"6E6A6B", "red":110, "green":106, "blue":107, "hue":345, "saturation":3, "brightness":43, "is_black_and_white":false, "creation_tsz":1485797197, "listing_id":59759273, "rank":2, "url_75x75":"https://img1.etsystatic.com/155/0/12065520/il_75x75.1179359629_mhmc.jpg", "url_170x135":"https://img1.etsystatic.com/155/0/12065520/il_170x135.1179359629_mhmc.jpg", "url_570xN":"https://img1.etsystatic.com/155/0/12065520/il_570xN.1179359629_mhmc.jpg", "url_fullxfull":"https://img1.etsystatic.com/155/0/12065520/il_fullxfull.1179359629_mhmc.jpg", "full_height":540, "full_width":720}, {"listing_image_id":1179359, "hex_code":"6C6869", "red":108, "green":104, "blue":105, "hue":345, "saturation":3, "brightness":42, "is_black_and_white":false, "creation_tsz":1485797197, "listing_id":59759273, "rank":3, "url_75x75":"https://img1.etsystatic.com/144/0/12065520/il_75x75.1179359767_d5qd.jpg", "url_170x135":"https://img1.etsystatic.com/144/0/12065520/il_170x135.1179359767_d5qd.jpg", "url_570xN":"https://img1.etsystatic.com/144/0/12065520/il_570xN.1179359767_d5qd.jpg", "url_fullxfull":"https://img1.etsystatic.com/144/0/12065520/il_fullxfull.1179359767_d5qd.jpg", "full_height":540, "full_width":720}, {"listing_image_id":1132761, "hex_code":"6D6A6B", "red":109, "green":106, "blue":107, "hue":340, "saturation":2, "brightness":42, "is_black_and_white":false, "creation_tsz":1485797197, "listing_id":59759273, "rank":4, "url_75x75":"https://img0.etsystatic.com/169/0/12065520/il_75x75.1132761176_n7b7.jpg", "url_170x135":"https://img0.etsystatic.com/169/0/12065520/il_170x135.1132761176_n7b7.jpg", "url_570xN":"https://img0.etsystatic.com/169/0/12065520/il_570xN.1132761176_n7b7.jpg", "url_fullxfull":"https://img0.etsystatic.com/169/0/12065520/il_fullxfull.1132761176_n7b7.jpg", "full_height":540, "full_width":720}, {"listing_image_id":1179359, "hex_code":"6B6868", "red":107, "green":104, "blue":104, "hue":0, "saturation":2, "brightness":41, "is_black_and_white":false, "creation_tsz":1485797197, "listing_id":59759273, "rank":5, "url_75x75":"https://img1.etsystatic.com/169/0/12065520/il_75x75.1179359817_215n.jpg", "url_170x135":"https://img1.etsystatic.com/169/0/12065520/il_170x135.1179359817_215n.jpg", "url_570xN":"https://img1.etsystatic.com/169/0/12065520/il_570xN.1179359817_215n.jpg", "url_fullxfull":"https://img1.etsystatic.com/169/0/12065520/il_fullxfull.1179359817_215n.jpg", "full_height":540, "full_width":720}]}],"params":{"listing_id":"59759273", "includes":"Images"},"type":"Listing"}
@@ -1 +1 @@
1
- {"count":50100,"results":[{"shop_id":5008420,"user_id":5631278,"creation_tsz":1203343552,"shop_name":"boutiqueviolet","title":"gingham girl","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1210703454,"listing_active_count":0,"login_name":"boutiqueviolet","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281542473,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5410789.jpg"},{"shop_id":5013693,"user_id":6315636,"creation_tsz":1223330650,"shop_name":"CharliesJems","title":"Charlie&#39;s J-em&#39;s","announcement":"There will be some great things comming soon. Just waiting on pictuers fo items.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1223497646,"listing_active_count":0,"login_name":"CharliesJems","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281638257,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5017224,"user_id":5269119,"creation_tsz":1188176687,"shop_name":"eclecticadornment","title":"create something unique","announcement":"Welcome to Eclectic Adornment!\r\n\r\nHere you&#39;ll find beads and jewelry making findings of all kinds so that you can create your own unique jewelry pieces to suit your style.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Please let me know how you heard about Eclectic Adornment...\r\n\r\nThanks so much for purchasing from Eclectic Adornment. Your business is appreciated!","last_updated_tsz":1230845537,"listing_active_count":0,"login_name":"eclecticadornment","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281730119,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image0.etsy.com\/iusb_760x100.5513948.jpg"},{"shop_id":5019313,"user_id":6316690,"creation_tsz":1223349172,"shop_name":"JohnnyBGlass","title":"Johnny B Glass","announcement":"With the arrival of autumn I have decided to kick off the season with a sale! I am going to clear out all the pendants in the shop, with a superb $5 price cut on all pendants $10-16. Jump on some real unique and high quality art for a great price.\r\n\r\nHigh quality unique glass creations! Each comes wearable with a cord and clasp. I put a personal touch into every piece and you will be getting something truly unique. These things sell great in jewelry and gift shops ect. I am available for bulk orders,contact me. I really take pride in my art and guarantee each customer a really high quality borosilicate glass pendant.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you and enjoy!","last_updated_tsz":1224728111,"listing_active_count":0,"login_name":"JohnnyBGlass","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281638023,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.5790234.jpg"},{"shop_id":5020796,"user_id":5548291,"creation_tsz":1200523632,"shop_name":"SimplyJane","title":"Simply Jane: Painting and Art Supplies","announcement":"At Simply Jane, everyone is an artist. Simple designs are great for little hands just learning to paint and older folks trying out new techniques. The playful subject matter appeals across the generations (although the pony is especially loved by girls age 10-12!) The dragons, garden flowers, and peace signs that fill our studio can now fill your lives as well. Enjoy!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thanks for adding a bit of Simply Jane art to your life! We specialize in teaching young or timid painters how to get started. If you live nearby, stop by the Minneapolis studio anytime. \r\n\r\nArt is a great way to unwind, learn, and explore your creative side. Don&#39;t worry about staying in the lines. When you finish painting, you can use a Sharpie to reinforce the lines for a polished look. If you plan to use your art (boxes, frames, candlesticks, etc) add a coat of polyurethane when you&#39;re done to protect the paint from chipping. \r\n\r\nWe&#39;d love to see a picture of your finished piece! Submit a photo to jane@simplyjanestudio.com to be considered for the website. \r\n\r\nThanks again and happy painting! \r\n\r\nSimply Jane \r\njane@simplyjanestudio.com","last_updated_tsz":1281625069,"listing_active_count":0,"login_name":"SimplyJane","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281622551,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5317737.jpg"},{"shop_id":5030407,"user_id":7559882,"creation_tsz":1245284597,"shop_name":"alycejns","title":"A & J Jewelry Design Shop","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Welcome to my little shop! I hope you enjoy yourself and I hope that you will want to come back real soon! \r\n\r\nDon&#39;t forget to tell your friends about me!\r\n\r\nEnjoy your stay!","last_updated_tsz":1245285348,"listing_active_count":0,"login_name":"alycejns","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281727217,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.6384470.jpg"},{"shop_id":5039460,"user_id":6259251,"creation_tsz":1221880352,"shop_name":"thethreadedrose","title":"The Threaded Rose","announcement":"Welcome! \r\nAs you can see I am just starting, I will be listing sewn goods as well as jewelry, odd combination but its my passion. Come back often I will be adding things a few at a time.\r\nThank you\r\nRose","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1248896820,"listing_active_count":0,"login_name":"thethreadedrose","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281644600,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5743855.jpg"},{"shop_id":5040911,"user_id":8271658,"creation_tsz":1255658010,"shop_name":"PawandPurrs","title":"Home of the Dinosaur Doggie PJ","announcement":"Dinosaur Doggies PJ&#39;s, Costumes, Jackets, Pants & Dresses\r\n\r\n\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665Welcome to Paw and Purrs\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665 \r\n\r\nAll dogs want to be pampered! We make items from x-small to x-large breed dogs (From Yorkies to Golden Retreivers & Labs). \r\n\r\nWe have two great dogs, Cindy LuLu our 12 year old rottweillter mix who is an angel. Katie Rose is a 3 year old australian shepard and is a special needs dog. She is very energetic, sweet, and friendly. We love our babies! :O)\r\n\r\nCindy and Katie want to thank you for your business - They give their woof woof approval on all items. We believe that pets are part of the family; they should be spoiled and pampered! \r\n\r\n\u2665\u2665\u2665\u2665Please measure your pet and read size measurements carefully in each listing before purchasing.\u2665\u2665\u2665\u2665 \r\n\r\nAll items are made in a smoke free, pet friendly environment.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Cindy and Katie thank you for your business.","last_updated_tsz":1281496809,"listing_active_count":20,"login_name":"PawandPurrs","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281305978,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.7001281.jpg"},{"shop_id":5042864,"user_id":7645762,"creation_tsz":1247031978,"shop_name":"poetscottageknitting","title":"Poet&#39;s Cottage Knitting","announcement":"Vintage and Antique doll and whimsical designs in PDF format. Fast email delivery. Natural fibres only in yarns and threads.\r\n \r\nDusty Dollies Collection\r\nTingetree Faeries Collection\r\n\r\nPurest care from cottage to you created by Esmerelda in Australia. Patterns and Books published by Esmerelda Jones Publishing ABN 23399215567.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Poet&#39;s Cottage Knitting thanks you for your purchase. If you have questions or wish to enquire about custom design, please email.\r\n\r\nRegards,\r\nEsmerelda","last_updated_tsz":1281792847,"listing_active_count":1,"login_name":"poetscottageknitting","alchemy_message":"Custom designs for antique and vintage dolls. Natural fibres only.","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281126326,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.7126743.jpg"},{"shop_id":5043360,"user_id":5840784,"creation_tsz":1266774727,"shop_name":"Cheyenne2u","title":"Cheyenne2u - From Cheyenne, Wyoming to You \u2665","announcement":"We&#39;re BACK!\r\nSlowly but surely we will be filling our Shoppe with Supplies for your Craft, Sewing & Quilting needs - so come back often!\r\n\r\nWe treat my customers exactly the way we would want to be treated - with prompt communication, shipping and feedback.\r\n\r\nWe hope you enjoy brows&#39;n my Shoppe here - if you have ANY questions, please don&#39;t hesitate to ask.\r\n\r\nKim\r\nCheyenne2u","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you so much for your confidence in making your purchase from Cheyenne2u and our Etsy Shoppe. I hope you enjoy your item and if you have ANY questions, please don&#39;t hesitate to ask.\r\n\r\nIt has been a pleasure to be of service to you and hope you come back in the future.\r\nKim,\r\nCheyenne2u","last_updated_tsz":1281744731,"listing_active_count":36,"login_name":"Cheyenne2u","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":"Welcome to Cheyenne2u \u2013 A mixture of Supplies and soon to be listed Hand Made items from my home to yours.\r\n\r\nQuilting \u2013 Books, Patterns, Magazines, Tools.\r\nSewing \u2013 Crafts, Home D\u00e9cor, Kid&#39;s, Men&#39;s and Women\u2019s Patterns.\r\n\r\n...and everything is stored inside my smoke free home.\r\n\r\nOur Motto: \u201cGiving our best today is the recipe for a better tomorrow.\u201d\r\n\r\nHappy Shopping!\r\n~ Kim, Cheyenne2u\r\nCheyenne2u@gmail.com","policy_payment":"We currently only accept Paypal. If you need to make other arrangements, please contact us personally.","policy_shipping":"Shipping is to USA only.\r\nAll items are shipped to the buyer with quality recycled packing materials and are packaged with utmost care.\r\n\r\nAll orders will be mailed USPS. We will notify you when your purchase is sent out with the delivery confirmation number so you will be able to track your purchase.","policy_refunds":"We L\u2665V happy Buyers!\r\nWe will refund your money for any item that is misrepresented in description and\/or picture(s). Just contact us within 3 days of receipt to discuss your concerns.\r\n\r\nBuyer accepts cost of returning item. Refund will be made in original form as transaction less any Seller\u2019s fees.\r\n\r\nAll will be discussed in full prior to agreement of return.","policy_additional":"Our customer information is kept secure and we will never pass personal information to third parties. We do not share, sell or trade e-mail addresses or any specific details about you or your household. We do not participate in or contribute to cooperative or shared databases.","policy_updated_tsz":1281384693,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.7588835.jpg"},{"shop_id":5046617,"user_id":9646549,"creation_tsz":1269995600,"shop_name":"BridgetMcCarty","title":"Bridget McCarty Miniature Plush Pets","announcement":"New on Etsy! Join me at bridgetmccarty.com or bridgetmccarty.blogspot.com for my facebook fan page.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase! I combine items in shipping at no extra charge. Enjoy!\r\nBridget","last_updated_tsz":1281413993,"listing_active_count":2,"login_name":"BridgetMcCarty","alchemy_message":"","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281388053,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5046863,"user_id":9619518,"creation_tsz":1269704685,"shop_name":"artisticgem","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1281665719,"listing_active_count":44,"login_name":"artisticgem","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281613459,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5047069,"user_id":5854585,"creation_tsz":1222513081,"shop_name":"marlanaleigh","title":"Marlana Leigh: Custom graphics","announcement":"__________________________________________________\r\n99 CENT SALE! Every digital collage sheet is only 99 cents.. get them while they are on sale :) \r\n__________________________________________________\r\n\r\n\r\n\r\nThanks for dropping by! My name is Marlana and I offer custom & premade graphics of all kinds. If you have any questions at all, please do not hesitate to contact me!\r\n\r\nI have a brand new etsy shop with homemade dog treats and accessories, at thepuppylove.etsy.com - please stop by!\r\n\r\nI am also a Scentsy wickless candles consultant, please visit my website at http:\/\/www.scentsy.com\/marlanadyer :)","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase. I require payment within 24 hours of purchase, unless you have previously arranged with me otherwise. Thank you for your cooperation!","last_updated_tsz":1268955997,"listing_active_count":0,"login_name":"marlanaleigh","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281554619,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5959671.jpg"},{"shop_id":5050105,"user_id":6025707,"creation_tsz":1215553973,"shop_name":"PopBangles","title":"Celebrities~movie stars~goddesses & others...","announcement":"Thank you for visiting my Etsy shop...I&#39;m so happy you&#39;ve found me! \r\n\r\nI&#39;ve just been listing my &quot;celebrities & others&quot; jewelry designs here and will be adding fresh items as often as I create them. I hope you will check back to see my newest listings!\r\n\r\nPlease visit my Etsy sister shop, JTaylorDesign.etsy.com, where you will find my alter-ego jewelry made with vintage gems and stones, sparkly jewels, delicate antique filigree, all designed with an heirloom quality and Victorian look. \r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nShipping:\r\nUsually, all purchases are mailed to you within three days of receipt of payment excluding weekends. If there is going to be a delay, I will send you an email.\r\n\r\nUSA orders are sent via USPS First Class with delivery confirmation. If you would like insurance or expedited delivery, please let me know and I will be very happy to add that for you. \r\n\r\nOrders sent to customers outside the USA are mailed via First Class Mail International, and at this time there is no delivery confirmation or insurance available for those orders.\r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nPlease don&#39;t hesitate to send me a message if you have any questions or comments...I would love to hear from you!\r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nI will happily leave positive feedback for every buyer who has completed the transaction and left positive feedback for me. I value my customers, their satisfaction and their positive feedback. In the unlikely event you are not completely satisfied with the transaction, please contact me and I will do my best to resolve the problem.\r\n\r\n\r\nPlease view my shop policies before ordering. Thank you!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you very much, dear customer, for visiting my Etsy shop and purchasing one of my creations! \r\n\r\nI will ship your package promptly and hope that it will reach you quickly so that you may begin enjoying your new treasure. \r\n\r\nWarmest Regards, \r\nJackie","last_updated_tsz":1271965348,"listing_active_count":0,"login_name":"PopBangles","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281382753,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5618295.jpg"},{"shop_id":5050136,"user_id":9100317,"creation_tsz":1264320935,"shop_name":"latacreations77","title":"LataCreations","announcement":"******BE SURE TO GET A FREE GIFT WITH YOUR PURCHASE.********\r\n\r\nWelcome to latacreations77,My self Lata singh 34 M.B.A. in marketing .After getting married I started to help my husband Mr. Yogendra as he was Exporting handmade beads,supplies,gifts & handicrafts.\r\nI too started playing with beads and dont know when I started making jewelry with them .\r\nso there is less pain for me to collect raw materials for my designs. mostly my designs are one of a kind of very fine accents like facinating lampwork,threads,silk,fresh water pearls,crystals,semi-precios stones,etc,used in my item are highest quality and original .i am a glass beaded jewelry spealist,I use very unique and different glassbeads for my designs which makes my designs to stand out from others.\r\nI can also custom design any piece to your exact specificatin\r\nons.\r\nI update items regulary,so be sure to check us out often.\r\n\r\nWe also cater wholesale orders for glass beads and beaded jewelry as well as custom orders,please inform us via email.\r\nFor wholesale beads please browse \r\n\r\nhttp:\/\/www.orientalbeads.com\/\r\nlatacreations77@gmail,com","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you from the bottom of my heart for purchasing item from my shop.","last_updated_tsz":1281672656,"listing_active_count":5,"login_name":"latacreations77","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281391007,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.7037402.jpg"},{"shop_id":5050142,"user_id":6765050,"creation_tsz":1270794964,"shop_name":"peace1964","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1274207661,"listing_active_count":0,"login_name":"peace1964","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281373998,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5050145,"user_id":7653694,"creation_tsz":1246912251,"shop_name":"MyGlamorousBaby","title":"Polka Dottie Ottie","announcement":"Hello Everyone we are in the process of re-opening our store we have tons of new items to present to you so check back often as well re-stock and list new items, feel free to place your custom orders! For more of our items you can visit www.dramaclubcouture.etsy.com","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"POLKA DOTTIE OTTIE","last_updated_tsz":1281625462,"listing_active_count":13,"login_name":"MyGlamorousBaby","alchemy_message":"","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281363653,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5050161,"user_id":5314998,"creation_tsz":1190666871,"shop_name":"beautybysaria","title":"beauty by Saria ~ Color. Therapy. Cosmetics.","announcement":"Welcome to beauty by Saria ~ The first & only Mineral Makeup formulated based on Ayurvedic Principles.\r\n\r\nMay 10, 2010\r\n\r\nI am absolutely exhausted, but also thrilled to say that each and every order is now all set & ready to be delivered to the Post Office in the morning!\r\n\r\nThis means our lag time for order processing has been demolished! We should be getting back to our normal Tuesday and Thursday shipping days this week.\r\n_______________________________________________________________\r\n*****************************************************************************************\r\nImportant Notice for All YouTube Gurus\/Hosts\r\n\r\nWhile we do appreciate and depend on reviews from bloggers, YouTubers, Ezines, etc., it is impossible to accommodate every request we receive. \r\n\r\nIn addition, we have also established some brief criteria that MUST be met PRIOR to a request for product reviews.\r\n\r\n** Minimum of 250 subscribers\r\n** Minimum of 10 previous videos\/blog entries\r\n** Minimum of 6 months experience in social media format\r\n** Must be 18 years of age or older\r\n** NO EXCEPTIONS to ANY of the above criteria\r\n\r\nFailure to meet minimum criteria & still request products for review will be considered spam and reported to Etsy Admin. \r\n\r\nAll eligible requests are evaluated by beauty by Saria staff and accepted reviewers will be contacted via email or convo. \r\n\r\nRequests for reviews may be submitted once every 90 days. Submissions made on a more frequent basis will be considered spam and reported to Etsy Admin. As well as being banned from any future submissions.\r\n\r\nWe are working on developing a formal reviewers guide and will keep you update on its progress. \r\n_______________________________________________________________\r\n*****************************************************************************************\r\nAs always, should you have any questions about our products, don&#39;t hesitate to ask! We are here to help!\r\n\r\nJust a reminder that we FULLY DISCLOSE ALL INGREDIENTS for a product in each listing. There are no surprises on the label when you receive your products from us! \r\n\r\n\r\nAll product formulas, images, product names & descriptions are the sole property of beauty by Saria and cannot be reproduced, republished, downloaded or copied without express written permission from the owner! This includes reposting photos, copy or text for use in blogs, forums, e-zines, or other online resources. Violators will be pursued and prosecuted to fullest extent of the law.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase from beauty by Saria! \r\n\r\nWe are currently experiencing a 2 week processing time on all orders. This means that it will take up to 14 days before your order is processed & shipped.\r\n\r\nWe pride ourselves on customer service - including that personal touch you can&#39;t find anywhere else. Should you have any questions about your purchase, or any of our products, please don&#39;t hesitate to convo us- we are here and happy to help!\r\n\r\nPlease note that we will be open limited hours \u2013 Operating ONLY on Wednesdays \u2013 and will resume full business hours on Monday, May 10, 2010. All orders and convos received during this time will be addressed the following Wednesday. We apologize for any inconvenience and appreciate your understanding during this time. \r\n\r\nWe know you will enjoy your purchase \u2013 as we have enjoyed making each product for you.\r\nThanks again!\r\n\r\nWishing you Happiness & Technicolor dreams,\r\n\r\nMaria\r\nOwner\/Creator beauty by Saria","last_updated_tsz":1275182313,"listing_active_count":0,"login_name":"beautybysaria","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281637757,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5191771.jpg"},{"shop_id":5050632,"user_id":8133387,"creation_tsz":1253829046,"shop_name":"DecibelProductions","title":"Wearable Hedonism for the Unreasonably Well Dressed","announcement":"Decibel brings you San Francisco-based designer fashion, jewelry and accessories that are steampunk, music and dance inspired. Designed especially for musicians, rockstars, belly dancers, performing artists, and music lovers.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you so much for your purchase! If you haven&#39;t done so already, please send payment via Paypal. If you have any questions just let me know and I&#39;ll be happy to help you out. Please double check your Paypal and Etsy shipping address and make sure they match! If your Paypal shipping address is not correct, please let me know asap so I can make sure your package reaches the right destination. :)\r\n\r\nThanks again!\r\nSkye","last_updated_tsz":1281717253,"listing_active_count":94,"login_name":"DecibelProductions","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281640098,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.6808603.jpg"},{"shop_id":5050668,"user_id":6040255,"creation_tsz":1216899257,"shop_name":"itsawonderfullife77","title":"it&#39;s a WONDeRFuL Life indeed!","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"*thanks so much for your purchase!","last_updated_tsz":1274290472,"listing_active_count":0,"login_name":"itsawonderfullife77","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281642697,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image0.etsy.com\/iusb_760x100.5685912.jpg"},{"shop_id":5050682,"user_id":5032026,"creation_tsz":1205562071,"shop_name":"stephlaberis","title":"Steph&#39;s (Portable) Brain Farts!","announcement":"Welcome to my little niche! Here you will find archival, high-quality signed prints of my artwork and my self-published art books!\r\n\r\nSome of my prints are available in larger sizes - please inquire!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1268948253,"listing_active_count":0,"login_name":"stephlaberis","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281555870,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.5501822.jpg"},{"shop_id":5050722,"user_id":7140017,"creation_tsz":1238343027,"shop_name":"mollusa","title":"","announcement":"Welcome in Mollusa Wedding Gallery\r\n---------------------------------------------\r\nI love doing custom orders and especially delight in working with Brides.\r\nYou choose the fabrics,colours,styles and I make all you wish. I can make the clutches, bouquets, boutonni\u00e8res, head pieces, brooches, corsages from almost any fabric that you choose.\r\nIf you have something specific in mind, color, solid, print, floral, mod, vintage, I can do a sample for you and convo you some ideas.\r\nI can custom-make any of my purses in a colour scheme of your choice - to match dresses, flowers and wedding schemes.\r\n\r\n~ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- ~\r\n\r\nI offer a discount for bulk orders!\r\n\r\nI look forward to working with you..\r\n\r\n---------------------------------------------\r\n\r\n\r\nPlease read carefully description especially SIZES!\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nwww.mishandmash.etsy.com","currency_code":"USD","is_vacation":true,"vacation_message":null,"sale_message":"Thank you for your order! I truly appreciate it! Have enjoy them.\r\n_________________________________________________________________\r\nImportant:\r\nShipping via Poland to US, Brazil, Japan: Air Mail will take 10-14 working days for delivery. For European countries, items will take 6 working days.\r\n-----------------------------\r\n\r\nPAYMENTS:\r\n1)ALERTPAY:please tell me and i will send you invoice via alertpay.com.\r\n\r\n\r\nor \r\n\r\n\r\n2)Please send money to my bank account:\r\nBank account: 60 2490 0005 0000 4001 0000 7416\r\n-SWIFT code: ALRBPLPW\r\n-SORT code: 24900005\r\n-IBAN: PL60249000050000400100007416","last_updated_tsz":1281463788,"listing_active_count":0,"login_name":"mollusa","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281383092,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.7068221.jpg"},{"shop_id":5051220,"user_id":5274049,"creation_tsz":1188050836,"shop_name":"molebabybuttons","title":"molebaby buttons - buttons like you&#39;ve never seen!","announcement":"\u2605 fan me on facebook! \u2605 http:\/\/www.facebook.com\/molebabybuttons \u2605\r\n\r\n\u2605 follow me on twitter! \u2605 http:\/\/www.twitter.com\/molebabybuttons \u2605\r\n\r\n-----------------------------------------------------------------------------------------------------------------------------\r\nCHECK ME OUT ON FREDFLARE.COM&#39;S NEXT BIG THING 2008!\r\nhttp:\/\/www.fredflare.com\/blog\/?p=2387 - i&#39;m listing my winning item here in my store! :)\r\n-----------------------------------------------------------------------------------------------------------------------------\r\nAWESOME: my button magnets aren&#39;t just for your fridge anymore! check out Button Collective&#39;s &quot;storyboards&quot;! http:\/\/buttoncollective.etsy.com\r\n-----------------------------------------------------------------------------------------------------------------------------","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Hi!\r\n\r\nThank you!!! :)\r\n\r\n\r\nLove & buttons,\r\nApril\r\n\r\nMolebaby Buttons LLC\r\nhttp:\/\/molebabybuttons.etsy.com\r\nhttp:\/\/www.snust.com\/molebabybuttons\r\nhttp:\/\/www.printfection.com\/molebabybuttons","last_updated_tsz":1281410811,"listing_active_count":0,"login_name":"molebabybuttons","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281368081,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5164951.jpg"},{"shop_id":5051225,"user_id":5184324,"creation_tsz":1181841500,"shop_name":"poetsummer","title":"PoetSummer creating wearable art from Summerpoet Studio","announcement":"I wanted to leave a note here for my customers. I have been ill fighting throat cancer and have been in and out of the hospital and as I make everything on my own have fallen behind. I am addressing each issue as I can and you can reach me at 708-422-4160 if you have any concerns and I will address them immediately. I am working to resolve every issue and appreciate your concern and your emails of caring. Thanks, Carrie.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1279576619,"listing_active_count":0,"login_name":"poetsummer","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281557210,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.6041422.jpg"},{"shop_id":5051227,"user_id":6908827,"creation_tsz":1234273924,"shop_name":"SurfaceFlik","title":"Removable Wall Decals","announcement":"Welcome to Surface Flik! Your source to artistic wall decals and vinyl wall art.\r\n\r\nMake sure you see our SHOP POLICIES for discounts, important information regarding installations, recommended surfaces, and domestic and international shipping times. http:\/\/www.etsy.com\/shop_policy.php?user_id=6908827\r\n\r\nOur decals are easy to install and are removable without a trace on your wall! Here&#39;s our new installation video... check it out! www.surfaceflik.com\/installation.html\r\n\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nCheck out our New Designer Vinyl\r\nAll in MATTE finish for elegance and naturally painted look!\r\nhttp:\/\/ny-image3.etsy.com\/il_fullxfull.131738559.jpg\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for placing your order with Surface Flik! \r\n\r\nYour order has been received and this message confirms it. If you&#39;d like to inquire about your order, you may do so at any time by emailing us at info@surfaceflik.com with your Etsy username and order info. \r\n\r\nIf you haven&#39;t specified your color, we will assume that your chosen colors are the ones shown on the front picture. If you&#39;d like to change your color and you haven&#39;t told us in the message box to seller, please convo us as soon as you can!\r\n\r\nTURN-AROUND TIME: ranges anywhere from 1 to 5 business days. Custom orders may take longer.\r\n\r\nSHIPPING TIME: depends on your location (Please note that we are not responsible for shipping delays due to customs, extreme weather or any other circumstance)\r\n\r\nUSA - Shipped by Canada Post and turns into USPS when it enters USA. \r\n\r\nWe ship by two methods:\r\nSmall Packet Air Mail: 4 to 10 business days (NO TRACKING AVAILABLE!)\r\nExpedited Ground: 6 to 12 business days (TRACKING PROVIDED)\r\n\r\nIf you are in a rush, you may upgrade to EXPRESS POST which takes 3 to 5 business days to arrive. (The extra charge for this shipping is $15.00)\r\n\r\nCANADA - shipped by Canada Post. All orders are shipped by Expedited Ground which take 1 to 7 business days to arrive. All shipments come with tracking and insurance. The upgrade to Express Post is $15.00.\r\n\r\nInternational - shipped by Canada Post. \r\nAll shipments are mailed by Small Packet Air Mail which take 6 to 12 business days to arrive. There is no tracking available for this shipping method.\r\n\r\n***Please check your shipping address on your Etsy account***\r\nAll shipments will be shipped to that address. Please email us at info@surfaceflik.com if you need to change it!\r\n\r\nPAYMENTS: All payments are required at check-out. We will not ship your package if we haven&#39;t received the full payment. Please check your PayPal account to verify that your payment went through. If you don&#39;t see the transaction, please contact us at your earliest convenience.\r\n\r\nThank you! Have a wonderful day :)","last_updated_tsz":1280072203,"listing_active_count":23,"login_name":"SurfaceFlik","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281552207,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.6992637.jpg"}]}
1
+ {"count":50100,"results":[{"shop_id":5008420,"user_id":5631278,"creation_tsz":1203343552,"shop_name":"boutiqueviolet","title":"gingham girl","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1210703454,"listing_active_count":0,"login_name":"boutiqueviolet","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281542473,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5410789.jpg"},{"shop_id":5013693,"user_id":6315636,"creation_tsz":1223330650,"shop_name":"CharliesJems","title":"Charlie&#39;s J-em&#39;s","announcement":"There will be some great things comming soon. Just waiting on pictuers fo items.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1223497646,"listing_active_count":0,"login_name":"CharliesJems","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281638257,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5017224,"user_id":5269119,"creation_tsz":1188176687,"shop_name":"eclecticadornment","title":"create something unique","announcement":"Welcome to Eclectic Adornment!\r\n\r\nHere you&#39;ll find beads and jewelry making findings of all kinds so that you can create your own unique jewelry pieces to suit your style.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Please let me know how you heard about Eclectic Adornment...\r\n\r\nThanks so much for purchasing from Eclectic Adornment. Your business is appreciated!","last_updated_tsz":1230845537,"listing_active_count":0,"login_name":"eclecticadornment","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281730119,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image0.etsy.com\/iusb_760x100.5513948.jpg"},{"shop_id":5019313,"user_id":6316690,"creation_tsz":1223349172,"shop_name":"JohnnyBGlass","title":"Johnny B Glass","announcement":"With the arrival of autumn I have decided to kick off the season with a sale! I am going to clear out all the pendants in the shop, with a superb $5 price cut on all pendants $10-16. Jump on some real unique and high quality art for a great price.\r\n\r\nHigh quality unique glass creations! Each comes wearable with a cord and clasp. I put a personal touch into every piece and you will be getting something truly unique. These things sell great in jewelry and gift shops ect. I am available for bulk orders,contact me. I really take pride in my art and guarantee each customer a really high quality borosilicate glass pendant.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you and enjoy!","last_updated_tsz":1224728111,"listing_active_count":0,"login_name":"JohnnyBGlass","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281638023,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.5790234.jpg"},{"shop_id":5020796,"user_id":5548291,"creation_tsz":1200523632,"shop_name":"SimplyJane","title":"Simply Jane: Painting and Art Supplies","announcement":"At Simply Jane, everyone is an artist. Simple designs are great for little hands just learning to paint and older folks trying out new techniques. The playful subject matter appeals across the generations (although the pony is especially loved by girls age 10-12!) The dragons, garden flowers, and peace signs that fill our studio can now fill your lives as well. Enjoy!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thanks for adding a bit of Simply Jane art to your life! We specialize in teaching young or timid painters how to get started. If you live nearby, stop by the Minneapolis studio anytime. \r\n\r\nArt is a great way to unwind, learn, and explore your creative side. Don&#39;t worry about staying in the lines. When you finish painting, you can use a Sharpie to reinforce the lines for a polished look. If you plan to use your art (boxes, frames, candlesticks, etc) add a coat of polyurethane when you&#39;re done to protect the paint from chipping. \r\n\r\nWe&#39;d love to see a picture of your finished piece! Submit a photo to jane@simplyjanestudio.com to be considered for the website. \r\n\r\nThanks again and happy painting! \r\n\r\nSimply Jane \r\njane@simplyjanestudio.com","last_updated_tsz":1281625069,"listing_active_count":0,"login_name":"SimplyJane","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281622551,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5317737.jpg"},{"shop_id":5030407,"user_id":7559882,"creation_tsz":1245284597,"shop_name":"alycejns","title":"A & J Jewelry Design Shop","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Welcome to my little shop! I hope you enjoy yourself and I hope that you will want to come back real soon! \r\n\r\nDon&#39;t forget to tell your friends about me!\r\n\r\nEnjoy your stay!","last_updated_tsz":1245285348,"listing_active_count":0,"login_name":"alycejns","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281727217,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.6384470.jpg"},{"shop_id":5039460,"user_id":6259251,"creation_tsz":1221880352,"shop_name":"thethreadedrose","title":"The Threaded Rose","announcement":"Welcome! \r\nAs you can see I am just starting, I will be listing sewn goods as well as jewelry, odd combination but its my passion. Come back often I will be adding things a few at a time.\r\nThank you\r\nRose","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1248896820,"listing_active_count":0,"login_name":"thethreadedrose","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281644600,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5743855.jpg"},{"shop_id":5040911,"user_id":8271658,"creation_tsz":1255658010,"shop_name":"PawandPurrs","title":"Home of the Dinosaur Doggie PJ","announcement":"Dinosaur Doggies PJ&#39;s, Costumes, Jackets, Pants & Dresses\r\n\r\n\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665Welcome to Paw and Purrs\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665\u2665 \r\n\r\nAll dogs want to be pampered! We make items from x-small to x-large breed dogs (From Yorkies to Golden Retreivers & Labs). \r\n\r\nWe have two great dogs, Cindy LuLu our 12 year old rottweillter mix who is an angel. Katie Rose is a 3 year old australian shepard and is a special needs dog. She is very energetic, sweet, and friendly. We love our babies! :O)\r\n\r\nCindy and Katie want to thank you for your business - They give their woof woof approval on all items. We believe that pets are part of the family; they should be spoiled and pampered! \r\n\r\n\u2665\u2665\u2665\u2665Please measure your pet and read size measurements carefully in each listing before purchasing.\u2665\u2665\u2665\u2665 \r\n\r\nAll items are made in a smoke free, pet friendly environment.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Cindy and Katie thank you for your business.","last_updated_tsz":1281496809,"listing_active_count":20,"login_name":"PawandPurrs","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281305978,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.7001281.jpg"},{"shop_id":5042864,"user_id":7645762,"creation_tsz":1247031978,"shop_name":"poetscottageknitting","title":"Poet&#39;s Cottage Knitting","announcement":"Vintage and Antique doll and whimsical designs in PDF format. Fast email delivery. Natural fibres only in yarns and threads.\r\n \r\nDusty Dollies Collection\r\nTingetree Faeries Collection\r\n\r\nPurest care from cottage to you created by Esmerelda in Australia. Patterns and Books published by Esmerelda Jones Publishing ABN 23399215567.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Poet&#39;s Cottage Knitting thanks you for your purchase. If you have questions or wish to enquire about custom design, please email.\r\n\r\nRegards,\r\nEsmerelda","last_updated_tsz":1281792847,"listing_active_count":1,"login_name":"poetscottageknitting","alchemy_message":"Custom designs for antique and vintage dolls. Natural fibres only.","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281126326,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.7126743.jpg"},{"shop_id":5043360,"user_id":5840784,"creation_tsz":1266774727,"shop_name":"Cheyenne2u","title":"Cheyenne2u - From Cheyenne, Wyoming to You \u2665","announcement":"We&#39;re BACK!\r\nSlowly but surely we will be filling our Shoppe with Supplies for your Craft, Sewing & Quilting needs - so come back often!\r\n\r\nWe treat my customers exactly the way we would want to be treated - with prompt communication, shipping and feedback.\r\n\r\nWe hope you enjoy brows&#39;n my Shoppe here - if you have ANY questions, please don&#39;t hesitate to ask.\r\n\r\nKim\r\nCheyenne2u","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you so much for your confidence in making your purchase from Cheyenne2u and our Etsy Shoppe. I hope you enjoy your item and if you have ANY questions, please don&#39;t hesitate to ask.\r\n\r\nIt has been a pleasure to be of service to you and hope you come back in the future.\r\nKim,\r\nCheyenne2u","last_updated_tsz":1281744731,"listing_active_count":36,"login_name":"Cheyenne2u","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":"Welcome to Cheyenne2u \u2013 A mixture of Supplies and soon to be listed Hand Made items from my home to yours.\r\n\r\nQuilting \u2013 Books, Patterns, Magazines, Tools.\r\nSewing \u2013 Crafts, Home D\u00e9cor, Kid&#39;s, Men&#39;s and Women\u2019s Patterns.\r\n\r\n...and everything is stored inside my smoke free home.\r\n\r\nOur Motto: \u201cGiving our best today is the recipe for a better tomorrow.\u201d\r\n\r\nHappy Shopping!\r\n~ Kim, Cheyenne2u\r\nCheyenne2u@gmail.com","policy_payment":"We currently only accept Paypal. If you need to make other arrangements, please contact us personally.","policy_shipping":"Shipping is to USA only.\r\nAll items are shipped to the buyer with quality recycled packing materials and are packaged with utmost care.\r\n\r\nAll orders will be mailed USPS. We will notify you when your purchase is sent out with the delivery confirmation number so you will be able to track your purchase.","policy_refunds":"We L\u2665V happy Buyers!\r\nWe will refund your money for any item that is misrepresented in description and\/or picture(s). Just contact us within 3 days of receipt to discuss your concerns.\r\n\r\nBuyer accepts cost of returning item. Refund will be made in original form as transaction less any Seller\u2019s fees.\r\n\r\nAll will be discussed in full prior to agreement of return.","policy_additional":"Our customer information is kept secure and we will never pass personal information to third parties. We do not share, sell or trade e-mail addresses or any specific details about you or your household. We do not participate in or contribute to cooperative or shared databases.","policy_updated_tsz":1281384693,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.7588835.jpg"},{"shop_id":5046617,"user_id":9646549,"creation_tsz":1269995600,"shop_name":"BridgetMcCarty","title":"Bridget McCarty Miniature Plush Pets","announcement":"New on Etsy! Join me at bridgetmccarty.com or bridgetmccarty.blogspot.com for my facebook fan page.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase! I combine items in shipping at no extra charge. Enjoy!\r\nBridget","last_updated_tsz":1281413993,"listing_active_count":2,"login_name":"BridgetMcCarty","alchemy_message":"","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281388053,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5046863,"user_id":9619518,"creation_tsz":1269704685,"shop_name":"artisticgem","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1281665719,"listing_active_count":44,"login_name":"artisticgem","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281613459,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5047069,"user_id":5854585,"creation_tsz":1222513081,"shop_name":"marlanaleigh","title":"Marlana Leigh: Custom graphics","announcement":"__________________________________________________\r\n99 CENT SALE! Every digital collage sheet is only 99 cents.. get them while they are on sale :) \r\n__________________________________________________\r\n\r\n\r\n\r\nThanks for dropping by! My name is Marlana and I offer custom & premade graphics of all kinds. If you have any questions at all, please do not hesitate to contact me!\r\n\r\nI have a brand new etsy shop with homemade dog treats and accessories, at thepuppylove.etsy.com - please stop by!\r\n\r\nI am also a Scentsy wickless candles consultant, please visit my website at http:\/\/www.scentsy.com\/marlanadyer :)","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase. I require payment within 24 hours of purchase, unless you have previously arranged with me otherwise. Thank you for your cooperation!","last_updated_tsz":1268955997,"listing_active_count":0,"login_name":"marlanaleigh","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281554619,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5959671.jpg"},{"shop_id":5050105,"user_id":6025707,"creation_tsz":1215553973,"shop_name":"PopBangles","title":"Celebrities~movie stars~goddesses & others...","announcement":"Thank you for visiting my Etsy shop...I&#39;m so happy you&#39;ve found me! \r\n\r\nI&#39;ve just been listing my &quot;celebrities & others&quot; jewelry designs here and will be adding fresh items as often as I create them. I hope you will check back to see my newest listings!\r\n\r\nPlease visit my Etsy sister shop, JTaylorDesign.etsy.com, where you will find my alter-ego jewelry made with vintage gems and stones, sparkly jewels, delicate antique filigree, all designed with an heirloom quality and Victorian look. \r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nShipping:\r\nUsually, all purchases are mailed to you within three days of receipt of payment excluding weekends. If there is going to be a delay, I will send you an email.\r\n\r\nUSA orders are sent via USPS First Class with delivery confirmation. If you would like insurance or expedited delivery, please let me know and I will be very happy to add that for you. \r\n\r\nOrders sent to customers outside the USA are mailed via First Class Mail International, and at this time there is no delivery confirmation or insurance available for those orders.\r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nPlease don&#39;t hesitate to send me a message if you have any questions or comments...I would love to hear from you!\r\n\r\n~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~ ~*~\r\n\r\nI will happily leave positive feedback for every buyer who has completed the transaction and left positive feedback for me. I value my customers, their satisfaction and their positive feedback. In the unlikely event you are not completely satisfied with the transaction, please contact me and I will do my best to resolve the problem.\r\n\r\n\r\nPlease view my shop policies before ordering. Thank you!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you very much, dear customer, for visiting my Etsy shop and purchasing one of my creations! \r\n\r\nI will ship your package promptly and hope that it will reach you quickly so that you may begin enjoying your new treasure. \r\n\r\nWarmest Regards, \r\nJackie","last_updated_tsz":1271965348,"listing_active_count":0,"login_name":"PopBangles","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281382753,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5618295.jpg"},{"shop_id":5050136,"user_id":9100317,"creation_tsz":1264320935,"shop_name":"latacreations77","title":"LataCreations","announcement":"******BE SURE TO GET A FREE GIFT WITH YOUR PURCHASE.********\r\n\r\nWelcome to latacreations77,My self Lata singh 34 M.B.A. in marketing .After getting married I started to help my husband Mr. Yogendra as he was Exporting handmade beads,supplies,gifts & handicrafts.\r\nI too started playing with beads and dont know when I started making jewelry with them .\r\nso there is less pain for me to collect raw materials for my designs. mostly my designs are one of a kind of very fine accents like facinating lampwork,threads,silk,fresh water pearls,crystals,semi-precios stones,etc,used in my item are highest quality and original .i am a glass beaded jewelry spealist,I use very unique and different glassbeads for my designs which makes my designs to stand out from others.\r\nI can also custom design any piece to your exact specificatin\r\nons.\r\nI update items regulary,so be sure to check us out often.\r\n\r\nWe also cater wholesale orders for glass beads and beaded jewelry as well as custom orders,please inform us via email.\r\nFor wholesale beads please browse \r\n\r\nhttp:\/\/www.orientalbeads.com\/\r\nlatacreations77@gmail,com","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you from the bottom of my heart for purchasing item from my shop.","last_updated_tsz":1281672656,"listing_active_count":5,"login_name":"latacreations77","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281391007,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.7037402.jpg"},{"shop_id":5050142,"user_id":6765050,"creation_tsz":1270794964,"shop_name":"peace1964","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1274207661,"listing_active_count":0,"login_name":"peace1964","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281373998,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5050145,"user_id":7653694,"creation_tsz":1246912251,"shop_name":"MyGlamorousBaby","title":"Polka Dottie Ottie","announcement":"Hello Everyone we are in the process of re-opening our store we have tons of new items to present to you so check back often as well re-stock and list new items, feel free to place your custom orders! For more of our items you can visit www.dramaclubcouture.etsy.com","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"POLKA DOTTIE OTTIE","last_updated_tsz":1281625462,"listing_active_count":13,"login_name":"MyGlamorousBaby","alchemy_message":"","is_refusing_alchemy":false,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281363653,"vacation_autoreply":null,"image_url_760x100":null},{"shop_id":5050161,"user_id":5314998,"creation_tsz":1190666871,"shop_name":"beautybysaria","title":"beauty by Saria ~ Color. Therapy. Cosmetics.","announcement":"Welcome to beauty by Saria ~ The first & only Mineral Makeup formulated based on Ayurvedic Principles.\r\n\r\nMay 10, 2010\r\n\r\nI am absolutely exhausted, but also thrilled to say that each and every order is now all set & ready to be delivered to the Post Office in the morning!\r\n\r\nThis means our lag time for order processing has been demolished! We should be getting back to our normal Tuesday and Thursday shipping days this week.\r\n_______________________________________________________________\r\n*****************************************************************************************\r\nImportant Notice for All YouTube Gurus\/Hosts\r\n\r\nWhile we do appreciate and depend on reviews from bloggers, YouTubers, Ezines, etc., it is impossible to accommodate every request we receive. \r\n\r\nIn addition, we have also established some brief criteria that MUST be met PRIOR to a request for product reviews.\r\n\r\n** Minimum of 250 subscribers\r\n** Minimum of 10 previous videos\/blog entries\r\n** Minimum of 6 months experience in social media format\r\n** Must be 18 years of age or older\r\n** NO EXCEPTIONS to ANY of the above criteria\r\n\r\nFailure to meet minimum criteria & still request products for review will be considered spam and reported to Etsy Admin. \r\n\r\nAll eligible requests are evaluated by beauty by Saria staff and accepted reviewers will be contacted via email or convo. \r\n\r\nRequests for reviews may be submitted once every 90 days. Submissions made on a more frequent basis will be considered spam and reported to Etsy Admin. As well as being banned from any future submissions.\r\n\r\nWe are working on developing a formal reviewers guide and will keep you update on its progress. \r\n_______________________________________________________________\r\n*****************************************************************************************\r\nAs always, should you have any questions about our products, don&#39;t hesitate to ask! We are here to help!\r\n\r\nJust a reminder that we FULLY DISCLOSE ALL INGREDIENTS for a product in each listing. There are no surprises on the label when you receive your products from us! \r\n\r\n\r\nAll product formulas, images, product names & descriptions are the sole property of beauty by Saria and cannot be reproduced, republished, downloaded or copied without express written permission from the owner! This includes reposting photos, copy or text for use in blogs, forums, e-zines, or other online resources. Violators will be pursued and prosecuted to fullest extent of the law.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for your purchase from beauty by Saria! \r\n\r\nWe are currently experiencing a 2 week processing time on all orders. This means that it will take up to 14 days before your order is processed & shipped.\r\n\r\nWe pride ourselves on customer service - including that personal touch you can&#39;t find anywhere else. Should you have any questions about your purchase, or any of our products, please don&#39;t hesitate to convo us- we are here and happy to help!\r\n\r\nPlease note that we will be open limited hours \u2013 Operating ONLY on Wednesdays \u2013 and will resume full business hours on Monday, May 10, 2010. All orders and convos received during this time will be addressed the following Wednesday. We apologize for any inconvenience and appreciate your understanding during this time. \r\n\r\nWe know you will enjoy your purchase \u2013 as we have enjoyed making each product for you.\r\nThanks again!\r\n\r\nWishing you Happiness & Technicolor dreams,\r\n\r\nMaria\r\nOwner\/Creator beauty by Saria","last_updated_tsz":1275182313,"listing_active_count":0,"login_name":"beautybysaria","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281637757,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5191771.jpg"},{"shop_id":5050632,"user_id":8133387,"creation_tsz":1253829046,"shop_name":"DecibelProductions","title":"Wearable Hedonism for the Unreasonably Well Dressed","announcement":"Decibel brings you San Francisco-based designer fashion, jewelry and accessories that are steampunk, music and dance inspired. Designed especially for musicians, rockstars, belly dancers, performing artists, and music lovers.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you so much for your purchase! If you haven&#39;t done so already, please send payment via Paypal. If you have any questions just let me know and I&#39;ll be happy to help you out. Please double check your Paypal and Etsy shipping address and make sure they match! If your Paypal shipping address is not correct, please let me know asap so I can make sure your package reaches the right destination. :)\r\n\r\nThanks again!\r\nSkye","last_updated_tsz":1281717253,"listing_active_count":94,"login_name":"DecibelProductions","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281640098,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.6808603.jpg"},{"shop_id":5050668,"user_id":6040255,"creation_tsz":1216899257,"shop_name":"itsawonderfullife77","title":"it&#39;s a WONDeRFuL Life indeed!","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"*thanks so much for your purchase!","last_updated_tsz":1274290472,"listing_active_count":0,"login_name":"itsawonderfullife77","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281642697,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image0.etsy.com\/iusb_760x100.5685912.jpg"},{"shop_id":5050682,"user_id":5032026,"creation_tsz":1205562071,"shop_name":"stephlaberis","title":"Steph&#39;s (Portable) Brain Farts!","announcement":"Welcome to my little niche! Here you will find archival, high-quality signed prints of my artwork and my self-published art books!\r\n\r\nSome of my prints are available in larger sizes - please inquire!","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1268948253,"listing_active_count":0,"login_name":"stephlaberis","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281555870,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.5501822.jpg"},{"shop_id":5050722,"user_id":7140017,"creation_tsz":1238343027,"shop_name":"mollusa","title":"","announcement":"Welcome in Mollusa Wedding Gallery\r\n---------------------------------------------\r\nI love doing custom orders and especially delight in working with Brides.\r\nYou choose the fabrics,colours,styles and I make all you wish. I can make the clutches, bouquets, boutonni\u00e8res, head pieces, brooches, corsages from almost any fabric that you choose.\r\nIf you have something specific in mind, color, solid, print, floral, mod, vintage, I can do a sample for you and convo you some ideas.\r\nI can custom-make any of my purses in a colour scheme of your choice - to match dresses, flowers and wedding schemes.\r\n\r\n~ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- ~\r\n\r\nI offer a discount for bulk orders!\r\n\r\nI look forward to working with you..\r\n\r\n---------------------------------------------\r\n\r\n\r\nPlease read carefully description especially SIZES!\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\n\r\nwww.mishandmash.etsy.com","currency_code":"USD","is_vacation":true,"vacation_message":null,"sale_message":"Thank you for your order! I truly appreciate it! Have enjoy them.\r\n_________________________________________________________________\r\nImportant:\r\nShipping via Poland to US, Brazil, Japan: Air Mail will take 10-14 working days for delivery. For European countries, items will take 6 working days.\r\n-----------------------------\r\n\r\nPAYMENTS:\r\n1)ALERTPAY:please tell me and i will send you invoice via alertpay.com.\r\n\r\n\r\nor \r\n\r\n\r\n2)Please send money to my bank account:\r\nBank account: 60 2490 0005 0000 4001 0000 7416\r\n-SWIFT code: ALRBPLPW\r\n-SORT code: 24900005\r\n-IBAN: PL60249000050000400100007416","last_updated_tsz":1281463788,"listing_active_count":0,"login_name":"mollusa","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281383092,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.7068221.jpg"},{"shop_id":5051220,"user_id":5274049,"creation_tsz":1188050836,"shop_name":"molebabybuttons","title":"molebaby buttons - buttons like you&#39;ve never seen!","announcement":"\u2605 fan me on facebook! \u2605 http:\/\/www.facebook.com\/molebabybuttons \u2605\r\n\r\n\u2605 follow me on twitter! \u2605 http:\/\/www.twitter.com\/molebabybuttons \u2605\r\n\r\n-----------------------------------------------------------------------------------------------------------------------------\r\nCHECK ME OUT ON FREDFLARE.COM&#39;S NEXT BIG THING 2008!\r\nhttp:\/\/www.fredflare.com\/blog\/?p=2387 - i&#39;m listing my winning item here in my store! :)\r\n-----------------------------------------------------------------------------------------------------------------------------\r\nAWESOME: my button magnets aren&#39;t just for your fridge anymore! check out Button Collective&#39;s &quot;storyboards&quot;! http:\/\/buttoncollective.etsy.com\r\n-----------------------------------------------------------------------------------------------------------------------------","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Hi!\r\n\r\nThank you!!! :)\r\n\r\n\r\nLove & buttons,\r\nApril\r\n\r\nMolebaby Buttons LLC\r\nhttp:\/\/molebabybuttons.etsy.com\r\nhttp:\/\/www.snust.com\/molebabybuttons\r\nhttp:\/\/www.printfection.com\/molebabybuttons","last_updated_tsz":1281410811,"listing_active_count":0,"login_name":"molebabybuttons","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281368081,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image3.etsy.com\/iusb_760x100.5164951.jpg"},{"shop_id":5051225,"user_id":5184324,"creation_tsz":1181841500,"shop_name":"poetsummer","title":"PoetSummer creating wearable art from Summerpoet Studio","announcement":"I wanted to leave a note here for my customers. I have been ill fighting throat cancer and have been in and out of the hospital and as I make everything on my own have fallen behind. I am addressing each issue as I can and you can reach me at 708-422-4160 if you have any concerns and I will address them immediately. I am working to resolve every issue and appreciate your concern and your emails of caring. Thanks, Carrie.","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1279576619,"listing_active_count":0,"login_name":"poetsummer","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281557210,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.6041422.jpg"},{"shop_id":5051227,"user_id":6908827,"creation_tsz":1234273924,"shop_name":"SurfaceFlik","title":"Removable Wall Decals","announcement":"Welcome to Surface Flik! Your source to artistic wall decals and vinyl wall art.\r\n\r\nMake sure you see our SHOP POLICIES for discounts, important information regarding installations, recommended surfaces, and domestic and international shipping times. http:\/\/www.etsy.com\/shop_policy.php?user_id=6908827\r\n\r\nOur decals are easy to install and are removable without a trace on your wall! Here&#39;s our new installation video... check it out! www.surfaceflik.com\/installation.html\r\n\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nCheck out our New Designer Vinyl\r\nAll in MATTE finish for elegance and naturally painted look!\r\nhttp:\/\/ny-image3.etsy.com\/il_fullxfull.131738559.jpg\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"Thank you for placing your order with Surface Flik! \r\n\r\nYour order has been received and this message confirms it. If you&#39;d like to inquire about your order, you may do so at any time by emailing us at info@surfaceflik.com with your Etsy username and order info. \r\n\r\nIf you haven&#39;t specified your color, we will assume that your chosen colors are the ones shown on the front picture. If you&#39;d like to change your color and you haven&#39;t told us in the message box to seller, please convo us as soon as you can!\r\n\r\nTURN-AROUND TIME: ranges anywhere from 1 to 5 business days. Custom orders may take longer.\r\n\r\nSHIPPING TIME: depends on your location (Please note that we are not responsible for shipping delays due to customs, extreme weather or any other circumstance)\r\n\r\nUSA - Shipped by Canada Post and turns into USPS when it enters USA. \r\n\r\nWe ship by two methods:\r\nSmall Packet Air Mail: 4 to 10 business days (NO TRACKING AVAILABLE!)\r\nExpedited Ground: 6 to 12 business days (TRACKING PROVIDED)\r\n\r\nIf you are in a rush, you may upgrade to EXPRESS POST which takes 3 to 5 business days to arrive. (The extra charge for this shipping is $15.00)\r\n\r\nCANADA - shipped by Canada Post. All orders are shipped by Expedited Ground which take 1 to 7 business days to arrive. All shipments come with tracking and insurance. The upgrade to Express Post is $15.00.\r\n\r\nInternational - shipped by Canada Post. \r\nAll shipments are mailed by Small Packet Air Mail which take 6 to 12 business days to arrive. There is no tracking available for this shipping method.\r\n\r\n***Please check your shipping address on your Etsy account***\r\nAll shipments will be shipped to that address. Please email us at info@surfaceflik.com if you need to change it!\r\n\r\nPAYMENTS: All payments are required at check-out. We will not ship your package if we haven&#39;t received the full payment. Please check your PayPal account to verify that your payment went through. If you don&#39;t see the transaction, please contact us at your earliest convenience.\r\n\r\nThank you! Have a wonderful day :)","last_updated_tsz":1280072203,"listing_active_count":23,"login_name":"SurfaceFlik","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281552207,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.6992637.jpg","icon_url_fullxfull":"https:\/\/img0.etsystatic.com\/173\/0\/8740774\/isla_fullxfull.22739584_nydzpho0.jpg"}]}
@@ -1 +1 @@
1
- {"count":50100,"results":[{"shop_id":5008420,"user_id":5631278,"creation_tsz":1203343552,"shop_name":"boutiqueviolet","title":"gingham girl","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1210703454,"listing_active_count":0,"login_name":"boutiqueviolet","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281542473,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5410789.jpg"}]}
1
+ {"count":50100,"results":[{"shop_id":5008420,"user_id":5631278,"creation_tsz":1203343552,"shop_name":"boutiqueviolet","title":"gingham girl","announcement":"","currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":"","last_updated_tsz":1210703454,"listing_active_count":0,"login_name":"boutiqueviolet","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1281542473,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image1.etsy.com\/iusb_760x100.5410789.jpg","icon_url_fullxfull":"https:\/\/img0.etsystatic.com\/173\/0\/8740774\/isla_fullxfull.22739584_nydzpho0.jpg"}]}
@@ -1 +1 @@
1
- {"count":2,"results":[{"shop_id":5500349,"user_id":5327518,"creation_tsz":1237430331,"shop_name":"littletjane","title":"a cute and crafty mix of handmade goods.","announcement":"oh hello there! welcome and thank you for stopping by!\r\n\r\ni hope you find something to scoop up that brings you, or you, and you! just what you need. \r\n\r\nall good wishes & cheer\r\nhttp:\/\/www.littletjane.com","currency_code":"USD","is_vacation":true,"vacation_message":null,"sale_message":"thank you heaps again! \r\n\r\nkind regards, \r\nlittle t jane.","last_updated_tsz":1274923984,"listing_active_count":0,"login_name":"littletjane","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":"oh hi! i&#39;m so glad you&#39;ve come by my shop! thank you so much for swinging in and taking a peek around :D\r\n\r\nwell, here are the &#39;ol policy-os. please do read carefully:","policy_payment":"payment method accepted: \r\npaypal (hooray!)\r\n\r\nterms: \r\nsubmit payment promptly. payment is due 3 days after purchase of the item. \r\n\r\nupon receipt of payment, the order will be shipped within 7 business days.","policy_shipping":"method: usps first-class mail.\r\n \r\nplease feel free to contact me for rates on expedited shipping. \r\n\r\ni am not responsible for taxes or duties for your country.","policy_refunds":"oh help!\r\nif you are not happy with your item, please let me know. we can work this out! i will try my best to replace the item or refund your money, as the goal of my shop is to create and share in crafty happiness. right on!","policy_additional":"ok. well, that&#39;s about it! mostly, just be good, nice, honest, and fair, and this will return to you tenfold.\r\n\r\nif you have any questions, please don&#39;t hesitate to ask me.\r\n\r\nthanks a bunch, you! cheers!","policy_updated_tsz":1249084871,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.7358402.jpg"},{"shop_id":5818087,"user_id":53780,"creation_tsz":1267367300,"shop_name":"reagent","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1267384749,"listing_active_count":0,"login_name":"reagent","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1267367300,"vacation_autoreply":null,"image_url_760x100":null}]}
1
+ {"count":2,"results":[{"shop_id":5500349,"user_id":5327518,"creation_tsz":1237430331,"shop_name":"littletjane","title":"a cute and crafty mix of handmade goods.","announcement":"oh hello there! welcome and thank you for stopping by!\r\n\r\ni hope you find something to scoop up that brings you, or you, and you! just what you need. \r\n\r\nall good wishes & cheer\r\nhttp:\/\/www.littletjane.com","currency_code":"USD","is_vacation":true,"vacation_message":null,"sale_message":"thank you heaps again! \r\n\r\nkind regards, \r\nlittle t jane.","last_updated_tsz":1274923984,"listing_active_count":0,"login_name":"littletjane","alchemy_message":"","is_refusing_alchemy":true,"policy_welcome":"oh hi! i&#39;m so glad you&#39;ve come by my shop! thank you so much for swinging in and taking a peek around :D\r\n\r\nwell, here are the &#39;ol policy-os. please do read carefully:","policy_payment":"payment method accepted: \r\npaypal (hooray!)\r\n\r\nterms: \r\nsubmit payment promptly. payment is due 3 days after purchase of the item. \r\n\r\nupon receipt of payment, the order will be shipped within 7 business days.","policy_shipping":"method: usps first-class mail.\r\n \r\nplease feel free to contact me for rates on expedited shipping. \r\n\r\ni am not responsible for taxes or duties for your country.","policy_refunds":"oh help!\r\nif you are not happy with your item, please let me know. we can work this out! i will try my best to replace the item or refund your money, as the goal of my shop is to create and share in crafty happiness. right on!","policy_additional":"ok. well, that&#39;s about it! mostly, just be good, nice, honest, and fair, and this will return to you tenfold.\r\n\r\nif you have any questions, please don&#39;t hesitate to ask me.\r\n\r\nthanks a bunch, you! cheers!","policy_updated_tsz":1249084871,"vacation_autoreply":null,"image_url_760x100":"http:\/\/ny-image2.etsy.com\/iusb_760x100.7358402.jpg","icon_url_fullxfull":"https:\/\/img0.etsystatic.com\/173\/0\/8740774\/isla_fullxfull.22739584_nydzpho0.jpg"},{"shop_id":5818087,"user_id":53780,"creation_tsz":1267367300,"shop_name":"reagent","title":null,"announcement":null,"currency_code":"USD","is_vacation":false,"vacation_message":null,"sale_message":null,"last_updated_tsz":1267384749,"listing_active_count":0,"login_name":"reagent","alchemy_message":null,"is_refusing_alchemy":true,"policy_welcome":null,"policy_payment":null,"policy_shipping":null,"policy_refunds":null,"policy_additional":null,"policy_updated_tsz":1267367300,"vacation_autoreply":null,"image_url_760x100":null,"icon_url_fullxfull":null}]}
@@ -27,7 +27,8 @@
27
27
  "vacation_autoreply":null,
28
28
  "url" : "http://www.etsy.com/shop/littletjane",
29
29
  "image_url_760x100" : "http://ny-image3.etsy.com/iusb_760x100.8484779.jpg",
30
- "num_favorers" : 684
30
+ "num_favorers" : 684,
31
+ "icon_url_fullxfull":"https://img0.etsystatic.com/173/0/8740774/isla_fullxfull.22739584_nydzpho0.jpg"
31
32
  }
32
33
  ]
33
34
  }
@@ -230,6 +230,15 @@ module Etsy
230
230
  end
231
231
  end
232
232
 
233
+ context "with included images" do
234
+ should "not hit the API to get images" do
235
+ data = read_fixture('listing/getListing.single.includeImages.json')
236
+ listing = Listing.new(data.first)
237
+ Request.expects(:get).never
238
+
239
+ listing.images
240
+ end
241
+ end
233
242
 
234
243
  should "have a default image" do
235
244
  listing = Listing.new
@@ -10,6 +10,11 @@ module Etsy
10
10
  Receipt.find_all_by_shop_id(1, {'key' => 'value'}).should == receipts
11
11
  end
12
12
 
13
+ should "be able to find receipts for a shop that also have a given status" do
14
+ receipts = mock_request('/shops/1/receipts/open', {'key' => 'value'}, 'Receipt', 'findAllShopReceipts.json')
15
+ Receipt.find_all_by_shop_id_and_status(1, 'open', {'key' => 'value'}).should == receipts
16
+ end
17
+
13
18
  end
14
19
 
15
20
  context "An instance of the Receipt class" do
@@ -86,6 +91,16 @@ module Etsy
86
91
  receipt.buyer.should == 'user'
87
92
  end
88
93
 
94
+ should "have transaction information" do
95
+ Transaction.stubs(:find_all_by_receipt_id).with(1, {:access_token=>'token',:access_secret=>'secret'}).returns('transactions')
96
+
97
+ receipt = Receipt.new
98
+ receipt.stubs(:id).with().returns(1)
99
+ receipt.stubs(:token).with().returns('token')
100
+ receipt.stubs(:secret).with().returns('secret')
101
+
102
+ receipt.transactions.should == 'transactions'
103
+ end
89
104
  end
90
105
 
91
106
  end
@@ -0,0 +1,43 @@
1
+ require File.expand_path('../../../test_helper', __FILE__)
2
+
3
+ module Etsy
4
+ class AboutTest < Test::Unit::TestCase
5
+ context "An instance of the About class" do
6
+ setup do
7
+ data = read_fixture('about/getAbout.json')
8
+ @about = About.new(data.first)
9
+ end
10
+
11
+ should "have a shop id" do
12
+ @about.shop_id.should == 8740774
13
+ end
14
+
15
+ should "have a status" do
16
+ @about.status.should == "active"
17
+ end
18
+
19
+ should "have a story_headline" do
20
+ @about.story_headline.should == 'A shop long in the making...'
21
+ end
22
+
23
+ should "have a story_leading_paragraph" do
24
+ @about.story_leading_paragraph.should == 'This is the leading paragraph'
25
+ end
26
+
27
+ should "have a story" do
28
+ @about.story.should == "I grew up with strong women in my family who all had a love of creating. My mom and grandma always encouraged a lifelong love of creating Working with glass, wire, and mineral components brings back my graduate school days, when I studied these items from a scientific point-of-view. Here&#39;s hoping I can create something that gives you a little sparkle in your life!"
29
+ end
30
+
31
+ should "have a related_links" do
32
+ @about.related_links.should == {
33
+ "link-0"=> {"title"=> "facebook", "url"=> "https://www.facebook.com/pebbleplusmetal/"},
34
+ "link-1"=> {"title"=> "pinterest", "url"=> "https://www.pinterest.com/PebblePlusMetal/pebble%2Bmetal/"}
35
+ }
36
+ end
37
+
38
+ should "have a url" do
39
+ @about.url.should == 'https://www.etsy.com/shop/PebblePlusMetal/about'
40
+ end
41
+ end
42
+ end
43
+ end
@@ -52,6 +52,10 @@ module Etsy
52
52
  @shop.image_url.should == "http://ny-image3.etsy.com/iusb_760x100.8484779.jpg"
53
53
  end
54
54
 
55
+ should "have a value for :icon_url" do
56
+ @shop.icon_url.should == "https://img0.etsystatic.com/173/0/8740774/isla_fullxfull.22739584_nydzpho0.jpg"
57
+ end
58
+
55
59
  should "have a value for :url" do
56
60
  @shop.url.should == "http://www.etsy.com/shop/littletjane"
57
61
  end
@@ -98,6 +102,14 @@ module Etsy
98
102
 
99
103
  shop.listings.should == 'listings'
100
104
  end
105
+
106
+ should "have an About object" do
107
+ shop = Shop.new
108
+
109
+ About.stubs(:find_by_shop).with(shop).returns('about')
110
+
111
+ shop.about.should == 'about'
112
+ end
101
113
  end
102
114
 
103
115
  end
@@ -15,6 +15,10 @@ module Etsy
15
15
  Transaction.find_all_by_buyer_id(1, {'key' => 'value'}).should == transactions
16
16
  end
17
17
 
18
+ should "be able to find transactions for a receipt" do
19
+ transactions = mock_request('/receipts/1/transactions', {'key' => 'value'}, 'Transaction', 'findAllShopTransactions.json')
20
+ Transaction.find_all_by_receipt_id(1, {'key' => 'value'}).should == transactions
21
+ end
18
22
  end
19
23
 
20
24
  context "An instance of the Transaction class" do
metadata CHANGED
@@ -1,7 +1,8 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: etsy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
+ prerelease:
5
6
  platform: ruby
6
7
  authors:
7
8
  - Patrick Reagan
@@ -9,95 +10,108 @@ authors:
9
10
  autorequire:
10
11
  bindir: bin
11
12
  cert_chain: []
12
- date: 2015-09-11 00:00:00.000000000 Z
13
+ date: 2017-06-07 00:00:00.000000000 Z
13
14
  dependencies:
14
15
  - !ruby/object:Gem::Dependency
15
16
  name: json
16
17
  requirement: !ruby/object:Gem::Requirement
18
+ none: false
17
19
  requirements:
18
- - - ">="
20
+ - - ! '>='
19
21
  - !ruby/object:Gem::Version
20
22
  version: 1.5.0
21
23
  type: :runtime
22
24
  prerelease: false
23
25
  version_requirements: !ruby/object:Gem::Requirement
26
+ none: false
24
27
  requirements:
25
- - - ">="
28
+ - - ! '>='
26
29
  - !ruby/object:Gem::Version
27
30
  version: 1.5.0
28
31
  - !ruby/object:Gem::Dependency
29
32
  name: oauth
30
33
  requirement: !ruby/object:Gem::Requirement
34
+ none: false
31
35
  requirements:
32
- - - "~>"
36
+ - - ~>
33
37
  - !ruby/object:Gem::Version
34
38
  version: 0.4.0
35
39
  type: :runtime
36
40
  prerelease: false
37
41
  version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
38
43
  requirements:
39
- - - "~>"
44
+ - - ~>
40
45
  - !ruby/object:Gem::Version
41
46
  version: 0.4.0
42
47
  - !ruby/object:Gem::Dependency
43
48
  name: rake
44
49
  requirement: !ruby/object:Gem::Requirement
50
+ none: false
45
51
  requirements:
46
- - - "~>"
52
+ - - ~>
47
53
  - !ruby/object:Gem::Version
48
54
  version: 10.0.4
49
55
  type: :development
50
56
  prerelease: false
51
57
  version_requirements: !ruby/object:Gem::Requirement
58
+ none: false
52
59
  requirements:
53
- - - "~>"
60
+ - - ~>
54
61
  - !ruby/object:Gem::Version
55
62
  version: 10.0.4
56
63
  - !ruby/object:Gem::Dependency
57
64
  name: jnunemaker-matchy
58
65
  requirement: !ruby/object:Gem::Requirement
66
+ none: false
59
67
  requirements:
60
- - - "~>"
68
+ - - ~>
61
69
  - !ruby/object:Gem::Version
62
70
  version: 0.4.0
63
71
  type: :development
64
72
  prerelease: false
65
73
  version_requirements: !ruby/object:Gem::Requirement
74
+ none: false
66
75
  requirements:
67
- - - "~>"
76
+ - - ~>
68
77
  - !ruby/object:Gem::Version
69
78
  version: 0.4.0
70
79
  - !ruby/object:Gem::Dependency
71
80
  name: shoulda
72
81
  requirement: !ruby/object:Gem::Requirement
82
+ none: false
73
83
  requirements:
74
- - - "~>"
84
+ - - ~>
75
85
  - !ruby/object:Gem::Version
76
86
  version: 3.4.0
77
87
  type: :development
78
88
  prerelease: false
79
89
  version_requirements: !ruby/object:Gem::Requirement
90
+ none: false
80
91
  requirements:
81
- - - "~>"
92
+ - - ~>
82
93
  - !ruby/object:Gem::Version
83
94
  version: 3.4.0
84
95
  - !ruby/object:Gem::Dependency
85
96
  name: mocha
86
97
  requirement: !ruby/object:Gem::Requirement
98
+ none: false
87
99
  requirements:
88
- - - "~>"
100
+ - - ~>
89
101
  - !ruby/object:Gem::Version
90
102
  version: 0.13.3
91
103
  type: :development
92
104
  prerelease: false
93
105
  version_requirements: !ruby/object:Gem::Requirement
106
+ none: false
94
107
  requirements:
95
- - - "~>"
108
+ - - ~>
96
109
  - !ruby/object:Gem::Version
97
110
  version: 0.13.3
98
111
  - !ruby/object:Gem::Dependency
99
112
  name: minitest
100
113
  requirement: !ruby/object:Gem::Requirement
114
+ none: false
101
115
  requirements:
102
116
  - - '='
103
117
  - !ruby/object:Gem::Version
@@ -105,6 +119,7 @@ dependencies:
105
119
  type: :development
106
120
  prerelease: false
107
121
  version_requirements: !ruby/object:Gem::Requirement
122
+ none: false
108
123
  requirements:
109
124
  - - '='
110
125
  - !ruby/object:Gem::Version
@@ -117,14 +132,15 @@ executables: []
117
132
  extensions: []
118
133
  extra_rdoc_files: []
119
134
  files:
120
- - ".gitignore"
121
- - ".travis.yml"
135
+ - .gitignore
136
+ - .travis.yml
122
137
  - Gemfile
123
138
  - LICENSE
124
139
  - README.md
125
140
  - Rakefile
126
141
  - etsy.gemspec
127
142
  - lib/etsy.rb
143
+ - lib/etsy/about.rb
128
144
  - lib/etsy/address.rb
129
145
  - lib/etsy/basic_client.rb
130
146
  - lib/etsy/category.rb
@@ -147,6 +163,7 @@ files:
147
163
  - lib/etsy/variation/property_set.rb
148
164
  - lib/etsy/verification_request.rb
149
165
  - lib/etsy/version.rb
166
+ - test/fixtures/about/getAbout.json
150
167
  - test/fixtures/address/getUserAddresses.json
151
168
  - test/fixtures/category/findAllSubCategoryChildren.json
152
169
  - test/fixtures/category/findAllTopCategory.json
@@ -160,6 +177,7 @@ files:
160
177
  - test/fixtures/listing/findAllListingActive.category.json
161
178
  - test/fixtures/listing/findAllShopListings.json
162
179
  - test/fixtures/listing/getListing.multiple.json
180
+ - test/fixtures/listing/getListing.single.includeImages.json
163
181
  - test/fixtures/listing/getListing.single.json
164
182
  - test/fixtures/payment_template/getPaymentTemplate.json
165
183
  - test/fixtures/profile/new.json
@@ -193,6 +211,7 @@ files:
193
211
  - test/unit/etsy/section_test.rb
194
212
  - test/unit/etsy/secure_client_test.rb
195
213
  - test/unit/etsy/shipping_template_test.rb
214
+ - test/unit/etsy/shop_about_test.rb
196
215
  - test/unit/etsy/shop_test.rb
197
216
  - test/unit/etsy/transaction_test.rb
198
217
  - test/unit/etsy/user_test.rb
@@ -201,28 +220,30 @@ files:
201
220
  homepage: http://github.com/kytrinyx/etsy
202
221
  licenses:
203
222
  - MIT
204
- metadata: {}
205
223
  post_install_message:
206
224
  rdoc_options: []
207
225
  require_paths:
208
226
  - lib
209
227
  required_ruby_version: !ruby/object:Gem::Requirement
228
+ none: false
210
229
  requirements:
211
- - - ">="
230
+ - - ! '>='
212
231
  - !ruby/object:Gem::Version
213
232
  version: '0'
214
233
  required_rubygems_version: !ruby/object:Gem::Requirement
234
+ none: false
215
235
  requirements:
216
- - - ">="
236
+ - - ! '>='
217
237
  - !ruby/object:Gem::Version
218
238
  version: '0'
219
239
  requirements: []
220
240
  rubyforge_project:
221
- rubygems_version: 2.2.2
241
+ rubygems_version: 1.8.23
222
242
  signing_key:
223
- specification_version: 4
243
+ specification_version: 3
224
244
  summary: Provides a friendly ruby-like wrapper for the Etsy API
225
245
  test_files:
246
+ - test/fixtures/about/getAbout.json
226
247
  - test/fixtures/address/getUserAddresses.json
227
248
  - test/fixtures/category/findAllSubCategoryChildren.json
228
249
  - test/fixtures/category/findAllTopCategory.json
@@ -236,6 +257,7 @@ test_files:
236
257
  - test/fixtures/listing/findAllListingActive.category.json
237
258
  - test/fixtures/listing/findAllShopListings.json
238
259
  - test/fixtures/listing/getListing.multiple.json
260
+ - test/fixtures/listing/getListing.single.includeImages.json
239
261
  - test/fixtures/listing/getListing.single.json
240
262
  - test/fixtures/payment_template/getPaymentTemplate.json
241
263
  - test/fixtures/profile/new.json
@@ -269,9 +291,9 @@ test_files:
269
291
  - test/unit/etsy/section_test.rb
270
292
  - test/unit/etsy/secure_client_test.rb
271
293
  - test/unit/etsy/shipping_template_test.rb
294
+ - test/unit/etsy/shop_about_test.rb
272
295
  - test/unit/etsy/shop_test.rb
273
296
  - test/unit/etsy/transaction_test.rb
274
297
  - test/unit/etsy/user_test.rb
275
298
  - test/unit/etsy/verification_request_test.rb
276
299
  - test/unit/etsy_test.rb
277
- has_rdoc:
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: dd7112229ce87257b5ea66ca6eddafe82d07bacc
4
- data.tar.gz: e8f34ab7f54ee0675a26d387c77b337ca10ec2db
5
- SHA512:
6
- metadata.gz: ad057b670ae67786f6c4093218dfb615ede31d5c005b8e19c753f3a776fcb1b77e0cf3e1dbf5f7227ad303ab6320ae7d5c4d014be48684d2c8490279e1992a73
7
- data.tar.gz: 50108ef28fcd663125db0787a1127d6a5ee8587f5b1c35cf7aee4776f6f503fb2995af90a595d8f1577b8a4e228c02c06adce626e45fa468629f49c395423f1c