473,407 Members | 2,546 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

Python UPS / FedEx Shipping Module

I've made UPS and FedEx shipping rate request modules in python using
XML. Is there an interest in putting this on the web?
Jul 18 '05 #1
8 3926
Gabriel Cooper wrote:
I've made UPS and FedEx shipping rate request modules in python using
XML. Is there an interest in putting this on the web?


I'd be interested in at least looking at them, hoping to learn
something of value, even if I don't have (or believe I don't have)
any current use for them.

-Peter
Jul 18 '05 #2
Gabriel Cooper said the following on 2/11/2005 2:23 PM:
I've made UPS and FedEx shipping rate request modules in python using
XML. Is there an interest in putting this on the web?


I am interested in it for educational value, if not anything else.
Please post the web address from which to download.

Thanks!
-Kartic
Jul 18 '05 #3
Are the modules just accessing the published apis for their webservices?

I'm just wondering because I used to work for a logistics mgmt
company that paid money to be a strategic partner with
FedEx/UPS/Airborn etc so that they could information on how to return
rates/print labels/generate edi's/calculate arrival times etc.

I'd get a good laugh out of it suddenly being freely available now.

On Fri, 11 Feb 2005 19:00:25 -0800 (PST), Kartic
<re*****************************@gmail.com> wrote:
Gabriel Cooper said the following on 2/11/2005 2:23 PM:
I've made UPS and FedEx shipping rate request modules in python using
XML. Is there an interest in putting this on the web?


I am interested in it for educational value, if not anything else.
Please post the web address from which to download.

Thanks!
-Kartic
--
http://mail.python.org/mailman/listinfo/python-list

--
Thomas G. Willis
http://paperbackmusic.net
Jul 18 '05 #4
Good to know.

i've always thought that python would make an excellent solution for
transportation and logistics software. I used to maintain a nasty vb6
solution, and a lot of the brick walls could have been overcome by
utilizing the dynamic nature of python.
But, there is not enough hours in the day. And writing a solution puts
you in an odd relationship with your partners(UPS/FexEx etc...).
On one hand you are helping them indirectly sell their services, On
the other, you are sort of competing with them, so, those companies
have plenty of reason to screw with you by changing the specs, lot's
of hoops to jump through to contiuously be certified.

I guess I care anyway because the problem domain is so interesting to
me. Maybe it's because I'm running a fever. :)

Thanks for the info.

On Mon, 14 Feb 2005 09:51:35 -0500, Gabriel Cooper
<ga************@mediapulse.com> wrote:


Tom Willis wrote:
Are the modules just accessing the published apis for their webservices?

I'm just wondering because I used to work for a logistics mgmt
company that paid money to be a strategic partner with
FedEx/UPS/Airborn etc so that they could information on how to return
rates/print labels/generate edi's/calculate arrival times etc.

I'd get a good laugh out of it suddenly being freely available now.

Yes, they use the free API's that have always been freely available.
They're just *Impossible* to find on either of UPS's OR FedEx's
websites. It took me no less than an hour and likely more just to find
the documentation pages on each site. As for putting them up on the web,
I should be able to get them up by the end of the week.

Gabriel.

--
Thomas G. Willis
http://paperbackmusic.net
Jul 18 '05 #5
_
"Gabriel Cooper" <ga************@mediapulse.com> wrote in message
news:42**************@mediapulse.com...
Are the modules just accessing the published apis for their webservices?
Yes, they use the free API's that have always been freely available.
They're just *Impossible* to find on either of UPS's OR FedEx's
websites. It took me no less than an hour and likely more just to find
the documentation pages on each site. As for putting them up on the web,
I should be able to get them up by the end of the week.


