Active Topics

 


Reply
Thread Tools
Posts: 272 | Thanked: 52 times | Joined on Jan 2010
#1
Hi,

Im just starting development in PyQT, and I have quite a basic thing i'm trying to do which I would find quite easy using something like PHP, but i'm struggling with python.

Not sure if im posting in correct place.. but

Basically I have a string like the following:

name:Example;
link:www.google.com;
datetime:20100209
|
name:Example2;
link:www.yahoo.co.uk;
datetime:20090808

So each result is seperated by a pipe (|) and key value pairs are seperated by a semi colon, then by a colon.

I want the ability to put these in to some kind of array so I can create a results page with lets say the following:

Result 1
Name: Example
Link: www.google.com
Datetime: 20100209

Result 2
Name: Example2
Link: www.yahoo.co.uk
Datetime: 20090808

Could someone help me with this snippet?

Thanks
 
Flandry's Avatar
Posts: 1,559 | Thanked: 1,786 times | Joined on Oct 2009 @ Boston
#2
Is split not doing the job for you?
__________________

Unofficial PR1.3/Meego 1.1 FAQ

***
Classic example of arbitrary Nokia decision making. Couldn't just fallback to the no brainer of tagging with lat/lon if network isn't accessible, could you Nokia?
MAME: an arcade in your pocket
Accelemymote: make your accelerometer more joy-ful
 
pycage's Avatar
Posts: 3,404 | Thanked: 4,474 times | Joined on Oct 2005 @ Germany
#3
Originally Posted by kevinm2k View Post
Hi,

Im just starting development in PyQT, and I have quite a basic thing i'm trying to do which I would find quite easy using something like PHP, but i'm struggling with python.

Not sure if im posting in correct place.. but

Basically I have a string like the following:

name:Example;
link:www.google.com;
datetime:20100209
|
name:Example2;
link:www.yahoo.co.uk;
datetime:20090808

So each result is seperated by a pipe (|) and key value pairs are seperated by a semi colon, then by a colon.

I want the ability to put these in to some kind of array so I can create a results page with lets say the following:

Result 1
Name: Example
Link: www.google.com
Datetime: 20100209

Result 2
Name: Example2
Link: www.yahoo.co.uk
Datetime: 20090808

Could someone help me with this snippet?

Thanks
Something like this...

Code:
for result in data.split("|"):
  for line in result.split("\n"):
    idx = line.find(":")
    key = line[:idx]
    value = line[idx + 1:]
    print "%s: %s" % (key, value)
__________________
Tidings - RSS and Podcast aggregator for Jolla - https://github.com/pycage/tidings
Cargo Dock - file/cloud manager for Jolla - https://github.com/pycage/cargodock
 

The Following User Says Thank You to pycage For This Useful Post:
Posts: 272 | Thanked: 52 times | Joined on Jan 2010
#4
I have tried split... but ive had a few issues with it, I eventually tried something like key,value=str.split(":") which was quite far down in about 3 for loops, and I was getting error messages, like there was too many loops for it to do that.

At present I have:

Code:
for eachResult in resultsArr :
	eachResultCount=eachResultCount+1
	lineArr=self.splitSearchResults(eachResult,';')
	# Loop through each of the lines in the result
	for eachLine in lineArr :
		eachLineCount=eachLineCount+1
		eachAttribute=self.splitSearchResults(eachLine,':')
		# Loops thruogh the key and values for this line
		for value in eachAttribute :
			eachAttributeCount=eachAttributeCount+1
 
Posts: 272 | Thanked: 52 times | Joined on Jan 2010
#5
Originally Posted by pycage View Post
Something like this...

Code:
for result in data.split("|"):
  for line in result.split("\n"):
    idx = line.find(":")
    key = line[:idx]
    value = line[idx + 1:]
    print "%s: %s" % (key, value)
This looks like it does the job perfectly... although I'm not exactly sure what its doing fully.

Hopefully this kinda thing will come more naturally as I get better, this is only my first attempt!

Thanks
 
Flandry's Avatar
Posts: 1,559 | Thanked: 1,786 times | Joined on Oct 2009 @ Boston
#6
Originally Posted by kevinm2k View Post
This looks like it does the job perfectly... although I'm not exactly sure what its doing fully.

Hopefully this kinda thing will come more naturally as I get better, this is only my first attempt!

Thanks
You'll get the hang of iterating directly that way, and it will be refreshing.
__________________

Unofficial PR1.3/Meego 1.1 FAQ

***
Classic example of arbitrary Nokia decision making. Couldn't just fallback to the no brainer of tagging with lat/lon if network isn't accessible, could you Nokia?
MAME: an arcade in your pocket
Accelemymote: make your accelerometer more joy-ful
 
Posts: 272 | Thanked: 52 times | Joined on Jan 2010
#7
It doesn't do the job perfectly... but its a lot closer to what I had before, it doesnt seem to be sp,litting on the ; but hopefully i'll be able to follow what youi've put to do that.
 
Posts: 272 | Thanked: 52 times | Joined on Jan 2010
#8
Hopefully... if I can get this first one out of the way.. i'll be able to start building apps a lot more functional!!
 
fpp's Avatar
Posts: 2,853 | Thanked: 968 times | Joined on Nov 2005
#9
Maybe in the second line you could try replacing:
result.split("\n")
with:
result.split(";\n")
__________________
maemo blog
 
Reply


 
Forum Jump


All times are GMT. The time now is 05:11.