Tagged Questions
0
votes
1answer
63 views
(revised) Python script to access genealogy api for list of users and attributes
The problem the code is solving
This is a script to access the stackexchange api
for the genealogy site
and create a list of user dictionaries.
Ie each user dictionary contains the info about that ...
5
votes
1answer
93 views
How can I optimize this linspace method build in Python's C API?
Today I built a linspace function in Python's C API, here is its code:
static PyObject *
linspace(PyObject * self, PyObject * args)
{
int n, i;
double start, end;
if ...
1
vote
0answers
124 views
Markov Encryption API in Python 2.5
The module in question provides classes used to execute Markov encryption and decryption on arrays of bytes. ME was inspired by a combination of Markov chains with the puzzle of Sudoku. This version ...
3
votes
1answer
258 views
What would be a clean interface for this?
I'd like some suggestions regarding how to implement the programmer/scripter interface for building entities in my game. I know what the interaction should be, and what the classes are going to be. I ...