Skip to content

Commit

Permalink
Проект переименован
Browse files Browse the repository at this point in the history
  • Loading branch information
Infactum committed Nov 1, 2015
1 parent 4dab26c commit caf6261
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 17 deletions.
32 changes: 18 additions & 14 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
============
1C-dtools
============
===========
onec_dtools
===========

.. image:: https://img.shields.io/pypi/v/1C-dtools.svg
:target: https://pypi.python.org/pypi/1C-dtools
.. image:: https://img.shields.io/pypi/l/1C-dtools.svg
.. image:: https://img.shields.io/pypi/v/onec_dtools.svg
:target: https://pypi.python.org/pypi/onec_dtools
.. image:: https://img.shields.io/pypi/l/onec_dtools.svg

``1C-dtools`` - библиотека для работы с файлами данных 1С:Предприятие 8 (1CD, cf, и т.д.)
``onec_dtools`` - библиотека для работы с файлами данных 1С:Предприятие 8 (1CD, cf, и т.д.)

Установка
===============
=========
::

pip install 1c-dtools
pip install onec_dtools

Использование
===============
=============
Простой пример, демонстрирующий чтение общей информации о базе данных и вывод содержимого таблицы V8USERS::

import oneс_dtools
Expand All @@ -28,10 +28,14 @@
table_name = 'V8USERS'
for row in db.read_table(table_name):
print(row)

История версий
===============
==============
0.0.1
******************
*****
* Первая публичная версия
* Реализована поддержка чтения формата 1CD
* Реализована поддержка чтения формата 1CD

0.0.3
*****
* Поддержка Python 3.4
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
long_description = f.read()

setup(
name='1C-dtools',
version='0.0.1',
name='onec_dtools',
version='0.0.3',
packages=['onec_dtools'],
url='https://github.com/Infactum/1C-dtools',
url='https://github.com/Infactum/onec_dtools',
license='MIT',
author='infactum',
author_email='[email protected]',
Expand Down

0 comments on commit caf6261

Please sign in to comment.