MyBB Depo Forum

Orjinalini görmek için tıklayınız: Python yazilimi icin yardim gerek
Şu anda (Arşiv) modunu görüntülemektesiniz. Orjinal Sürümü Görüntüle internal link
Sayfalar: 1 2
Sende programın kaynak kod göstericisi var mi
(14-07-2016, Saat:01:00)proallturkey Adlı Kullanıcıdan Alıntı: [ -> ]Sende programın kaynak kod göstericisi var mi

kendi py var suan download oluyor ama py de nasil benim siteye yönlendircem acaba
Dostum py bilmiyorum bilsem emin ol yardim ederdim
Kod:
BENIM PY SUAN BU SEKIL CALISIYOR Örnek alta


import xbmc, xbmcaddon, xbmcgui, xbmcplugin,os,sys
import shutil
import urllib2,urllib
import re
import extract
import time
import downloader
import plugintools
import zipfile
import ntpath


USER_AGENT = 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3'
base='YOUR SITE HERE'
ADDON=xbmcaddon.Addon(id='plugin.video.turkishbuild')
dialog = xbmcgui.Dialog()    
VERSION = "1.0.0"
PATH = "turkishbuild"            

   
def CATEGORIES():
   link = OPEN_URL('https://www.dropbox.com/x/xxxxxxxxxxxxxxxxxxx?dl=1').replace('\n','').replace('\r','')
   match = re.compile('name="(.+?)".+?rl="(.+?)".+?mg="(.+?)".+?anart="(.+?)".+?escription="(.+?)"').findall(link)
   for name,url,iconimage,fanart,description in match:
       addDir(name,url,1,iconimage,fanart,description)
   setView('movies', 'MAIN')
       
   
def OPEN_URL(url):
   req = urllib2.Request(url)
   req.add_header('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3')
   response = urllib2.urlopen(req)
   link=response.read()
   response.close()
   return link
   
   
def wizard(name,url,description):
   path = xbmc.translatePath(os.path.join('special://home/addons','packages'))
   dp = xbmcgui.DialogProgress()
   dp.create("xxxxxxxxxxxxx CodeName Turkish 8.2 Wizard","Downloading ",'', 'Please Wait')
   lib=os.path.join(path, name+'.zip')
   try:
      os.remove(lib)
   except:
      pass
   downloader.download(url, lib, dp)
   addonfolder = xbmc.translatePath(os.path.join('special://','home'))
   time.sleep(2)
   dp.update(0,"", "Extracting Zip")
   print '======================================='
   print addonfolder
   print '======================================='
   extract.all(lib,addonfolder,dp)
   dialog = xbmcgui.Dialog()
   dialog.ok("DOWNLOAD COMPLETE", 'Unfortunately the only way to get the new changes to stick is', 'to force close kodi. Click ok to force Kodi to close,', 'DO NOT use the quit/exit options in Kodi., If the Force close does not close for some reason please Restart Device or kill task manaully')
   killxbmc()
       
     
       
def killxbmc():
   choice = xbmcgui.Dialog().yesno('Force Close Kodi', 'You are about to close Kodi', 'Would you like to continue?', nolabel='No, Cancel',yeslabel='Yes, Close')
   if choice == 0:
       return
   elif choice == 1:
       pass
   myplatform = platform()
   print "Platform: " + str(myplatform)
   if myplatform == 'osx': # OSX
       print "############   try osx force close  #################"
       try: os.system('killall -9 XBMC')
       except: pass
       try: os.system('killall -9 Kodi')
       except: pass
       dialog.ok("[COLOR=red][B]WARNING  !!![/COLOR][B][B][B][B][/B]", "If you\'re seeing this message it means the force close", "was unsuccessful. Please force close XBMC/Kodi [COLOR=lime]DO NOT[/COLOR] exit cleanly via the menu.",'')
   elif myplatform == 'linux': #Linux
       print "############   try linux force close  #################"
       try: os.system('killall XBMC')
       except: pass
       try: os.system('killall Kodi')
       except: pass
       try: os.system('killall -9 xbmc.bin')
       except: pass
       try: os.system('killall -9 kodi.bin')
       except: pass
       dialog.ok("[COLOR=red][B]WARNING  !!![/COLOR][B][B][B][B][/B]", "If you\'re seeing this message it means the force close", "was unsuccessful. Please force close XBMC/Kodi [COLOR=lime]DO NOT[/COLOR] exit cleanly via the menu.",'')
   elif myplatform == 'android': # Android  
       print "############   try android force close  #################"
       try: os.system('adb shell am force-stop org.xbmc.kodi')
       except: pass
       try: os.system('adb shell am force-stop org.kodi')
       except: pass
       try: os.system('adb shell am force-stop org.xbmc.xbmc')
       except: pass
       try: os.system('adb shell am force-stop org.xbmc')
       except: pass        
       dialog.ok("[COLOR=red][B]WARNING  !!![/COLOR][B][B][B][B][/B]", "Your system has been detected as Android, you ", "[COLOR=yellow][B]MUST[/COLOR][B][B][B][B][/B] force close XBMC/Kodi. [COLOR=lime]DO NOT[/COLOR] exit cleanly via the menu.","Either close using Task Manager (If unsure pull the plug).")
   elif myplatform == 'windows': # Windows
       print "############   try windows force close  #################"
       try:
           os.system('@ECHO off')
           os.system('tskill XBMC.exe')
       except: pass
       try:
           os.system('@ECHO off')
           os.system('tskill Kodi.exe')
       except: pass
       try:
           os.system('@ECHO off')
           os.system('TASKKILL /im Kodi.exe /f')
       except: pass
       try:
           os.system('@ECHO off')
           os.system('TASKKILL /im XBMC.exe /f')
       except: pass
       dialog.ok("[COLOR=red][B]WARNING  !!![/COLOR][B][B][B][B][/B]", "If you\'re seeing this message it means the force close", "was unsuccessful. Please force close XBMC/Kodi [COLOR=lime]DO NOT[/COLOR] exit cleanly via the menu.","Use task manager and NOT ALT F4")
   else: #ATV
       print "############   try atv force close  #################"
       try: os.system('killall AppleTV')
       except: pass
       print "############   try raspbmc force close  #################" #OSMC / Raspbmc
       try: os.system('sudo initctl stop kodi')
       except: pass
       try: os.system('sudo initctl stop xbmc')
       except: pass
       dialog.ok("[COLOR=red][B]WARNING  !!![/COLOR][B][B][B][B][/B]", "If you\'re seeing this message it means the force close", "was unsuccessful. Please force close XBMC/Kodi [COLOR=lime]DO NOT[/COLOR] exit via the menu.","Your platform could not be detected so just pull the power cable.")    

