Questions tagged [pythomnic3k]

Pythomnic3k is a Python 3 application framework for business middleware in a service-oriented architecture.

5 questions
0
votes
4 answers

sum() function to sum all items in a given list

there is a function I want to define that takes all items in a list and adds them up together: def sum(): for x in range(len(user)): sum = 0 sum =+ user[x] return sum user = [1,1,1] score = sum() print(score) for some reason it prints…
0
votes
2 answers

"No module named sets" ren'py

ok, I'm translating a game, a visual novel called "katawa shoujo", to be precise the beta of this game which is not in Spanish I got the beta files and moved them to ren'py (where it was created) but when running it inside ren'py I get this error: …
0
votes
3 answers

TypeError: 'list' object is not callable, Maximum Pairwise Product

when I Run this function I get this error, I don't know where is the problem ? def max_product(number): n = len(number) indexMax1 = 0 indexMax2 = 0 for f in range(n): if f > number[indexMax1]: indexMax1 =…
0
votes
1 answer

AttributeError: 'function' object has no attribute 'get'

Good Afternoon, I am using pythomnic3k python framework and sharded solr, redis database servers. Following is my api request: http://1.2.3.4:8090/api20/account2/addnewemail?Email=foo@yahoo.com&Token=[redacted]&AccountID=[redacted] error:…
JKV
  • 281
  • 1
  • 4
  • 8
0
votes
1 answer

Working with Pythomnic3k and OpenSLL

I need to make a client side script that can send messages via the SMPP protocol. So, far I've started out with Pythomnic3k. In a part of the set up, you need to install the following: * Python 3 with threads and OpenSSL support. It is seldom…
Games Brainiac
  • 80,178
  • 33
  • 141
  • 199