Python Programming

Welcome. Please Login, Register, Or Activate! 
type your username and password to login
Date: November 21, 2009, 05:38 PM
430521 members and 297642 Topics
Latest Member: nicholas t
Nairaland [Nigerian Forum] Home Help Search Who is currently online? Login Register
Nairaland Forum  |  Technology  |  Programming  |  Python Programming
Pages: (1) (2) (3) (4) (5) (6) (7) Go Down Send this topic Notify of replies
Author Topic: Python Programming  (Read 5757 views)
sledjama (m)
Re: Python Programming
« #160 on: June 01, 2009, 05:47 PM »

@dami9ja
when talking about good materials on php, you dont put php.net aside.
They have a .chm documentation here http://ar.php.net/distributions/manual/php_manual_en.chm

all tutorials published everywhere today are gotten and probably tweaked from that file.
php server? try Apache, or if u need to skip the overheads, try WAMP server

and i cant recollect your username on mygamma
my email is info[at]webdezzi.com
dami9ja (m)
Re: Python Programming
« #161 on: June 03, 2009, 01:25 AM »

@webdezzi, Tanx 4 your reply, Am Meezy9 on Mygamma, a member of your group then! Alrdy downloaded d php manual and XAMPP. Could u plz recommend any GUI for php? Tanx
sledjama (m)
Re: Python Programming
« #162 on: June 03, 2009, 04:52 PM »

ok,
if u intend using php for GUI programs, then try php-GTK
http://gtk.php.net/


just download that and dont forget to get the documentation too.
I think the best way to learn all these languages is to assign urself a project, then as you work on, search the dcumentation for help, if unavailable, use google.

you can say, you have just won a 5 million naira contract to redevelop a website for WAEC, generate scratch card, and just make things works sha.
so you start working on that, and u learn everytime there is a stumbling block.
meanwhile, lets stick to what this thread says.
dami9ja (m)
Re: Python Programming
« #163 on: June 04, 2009, 07:29 AM »

Ok sir.ll keep in touch via email.Thanks n God bless. Now, back to Python!
jacob05 (m)
Re: Python Programming
« #164 on: June 16, 2009, 11:59 AM »

Hello house,pls where can i get "real-life" python exercises or any relevant language cus i'm pretty wrecked out.
webdezzi (m)
Re: Python Programming
« #165 on: June 18, 2009, 07:22 AM »

what about writing a python app to check google's ranking of any website based on a set of keyword

just simple gui with just 2 input area, 1 for keyword, other for website address a space to display the position in numbers.
also a start and stop button, u can make it 1 button only to change dynamically.


jacob05 (m)
Re: Python Programming
« #166 on: July 16, 2009, 09:24 AM »

Which python gui app do you think is best for creating windows form . {with reasons}
webdezzi (m)
Re: Python Programming
« #168 on: July 25, 2009, 10:51 AM »

i guess u meant GUI toolkit,
they are all good, but i love QT.
jacob05 (m)
Re: Python Programming
« #169 on: July 25, 2009, 11:04 AM »

@webdezzi
Thanks man!. With it large library which contains almost ali the kits you need.
baby boy (m)
Re: Python Programming
« #170 on: July 27, 2009, 11:56 AM »

Hi guys, I have written a couple of programs in python that I want to rewrite in C and C++. The problem is that i am not too good with either of the afore mentioned languages. Any ideas on how to get over this hiccup?
cheers guys!
amosunfemi
Re: Python Programming
« #171 on: August 06, 2009, 12:46 PM »

its any one using WingIDE for python, i need the key for v3.1.8-1
jacob05 (m)
Re: Python Programming
« #172 on: August 06, 2009, 04:00 PM »

Goto serials.ws
amosunfemi
Re: Python Programming
« #173 on: August 06, 2009, 04:10 PM »

link on serial.ws are redirecting to one usenet site, 
jacob05 (m)
Re: Python Programming
« #174 on: August 07, 2009, 07:05 PM »

jacob05 (m)
Re: Python Programming
« #175 on: August 07, 2009, 07:06 PM »

amosunfemi
Re: Python Programming
« #176 on: August 07, 2009, 07:15 PM »

eh! thanks i will chk it up
jacob05 (m)
Re: Python Programming
« #177 on: August 11, 2009, 12:39 PM »

Found one great book . PYTHON create modify Reuse . Men loving it.
Seun (m)
Re: Python Programming
« #178 on: August 12, 2009, 01:06 AM »

Want to work on an official clone of the NL forum in Python?
jacob05 (m)
Re: Python Programming
« #179 on: August 12, 2009, 07:52 AM »

Would like to
alexis (m)
Re: Python Programming
« #180 on: August 13, 2009, 06:13 AM »

