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
11.0.0
to
11.1.0
+1
-1
PKG-INFO
Metadata-Version: 2.1
Name: githubdata
Version: 11.0.0
Version: 11.1.0
Summary: A simple tool to get the lastest version of a dataset in a Github repository

@@ -5,0 +5,0 @@ Project-URL: Homepage, https://github.com/imahdimir/githubdata

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

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

@@ -10,0 +10,0 @@ description = "A simple tool to get the lastest version of a dataset in a Github repository"

@@ -38,2 +38,4 @@ """

self.data_suf = None
def set_data_fps(self) :

@@ -45,8 +47,8 @@ self._set_defualt_data_suffix()

fpns = self.ret_sorted_fpns_by_suf(self.data_suf)
fps = self.ret_sorted_fpns_by_suf(self.data_suf)
if len(fpns) == 1 :
self.data_fp = fpns[0]
if len(fps) == 1 :
self.data_fp = fps[0]
else :
self.data_fp = fpns
self.data_fp = fps

@@ -53,0 +55,0 @@ def ret_sorted_fpns_by_suf(self , suffix) :