If you downloaded the documentation from UPS, please re-check your license
agreement for the documentation before posting the code. You might be in
violation of some terms and conditions. I say might, I do not know for
certain and am not hinting that you are violating anything.
I've been tracking through UPS for 4 years using their old crappy interface,
and a newer one, and now we've moved to the XML version. All of their
documents come with a click - through license agreement that probably
restricts you in some way. I haven't read them too closely, since I'm under
contract I say "yes" on behalf of my client. ;-)

--
Novell DeveloperNet Sysop #5

Jul 18 '05 #6


Tom Willis wrote:
On one hand you are helping them indirectly sell their services, On
the other, you are sort of competing with them, so, those companies
have plenty of reason to screw with you by changing the specs, lot's
of hoops to jump through to contiuously be certified.


Well before we make it out to be more than it is, what I have here is
merely a module for getting rate requests. Basically we wanted a
UPS/FedEx module to price-check shipping costs for eCommerce websites.
The other types of requests could be implemented with no problem, but
that's all that has been done so far.

Gabriel.
Jul 18 '05 #7
In article <ma***************************************@python. org>,
Gabriel Cooper <ga************@mediapulse.com> wrote:

I've made UPS and FedEx shipping rate request modules in python using
XML. Is there an interest in putting this on the web?


Yes! My company has some similar software, and I may be able to get
permission to combine our work.
--
Aahz (aa**@pythoncraft.com) <*> http://www.pythoncraft.com/

"The joy of coding Python should be in seeing short, concise, readable
classes that express a lot of action in a small amount of clear code --
not in reams of trivial code that bores the reader to death." --GvR
Jul 18 '05 #8
Did you end up posting the code anywhere? I'm very curious to have a look.

Also, here is a write up of some Python work I've done with the FedEx API. I also try to keep it at a beginner level and explain how to get started with the FedEx API and go over what API choices you have, etc.

Part 1:
http://www.answermysearches.com/inde...-fedex-api/42/
Part 2:
http://www.answermysearches.com/inde...api-part-2/44/

-Greg
Apr 22 '06 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: grant | last post by:
hi folks: Does anyone know how to calculate the shipping rate on Fedex? There was a web module to handle the web query for rate at http://grd.fedex.com/cgi-bin/rrr2010.exe?func=Rate Currently...
0
by: Gabriel Cooper | last post by:
Is there an existing UPS and FedEx capable shipping (as in, price quotes) module out there? I have UPS working but now I need FedEx and was curious whether I'd be reinventing the wheel. ;) Web...
2
by: Manmohan S. Sihra | last post by:
Hello, I need your help. I have to integrate FedEx or UPS's Rate Calculator with an eCommerce web site. I have a web site which offers some products for sale. The price of the products is being...
6
by: Alvin Bruney [MVP] | last post by:
Has anybody interfaced with fedex thru an application to get shipping/package tracking info? I'm not interested in a screen scrape solution. -- Regards, Alvin Bruney...
1
by: Terry Graham | last post by:
This is a total shot in the dark, but does anyone have any experience in setting up an ASP.NET project that only gets the shipping Rates from FedEx's live server? All I really want to accomplish...
1
by: DeanL | last post by:
Hi all, This is probably not the group for this but I'm not sure quite where else to go. Does anyone know where to find the barcode standards for FedEx shipments of all types of shipping they...
13
by: Jennysaur | last post by:
Hi Everyone, I'm new to PHP, and completely new to this website. I'm having a problem getting the PHP FedEx Web services software to work, and it seems overly complicated. I just need a simple...
1
by: Adeel | last post by:
Hi, I want to show the shipping options offered by FedEx with there prices on my site. Does any one used it before or anyone has any idea about it. I am using asp.net 2.0. Please help me its...
3
by: supperham | last post by:
hi: can sone one tell me how to use fedex web service in php to calculate shipping fee? i already have fedex account and 4 keys used to test application Test...
2
by: sridharv86 | last post by:
Hi, I'm using FedEx for my shipment and use the FedEx rate calculator to find the shipping cost. When I send the request and get back the response, I always find that there is no discount applied...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.