Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.481.269 Times

Python Tie Tool freeware
Filter: All | Freeware | Demo
 

Python Tie Tool

< 1 2 3 4 5 
Added: April 06, 2010 | Visits: 993

gnome-python-desktop gnome-python-desktop package contains a few python modules that used to live in gnome-python-extras: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn - mediaprofiles - metacity Whats New in This Release: General: - With recent... Platforms: *nix

License: Freeware Size: 645.12 KB Download (98): gnome-python-desktop Download

Added: June 21, 2010 | Visits: 788

gnome-python-extras gnome-python-extras contains gnome-python development modules. If youre looking for one of the following python modules, they moved to the package gnome-python-desktop: - gnomeapplet - gnomeprint, gnomeprint.ui - gtksourceview - wnck - totem.plparser - gtop - nautilusburn -... Platforms: *nix

License: Freeware Size: 501.76 KB Download (91): gnome-python-extras Download

Added: May 21, 2010 | Visits: 583

python-shbuf python-shbuf project is a simple Python extension for accessing libshbuf shared buffers.. Platforms: *nix

License: Freeware Size: 15.36 KB Download (98): python-shbuf Download

Added: October 07, 2010 | Visits: 873

Dee-Python Dee-Python project is an implementation of a truly relational database language with Python. Inspired by Date and Darwens Third Manifesto, it addresses the problems of impedance mismatch between programming languages and databases and the weakness of SQL. Mind The Gap Most of todays programs... Platforms: *nix

License: Freeware Size: 819.2 KB Download (101): Dee-Python Download

Added: June 20, 2010 | Visits: 948

delicious python delicious python lets you access the Web service of del.icio.us via its API through Python. It uses only the standard Python library an is written in same language. Installation instructions: download and unzip run as root from unzipped directory python setup.py install run python and load... Platforms: *nix

License: Freeware Size: 122.88 KB Download (95): delicious python Download

Added: March 16, 2010 | Visits: 790

Tie::CharArray Tie::CharArray module can access Perl scalars as arrays of characters. SYNOPSIS use Tie::CharArray; my $foobar = a string; tie my @foo, Tie::CharArray, $foobar; $foo[0] = A; # $foobar = A string push @foo, !; # $foobar = A string! print "@foon"; # prints: A s t r i n g ! tie my @bar,... Platforms: *nix

License: Freeware Size: 5.12 KB Download (96): Tie::CharArray Download

Added: March 08, 2010 | Visits: 629

