Giter Club home page Giter Club logo

Comments (17)

melendyk avatar melendyk commented on June 19, 2024 2

That should be all you need... if you can log into that page with your email (username) and password, it should work...
Screenshot from 2022-03-04 08-11-27

from zap2it-guidescraping.

daniel-widrick avatar daniel-widrick commented on June 19, 2024 1

I have updated the config.ini.dist to be more reflective of this: facaf0c

from zap2it-guidescraping.

daniel-widrick avatar daniel-widrick commented on June 19, 2024

whats the ini file? one that ends with .dist i fill my info in that one

Fill this file out than copy or move or rename it to config.ini. the config.ini.dist file is an example for config.ini

Try that out and then if you have trouble come on back and post any specific errors/etc you get.

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

image

hi i get this i fill config.ini with my user name (email) and pasword , zipcode.

from zap2it-guidescraping.

daniel-widrick avatar daniel-widrick commented on June 19, 2024

I'll address this later in the code/release but it appears it currently expects config.ini to be named zap2itconfig.ini

For the time being can rename the config.ini to zap2itconfig.ini and test again? sorry about the confusion

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

02-28-2022 (150337)

fix that still get errors. only data that i add was to zap2itconfig.ini

from zap2it-guidescraping.

daniel-widrick avatar daniel-widrick commented on June 19, 2024

That error suggests to me an authentication problem. I'll try to dig into more soon.

from zap2it-guidescraping.

melendyk avatar melendyk commented on June 19, 2024

02-28-2022 (150337)

fix that still get errors. only data that i add was to zap2itconfig.ini

I've recreated your error by using invalid password with my my user id, so make sure you are using valid credentials in the .ini file.
Also, to be safe, I run the command this way explicitly including all options/parameters:
python3 zap2it-GuideScrape.py -c zap2itconfig.ini -o xmlfile.xml

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

i still getting same thing
03-03-2022 (233633)

2022-03-03_23-42-22

this its the listings page? just to be sure. if i changed password and run again also i run new parameters
https://tvlistings.zap2it.com/?aid=gapzap

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

That should be all you need... if you can log into that page with your email (username) and password, it should work... Screenshot from 2022-03-04 08-11-27

thanks thats why i asked an example. its all that i need.

my error was i only place my username and not email. my username for zap was name on my email.

i did charly instead [email protected]

its running fine now thanks!

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

Question how you use guide?

i try using it with tivimate but its only detecting the first channel. of epg
im using hdhomerun with tivimate. and loading epg on tivimate.

from zap2it-guidescraping.

melendyk avatar melendyk commented on June 19, 2024

Sorry I can't help you with that... I use it to load guide in Jellyfin server (which uses my hdhomerun) and just use jellyfin clients. Why not just use hdhomerun app if that's all your trying to do is watch tv and have a guide... the app shows a guide without having to load anything specific.

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

Thanks i prefer tivimate plus i guess you need pay for record with hdhomerun.

from zap2it-guidescraping.

daniel-widrick avatar daniel-widrick commented on June 19, 2024

I've never used tivimate but, I have recorded tv shows with this guide, my hdhomerun, and jellyfin.

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

actually its fine, i mean, i know a github script that get same style xml data, , one that extract epg from hdhommerun devices, i was hoping this one was different, but guess not, issue its tivimate .

issue for what i remember can be fixed adding channel list to beginning of the xml file.

03-08-2022 (220051)

for example like this.

im been thinking there its two kind of xml epg data but i never found some info about it.

from zap2it-guidescraping.

Toei79 avatar Toei79 commented on June 19, 2024

well i found some way , maybe sharing this its useful for any to read issues section.

i add epg to my tvheadend, then i able to use it add it to tivimate, kinda like after tvheadend process the epg , it make it workeable for tivimate , and yea structure changes when epg its loaded from tvheadend.

the only issue is icons.

from zap2it-guidescraping.

djlzotz avatar djlzotz commented on June 19, 2024

I am having the following authentication error. Is there anything I should know about special characters or the like. I suspect they may be causing issues.

python3 zap2it-GuideScrape.py -c zap2itconfig.ini -o xmlguid.xmltv
Namespace(configfile='zap2itconfig.ini', outputfile='xmlguid.xmltv', language=None, findid=False)
Loading config: zap2itconfig.ini and outputting: xmlguid.xmltv
Traceback (most recent call last):
File "/docker/zap2it/zap2it-GuideScraping-main/zap2it-GuideScrape.py", line 315, in
guide.BuildGuide()
File "/docker/zap2it/zap2it-GuideScraping-main/zap2it-GuideScrape.py", line 243, in BuildGuide
self.Authenticate()
File "/docker/zap2it/zap2it-GuideScraping-main/zap2it-GuideScrape.py", line 35, in Authenticate
authResponse = urllib.request.urlopen(authRequest).read()
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 216, in urlopen
return opener.open(url, data, timeout)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 525, in open
response = meth(req, response)
^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 634, in http_response
response = self.parent.error(
^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 563, in error
return self._call_chain(*args)
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 496, in _call_chain
result = func(*args)
^^^^^^^^^^^
File "/usr/lib/python3.11/urllib/request.py", line 643, in http_error_default
raise HTTPError(req.full_url, code, msg, hdrs, fp)
urllib.error.HTTPError: HTTP Error 401: Unauthorized

from zap2it-guidescraping.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.