Re: Access a class in another python script

2015-10-08 Thread DBS
On Wednesday, October 7, 2015 at 11:46:05 PM UTC-7, Terry Reedy wrote: > On 10/8/2015 2:24 AM, DBS wrote: > > I'm using Python 3.5 and have two python scripts where one needs > > access to a class in the other script for authentication purposes. > > Any python .py file c

Access a class in another python script

2015-10-07 Thread DBS
Hello, I'm using Python 3.5 and have two python scripts where one needs access to a class in the other script for authentication purposes. The scripts runs through GitHub to poll for all pull requests and pull requests that meet a certain condition. The call from the second script to the class

Re: Python/Github

2015-08-27 Thread DBS
On Monday, August 24, 2015 at 2:28:39 PM UTC-7, DBS wrote: > On Monday, August 24, 2015 at 2:16:55 PM UTC-7, Chris Rebert wrote: > > On Mon, Aug 24, 2015 at 1:14 PM, DBS wrote: > > > Hello, > > > > > > I'm trying to retrieve the number of commits and

Re: Python/Github

2015-08-24 Thread DBS
On Monday, August 24, 2015 at 2:16:55 PM UTC-7, Chris Rebert wrote: > On Mon, Aug 24, 2015 at 1:14 PM, DBS wrote: > > Hello, > > > > I'm trying to retrieve the number of commits and changed files on all pull > > requests submitted to a branch. > > > >

Python/Github

2015-08-24 Thread DBS
Hello, I'm trying to retrieve the number of commits and changed files on all pull requests submitted to a branch. The call to get all the pull requests is GET /repos/:owner/:repo/pulls, but it does not return "commits" or "changed_files". The call that returns number of commits and changed fi