code
stringlengths
1
1.72M
language
stringclasses
1 value
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from filehungry.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ def s...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from filehungry.classes.FileHungryFeedItem import FileHungryFeedItem #########################################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from filetransit.classes.FileTransitFeedItem import FileTransitFeedItem ######################################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from filetransit.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ def ...
Python
import logging import string import re from datetime import datetime from HTMLParser import HTMLParser from FileTransitFeedItem import FileTransitFeedItem """ """ class CustomHTMLParser(HTMLParser): """ OK """ def resetItemData(self): self.isItemO...
Python
from google.appengine.ext import db """ """ class FileTransitFeedItem(db.Model): title = db.StringProperty() link = db.StringProperty() description = db.TextProperty() pubDate = db.DateTimeProperty(auto_now_add=True)
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from filetransit.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ def ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from filetransit.classes.FileTransitFeedItem import FileTransitFeedItem ######################################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from vclcomponents.classes.VCLComponentsFeedItem import VCLComponentsFeedItem ################################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from vclcomponents.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ de...
Python
import logging import string import re from datetime import datetime from HTMLParser import HTMLParser from VCLComponentsFeedItem import VCLComponentsFeedItem """ """ class CustomHTMLParser(HTMLParser): """ """ def resetItemData(self): self.isItemOpene...
Python
from google.appengine.ext import db """ """ class VCLComponentsFeedItem(db.Model): title = db.StringProperty() link = db.StringProperty() description = db.TextProperty() pubDate = db.DateTimeProperty(auto_now_add=True)
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from vclcomponents.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ de...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from vclcomponents.classes.VCLComponentsFeedItem import VCLComponentsFeedItem ################################################...
Python
"""PyRSS2Gen - A Python library for generating RSS 2.0 feeds.""" __name__ = "PyRSS2Gen" __version__ = (1, 0, 0) __author__ = "Andrew Dalke <dalke@dalkescientific.com>" _generator_name = __name__ + "-" + ".".join(map(str, __version__)) import datetime # Could make this the base class; will need to add 'publish' clas...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from sourcecodeonline.classes.SourceCodeOnlineFeedItem import SourceCodeOnlineFeedItem #######################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from sourcecodeonline.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ ...
Python
from google.appengine.ext import db """ """ class SourceCodeOnlineFeedItem(db.Model): title = db.StringProperty() link = db.StringProperty() description = db.TextProperty() pubDate = db.DateTimeProperty(auto_now_add=True)
Python
import logging import string import re from datetime import datetime from HTMLParser import HTMLParser from SourceCodeOnlineFeedItem import SourceCodeOnlineFeedItem """ """ class CustomHTMLParser(HTMLParser): """ """ def resetItemData(self): self.isItemOpened =...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import urllib import logging from sourcecodeonline.classes.CustomHTMLParser import CustomHTMLParser ################################################################################ ...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- ################################################################################ import PyRSS2Gen import sys from datetime import date from sourcecodeonline.classes.SourceCodeOnlineFeedItem import SourceCodeOnlineFeedItem #######################################...
Python
#!/usr/bin/python # -*- coding: utf-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ import sys import os sys.path.insert(0, os.getcwd()) import unittest from Feedtorrent.Feedtorrent import Feedtorrent class FeedtorrentTest(unittest.TestCase): # {{{ def setUp(self): pass def tea...
Python
#!/usr/bin/python #!/usr/bin/python # -*- coding: UTF-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ # External imports import sys import os.path # Internal imports from Feedtorrent.Model import TVSerie, Season, Episode, Event def follow(tvSerieName, publisher=None): tvSerie = TVSeri...
Python
#!/usr/bin/python #!/usr/bin/python # -*- coding: UTF-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ # External imports import os.path import urllib2 import feedparser import HTMLParser # Internal imports from Model import TVSerie, Season, Episode, Event, DOWNLOADING class Torrent(obje...
Python
#!/usr/bin/python # -*- coding: UTF-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ # External imports from sqlobject import SQLObject, IntCol, UnicodeCol, BoolCol, MultipleJoin, \ ForeignKey, DateTimeCol from sqlobject.sqlite import builder from sqlobject import sqlhub import datetime...
Python
#!/usr/bin/python #-*- coding: utf-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ """ subdownloader: Download subtitles for a video file in a selected language. Authors = Rafael Treviño <skasi.7@gmail.es> Date = 23/10/09 """ # Imports externals import os import sys import tempfile ...
Python
#!/usr/bin/python #-*- coding: utf-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ """ torrentparser: Parses .torrent files to extract its metadata. Authors = Rafael Treviño <skasi.7@gmail.es> Date = 24/10/09 """ # Imports externals import re import os import sys try: import psyco...
Python
#!/usr/bin/python #-*- coding: utf-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ """ RSS: Create rss output of events. Authors = Rafael Treviño <skasi.7@gmail.es> Date = 24/10/09 """ # Imports externals import os import sys import time import PyRSS2Gen # Imports internals from Mo...
Python
# -*- coding: utf-8 -*- # # Feedtorrent documentation build configuration file, created by # sphinx-quickstart on Thu May 14 13:45:08 2009. # # This file is execfile()d with the current directory set to its containing dir. # # The contents of this file are pickled, so don't put values in the namespace # that aren't pic...
Python
#!/usr/bin/python # -*- coding: UTF-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ from distutils.core import setup import os import setuptools import conf import subprocess class Sphinx(setuptools.Command): description = 'Sphinx documentation' user_options = [] doc_src = 'Feedto...
Python
#!/usr/bin/python #!/usr/bin/python # -*- coding: UTF-8 -*- # subversion info: # $HeadURL: $ # $Author: $ # $Id: $ # $Revision: $ # External imports import sys import os.path import ConfigParser # Internal imports from Feedtorrent.Feed import Feed from Feedtorrent.TorrentParser import TorrentParser from Feedtorrent...
Python
# Makes Sphinx create a <link> to feedparser.css in the HTML output def setup(app): app.add_stylesheet('feedparser.css')
Python
# project information project = u'feedparser' copyright = u'2004-2008 Mark Pilgrim, 2010-2013 Kurt McKee' version = u'5.1.3' release = u'5.1.3' language = u'en' # documentation options master_doc = 'index' exclude_patterns = ['_build'] # use a custom extension to make Sphinx add a <link> to feedparser.css import sys,...
Python
from setuptools import setup import sys extra = {} if sys.version_info >= (3, ): extra['use_2to3'] = True setup( name = 'feedparser', version = '5.1.3', description = 'Universal feed parser, handles RSS 0.9x, RSS 1.0, ' 'RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds', author = 'Kurt...
Python
"""Universal feed parser Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds Visit https://code.google.com/p/feedparser/ for the latest version Visit http://packages.python.org/feedparser/ for the latest documentation Required: Python 2.4 or later Recommended: iconv_codec <http://cjkpython.i18n.org...
Python
"""A parser for SGML, using the derived class as a static DTD.""" # XXX This only supports those SGML features used by HTML. # XXX There should be a way to distinguish between PCDATA (parsed # character data -- the normal case), RCDATA (replaceable character # data -- only char and entity references and end tags are ...
Python
#!/usr/bin/env python __author__ = "Mark Pilgrim <http://diveintomark.org/>" __license__ = """ Copyright (c) 2010-2013 Kurt McKee <contactme@kurtmckee.org> Copyright (c) 2004-2008 Mark Pilgrim All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided ...
Python
#!/usr/bin/env python """Universal feed parser Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds Visit http://feedparser.org/ for the latest version Visit http://feedparser.org/docs/ for the latest documentation Required: Python 2.1 or later Recommended: Python 2.3 or later Recommended: CJKCodecs...
Python
from google.appengine.ext import db class Feed(db.Model): title = db.StringProperty() owner = db.UserProperty() feed = db.URLProperty(required=True) limit = db.IntegerProperty(default = 10)
Python
from google.appengine.ext.appstats import recording def webapp_add_wsgi_middleware(app): app = recording.appstats_wsgi_middleware(app) return app
Python
#!/usr/bin/env python """Universal feed parser Handles RSS 0.9x, RSS 1.0, RSS 2.0, CDF, Atom 0.3, and Atom 1.0 feeds Visit http://feedparser.org/ for the latest version Visit http://feedparser.org/docs/ for the latest documentation Required: Python 2.1 or later Recommended: Python 2.3 or later Recommended: CJKCodecs...
Python
from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.ext.webapp import template from google.appengine.api import urlfetch from data import Feed import feedparser class GenerateFeed(webapp.RequestHandler): """ """ def get(self,key): temp...
Python
from google.appengine.ext import webapp from google.appengine.api import users from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.ext.webapp import template from data import Feed import feedparser, os class MainPage(webapp.RequestHandler): def get(self): user = users.get_curren...
Python
from google.appengine.ext import webapp from google.appengine.ext.webapp.util import run_wsgi_app from google.appengine.api import users from data import Feed class ExportFeeds(webapp.RequestHandler): def get(self,format): """ """ user = users.get_current_user() feeds = Feed.all().filter('o...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006, 2007, 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by app...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006, 2007, 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by app...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#/usr/bin/python # # Copyright (C) 2007, 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
# -*- coding: utf-8 -*- # # Copyright (c) 2007 Benoit Chesneau <benoitc@metavers.net> # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS...
Python
# -*- coding: utf-8 -*- # # Copyright (c) 2007 Benoit Chesneau <benoitc@metavers.net> # # Permission to use, copy, modify, and distribute this software for any # purpose with or without fee is hereby granted, provided that the above # copyright notice and this permission notice appear in all copies. # # THE SOFTWARE IS...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
# -*-*- encoding: utf-8 -*-*- # # This is gdata.photos.geo, implementing geological positioning in gdata structures # # $Id: __init__.py 81 2007-10-03 14:41:42Z havard.gulldahl $ # # Copyright 2007 Håvard Gulldahl # Portions copyright 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License");...
Python
# -*-*- encoding: utf-8 -*-*- # # This is gdata.photos.media, implementing parts of the MediaRSS spec in gdata structures # # $Id: __init__.py 81 2007-10-03 14:41:42Z havard.gulldahl $ # # Copyright 2007 Håvard Gulldahl # Portions copyright 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "Lice...
Python
#!/usr/bin/python # # Copyright Google 2007-2008, all rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required ...
Python
#!/usr/bin/python # # Copyright (C) 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright Google 2007-2008, all rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required ...
Python
#!/usr/bin/python # # Copyright (C) 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2007 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2006 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python
#!/usr/bin/python # # Copyright (C) 2008 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law ...
Python