def platform():
   if xbmc.getCondVisibility('system.platform.android'):
       return 'android'
   elif xbmc.getCondVisibility('system.platform.linux'):
       return 'linux'
   elif xbmc.getCondVisibility('system.platform.windows'):
       return 'windows'
   elif xbmc.getCondVisibility('system.platform.osx'):
       return 'osx'
   elif xbmc.getCondVisibility('system.platform.atv2'):
       return 'atv2'
   elif xbmc.getCondVisibility('system.platform.ios'):
       return 'ios'


def addDir(name,url,mode,iconimage,fanart,description):
       u=sys.argv[0]+"?url="+urllib.quote_plus(url)+"&mode="+str(mode)+"&name="+urllib.quote_plus(name)+"&iconimage="+urllib.quote_plus(iconimage)+"&fanart="+urllib.quote_plus(fanart)+"&description="+urllib.quote_plus(description)
       ok=True
       liz=xbmcgui.ListItem(name, iconImage="DefaultFolder.png", thumbnailImage=iconimage)
       liz.setInfo( type="Video", infoLabels={ "Title": name, "Plot": description } )
       liz.setProperty( "Fanart_Image", fanart )
       ok=xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),url=u,listitem=liz,isFolder=False)
       return ok
       
     
       
def get_params():
       param=[]
       paramstring=sys.argv[2]
       if len(paramstring)>=2:
               params=sys.argv[2]
               cleanedparams=params.replace('?','')
               if (params[len(params)-1]=='/'):
                       params=params[0:len(params)-2]
               pairsofparams=cleanedparams.split('&')
               param={}
               for i in range(len(pairsofparams)):
                       splitparams={}
                       splitparams=pairsofparams[i].split('=')
                       if (len(splitparams))==2:
                               param[splitparams[0]]=splitparams[1]
                               
       return param
       
                     
params=get_params()
url=None
name=None
mode=None
iconimage=None
fanart=None
description=None


try:
       url=urllib.unquote_plus(params["url"])
except:
       pass
try:
       name=urllib.unquote_plus(params["name"])
except:
       pass
try:
       iconimage=urllib.unquote_plus(params["iconimage"])
except:
       pass
try:        
       mode=int(params["mode"])
except:
       pass
try:        
       fanart=urllib.unquote_plus(params["fanart"])
except:
       pass
try:        
       description=urllib.unquote_plus(params["description"])
except:
       pass
       
       
print str(PATH)+': '+str(VERSION)
print "Mode: "+str(mode)
print "URL: "+str(url)
print "Name: "+str(name)
print "IconImage: "+str(iconimage)


def setView(content, viewType):
   # set content type so library shows more views and info
   if content:
       xbmcplugin.setContent(int(sys.argv[1]), content)
   if ADDON.getSetting('auto-view')=='true':
       xbmc.executebuiltin("Container.SetViewMode(%s)" % ADDON.getSetting(viewType) )
       
       
if mode==None or url==None or len(url)<1:
       CATEGORIES()
     
elif mode==1:
       wizard(name,url,description)
       

       
xbmcplugin.endOfDirectory(int(sys.argv[1]))
Bu ney şimdi hocam
(14-07-2016, Saat:01:16)proallturkey Adlı Kullanıcıdan Alıntı: [ -> ]Bu ney şimdi hocam

suan benim default.py  kodu sifresiz calisiyor herkes yukleye biliyor uye olmadan sorun burda suan ben istiyorum ki benim siteye kayit olmasini benim sitede kayit olunca login ve pass veriyor dosyayi yukleye biliyor sekil istiyorum
Sayfalar: 1 2