Re: Help - Python REST API (war: Python-list Digest, Vol 183, Issue 13)

2018-12-13 Thread dieter
Afriyie Abraham Kwabena writes: > ... > Thanks for the reply maybe I did not explain myself very well but is it > possible to apply this scenario to a database server like MySQL where I can > write some python code to post, get, delete, etc to the database? However the > client (python code I h

Re: 03 digression by brute force

2018-12-13 Thread jfong
Just for fun:-) On my ooold PC, it takes 0.047 seconds to run the following algorithm on the problem 'SNED + MORE == MONEY". - import time import itertools #S, E, N, D, M, O, R, Y n = 0 digits = {x for x in range(10)} def tenThousand(u, Cin): # Cin == M global n

Re: Python-list Digest, Vol 183, Issue 13

2018-12-13 Thread Afriyie Abraham Kwabena
Hi, Thanks for the reply maybe I did not explain myself very well but is it possible to apply this scenario to a database server like MySQL where I can write some python code to post, get, delete, etc to the database? However the client (python code I have to write ) have to be authenticated an

ANN: DIPY 0.15.0 release

2018-12-13 Thread Eleftherios Garyfallidis
We are excited to announce a new release of Diffusion Imaging in Python (DIPY). DIPY 0.15 (Wednesday, 12 December 2018) This release received contributions from 30 developers (the full release notes are at: http://dipy.org/release0.15.html ) Highlights of t

Re: python CAD libraries?

2018-12-13 Thread ammon . hepworth
I know this is an old post, but I wanted to recommend another Python CAD library called Pascale: https://aerion-tech.com/pascale It creates commercial grade CAD geometry through an intuitive Python API. Although it is a paid software, but there is a free version available to use on the Cloud. --

Re: Help - Python REST API

2018-12-13 Thread dieter
Afriyie Abraham Kwabena writes: > Am trying to create a basic authorization server using client credentials > flow and client so that the > client can send it credentials using REST methods (POST) to the authorization > server. Authrization server then > respond with access token. After the acc