python programming language
Python Programming Language 3.0rc3
Object oriented programming language more>> Python is a powerful object oriented programming language that is
developed and maintained by a global community of Open Source
contributors, under the oversight of the Python Software Foundation.
Pythons unique blend of simplicity and power excels in a wide range of
software development tasks, including the construction of web
applications, complex integrated business solutions, and large desktop
applications. Python is often characterized as an agile language that
promotes speedy development and includes a unit-testing framework for
building more robust applications.
Key features of Python include:
-
- Object orientation, modular name spaces, exceptions, and multi-threading
- High-level dynamic data typing and very late binding
- Tight integration with C, C++, and Java modules
- May be compiled to Java byte code for use in any JVM
- String and regular expression processing
- Extensive XML and web services support
- HTTP, FTP, SMTP, POP, IMAP, NNTP, telnet, and other IP protocols
- HTML, MIME, base64, binhex, uuencode, and other internet data handling
- GUI development and multimedia services
- Unit testing, profiling, and documentation generation
- Available third party modules for database access, math, 3D modeling,
image processing, LDAP, WebDAV, jabber, MIDI, and much more
<<less
Euphoria Programming Language 3.1.1
programming for 32-bit Windows more>> Euphoria is simple, flexible, powerful, and easy to learn. It supports programming for 32-bit Windows and 32-bit extended DOS. It features a high-speed interpreter that is 8x faster than Suns Java interpreter. With either the WIN32 or DOS32 interpreter you can easily access all of the megabytes of memory on your machine. Program development with Euphoria is quick and easy since no compiling or linking is required, and extensive run-time error checking is provided. If desired, you can make a single, stand-alone .EXE file. Euphoria has an integrated full-screen source debugger and a profiler. The .ZIP file contains the complete Euphoria Reference Manual, as well as 16,000 lines of example code. Euphoria has a rapidly-growing community of users who are developing exciting action games and DOS and Windows utility programs.<<less
D Programming Language 0.131
D Programming Language is a full featured and advanced tool which simplify the process of writing and compiling programs. more>>
D Programming Language 0.131 is a full featured and advanced tool which simplify the process of writing and compiling programs.
The D Programming Language offers C++ power with much simpler syntax and modern features like automatic memory management, UTF support, contract programming, true modules, and unit testing. Experience faster development, faster compiles, even faster execution than C++.

BPL - Beginners Programming Language 1.1
BPL - Beginners Programming Language is created to be a handy and creative utility which is specially designed to leave out the complex stuff, keep it simple but keep the power. more>> <<less

