Skip to content

Commit

Permalink
Readme update
Browse files Browse the repository at this point in the history
  • Loading branch information
Nabil-Lahssini committed Aug 20, 2021
1 parent 0387edc commit 5d33668
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ To use our library in your code, you need to import it and intialize it, that's
from prayer_tool import prayer_times
## Intialize an instance of it
instance = prayer_times.PrayerTimes(CITY="Brussels", SCHOOL=3, JURISTIC=0)
instance = prayer_times.PrayerTimes(city="Brussels", school=3, juristic=0)
## Get today's prayer's
today = instance.today()
Expand All @@ -31,7 +31,7 @@ You can also get the schedule for the whole month
from prayer_tool import prayer_times
## Intialize an instance of it
instance = prayer_times.PrayerTimes(CITY="Brussels", SCHOOL=3, JURISTIC=0)
instance = prayer_times.PrayerTimes(city="Brussels", school=3, juristic=0)
## returns an array of the daily prayer
this_month = instance.this_month()
Expand Down
Binary file removed dist/prayer_tool-3.0.0-py3-none-any.whl
Binary file not shown.
Binary file removed dist/prayer_tool-3.0.0.tar.gz
Binary file not shown.
Binary file added dist/prayer_tool-3.0.2-py3-none-any.whl
Binary file not shown.
Binary file added dist/prayer_tool-3.0.2.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion prayer_tool/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# __init__.py

# Version of the prayer_tool package
__version__ = "3.0.0"
__version__ = "3.0.2"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# This call to setup() does all the work
setup(
name="prayer_tool",
version="3.0.0",
version="3.0.2",
description="The prayer tool api is a complete api to get the prayer schedule in your city. Fast, updated and easy to use !",
long_description=README,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 5d33668

Please sign in to comment.