Breaking down network range to individual networks

2016-06-01 Thread Aaron Christensen
Hello, Does anyone know about a feature of ipaddress that will take the following network range: "10.224.16.0-10.224.23.0" and convert it to individual networks? I am trying to figure out the best way to take a network range and break it up into the largest possible networks. I started working

Re: Psycopg2 to create a record using a FK

2016-03-12 Thread Aaron Christensen
On Sat, Mar 12, 2016 at 9:57 PM, Aaron Christensen < aaron.christen...@gmail.com> wrote: > > > On Sat, Mar 12, 2016 at 5:03 AM, dieter wrote: > >> Aaron Christensen writes: >> > I am running the following versions of software: >> > >> >

Re: Psycopg2 to create a record using a FK

2016-03-12 Thread Aaron Christensen
On Sat, Mar 12, 2016 at 5:03 AM, dieter wrote: > Aaron Christensen writes: > > I am running the following versions of software: > > > > Python 3.5 > > psycopg2==2.6.1 > > Postgres 9.4.5 > > > > I have 2 tables. Table User has UserId (serial PK),

Re: Psycopg2 to create a record using a FK

2016-03-12 Thread Aaron Christensen
On Sat, Mar 12, 2016 at 5:26 AM, Peter Otten <__pete...@web.de> wrote: > Aaron Christensen wrote: > > > Hello, > > > > I am running the following versions of software: > > > > Python 3.5 > > psycopg2==2.6.1 > > Postgres 9.4.5 > > >

Psycopg2 to create a record using a FK

2016-03-11 Thread Aaron Christensen
Hello, I am running the following versions of software: Python 3.5 psycopg2==2.6.1 Postgres 9.4.5 I have 2 tables. Table User has UserId (serial PK), LastName, FirstName, Gender, DateOfBirth, and DateEnrolled. Table UserProfile has UserProfileId (serial, PK), UserId (FK), DateEntered, FaveNumb

Re: Network Simulator

2016-02-24 Thread Aaron Christensen
On Feb 23, 2016 9:55 PM, "nikhil amraotkar" wrote: > > Hi...I need help to design a network simulator consisting for 5 routers in python...Any help would be appretiated... > Thanks.. > -- > https://mail.python.org/mailman/listinfo/python-list What is the purpose for designing it in Python? I'm a

Re: good python tutorial

2016-02-23 Thread Aaron Christensen
Thanks for sharing! On Tue, Feb 23, 2016 at 1:48 AM, Mike S via Python-list < python-list@python.org> wrote: > This site was recommended by a friend, it looks really well put together, > I thought it might be of interest to people considering online tutorials. > > http://www.python-course.eu/inde

Re: A newbie's doubt

2016-01-07 Thread Aaron Christensen
That's an awesome response! On Jan 7, 2016 6:35 AM, "Chris Angelico" wrote: > On Thu, Jan 7, 2016 at 2:20 PM, Henrique Correa wrote: > > Is Python's Tutorial (by Guido) a good and complete reference for the > > language? I mean, after reading it, should I have a good basis on Python? > > > > I'v

Re: Python and multiple user access via super cool fancy website

2015-12-25 Thread Aaron Christensen
On Dec 25, 2015 12:38 PM, "Chris Warrick" wrote: > > On 25 December 2015 at 13:15, Aaron Christensen > wrote: > > LOL. Thanks! PHP was definitely not very easy to pick up and I'm still > > having some issues. Last night I watched some tutorials on Django and

Re: Python and multiple user access via super cool fancy website

2015-12-25 Thread Aaron Christensen
On Dec 25, 2015 12:22 PM, "Jason Friedman" wrote: > > >> I have a hunch that you do not want to write the program, nor do you > >> want to see exactly how a programmer would write it? > >> > >> The question is more like asking a heart surgeon how she performs > >> heart surgery: you don't plan to

Re: Python and multiple user access via super cool fancy website

2015-12-25 Thread Aaron Christensen
Reply to List) button in the future] > > On 25 December 2015 at 05:02, Aaron Christensen > wrote: > > Hi Chris, > > > > Thank you for your response and information. I enjoy doing Python on my > > free time so when I get closer to some kind of web application, then I

Re: Python and multiple user access via super cool fancy website

2015-12-25 Thread Aaron Christensen
Great thank you! I will look into it. I watched some tutorials on Django last night. It appears to be somewhat of a bootstrap but for the backend. I'm not sure if my opinion is correct. On Dec 25, 2015 5:27 AM, wrote: > > On 25 December 2015 at 05:02, Aaron Christensen > > wro

Re: Python and multiple user access via super cool fancy website

2015-12-25 Thread Aaron Christensen
Hi Jason, What gives you that idea? On Dec 25, 2015 12:23 AM, "Jason Friedman" wrote: > > I am not sure if this is the correct venue for my question, but I'd like > to > > submit my question just in case. I am not a programmer but I do have an > > incredible interest in it, so please excuse my

Python and multiple user access via super cool fancy website

2015-12-24 Thread Aaron Christensen
Hi all, I am not sure if this is the correct venue for my question, but I'd like to submit my question just in case. I am not a programmer but I do have an incredible interest in it, so please excuse my lack of understanding if my question isn't very thorough. As an example, a website backend is

Re: Unable to use python 3.5

2015-12-23 Thread Aaron Christensen
Wow, you can find cyber bullies just about anywhere... On Wed, Dec 23, 2015 at 8:00 AM, Chris Warrick wrote: > On 23 December 2015 at 07:38, Ankit Deshmukh wrote: > > Hi there, > > > > > > > > I am maters student in India, > > We don’t care (expect that you made a typo there). > > > I have inst

Re: In Python 3, how to append a nested dictionary to a shelve file with the added difficulty of using a for loop?

2015-12-21 Thread Aaron Christensen
Hi Peter, Thanks for the response! Several things you stated definitely got me thinking. I really appreciate the response. I used what you said and I am able to accomplish what I needed. Thanks! Aaron On Mon, Dec 21, 2015 at 7:23 PM, Peter Otten <__pete...@web.de> wrote: &

In Python 3, how to append a nested dictionary to a shelve file with the added difficulty of using a for loop?

2015-12-21 Thread Aaron Christensen
Hello, I am trying to figure out how to populate a shelve file with a nested dictionary. These are my requirements: -Create shelve file called people.db -Append the shelve file with new people (person_1, person_2, etc.). -Use a for loop to iterate through 'attributes' so that I do not need to wr