gnome-python gnome-python package contains python bindings for GNOME. Installation: The simplest way to compile this package is: 1. `cd to the directory containing the packages source code and type `./configure to configure the package for your system. If youre using `csh on an old version of System V,... Platforms: *nix

License: Freeware Size: 563.2 KB Download (94): gnome-python Download

Added: May 25, 2010 | Visits: 821

Python OpenID Python OpenID is a set of Python packages that support use of the OpenID decentralized identity system in your applications. Python OpenID can be used to enable single sign-on for your Web sites or for running an OpenID server. Example code is supplied and a variety of storage back-ends are... Platforms: *nix

License: Freeware Size: 215.04 KB Download (95): Python OpenID Download

Added: August 25, 2010 | Visits: 2.966

SwitchProxy Tool 1.4.1 for SwitchProxy Tool is a Firefox extension which lets you manage and switch between multiple proxy configurations quickly and easily. You can also use it as an anonymizer to protect your computer from prying eyes. NOTE: In Firefox you can use the toolbar element to save space. A useful... Platforms: *nix

License: Freeware Size: 65.54 KB Download (2123): SwitchProxy Tool 1.4.1 for Download

Added: May 10, 2013 | Visits: 899

PDFMap PDFMap is both a command line tool, a CGI script and a Python language module, designed to make the automated generation of very high quality interactive maps in the PDF format easy. PDFMap can place different objects on a rasterized map background, scale and orient them correcly, and make them... Platforms: Windows, Mac, *nix, Python, BSD Solaris

License: Freeware Download (101): PDFMap Download

Added: February 05, 2010 | Visits: 683

Tie::OffsetArray Tie::OffsetArray can tie one array to another, with index offset. SYNOPSIS use Tie::OffsetArray; tie @a, Tie::OffsetArray, 1, @b; # offset=1; use given array. tie @c, Tie::OffsetArray, 2; # use anonymous array. $a[0] = x; # assign to $b[1]; tied(@a)->array->[0] = y; # assign to $b[0].... Platforms: *nix

License: Freeware Size: 8.19 KB Download (93): Tie::OffsetArray Download

Added: November 15, 2010 | Visits: 860

Tie::Hash::Sorted Tie::Hash::Sorted Perl module presents hashes in sorted order. SYNOPSIS use Tie::Hash::Sorted; my %ages = ( John => 33, Jacob => 29, Jingle => 15, Heimer => 48, Smitz => 12, ); my $sort_by_numeric_value = sub { my $hash = shift; [ sort {$hash->{$b} <=> $hash->{$a}} keys %$hash ];... Platforms: *nix

License: Freeware Size: 8.19 KB Download (87): Tie::Hash::Sorted Download

Added: February 27, 2010 | Visits: 2.621

PHP Radius Accounting Tool PHP Radius Accounting tool is a report tool for use with freeradius and MySQL. PHP Radius Accounting Tool features: listing of users, bandwidth used up/down per user, number of logins, usage details, who is using most bandwidth, a list of stations (access points), which users use each access... Platforms: *nix

License: Freeware Size: 12.29 KB Download (197): PHP Radius Accounting Tool Download

Released: June 18, 2012  |  Added: June 18, 2012 | Visits: 759

Tie::DB_Lock Tie::DB_Lock Perl module can tie hashes to databases using shared and exclusive locks. SYNOPSIS use Tie::DB_Lock; use DB_File; tie(%hash, Tie::DB_Lock, $filename, rw); # Open for writing $hash{key} = value; untie %hash; tie(%hash2, Tie::DB_Lock, $filename); # Default is read-only... Platforms: *nix

License: Freeware Size: 7.17 KB Download (95): Tie::DB_Lock Download

Added: July 23, 2010 | Visits: 1.075

Tie::Trace Tie::Trace can easy print debugging with tie. SYNOPSIS use Tie::Trace; my %hash; tie %hash, "Tie::Trace"; $hash{hoge} = hogehoge; # warn Hash => Key: hoge, Value: hogehgoe at ... my @array; tie @aray, "Tie::Trace"; push @array, "array"; # warn Array => Point: 0, Value: array at ...... Platforms: *nix

License: Freeware Size: 8.19 KB Download (114): Tie::Trace Download

Added: January 02, 2010 | Visits: 1.150

GTK ACX Tool GTK ACX Tool provides a tool that displays the status of the ACX100 driver. The GTK ACX Tool displays the status of the Texas Instruments (TI) ACX100 IEEE 802.11 driver. This tool could be used just with driver developed by wlan.kewl.org Project on FreeBSD 5.2 and later versions. It uses GTK+... Platforms: *nix

License: Freeware Size: 819.2 KB Download (92): GTK ACX Tool Download

Added: November 23, 2010 | Visits: 1.060

Python Hypertext Preprocessor PyHP is a system to embed Python code in an HTML document in a way similar to how PHP works. PyHP allows use of the Python programming language in scripts similar to PHP. PyHP uses the Python 2.0 language to parse elements embedded in an HTML page. When I started this, I was enamoured with PHP.... Platforms: *nix

License: Freeware Size: 15.36 KB Download (97): Python Hypertext Preprocessor Download

Added: July 27, 2010 | Visits: 2.261

LDAP Administration Tool LDAP Administration Tool is a tool to manage LDAP-based directories. LDAP Administration Tool stands for LDAP Administration Tool. The tool allows you to browse LDAP-based directories and add/edit/delete entries contained within. It can store profiles for quick access to different servers.. Platforms: *nix

License: Freeware Size: 450.56 KB Download (214): LDAP Administration Tool Download

Added: March 09, 2010 | Visits: 1.576

Directory Analysis Tool Directory Analysis Tool is used to analyze LDAP directories and report on their contents. Useful if you want to find inactive accounts, people who havent changed passwords, or who has administrator privileges.. Platforms: *nix

License: Freeware Download (178): Directory Analysis Tool Download

Added: June 07, 2010 | Visits: 994

Python in Scheme Python in Scheme is a scheme library that allows you to run Python code within Scheme. Python in Scheme project uses the Python/C API to embed a Python interpreter.. Get Python in Scheme at SourceForge.net. Fast, secure and free downloads from the largest Open Source applications and software... Platforms: *nix

License: Freeware Size: 2.05 KB Download (115): Python in Scheme Download

< 1 2 3 4 5