Projects tagged ‘csv’ and ‘python’


[22 total ]

83 Users
   

KOffice is a free, integrated office suite for KDE, the K Desktop Environment. KOffice applications uses OpenDocument as their native file format when possible. The suite is released separately from ... [More] KDE. The KOffice suite includes the following applications: - KWord - A frame-based word processor - KSpread - A powerful spreadsheet application - KPresenter - A full-featured presentation program - Kexi - An environment for creating databases and applications - Kivio - A Visio®-style flowcharting application - Karbon14 - A vector drawing application - Krita - A layered pixel image manipulation application - KPlato - An integrated project management and planning tool - KChart - A graph and chart drawing tool - KFormula - A formula editor - Kugar - A tool for generating reports [Less]
Created over 3 years ago.

5 Users

OxygenOffice Professional is a free and open source enhancement of official OpenOffice.org. The OxygenOffice Professional Team has modified the source of OpenOffice.org and bundled lot of extras with ... [More] it. Here are just a few of the extras you get with OxygenOffice Professional: More than 3,400 graphics are included, both clip art and photos. These pictures are integrated into the gallery and can easily be placed into any OxygenOffice document.Several templates and sample documents are included, as well as over 90 fonts. The extras are integrated by default in the installation of OxygenOffice Professional, but they are optional, so the user can decide what parts to include and what parts to leave out. These extra templates, fonts, and graphics are free for both personal and professional use. [Less]
Created about 1 year ago.

1 Users

Cutplace is a tool to validate that data conform to an interface control document (ICD). Cutplace works with flat data formats using delimiters (such as CSV) or a fixed format. Such formats are ... [More] commonly used to exchange data between different platforms or physically separated systems. With cutplace you can describe these data in a simple and human readable spreadsheets using popular applications like Calc or Excel. It acts as "executable specification" that cutplace can use to validate that data actually conform to it. [Less]
Created 9 months ago.

1 Users
 

A PHP library designed with python's csv module in mind. An object-oriented interface to fgetcsv for reading / parsing csv files as well as a way to write csv files. This library makes use of the ... [More] standard php library (SPL) in its reader. I plan to support all of the features available in python's csv module, plus a few extra goodies. [Less]
Created about 1 year ago.

0 Users

Database system written in python for small applications that want to store small ammounts of data (0-30k rows). Parsing file, searching and changing couple rows in table with 30k rows takes around ... [More] 0.3 second. Features: Small query language based on python conditions. Dependancy free. Object oriented. Current version: 0.1 Copyright (c) 2006, IF Research Polska (http://www.ifresearch.pl) Examples of usage: from ocfdb import ocfdb, OCFDBError # packages file format: # MODIFYDATE:123456789: # TABLE:packages: # id;name;version # 1;clamav;2.0 # 2;dspam;3.6.4 # file is packed with gzip # $: gzip packages # /\ this will output packages.gz # database initialization try: db = ocfdb('packages.gz') except OCFDBError: print "Database Error", OCFDBError # getting rows, this will return rows internal IDs in list, not column values nor objects rowids = db.packages.getrows('int(__row.id) <= 2') # we have to remember that all columns values are strings # to get objects we have to fetch them from database: rows = db.packages.getrowsbyId(rowids) #now when we have rows we can do something on them: for row in rows: print row.name, row.version # let's now update name column in first row rows[0].name = "clamav" print rows[0].name # returns: clamav # so when we do any changes, we have to save database, so they won't be lost at another opening of database db.savedatabase() [Less]
Created 12 months ago.

0 Users

Descriptionpycsvdiff is a tool for diffing comma separated value (CSV) files. DBA's may find it useful to debug data-dumps, while programmers might integrate it with an automated testing solution to ... [More] verify that data exports don't regress. FeaturesWill use field labels in diffs if specified Ability to skip fields (e.g. timestamps) using field numbers or field labels as specifiers Optional case insensitive diff Can use labels to map out-of-order columns between CSV files Variable verbosity Built-in test suite runnable with --run-tests option from command line [Less]
Created 12 months ago.

0 Users

Some tools to handle csv files. easycsv - a Python module that permits to manage data into databases with csv statements csvgrep - a kind of grep adjusted for columns into a csv file Getting Started Reference Guide
Created 11 months ago.

0 Users

This repository contains a PDF of the presentation titled "Python and GIS: Beyond Modelbuilder and Pythonwin", presented at the ESRI 2008 PUG in Houston, Texas on February 26, 2008. All source code is also included.
Created 12 months ago.

0 Users

PHP CSV Utilities has a new home!For future updates, please refer to my new blog: http://lukevisinoni.com/ Several of the recent projects I’ve been working on have required an “import from csv ... [More] file” feature. PHP comes with a few functions for reading and writing csv files right out of the box: fgetcsv and fputcsv. While these are good functions and they get the job done I find they just aren’t enough in many cases. It would be nice if PHP had an interface like python’s csv module. Enter PHP Csv Utilities. It has been months since there was any kind of update on this poor little library. I released the last version (0.2) prematurely, which resulted in a poor release, confusing file structure, and a lot of bugs. I'd like to let anybody interested in the library know that I am working on version 0.3 right now as well as a much improved (and more transparent) build / release process. If there are any bugs or issues you have with the library please leave a comment or shoot me an email and I'll do my best to make sure it's addressed. Please, if you have any feature requests, suggestions, questions, anything... drop me an email. luke d0t visinoni {at} gmail (d0t) com Documentation - Wiki [Less]
Created about 1 year ago.

0 Users

将一个Excel转换成csv格式后,用本代码进行处理,将其中的手机号和IP地址的地理位置的信息查询出来,并写回到文件中
Created 4 months ago.