<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Part 2: A simple script to pull information]]></title><description><![CDATA[<p dir="auto">At a very basic level the first thing you need to do is authenticate with your Netflix account, once this is done you can use a combination of the Netflix generated cookie data (will show you how to get this shortly) and the pathEvaluator url</p>
<pre><code>https://www.netflix.com/api/shakti/0feb190f/pathEvaluator?withSize=true&amp;materialize=true&amp;model=harris
</code></pre>
<p dir="auto">to interact with the API.   There are a variety of ways you can pull the cookie information you need.    As the cookie data lasts for weeks, I have just been grabbing it from the response headers.  To do this, inspect the Netflix web-page as we did in Part 1, click on the pathEvaluator url, click on 'Headers' and under Request Headers copy the cookie data all in one block.  (That is the block of data directly after Cookie: &lt;this data&gt;).</p>
<p dir="auto"><img src="/assets/uploads/files/1501687672955-1487511068610-cookie.jpeg" alt="0_1501687671553_1487511068610-cookie.jpeg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Armed with the pathEvaluator url and our cookie we can now use this information to pull data with our script.</p>
<p dir="auto">The basic script I am using for this tutorial is written in python, but the simple tenants hold true for whatever scripting language you choose.</p>
<p dir="auto">I am assuming that you have python installed so that is not going to be relevant to this tutorial.</p>
<p dir="auto">Without further ado here is the script:</p>
<pre><code>#!/usr/bin/python
import requests
import json;

cookie='&lt;insert your cookie details here&gt;';

headers={'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:51.0) Gecko/20100101 Firefox/51.0',
'Cookie':cookie,
'Accept':'application/json, text/javascript, */*',
'Accept-Language':'en-GB,en;q=0.5',
'Accept-Encoding':'gzip, deflate, br',
'Content-Type':'application/json',
'DNT':'1',
'Referer':'https://www.netflix.com'}

genres='0,"to":1'
rmax='5'
base='&lsqb;&lsqb;"newarrivals",{"from":'+genres+'},{"from":0,"to":'+rmax+'},["title","availability"&rsqb;&rsqb;,["newarrivals",{"from":'+genres+'},{"from":0,"to":'+rmax+'},"boxarts","_342x192","jpg"&rsqb;&rsqb;';
data='{"paths":'+base+'}'

#use the pathEvaluator from your session here
url='https://www.netflix.com/api/shakti/blah/pathEvaluator?withSize=true&amp;materialize=true&amp;model=harris';

response=requests.post(url,data=data,headers=headers)

rjson=response.json()

videos=rjson['value']['videos']
for vid in videos:
    if vid.isnumeric():
        vo=videos[vid]
        title=vo['title']
        boxart=vo['boxarts']['_342x192']['jpg']['url']
        isplayable=vo['availability']['isPlayable']
        retjson='{"netflixid":"'+str(vid)+'","title":"'+str(title)+'","playable":'+str(isplayable)+',"boxart":"'+str(boxart)+'"}';
        print retjson


</code></pre>
<p dir="auto">This script could be a lot more concise but I wanted to make it as simple as possible so its clear exactly what it is doing.  If there are any questions or suggestions please reply to this thread.</p>
<p dir="auto">good luck!<br />
-admin</p>
]]></description><link>https://forum.uno.gs/topic/9/part-2-a-simple-script-to-pull-information</link><generator>RSS for Node</generator><lastBuildDate>Sat, 07 Mar 2026 02:40:46 GMT</lastBuildDate><atom:link href="https://forum.uno.gs/topic/9.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 19 Feb 2017 15:17:43 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 01 May 2021 12:58:31 GMT]]></title><description><![CDATA[<p dir="auto">Hello guys,</p>
<p dir="auto">The "&amp;languages=" on Netflix API is no longer working!  It only returns the language from your the account.</p>
<p dir="auto"><a href="https://www.netflix.com/nq/website/memberapi/v235de6dc/pathEvaluator?webp=false&amp;drmSystem=widevine&amp;original_path=%2Fshakti%2Fv235de6dc%2FpathEvaluator&amp;languages=en-US" rel="nofollow ugc">https://www.netflix.com/nq/website/memberapi/v235de6dc/pathEvaluator?webp=false&amp;drmSystem=widevine&amp;original_path=%2Fshakti%2Fv235de6dc%2FpathEvaluator&amp;languages=en-US</a></p>
<p dir="auto">Do you know how to change the language from the movie name/title?</p>
]]></description><link>https://forum.uno.gs/post/1258</link><guid isPermaLink="true">https://forum.uno.gs/post/1258</guid><dc:creator><![CDATA[Deckameron]]></dc:creator><pubDate>Sat, 01 May 2021 12:58:31 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 24 Nov 2018 13:10:05 GMT]]></title><description><![CDATA[<p dir="auto">globally? you can't as far as I'm aware... but with <a href="http://unogs.com" rel="nofollow ugc">unogs.com</a> you can see whats available in 31 countries.</p>
]]></description><link>https://forum.uno.gs/post/403</link><guid isPermaLink="true">https://forum.uno.gs/post/403</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Sat, 24 Nov 2018 13:10:05 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Tue, 20 Nov 2018 09:07:07 GMT]]></title><description><![CDATA[<p dir="auto">How do you search <strong>all</strong> films available on Netflix?</p>
]]></description><link>https://forum.uno.gs/post/402</link><guid isPermaLink="true">https://forum.uno.gs/post/402</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 20 Nov 2018 09:07:07 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Fri, 21 Sep 2018 15:57:15 GMT]]></title><description><![CDATA[<p dir="auto">Hi! I have a new website <a href="http://www.wenetflix.com" rel="nofollow ugc">www.wenetflix.com</a> build with laravel than i want to integrate it <a href="http://unogs.com" rel="nofollow ugc">unogs.com</a> api</p>
<p dir="auto">Can i do it this please and how ?</p>
<p dir="auto">regards</p>
]]></description><link>https://forum.uno.gs/post/378</link><guid isPermaLink="true">https://forum.uno.gs/post/378</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Fri, 21 Sep 2018 15:57:15 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 26 May 2018 14:09:35 GMT]]></title><description><![CDATA[<p dir="auto">Manually stepping through the steps of the script and using print to reveal variable values and responses shows me much.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">response=requests.post(url,data=data,headers=headers)<br />
print response<br />
&lt;Response [200]&gt;</p>
</blockquote>
</blockquote>
</blockquote>
<p dir="auto">So I'm getting an "OK" response.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">rjson=response.json()<br />
print rjson<br />
{u'paths': &lsqb;&lsqb;u'newarrivals', {u'to': 1, u'from': 0}, {u'to': 5, u'from': 0}, [u'title', u'availability'&rsqb;&rsqb;, [u'newarrivals', {u'to': 1, u'from': 0}, {u'to': 5, u'from': 0}, u'boxarts', u'_342x192', u'jpg'&rsqb;&rsqb;, u'jsonGraph': {u'newarrivals': {u'1': {u'$type': u'ref', u'value': [u'lists',...<br />
...<br />
.., {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}, u'5': {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}, u'4': {u'boxarts': {u'_342x192': {u'jpg': {u'$type': u'atom'}}}, u'availability': {u'$type': u'atom'}, u'title': {u'$type': u'atom'}}}}}}</p>
</blockquote>
</blockquote>
</blockquote>
<p dir="auto">And here's where it falls down.</p>
<blockquote>
<blockquote>
<blockquote>
<p dir="auto">videos=rjson['value']['videos']<br />
Traceback (most recent call last):<br />
File "&lt;stdin&gt;", line 1, in &lt;module&gt;<br />
KeyError: 'value'</p>
</blockquote>
</blockquote>
</blockquote>
]]></description><link>https://forum.uno.gs/post/309</link><guid isPermaLink="true">https://forum.uno.gs/post/309</guid><dc:creator><![CDATA[Leuven]]></dc:creator><pubDate>Sat, 26 May 2018 14:09:35 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 26 May 2018 13:03:23 GMT]]></title><description><![CDATA[<p dir="auto">As the python response error is apparently with whatever the rjson is, how might I determine if it is being populated?  Via inspect element in the browser I can see that videos contains the following attributes..summary, title, titleMaturity, userRating,  boxarts, UserRatingRequestId.</p>
<p dir="auto">I know that the browser response is separate from that of the python script response.</p>
<p dir="auto">How to troubleshoot?</p>
]]></description><link>https://forum.uno.gs/post/308</link><guid isPermaLink="true">https://forum.uno.gs/post/308</guid><dc:creator><![CDATA[Leuven]]></dc:creator><pubDate>Sat, 26 May 2018 13:03:23 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 26 May 2018 11:55:14 GMT]]></title><description><![CDATA[<p dir="auto">Am interested in understanding the geographical differences in Netflix offerings and particularly attempting to determine the hierarchies used to implement various aspects of subscriber based on location.  Accordingly beginning to understand what the API can offer seems useful.</p>
<p dir="auto">After using pip to install requests (which I also attempted for json as it's there in the script import statements), I created &amp; did the updates to the script itself.</p>
<p dir="auto">I copied the python script into a (.py) file, updated the cookie sections (containing components for memclid, nfvdid, SecureNetflixId, NetflixId, cL, clSharedContext, didUserInteractWithPage, dsca...).</p>
<p dir="auto">Initially it seemed to give some sort of json error, but after updating the User-Agent details now gives me the following.</p>
<p dir="auto">13:46:Drei $python <a href="http://netflix1.py" rel="nofollow ugc">netflix1.py</a><br />
Traceback (most recent call last):<br />
File "<a href="http://netflix1.py" rel="nofollow ugc">netflix1.py</a>", line 29, in &lt;module&gt;<br />
videos=rjson['value']['videos']<br />
KeyError: 'value'<br />
13:46:Drei $head -29 <a href="http://netflix1.py" rel="nofollow ugc">netflix1.py</a> | tail -1<br />
videos=rjson['value']['videos']</p>
<p dir="auto">Ideas?<br />
I also updated the  User Agent value and pathevaluator value (URL) from a POST request.</p>
]]></description><link>https://forum.uno.gs/post/307</link><guid isPermaLink="true">https://forum.uno.gs/post/307</guid><dc:creator><![CDATA[Leuven]]></dc:creator><pubDate>Sat, 26 May 2018 11:55:14 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 04 Apr 2018 19:53:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/208">@victorhupo</a> In that case you would need to use this tutorial and just change your language to whatever you want...</p>
<pre><code>'Accept-Language':'en-GB,en;q=0.5',
</code></pre>
<p dir="auto">needs to change to:</p>
<pre><code>'Accept-Language':'pt',
</code></pre>
<p dir="auto">or something equivalent.. have a look at your request headers like mentioned in the example above</p>
]]></description><link>https://forum.uno.gs/post/282</link><guid isPermaLink="true">https://forum.uno.gs/post/282</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Wed, 04 Apr 2018 19:53:33 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 04 Apr 2018 19:35:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a>   but in the site only it shows images in EnglishI would like the images in Brazilian Portuguese.</p>
]]></description><link>https://forum.uno.gs/post/281</link><guid isPermaLink="true">https://forum.uno.gs/post/281</guid><dc:creator><![CDATA[victorhupo]]></dc:creator><pubDate>Wed, 04 Apr 2018 19:35:34 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 04 Apr 2018 18:57:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/208">@victorhupo</a> If its just for this one title click on 'show all images' , then right click on whatever image you want and save it</p>
]]></description><link>https://forum.uno.gs/post/280</link><guid isPermaLink="true">https://forum.uno.gs/post/280</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Wed, 04 Apr 2018 18:57:17 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 04 Apr 2018 15:54:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a> Sorry, this is it. <a href="http://unogs.com/video/?v=80072207" rel="nofollow ugc">http://unogs.com/video/?v=80072207</a></p>
]]></description><link>https://forum.uno.gs/post/279</link><guid isPermaLink="true">https://forum.uno.gs/post/279</guid><dc:creator><![CDATA[victorhupo]]></dc:creator><pubDate>Wed, 04 Apr 2018 15:54:18 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 04 Apr 2018 12:51:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/208">@victorhupo</a> what title is that? it doesn't look like it exists..</p>
]]></description><link>https://forum.uno.gs/post/278</link><guid isPermaLink="true">https://forum.uno.gs/post/278</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Wed, 04 Apr 2018 12:51:02 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Tue, 03 Apr 2018 01:22:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a> I would like to download the boxart of this title "80101802" but in my language that is brazilian portuguese, I do not understand mto code but I tried it and I did not get it through your tutorial, it would have you help me or else add the function of being able to choose the parents that your site would take the image?</p>
]]></description><link>https://forum.uno.gs/post/277</link><guid isPermaLink="true">https://forum.uno.gs/post/277</guid><dc:creator><![CDATA[victorhupo]]></dc:creator><pubDate>Tue, 03 Apr 2018 01:22:40 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Wed, 07 Mar 2018 02:25:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a> I've been trying to do a search call to pathevaluator, even copied exactly what is being sent on netflix's search page, but there must be some kind of sorting going on? For example when I search "shark" I'm getting little rascals at the top. Little rascals is also on the netflix page but down on around row 10.</p>
<p dir="auto">Any idea if theres some relevancy value I need? Thanks in advance.</p>
]]></description><link>https://forum.uno.gs/post/264</link><guid isPermaLink="true">https://forum.uno.gs/post/264</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Wed, 07 Mar 2018 02:25:03 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Thu, 25 Jan 2018 09:19:12 GMT]]></title><description><![CDATA[<p dir="auto">unfortunately I have never played with C# so I can't be much help there...</p>
]]></description><link>https://forum.uno.gs/post/256</link><guid isPermaLink="true">https://forum.uno.gs/post/256</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Thu, 25 Jan 2018 09:19:12 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Tue, 23 Jan 2018 15:36:01 GMT]]></title><description><![CDATA[<p dir="auto">I'm trying to accomplish the same thing as this code sample in c#, I was able to get a working response in python but the rest of my project is in c#.</p>
<p dir="auto">However when I use a HTTPWebRequest to get the response stream, the response looks like this:<br />
"\u001f�\b\0\0\0\0\0\0\0ܖKo�F\fǿ�B�q�%�=�\u0015i\u000e)�&amp;��T\u0004\u0006g�\u0013+Qv\u0017+���\u07fd#m��_M\u0011 \a�F��P\u007f�(��T�Ԟqu����k&gt;\u0017C(i���^���\u0018�_m�ê�u߬����9hn3�ܔ\u0004��ݮ)'w���mL1�:��j����!�u&amp;�\u0002\u001b�<em>�L�BP^��\u0018}d��LL9�(]&amp;O�u\u0014Z9\u0017\u0010&lt;\n\u001b2xͬ]\0��\u0010g2�Z�</em>�\u0010E��������2uܽ.e���\u001d�@���\u0012XKgIHr |</p>
<p dir="auto">(Shortened so not to overwhelm)</p>
<p dir="auto">I'm at a loss as to why the response I'm getting in c# is a unicode mess but the python code gets a nice clean response.</p>
<p dir="auto">Any ideas?</p>
<pre><code>        string genres = "0,\"to\":1";
        string rmax = "5";
        string sbase = "&lsqb;&lsqb;\"newarrivals\",{\"from\":" + genres + "},{\"from\":0,\"to\":" + rmax + "},[\"title\",\"availability\"&rsqb;&rsqb;,[\"newarrivals\",{\"from\":" + genres + "},{\"from\":0,\"to\":" + rmax + "},\"boxarts\",\"_342x192\",\"jpg\"&rsqb;&rsqb;";
        string data = "{\"paths\":" + sbase + ",\"authURL\":\"1516657903506.SW2aceZfllyxCd5V5TPHJdJiMxQ=\"}";

        byte[] byteArray = Encoding.UTF8.GetBytes(data);
        request.ContentLength = byteArray.Length;
        Stream dataStream = request.GetRequestStream();
        dataStream.Write(byteArray, 0, byteArray.Length);
        WebResponse response = request.GetResponse();
        dataStream = response.GetResponseStream();
        StreamReader reader = new StreamReader(dataStream);
        string responseFromServer = reader.ReadToEnd();
