bpython is a fancy interface to the Python interpreter for Unix-like operating systems.
6
votes
1answer
82 views
Why is string.letters different between python and bpython?
I ran into a strange issue today. I was using the Python standard library's string module's letters variable and noticed that the result in bpython was not the same as the result in vanilla python.
...
0
votes
2answers
50 views
What implements the same functionality in python ruby's load
In irb we can do:
>> load 'example.rb'
Which loads the source of example.rb in to environment.
What is alternative for bpython and ipython?
0
votes
0answers
125 views
vim ConqueTerm running bpython LookupError
I am trying to run bpython in my VIM ConqueTerm, but I got the following error:
Traceback (most recent call last):stebin <F9> Pager <F2> Show Source
File "/usr/local/bin/bpython", ...
3
votes
1answer
102 views
Why isn't bpython3 debugging?
Apparently I've unlearned how to debug with python.
I run bpython3 -i myfile.py, but when an exception occurs I still don't have access to the program variables, nor I can find any command like gdb's ...
0
votes
1answer
200 views
Optimum Python Environment setup on Windows… Any better Advice?
My friend was able to give me a hint on installing python on my windows 7 laptop, and he said
"install python, bpython as interpreter and sublime, then for every project use virtualenv."
But I found ...
1
vote
1answer
298 views
Pass arguments to Cygwin through a python program
I came across bpython and tried to installed it on my windows system with the help of cygwin. Now, whenever I have to access bpython program I have to open cygwin and than write bpython inside the ...
9
votes
2answers
668 views
Is it possible to use bpython as a full debugger?
I would like to use the bpython interpreter for debugging.
My question is similar to this one, which asks about ipython.
If you use ipdb.set_trace() you get a full ipython session with all of its ...
3
votes
3answers
263 views
Ctrl+D equivalent in ipython, bpython?
In standard python interactive shell, I can press Ctrl+D to close the stdin and shows the output:
$ python
Python 2.7.2 (default, Mar 7 2012, 21:18:58)
[GCC 4.5.3] on linux2
Type "help", ...
2
votes
1answer
180 views
Pydocs in iPython similar to bpython
Is there a way to do inline pydocs in iPython the same way it works in bpython.
bpython screenshots from their site:
4
votes
1answer
802 views
Ipython with bpython features
I really admire bpython with its nice coloring and autocomplete, autohint and so on.
The problem is, that there are some features in ipython which I can't get with out, for examble reload, magic ...
4
votes
2answers
180 views
bpython configuration - importing numpy and matplotlib by default
Is it possible to start the bpython interpreter so that it always runs some custom commands when it launches?
In my case I simply want to do:
import numpy as np
import matplotlib.pyplot as plt
I ...
9
votes
1answer
539 views
bpython-like autocomplete and parameter description in Emacs Python Mode?
I've been using bpython for a while now for all of my Python interpreting needs. It's delightful, particularly when you're using unfamiliar new libraries, or libraries with a multitude of functions. ...
5
votes
1answer
612 views
Bpython-like editor/IDE?
I love bpython's fast, comprehensive autocompletion and I'd really like to use it right inside my editor/IDE. Is there a way to integrate it into vim/gedit/eclipse/etc?
Thanks.
0
votes
2answers
46 views
bpython -i & namespaces
I can't seem to find this answer anywhere.
Given the trivial example:
# myclass.py
class MyClass:
def __init__(self):
print 'test'
def main():
my_class_instance = MyClass()
if ...
0
votes
1answer
145 views
Python interactive interpreter in hashbang line
For my django projects, I wanted to write a simple replacement for manage.py shell to take advantage of bpython. Essentially all it does is run setup_environ(settings) and then import some common ...
1
vote
1answer
386 views
bpython in Emacs
I've started using bpython for my python interpreting needs. I like the syntax highlighting and the tab completion mode. I'd like to get bpython working in emacs (note: simply running the bpython ...
3
votes
1answer
479 views
Blender 2.5 Python animated world texture setup
I need to set up an animated (i.e. from video file) world texture in blender 2.58 using python.
I make a texture like this:
import bpy
# create new clouds texture
bpy.ops.texture.new()
wtex = ...
0
votes
2answers
181 views
How do I show my argspec/docstring in bpython?
I'm just starting to use bpython, mainly because I really think it will help the office nubs a lot. In bpython, it continually shows help text as you type. For example
>>> zip(
...
26
votes
3answers
7k views
ipython or bpython?
I really like ipython but one my coworkers showed me bpython and I liked it a lot [1].
Is there any advantages of ipython that doesn't exists in bpython?
[1] The only thing I didn't like is the fact ...
1
vote
1answer
605 views
How do I set a world background texture in Blender 2.49 using Python?
I'm trying to set a background World Texture in Blender 2.49.
I've made a texture:
import Blender
from Blender import *
import bpy
world = World.GetCurrent()
worldTex = Texture.New('worldTex')
...
0
votes
1answer
685 views
How can I set UVs to a Mesh in Blender Python?
Using Blender 2.49's Python API I'm creating a mesh.
I have a list of vertices and a list of face indices.
e.g.
mesh = bpy.data.meshes.new('mesh')
mesh.verts.extend(mVerts)
mesh.faces.extend(mFaces)
...
0
votes
1answer
366 views
how do I set a value for a ShapeKey in Blender Python?
I've managed to insert Shape Keys from Python using:
ob = Scene.GetCurrent().object.active;
if(ob.activeShape == 0):
ob.insertShapeKey()
ob.insertShapeKey()
Now how do I change a key value ?
0
votes
1answer
2k views
3d animation from cinema4d to blender
I need to import a mesh animation from Cinema4D into Blender.
I tried to do that using Collada.The Collada 1.3 importer doesn't seem to
do anything, the Collada 1.4 importer seems to work, but the ...
17
votes
2answers
979 views
Is there something like bpython for Ruby?
IRb is pretty plain compared to bpython, even when using wirble.
Is there any ruby equivalent of bpython?
