You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

githubdata

Package Overview
Dependencies
Maintainers
1
Versions
47
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

githubdata - pypi Package Compare versions

Comparing version
2.3
to
2.4
+29
-6
.idea/workspace.xml

@@ -7,5 +7,4 @@ <?xml version="1.0" encoding="UTF-8"?>

<component name="ChangeListManager">
<list default="true" id="732b6b15-58d9-420e-a573-cccdeb89c13b" name="Changes" comment="v2.3 - added .meta .data_suf and many simplifications">
<change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/githubdata/main.py" beforeDir="false" afterPath="$PROJECT_DIR$/src/githubdata/main.py" afterDir="false" />
<list default="true" id="732b6b15-58d9-420e-a573-cccdeb89c13b" name="Changes" comment="v2.4 - more simplified README.md">
<change beforePath="$PROJECT_DIR$/pyproject.toml" beforeDir="false" afterPath="$PROJECT_DIR$/pyproject.toml" afterDir="false" />
</list>

@@ -92,3 +91,3 @@ <option name="SHOW_DIALOG" value="false" />

<workItem from="1661166391747" duration="308000" />
<workItem from="1661166938391" duration="2664000" />
<workItem from="1661166938391" duration="2883000" />
</task>

@@ -116,3 +115,24 @@ <task id="LOCAL-00001" summary="added print(fpns) to README.md">

</task>
<option name="localTasksCounter" value="4" />
<task id="LOCAL-00004" summary="update README.md">
<created>1661169622259</created>
<option name="number" value="00004" />
<option name="presentableId" value="LOCAL-00004" />
<option name="project" value="LOCAL" />
<updated>1661169622259</updated>
</task>
<task id="LOCAL-00005" summary="more simplified README.md">
<created>1661169804600</created>
<option name="number" value="00005" />
<option name="presentableId" value="LOCAL-00005" />
<option name="project" value="LOCAL" />
<updated>1661169804600</updated>
</task>
<task id="LOCAL-00006" summary="v2.4 - more simplified README.md">
<created>1661169823151</created>
<option name="number" value="00006" />
<option name="presentableId" value="LOCAL-00006" />
<option name="project" value="LOCAL" />
<updated>1661169823151</updated>
</task>
<option name="localTasksCounter" value="7" />
<servers />

@@ -141,4 +161,7 @@ </component>

<MESSAGE value="v2.3 - added .meta .data_suf and many simplifications" />
<option name="LAST_COMMIT_MESSAGE" value="v2.3 - added .meta .data_suf and many simplifications" />
<MESSAGE value="update README.md" />
<MESSAGE value="more simplified README.md" />
<MESSAGE value="v2.4 - more simplified README.md" />
<option name="LAST_COMMIT_MESSAGE" value="v2.4 - more simplified README.md" />
</component>
</project>
+7
-7
Metadata-Version: 2.1
Name: githubdata
Version: 2.3
Version: 2.4
Summary: A simple tool to get last/full version of a github repository and committing back to it

@@ -66,6 +66,6 @@ Project-URL: Homepage, https://github.com/imahdimir/githubdata

>>> repo = GithubData(url)
>>> repo.clone()
>>> rp = GithubData(url)
>>> rp.clone()
>>> fp = repo.data_filepath
>>> fp = rp.data_filepath
>>> print(fp)

@@ -85,3 +85,3 @@ 'd-uniq-BaseTickers/data.xlsx' # This the relative path of downloaded dataset

```python
repo.rmdir()
rp.rmdir()
```

@@ -91,8 +91,8 @@

`repo.clone()`
`rp.clone()`
- Every time excecuted, it re-downloads last version of data.
`repo.data_filepath`
`rp.data_filepath`
- This attribute contains the relative path of the downloaded dataset.

@@ -7,3 +7,3 @@ [build-system]

name = "githubdata"
version = "2.3"
version = "2.4"
authors = [{ name = "Mahdi Mir", email = "imahdimir@gmail.com" }]

@@ -10,0 +10,0 @@ description = "A simple tool to get last/full version of a github repository and committing back to it"

@@ -17,6 +17,6 @@ A simple tool to get last/full version of a github repository and committing

>>> repo = GithubData(url)
>>> repo.clone()
>>> rp = GithubData(url)
>>> rp.clone()
>>> fp = repo.data_filepath
>>> fp = rp.data_filepath
>>> print(fp)

@@ -36,3 +36,3 @@ 'd-uniq-BaseTickers/data.xlsx' # This the relative path of downloaded dataset

```python
repo.rmdir()
rp.rmdir()
```

@@ -42,8 +42,8 @@

`repo.clone()`
`rp.clone()`
- Every time excecuted, it re-downloads last version of data.
`repo.data_filepath`
`rp.data_filepath`
- This attribute contains the relative path of the downloaded dataset.