</code></pre>
]]></description><link>https://forum.uno.gs/post/255</link><guid isPermaLink="true">https://forum.uno.gs/post/255</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Tue, 23 Jan 2018 15:36:01 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Sat, 07 Oct 2017 12:49:35 GMT]]></title><description><![CDATA[<p dir="auto">Do you guys know how I can get the titles actors, directors and creators?<br />
Thanks in advance! :)</p>
]]></description><link>https://forum.uno.gs/post/206</link><guid isPermaLink="true">https://forum.uno.gs/post/206</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Sat, 07 Oct 2017 12:49:35 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Fri, 06 Oct 2017 17:02:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/7">@frankied</a> said in <a href="/post/45">Part 2: A simple script to pull information</a>:</p>
<blockquote>
<p dir="auto">Requesting</p>
</blockquote>
<p dir="auto">When I try your code I get this response:<br />
'''<br />
{u'paths': &lsqb;&lsqb;u'shows'], [u'80113701'], [u'browse'&rsqb;&rsqb;,<br />
u'value': {u'$size': 48,<br />
u'80113701': {u'$size': 16, u'$type': u'sentinel', u'size': 16},<br />
u'browse': {u'$size': 16, u'$type': u'sentinel', u'size': 16},<br />
u'shows': {u'$size': 16, u'$type': u'sentinel', u'size': 16},<br />
u'size': 48}}<br />
'''</p>
]]></description><link>https://forum.uno.gs/post/203</link><guid isPermaLink="true">https://forum.uno.gs/post/203</guid><dc:creator><![CDATA[[[global:guest]]]]></dc:creator><pubDate>Fri, 06 Oct 2017 17:02:31 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 17:39:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/37">@spiffylogic</a> Glad to hear it... <a href="https://jsonformatter.curiousconcept.com/" rel="nofollow ugc">https://jsonformatter.curiousconcept.com/</a> is your friend</p>
]]></description><link>https://forum.uno.gs/post/196</link><guid isPermaLink="true">https://forum.uno.gs/post/196</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Mon, 02 Oct 2017 17:39:06 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 17:23:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a> Sorry it is actually working but I got lost in the sea of output. The data for that title indeed shows</p>
<pre><code>u'availabilityEndDateNear': u'2017-10-05'
</code></pre>
<p dir="auto">but for all other titles it has that sentinel blob (which is still curious to me...).</p>
<p dir="auto">Thanks for your help and for this great forum!</p>
]]></description><link>https://forum.uno.gs/post/195</link><guid isPermaLink="true">https://forum.uno.gs/post/195</guid><dc:creator><![CDATA[spiffylogic]]></dc:creator><pubDate>Mon, 02 Oct 2017 17:23:57 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 17:03:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/37">@spiffylogic</a> It works fine for me, can you post the PATH JSON you are using?</p>
]]></description><link>https://forum.uno.gs/post/194</link><guid isPermaLink="true">https://forum.uno.gs/post/194</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Mon, 02 Oct 2017 17:03:49 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 16:29:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a> That was "You Laugh But It's True" in Canada</p>
]]></description><link>https://forum.uno.gs/post/193</link><guid isPermaLink="true">https://forum.uno.gs/post/193</guid><dc:creator><![CDATA[spiffylogic]]></dc:creator><pubDate>Mon, 02 Oct 2017 16:29:09 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 16:03:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/37">@spiffylogic</a> what title in what country?</p>
]]></description><link>https://forum.uno.gs/post/192</link><guid isPermaLink="true">https://forum.uno.gs/post/192</guid><dc:creator><![CDATA[admin]]></dc:creator><pubDate>Mon, 02 Oct 2017 16:03:04 GMT</pubDate></item><item><title><![CDATA[Reply to Part 2: A simple script to pull information on Mon, 02 Oct 2017 15:54:31 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forum.uno.gs/uid/1">@admin</a>  When I use "availabilityEndDateNear" (for a title that I know is expiring soon) I get back something I don't understand:</p>
<pre><code>u'availabilityEndDateNear': {u'$size': 16, u'$type': u'sentinel', u'size': 16}
</code></pre>
<p dir="auto">What does this mean?</p>
]]></description><link>https://forum.uno.gs/post/191</link><guid isPermaLink="true">https://forum.uno.gs/post/191</guid><dc:creator><![CDATA[spiffylogic]]></dc:creator><pubDate>Mon, 02 Oct 2017 15:54:31 GMT</pubDate></item></channel></rss>