Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(36) | Call(36) | Derive(0) | Import(0)
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/skeinforge_utilities/consecution.py SkeinFox(Download)
print( '' ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to craft the file.' ) analyze.writeOutput( suffixFileName, craftText )
src/s/k/SkeinFox-HEAD/2010-02-25_skeinforge_withRaftless/skeinforge_tools/craft_plugins/export.py SkeinFox(Download)
if gcodeText == '': return analyze.writeOutput( suffixFileName, gcodeText ) if exportRepository.savePenultimateGcode.value: penultimateFileName = fileName[ : fileName.rfind( '.' ) ] + '_penultimate.gcode'
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/wipe.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, wipeGcode ) print( 'The wiped file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, wipeGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to wipe the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/unpause.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, unpauseGcode ) print( 'The unpaused file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, unpauseGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to unpause the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/twitterbot.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, twitterbotGcode ) print( 'The twitterbotted file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, twitterbotGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to add Twitterbot codes to the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/tower.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, towerGcode ) print( 'The towered file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, towerGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to tower the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/stretch.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, stretchGcode ) print( 'The stretched file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, stretchGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to stretch the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/speed.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, speedGcode ) print( 'The speeded file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, speedGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to speed the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/raft.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, raftGcode ) print( 'The rafted file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, raftGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to raft the file.' )
src/s/k/SkeinFox-HEAD/skeinforge-0006/skeinforge_tools/oozebane.py SkeinFox(Download)
gcodec.writeFileText( suffixFilename, oozebaneGcode ) print( 'The oozebaned file is saved as ' + gcodec.getSummarizedFilename( suffixFilename ) ) analyze.writeOutput( suffixFilename, oozebaneGcode ) print( 'It took ' + str( int( round( time.time() - startTime ) ) ) + ' seconds to oozebane the file.' )
1 | 2 | 3 | 4 Next