code stringlengths 1 1.72M | language stringclasses 1
value |
|---|---|
#!/usr/bin/python
#import sys
a = 5
b = 6
del b;
print dir()
| Python |
#!/usr/bin/python
import sys
if __name__ == '__main__':
print 'this is called by myself'
else:
print 'import by other file'
def callHi():
print 'hi, I\'m called'
version = '0.1'
print 'done'
| Python |
#!/usr/bin/python
def getMax(a, b):
if a > b:
print a, 'is maxinum'
else:
print b, 'is maxinum'
a = 5
b = 6
c = 1000
d = 200000000000000000
def returnMax(a, b):
if a > b:
return a
else:
return b
print returnMax(a, b)
print returnMax(c, d)
#getMax(a, b)
#getMax(c, d)
print 'done'
| Python |
#!/usr/bin/python
from Module import callHi, version
callHi()
print version
| Python |
#!/usr/bin/env python
PACKAGE = "rosaria"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()
gen.add("trans_accel", double_t, 0, "Translational acceleration (m/s^2)")
gen.add("trans_decel", double_t, 0, "Translational deceleration (m/s^2)" )
gen.add("lat_accel" , double_t, 0, "... | Python |
#!/usr/bin/env python
PACKAGE = "rosaria"
from dynamic_reconfigure.parameter_generator_catkin import *
gen = ParameterGenerator()
gen.add("trans_accel", double_t, 0, "Translational acceleration (m/s^2)")
gen.add("trans_decel", double_t, 0, "Translational deceleration (m/s^2)" )
gen.add("lat_accel" , double_t, 0, "... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
from roslib import message
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
# Group6 messages and services
# Image messages (for debugging and configuration)
from sensor_msgs.msg import Image
import sensor_msgs.po... | Python |
#!/usr/bin/env python
##
##
import rospy
from std_msgs.msg import Header
#from object_recognition_msgs.msg import RecognizedObjectArray
from group6.msg import DetectedObject
from group6.msg import DetectedObjectArray
# for dummy
from fixedToyLocations import createObjectList
#def objCallback(data):
# if ( l... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
from roslib import message
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
# Group6 messages and services
# Image messages (for debugging and configuration)
from sensor_msgs.msg import Image
import sensor_msgs.po... | Python |
#!/usr/bin/env python
import rospy
from std_msgs.msg import Header
from group6.msg import DetectedObject
# create a dummy object list
# add new objects or change values as you please
def createObjectList():
temp = []
# OBJECT 1
obj = DetectedObject()
#obj.header = rospy.Header()
obj.object_... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
import message_filters
from roslib import message
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
from std_msgs.msg import Float64
from std_msgs.msg import Bool
from geometry_msgs.msg import Vector3
from group6.msg i... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
from std_msgs.msg import Bool
# Group6 messages and services
from group6.msg import motion_ctrl
#from group6.srv import kinectApproach
# Image messages (for debugging a... | Python |
#!/usr/bin/env python
##
##
import rospy
from std_msgs.msg import Header
#from object_recognition_msgs.msg import RecognizedObjectArray
from group6.msg import DetectedObject
from group6.msg import DetectedObjectArray
# for dummy
from fixedToyLocations import createObjectList
#def objCallback(data):
# if ( l... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
from std_msgs.msg import Bool
# Group6 messages and services
from group6.msg import motion_ctrl
#from group6.srv import kinectApproach
# Image messages (for debugging a... | Python |
#!/usr/bin/env python
import rospy
from std_msgs.msg import Header
from group6.msg import DetectedObject
# create a dummy object list
# add new objects or change values as you please
def createObjectList():
temp = []
# OBJECT 1
obj = DetectedObject()
#obj.header = rospy.Header()
obj.object_... | Python |
#!/usr/bin/env python
##
##
# required for ROS Python
import rospy
import message_filters
from roslib import message
# Standard messages
from std_msgs.msg import Header
from std_msgs.msg import String
from std_msgs.msg import Float64
from std_msgs.msg import Bool
from geometry_msgs.msg import Vector3
from group6.msg i... | Python |
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2012, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | Python |
#!/usr/bin/env python
# Software License Agreement (BSD License)
#
# Copyright (c) 2012, Willow Garage, Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source cod... | Python |
'''
Created on 19 Feb 2012
@author: gav.aiken
'''
import logging
import cgi
from google.appengine.ext import webapp
from google.appengine.ext.webapp.util import run_wsgi_app
from scrape import scrapeGames
class MainPage(webapp.RequestHandler):
def get(self):
self.response.out.write("""
<html>
... | Python |
'''
Created on 19 Feb 2012
@author: gav.aiken
'''
import logging
import traceback
import sys
import re
import HTMLParser
import urllib
from google.appengine.api import urlfetch
from game import CreateGame
headPlayerTeam = '<img class="float-right"\s*\
src="http://cdn.easf.www.easports.com/soccer... | Python |
'''
Created on 19 Feb 2012
@author: gav.aiken
'''
from google.appengine.ext import db
def CreateGame(playerId, playerTeam, playerScore, opponentId, opponentTeam, opponentScore):
'''
Factory Method
'''
game = Game(playerId=playerId, playerTeam=playerTeam, playerScore=playerScore,
... | Python |
#Derek Neil
#figure out Fibonacci number who's digits sum is 15165
#phython is 5x slower then java and php, even without sequences
#using %100 of one core, but only using 3.5mb of ram ??
#pypy uses %100 of one core, but increases ram to 19.5mb
#pypy reduces run time to 1/4 of python
import sys
import time
#declare v... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
from __future__ import division, print_function, unicode_literals
from _main_window import Ui_MainWindow
from btn_cfg import button_data_handler, key
from ui.boot_dialog import BootDialog
import PyQt4.QtCore as qtc
import PyQt4.QtGui as qt
import cfg
import ma... | Python |
# -*- coding: utf-8 -*-
# Resource object code
#
# Created: ?? ??? 1 23:15:34 2011
# by: The Resource Compiler for PyQt (Qt v4.7.3)
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore
qt_resource_data = "\
\x00\x00\x07\x51\
\x89\
\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
from __future__ import division, print_function, unicode_literals
from _boot_dialog import Ui_Dialog
from boot import rna_handler, movie_handler, hosts_handler
import PyQt4.QtCore as qtc
import PyQt4.QtGui as qt
class BootDialog(qt.QDialog):
'''
启动选项对话诓
... | Python |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui/_main_window.ui'
#
# Created: Tue Nov 01 23:15:34 2011
# by: PyQt4 UI code generator 4.8.5
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fro... | Python |
# -*- coding: utf-8 -*-
# Form implementation generated from reading ui file 'ui/_boot_dialog.ui'
#
# Created: Tue Nov 01 23:15:34 2011
# by: PyQt4 UI code generator 4.8.5
#
# WARNING! All changes made in this file will be lost!
from PyQt4 import QtCore, QtGui
try:
_fromUtf8 = QtCore.QString.fro... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
import ctypes
from ctypes.wintypes import MAX_PATH
import win32con
import win32gui
# 我的文档
CSIDL_PERSONAL = 0x0005
# System32
CSIDL_SYSTEM = 0x0025
def get_system32():
return get_folder(CSIDL_SYSTEM)
def get_my_documents():
return get_folder(CSIDL... | Python |
# -*- coding: utf-8 -*-
'''
按键码对应的按键名
@author: lowzoom
'''
name = {
0x01:'SC_ESCAPE',
0x02:'SC_1',
0x03:'SC_2',
0x04:'SC_3',
0x05:'SC_4',
0x06:'SC_5',
0x07:'SC_6',
0x08:'SC_7',
0x09:'SC_8',
0x0A:'SC_9',
0x0B:'SC_0',
0x0C:'SC_MINUS', # - on main keyboard
0x0D:'SC_EQUALS',
0x0E:'SC_BACK... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
import os
from collections import OrderedDict
import shutil
import main
import win32_util
# "我的文档"路径
MY_DOCUMENTS_PATH = win32_util.get_my_documents()
# 配置文件相关路径
fifa_path = os.path.join(MY_DOCUMENTS_PATH, 'FIFA 12')
file_name = 'buttonDataSetup.ini'
pa... | Python |
# -*- coding: utf-8 -*-
'''
程序入口
@author: lowzoom
'''
import PyQt4.QtCore as qtc
import PyQt4.QtGui as qt
import PyQt4.QtNetwork as qtn
import cfg
import logging
import os
import subprocess
import sys
import win32_util
# 程序信息
__author__ = 'lowZoom'
__version__ = '2.1'
# 程序所在目录
base_path = os.path.... | Python |
# -*- coding: utf-8 -*-
'''
配置模块
@author: lowzoom
'''
from boot import rna_handler
import main
import os
import pickle
# 用户偏好设置
pref = {}
# 配置文件的路径
CONFIG_PATH = os.path.join(main.base_path, 'data', 'cfg')
# 设置的键值
GAME_PATH = 'game.path' # 游戏安装路径
RNA_PATH = 'game.rna.path' # 游戏配置文件路径
MOVIE_PATH = ... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
import os
import cfg
import main
import shutil
# 开场动画文件名
BOOTFLOW_IN_FILENAME = 'bootflowintro_MARKER.vp6'
BOOTFLOW_OUT_FILENAME = 'bootflowoutro.vp6'
# 超过这个大小表示还没优化
SIZE_LIMIT = 50000
def is_skip():
return (os.path.getsize(os.path.join(
cfg.p... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
from __future__ import print_function
import win32_util
import os
# hosts文件路径
HOSTS_PATH = os.path.join(win32_util.get_system32(), 'drivers', 'etc', 'hosts')
# EA的登录服务器
EA_HOST = 'gosredirector.ea.com'
# localhost
LOCAL_IP = '127.0.0.1'
def get_ea_ip... | Python |
# -*- coding: utf-8 -*-
'''
@author: lowzoom
'''
from __future__ import print_function
from collections import OrderedDict
import cfg
import main
import os
import re
import shutil
rna_cfg = OrderedDict()
# 配置文件名
RNA_FILENAME = 'rna.ini'
# 键
GENERAL = ''
FULL_SCREEN = 'FULLSCREEN'
LOCALE = 'LOCALE... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with ... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
#
# Copyright (c) 2010 Sony Pictures Imageworks Inc.
#
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# Redistributions of source code must retain the above copyright
# notice, this list of c... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with... | Python |
#!/usr/bin/env mayapy
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks, Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source ... | Python |
#!/usr/bin/env python2.5
#-*- mode: python -*-
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistrib... | Python |
#!/usr/bin/env python2.6
#-*- mode: python -*-
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistrib... | Python |
##-*****************************************************************************
##
## Copyright (c) 2009-2011,
## Sony Pictures Imageworks Inc. and
## Industrial Light & Magic, a division of Lucasfilm Entertainment Company Ltd.
##
## All rights reserved.
##
## Redistribution and use in source and binary forms, with ... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2009 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2010 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
#
# Copyright (C) 2008 The Android Open Source Project
#
# 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 la... | Python |
Subsets and Splits
SQL Console for ajibawa-2023/Python-Code-Large
Provides a useful breakdown of language distribution in the training data, showing which languages have the most samples and helping identify potential imbalances across different language groups.