Programming Language Creator 1.50
UNRESTRICTED FREEWARE for Visual C. Easy to use language parser and C Interpr... more>> UNRESTRICTED FREEWARE for Visual C. Easy to use language parser and C Interpreter. Easily create your own interpreted computer languages. Built-in C interpreter is great for running scri`pts. Source code is available!<<less
Goetzs Programming Kit 1.0
A programming kit that works in JavaScript to allow you to easily write programs more>>
You can display information on the screen or even print on the printer. I have made a collection of tools to allow you to effortlessly get information from a person at the computer, or display information to the person at the computer.
Without these tools, it would be a little difficult to do so. There is also a users guide to writing JavaScript commands. This will show how to use the tools, and go beyond the tools Ive included, to build bigger and better programs. JavaScript is a very easy programming language to learn. It has simplified lots of tasks of other languages.
System requirements:
- You will need to have JavaScript enabled for the programs to work
- Netscape or IE 4 or greater
GLE professional graphics language 3.5
GLE is a GLE stands for graphics layout engine. Essentially, it is a programming language which lets you draw graphics and then compile the code into a graphics file such as encapsulated postscript (E more>>
Bulldogs Yahoo Programming Toolkit 1.0
Bulldogs Yahoo Programming Toolkit brings you a nice collection of some useful things for yahoo more>>
FChart - Flow Chart Programming 3.00
Flow Chart Visual Programming Language more>> Flow Chart Visual Programming Language allows to run basic algorithms in a visual way. All you have to do is to place program blocks on screen, connect them with arrows and run. You can also run it in step by step mode (when delay is set to maximum). It can be used to teach basic computer logic and interfacing. Visual Basic source code is available on request from the author.<<less
Smart Programmers Widget 1.3
If you need to quickly find a keyword or function for a specific programming language use the Smart Programmers Opera Widget more>>
Note: The OpenGL search is casesensitive, for example if you are searching forthe "glBegin" function and type "glbegin" it will not find it.
System requirements:
- Opera 9 or later
An Introduction to TCP/IP Programming 1.0
An Introduction to TCP/IP Programming is designed as a document guiding you the way to program network-enabled applications. more>> <<less
Python 3.1 / 2.6.1
A remarkably powerful dynamic programming language that is used in a wide variety of application domains more>>
Fans of Python use the phrase "batteries included" to describe the standard library, which covers everything from asynchronous processing to zip files. The language itself is a flexible powerhouse that can handle practically any problem domain. Build your own web server in three lines of code. Build flexible data-driven code using Pythons powerful and dynamic introspection capabilities and advanced language features such as meta-classes, duck typing and decorators.
Python lets you write the code you need, quickly. And, thanks to a highly optimized byte compiler and support libraries, Python code runs more than fast enough for most applications.
Major Features:
- Very clear, readable syntax
- strong introspection capabilities
- Intuitive object orientation
- Natural expression of procedural code
- Full modularity, supporting hierarchical packages
- Exception-based error handling
- Very high level dynamic data types
- Extensive standard libraries and third party modules for virtually every task
- Extensions and modules easily written in C, C++ (or Java for Jython, or .NET languages for IronPython)
- Embeddable within applications as a scripting interface
- Python is powerful... and fast
- Fans of Python use the phrase "batteries included" to describe the standard library, which covers everything from asynchronous processing to zip files. The language itself is a flexible powerhouse that can handle practically any problem domain. Build your own web server in three lines of code.
- Python plays well with others
- Python can integrate with COM, .NET, and CORBA objects.
- For Java libraries, use Jython, an implementation of Python for the Java Virtual Machine.
- For .NET, try IronPython , Microsoft's new implementation of Python for .NET, or Python for .NET.
- Python runs everywhere
- Python is available for all major operating systems: Windows, Linux/Unix, OS/2, Mac, Amiga, among others.
- Python is available for all major operating systems: Windows, Linux/Unix, OS/2, Mac, Amiga, among others.
- Python is friendly... and easy to learn
- The Python newsgroup is known as one of the friendliest around. The avid developer and user community maintains a wiki, hosts international and local conferences, runs development sprints, and contributes to online code repositories.
- Python is Open
- The Python implementation is under an open source license that makes it freely usable and distributable, even for commercial use. The Python license is administered by the Python Software Foundation.
Enhancements
- Regular Python dictionaries iterate over key/value pairs in arbitrary order. Over the years, a number of authors have written alternative implementations that remember the order that the keys were originally inserted. Based on the experiences from those implementations, a new collections.OrderedDict class has been introduced.
- The OrderedDict API is substantially the same as regular dictionaries but will iterate over keys and values in a guaranteed order depending on when a key was first inserted. If a new entry overwrites an existing entry, the original insertion position is left unchanged. Deleting an entry and reinserting it will move it to the end.
- The standard library now supports use of ordered dictionaries in several modules. The configparser module uses them by default. This lets configuration files be read, modified, and then written back in their original order. The _asdict() method for collections.namedtuple() now returns an ordered dictionary with the values appearing
Python Powered Calculator 1.0
PPCalc - Python Powered Calculator is a useful and reliable scientific calculator written in Python more>>
Programming in C in 7 days 2.08.01
Teach yourself to program in C. more>>
Programming in C in 7 days 2.08.01 is designed as a popular and useful e-book which enables you to learn programming in C language in 7 easy lessons. It will help you become an entry level C programmer. Course comes with worked examples and lesson exercises. Free course support is available in discussion boards where you can discuss your questions and exercises.
Enhancements:
- Features minor corrections in the book.
Subconscious Programming: How To Use Its Power 1.0
Subconscious Programming: How To Use Its Power is designed as a useful and convenient e-book for everyone more>> <<less