Why do you want an python based NL forum Seun?
seunthomas
Re: Python Programming
« #181 on: August 13, 2009, 11:42 AM »

It is good to know that we have Nigerians who can speak the most versatile programming language of the bunch.
Python is really a truely special language. It learns from the pitfalls of other languages before it. That is why over 50% of
search giant google.com is developed in python.  The really, Van gossum is also a google guy.
Luv to u all pythonic embryos.
jacob05 (m)
Re: Python Programming
« #182 on: August 13, 2009, 12:08 PM »

Pythonic embryo  Grin
seunthomas
A Short Intro to Object Oriented Programming(O.O.P) in Python
« #183 on: August 13, 2009, 04:08 PM »

The basic concept of object oriented company sees the computer problem as real life objects. The old paradigm of programming solved problems in computing as a series of inter-related task.  OOP on the other sees the computing problem as a system of inter-related and co-existing objects.  One part of the problem and its underlying solution depending on the other.
Quick Example
In  Creating a Banking Application
Old approach:
1. Create  application to allow user input the data
2. Create a datastore or database.
3. Create a bridge between the datastore and the form.

OOP
1. The form itself that collects the input is an object that has different attributes.
2. The Account for each user is an Object
3. The Database/Datastore is an Object
4.The Bridge is an Object.



With the OOP solution you can take the Database/Datastore object and use it for another project like an accounting application.
You can also modify the account, form objects too.


In OOP you are more concerned with solving the problem than with the problem itself.


An Example Account Object in Python would look like
this:

Class Account:
              def  __init__(self,username,acctno):
                     self.username = username
                     self.acctno = acctno
              def setAcctNo(self,acctno):
                     self.acctno = acctno
         

We will complete this in my later post


Ikoje
Re: Python Programming
« #184 on: August 13, 2009, 05:29 PM »

Python is a very simple language and i love it more than Java. I've being programming in Java for 20months with no much success. But Python in 20weeks! has being great. Cheesy
Try it for 2 weeks with 1 hr dedicated learning.
Seun (m)
Re: Python Programming
« #185 on: August 13, 2009, 06:09 PM »

Quote from: alexis on August 13, 2009, 06:13 AM
Why do you want an python based NL forum Seun?
The reasons are painfully obvious, alexis.  Ask yourself, "why do I prefer Python to PHP?"

@Ikoje: nice to hear!  What are some of the things you've done with Python?  Let's chat sometime!
jacob05 (m)
Re: Python Programming
« #186 on: August 17, 2009, 03:01 PM »

Planning to create a tunneling software using python and pyQT {something like proxifier}. But finding it hard to tunnel http connection to https .@ll any help
Seun (m)
Re: Python Programming
« #187 on: August 17, 2009, 04:05 PM »

What kind of tunnelling?  Socks?  HTTP Proxy?  TCP Forwarding?  Answer depends on that.
jacob05 (m)
Re: Python Programming
« #188 on: August 17, 2009, 07:44 PM »

HTTP proxy
Seun (m)
Re: Python Programming
« #189 on: August 18, 2009, 04:47 AM »

You need to implement the HTTP CONNECT method.  It's a form of TCP tunnelling that web proxies support (you can't intercept SSL requests, you have to tunnel them)
Quote from: jacob05 on August 17, 2009, 07:44 PM
HTTP proxy
jacob05 (m)
Re: Python Programming
« #190 on: August 18, 2009, 10:35 AM »

Thank man!. Found a piece of code that i think would work {NOT TESTED} using thesame connect method . http://code.activestate.com/recipes/456195/
t1m1 (m)
Re: Python Programming
« #191 on: August 23, 2009, 12:59 PM »

Hi python charmers!
what is the fastest reliable way to build an application (complete with User interface) in Python?
v a 9ce wk ahead y'all!
 I Have A Problem With Raise Event In C#  Ms .net Core - Mcad-mcsd, E-books In .chm Format  Mcts 70-536 Brain Dumps  Page 2
Pages: (1) (2) (3) (4) (5) (6) (7) Go Up Send Topic to Friend by E-mail Reply 


Sections: Autos/Cars (2) Jobs/Vacancies (2) (3) Career Talk Education General(2) Politics Romance Computers Phones Travel
Sports Fashion Health Religion Celebrities TV/Movies (2) Music/Radio (2) Books Webmasters Programming

Links: Page1 Page2 Page3 Page4 Page5 Page6 Page7 Page8 Page9 Page10

Nairaland is owned by Oluwaseun Osewa. See also: Nairalist Classified Ads
Nairaland Forum | Powered by SMF 1.0.12.
© 2001-2005, Lewis Media. All Rights Reserved.