Skip to content

Commit c14bca9

Browse files
committed
Updated the readme
1 parent a20005b commit c14bca9

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Downloads](http://pepy.tech/badge/csv2vcard)](http://pepy.tech/count/csv2vcard)
1+
[![Downloads](http://pepy.tech/badge/csvTovcf)](http://pepy.tech/count/csvTovcf)
22

33
csv2vcard
44
=========
@@ -7,7 +7,7 @@ A Python script that parses a .csv file of contacts and automatically creates vC
77
Usage
88
-----
99

10-
1. Install package with `pip3 install csv2vcard`
10+
1. Install package with `pip3 install csvTovcf`
1111

1212
2. Create csv file with contacts
1313

@@ -26,4 +26,4 @@ Usage
2626
6. Now you have 2 options for running (both will create an /export/ dir for your vCard):
2727

2828
- Test the app with `csv2vcard.test_csv2vcard()`. This will create a Forrest Gump test vCard.
29-
- Use your real data `csv2vcard.csv2vcard("yourcsvfilename", ",")` where "," is your csv delimeter. This will create all your vCards.
29+
- Use your real data `csv2vcard.csv2vcard("yourcsvfilename", ",", single_file=True)` where "," is your csv delimeter. This will create many vCards or single vCard depending on the `single_file=True` paramter.

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@
55
README = readme.read()
66

77
setup(
8-
name = 'csv2vcard',
8+
name = 'csvTovcf',
99
packages = ['csv2vcard'],
10-
version = '0.2.2',
11-
description = 'A library for converting csvs to vCards',
10+
version = '0.1.0',
11+
description = 'A library for converting csv to .vcf file',
1212
long_description = README,
1313
long_description_content_type='text/markdown',
14-
author = 'Nikolay Dimolarov',
15-
author_email = 'dimolarov@hotmail.com',
16-
url = 'https://github.com/tech4242/csv2vcard',
17-
download_url = 'https://github.com/tech4242/csv2vcard/archive/0.2.2.tar.gz',
18-
keywords = ['csv', 'vcard', 'export'],
14+
author = 'Shivam Mani Tripathi',
15+
author_email = 'abc@privatemail.com',
16+
url = 'https://github.com/stripathi669/csv2vcard',
17+
download_url = 'https://github.com/stripathi669/csv2vcard/archive/0.1.0.tar.gz',
18+
keywords = ['csv', 'vcard', 'export', 'vcf'],
1919
python_requires = '>=3.6',
2020
classifiers = [
2121
'Development Status :: 3 - Alpha','License :: OSI Approved :: MIT License',

0 commit comments

Comments
 (0)