Projects tagged ‘easy’ and ‘python’


Jump to tag:

Projects tagged ‘easy’ and ‘python’

Filtered by Project Tags easy python

Refine results Project Tags linux (3) simple (3) library (3) gnu (2) fast (2) gnome (2) testing (2) django (2) forum (2) blog (2) mysql (2) desktop (2)

[17 total ]

48 Users
   

Pardus is GNU/Linux distribution developed by TUBITAK/UEKAE according to computer literates' basic desktop needs; uses existing distributions' dominant parts as concept, architecture or code; provides ... [More] easy use, configuration, installation with configuration environment and tools that can be converted to an autonomous system. [Less]
Created over 2 years ago.

2 Users

Created about 1 year ago.

2 Users

Very fast and easy to use CMS using django and pinax with flexibility easy to use features . main goal of this project is to provide a fast environment for a real simple user for personal usage
Created 4 months ago.

2 Users
 

pyraknet is a Python UDP game network library which has bindings for RakNet.
Created over 3 years ago.

1 Users
 

Eagle is an abstraction layer atop Graphical Toolkits to make GUI programming as easy as possible. Eagle reaches this by narrowing what's possible to do and providing high level components with easy to use API.
Created over 2 years ago.

0 Users

LDAP schema wizard help you making LDAP schemas without any knowledge of the LDAP schema syntax. It can generate schemas for: OpenLDAP ( < 2.3 slapd.conf configuration) OpenLDAP ( >= 2.3 run-time ... [More] configuration (RTC)) Symas Connexitor Directory Server (http://www.symas.com/) iPlanet (Sun java system directory server) (http://www.sun.com/software/products/directory_srvr_ee/index.jsp) Fedora Directory Server (http://directory.fedoraproject.org/) Microsoft Active Directory (http://www.microsoft.com/windowsserver2003/technologies/directory/activedirectory/default.mspx) Novell Directory Server (eDirectory) (http://www.novell.com/products/edirectory/) Apache Directory Server (http://directory.apache.org/) IBM Tivoli Directory Server (http://www-306.ibm.com/software/tivoli/products/directory-server) Open Directory Server (https://opends.dev.java.net/) MacOS Open Directory (http://www.apple.com/server/macosx/technology/opendirectory.html) Oracle Internet Directory (OID) (http://www.oracle.com/technology/products/oid/index.html) Computer Associates Directory (CA-Directory) (http://ca.com/us/products/product.aspx?id=160) Isode M-Vault (http://www.isode.com/products/m-vault-overview.html#servers) FeaturesConvert between LDAP schema formats Create classes and its attributes Input classes and attributes OID by the user or assign one automatically Select attribute types from a list automatically generated from a specified LDAP server Assign as attribute types members of existent classes InstallingInstalling from last SVN revition (unstable): Download Ipsum dolum lorem codeStable release Download the last stable release from here Dependencies [Less]
Created 12 months ago.

0 Users

An easy to use WX interface similar in nature to easygui but uses wxPython. Currently (1 days spare-time work) I have managed to add buttonbox dialog :) Here is a working sample code you can use ... [More] right now. EasyGui is really nicely designed so I didn't need to do much work to get this going. Would add other features hopefully soon (too busy for at least two months) import easywx # Button box: print easywx.buttonbox("aaaaaaaaaaaaaaaaaaa\naaaaaaa\raaaa","title",('a','b','c','d')) # a simple msg box: easywx.msgbox("This is nice is it not?","Some title","nice") # A bool box : print easywx.boolbox("This is cool is it not ? " ,"some title " ) # An Index Box: print easywx.indexbox("Some words of wisdom","some title",('a','b','c')) # A Yes/No Box: print easywx.ynbox("Will it be a yes or a no?","Sample Yes/No box") # A Continue/Cancel Box: print easywx.ccbox("Will it be a continue or a cancel?","Sample Contine/CancelBox") [Less]
Created 11 months ago.

0 Users

ezscroll makes it super easy to add scrollbars to your pygame Surfaces.Now completely overhauled, using sprites and with decoupled update() and draw(), like sprite groups. Better code, easier to ... [More] understand and change. If you hated it before, you may love it now! ezscroll.py contains two classes: ScrollBar and ScrollPane. ScrollPane coordinates multiple scrollbars, adds them to a sprite group, and blits the moving world at update(), etc. Scrollbars are specified by cardinal direction, N, S, E, W. The examples are now in examples.py They run one after another by closing the window. There is also a separate example of basic scrollbar code inline, without using ezscroll. About 18 lines for the scrollbar part. That file is called inlineScroll.py v.09 fixed some bugs, download cheese from downloads today! Thinking of making a version without some of the options, to focus on the basics and provide a cleaner starting point for others to modify. [Less]
Created 6 months ago.

0 Users

I have seen many frameworks especially in Java. In all of them, most of the time, I find that, you need to learn some amount of theory stuff like, MVC< etc., before you start learning how to use them. ... [More] One major problem with this is, the terminologies differ in theory and in the framework. Model is turned to "Action" or some other thing, Controller is turned to "...Servlet" or something and View is called "...Renderer" or something. Its annoying to read theory and then try to figure out what theory term maps to what in the framework. Another thing is, if you need to switch between programming languages, you need to rewrite the configuration files (ofcourse, code needs to be written anyway... maybe we can have code translation also as a goal??). The aim of this project is to address these issues and make web applications easy (and fun) to write. It is not required that the resulting work is enterprise-ready, but, its important to have things that are fun to use implemented. [Less]
Created about 1 year ago.

0 Users

A simple traditional web service (1)receives a request, (2)authenticates the requesting client, then (3)deserializes the parameters, (4)executes the service (the whole point of it) then (5)serializes ... [More] the result and (6)returns it to the client. Django-Gateway lets you focus in writing the code and handles the rest. 1. DG recives POST or GET requests through configurable dynamic urls (all using django's url features). 2. DG uses integrates with the django auth module by limitig access to certain specified groups. 3. DG currently supports serializing with simplejson but it should be easy to extend its capabilities to support xml, amf, and others just by implementing a serialize and deserialize method extending the Service class. 4. DG uses decorators to specify public methods and authentication parameters. A simple yet functional service class looks like this: class foo(JsonService): @ServiceMethod def bar(self,p): """FooBar plus parameter."" return "FooBar "+p [Less]
Created 12 months ago.